summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Show skip navigation links above everything, also on narrow screensJan-Christoph Borchardt2018-07-201-1/+1
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Fix tooltip for More apps showing on focusJan-Christoph Borchardt2018-07-201-1/+2
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* [tx-robot] updated from transifexNextcloud bot2018-07-1720-4/+38
|
* [tx-robot] updated from transifexNextcloud bot2018-07-1614-6/+74
|
* [tx-robot] updated from transifexNextcloud bot2018-07-1512-2/+54
|
* [tx-robot] updated from transifexNextcloud bot2018-07-1412-4/+472
|
* Merge pull request #5280 from nextcloud/shared-with-display-nameMorris Jobke2018-07-139-10/+298
|\ | | | | sharedWithDisplayName & sharedWithAvatar
| * testsMaxence Lange2018-05-211-0/+17
| | | | | | | | Signed-off-by: Maxence Lange <maxence@nextcloud.com>
| * display details on sharing panelMaxence Lange2018-05-211-1/+12
| | | | | | Signed-off-by: Maxence Lange <maxence@nextcloud.com>
| * SharedWithDisplayName + SharedWithAvatarMaxence Lange2018-05-217-9/+269
| | | | | | | | | | Signed-off-by: Maxence Lange <maxence@nextcloud.com> Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Merge pull request #10110 from nextcloud/feature/100500/whats-new-info-usersMorris Jobke2018-07-1319-62/+714
|\ \ | | | | | | Display What's New info to users
| * | wire the frontendArthur Schiwon2018-07-054-9/+130
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | Backend work to provide NC whats New info to usersArthur Schiwon2018-07-0517-62/+593
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Merge pull request #10168 from ↵Morris Jobke2018-07-131-4/+23
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/bugfix/10163/allow-utf8mb4-on-maria-10.3-or-later MySQL 8.0+ and MariaDB 10.3+ are large prefix and barracuda by default
| * | | MySQL 8.0+ and MariaDB 10.3+ are large prefix and barracuda by defaultJoas Schilling2018-07-091-4/+23
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Update documentation for #10198Morris Jobke2018-07-131-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | | Merge pull request #10198 from tml1024/masterMorris Jobke2018-07-131-9/+9
|\ \ \ \ | | | | | | | | | | No need to convert to PDF with LibreOffice, just convert to PNG
| * | | | No need to convert to PDF with LibreOffice, just convert to PNGTor Lillqvist2018-07-121-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exporting all pages of a document to a PDF is a waste of time. All we need is a thumbnail of the first page anyway. Plus, reading that PDF (even just the first page of it) into imagick is presumably much slower than reading a simple PNG. Signed-off-by: Tor Lillqvist <tml@collabora.com>
* | | | | Merge pull request #10226 from nextcloud/enable-scss-for-guest-pagesMorris Jobke2018-07-135-366/+8
|\ \ \ \ \ | | | | | | | | | | | | Enable SCSS for guest pages
| * | | | | Override server SCSS rules for confirm button in guest pagesDaniel Calviño Sánchez2018-07-132-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As the server defines some SCSS rules using "XXX + .icon-confirm" the selector is more specific than just "input" used in "guest.css", so the server SCSS rules took precedence over the guest CSS rules. Now a more specific selector was added to the guest and public share auth rules; as the guest and public share auth rules are loaded after the server ones now the guest rules for input elements take precedence over the server ones. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | | Override server SCSS rules for inputs in guest pagesDaniel Calviño Sánchez2018-07-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As the server defines some SCSS rules using "input:not([type='range'])" the selector is more specific than just "input" used in "guest.css", so the server SCSS rules took precedence over the guest CSS rules. Now that selector was added to the guest rules too; as the guest rules are loaded after the server ones now the guest rules for input elements take precedence over the server ones. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | | Remove SCSS rules for "#body-login" elementsDaniel Calviño Sánchez2018-07-132-363/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "#body-login" is only used in the layout for guest pages. Therefore, before SCSS was enabled for guest pages, all "#body-login" rules in SCSS files were ignored. Now that SCSS is enabled for guest pages those rules break the guest pages, but given that they were ignored until now they can be safely removed. Note, however, that all of the above refers to regular SCSS rules; those defined in the Theming app are different, as they were converted to CSS and used in the guest pages even when SCSS was disabled, so they do not need to be adjusted due to SCSS being enabled now. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | | Enable SCSS for guest pagesDaniel Calviño Sánchez2018-07-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SCSS is disabled for several types of pages, as the SCSS compiler uses the cache system, which is not available for example when Nextcloud is not installed yet. However, in regular guest pages the cache system is available, so SCSS is now enabled for them too. To keep the same behaviour for guest pages the guest style is automatically added for them, as before this commit it was automatically added due to SCSS not being used. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | | | Merge pull request #10227 from nextcloud/bugfix/10160/ldap-bind-loopMorris Jobke2018-07-132-3/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | Only bind to ldap if configuration for the first server is set
| * | | | | | Fix tests for backup ldap server connectionJulius Härtl2018-07-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | Only bind if configuration for the first server is availableJulius Härtl2018-07-131-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | Merge pull request #10224 from ↵Morris Jobke2018-07-132-8/+62
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/fix-formatting-of-email-and-circle-shares Fix formatting of email and circle shares
| * | | | | | Fix formatting of email and circle sharesDaniel Calviño Sánchez2018-07-122-8/+62
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to a misplaced "||" instead of "===" the condition was always met, so every share type in the conditional chain after the remote and remote group shares was formatted as a remote/remote group share. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | | | Merge pull request #10225 from ↵John Molakvoæ2018-07-131-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | danielkesselberg/bugfix/8529/fix-url-generation-dav-app Fix call to OC.generateUrl for caldav birthday calendar on/off
| * | | | | | Fix call to OC.generateUrl for caldav birthday calendar on/offDaniel Kesselberg2018-07-121-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | | | | Merge pull request #10223 from nextcloud/fix-sharingBjörn Schießle2018-07-131-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | fix selection of share provider
| * | | | | | | fix selection of share providerBjoern Schiessle2018-07-121-1/+1
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | | | | | | [tx-robot] updated from transifexNextcloud bot2018-07-1326-0/+162
| | | | | | |
* | | | | | | Merge pull request #10176 from nextcloud/newhinton/masterJohn Molakvoæ2018-07-1211-119/+781
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Add Quick-Access to favorite folder in left sidepanel in files-app #9720
| * | | | | | No draggable list anymoreRoeland Jago Douma2018-07-121-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | Fix testsRoeland Jago Douma2018-07-122-22/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | Inject helperRoeland Jago Douma2018-07-121-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | Fixed testsJohn Molakvoæ (skjnldsv)2018-07-126-90/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | Fixed favorite folder view displayJohn Molakvoæ (skjnldsv)2018-07-125-14/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | Fixed invalid uidJohn Molakvoæ (skjnldsv)2018-07-122-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | Default state to collapsed and fixed code stylingJohn Molakvoæ (skjnldsv)2018-07-123-11/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | Fix app nav menu highlightJohn Molakvoæ (skjnldsv)2018-07-121-10/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | Added drop-animation to sortable-listfnuesse2018-07-126-41/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de> Added icon-change on drag Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Navbar-closing in app when favorites-list is toggled on mobile Signed-off-by: fnuesse <felix.nuesse@t-online.de> Refactored Code Signed-off-by: fnuesse <felix.nuesse@t-online.de> Changed to alphabetical sorting Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed deletion of folder with identical names Signed-off-by: fnuesse <felix.nuesse@t-online.de> Removed ability to add files to the quickaccess Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed wrong path-generation when added from favorites-star Signed-off-by: fnuesse <felix.nuesse@t-online.de> Removed Element from navbar when favorite-star in detailview is toggled off Signed-off-by: fnuesse <felix.nuesse@t-online.de> Changed Quota-Text to prevent boundarybreaks Reverted last commit
| * | | | | | Fix collapsible-Button when list was emptied (or got first element)fnuesse2018-07-124-21/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Bad url-generation in javascript for new quickaccessitems Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed vertical scrolling in sortable-list which leads to "hidden" navbar Signed-off-by: fnuesse <felix.nuesse@t-online.de> Removed unnessessary console logs Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Bounds in custom sorting Signed-off-by: fnuesse <felix.nuesse@t-online.de> Reformatted code Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed horizontalscroll on sortable-list Fixed "stuck element" where you could not switch back to the original ordering in the sortable-list Signed-off-by: fnuesse <felix.nuesse@t-online.de>
| * | | | | | Set Quickaccess-ordering to custom orderfnuesse2018-07-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de>
| * | | | | | Removed old codefnuesse2018-07-127-373/+497
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de> Removed duplicate collapse-button and changed api-endpoints Signed-off-by: fnuesse <felix.nuesse@t-online.de> Removed app-navigation-caption from apps.scss Signed-off-by: fnuesse <felix.nuesse@t-online.de> Changed api-endpoints Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Codestyle (.js) Signed-off-by: fnuesse <felix.nuesse@t-online.de> Hid away extended Settings Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed reverse state Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Missing reverse after changing sort-strategy Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Copyright-Header Signed-off-by: fnuesse <felix.nuesse@t-online.de> Removed UI-Flickering Signed-off-by: fnuesse <felix.nuesse@t-online.de> hid dotmenu on toggle while favorites are empty Signed-off-by: fnuesse <felix.nuesse@t-online.de> Added Draggable to listelements (WIP) Signed-off-by: fnuesse <felix.nuesse@t-online.de> Rebuild appnavigation.php with recursive function to allow easy implementation of sublists Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed draggable Sublist-Elements Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed draggable Sublist-Elements Signed-off-by: fnuesse <felix.nuesse@t-online.de> Added date-modified sorting option to quickaccess Signed-off-by: fnuesse <felix.nuesse@t-online.de> Added custom order sorting option to quickaccess Signed-off-by: fnuesse <felix.nuesse@t-online.de> Added custom order sorting option to quickaccess Signed-off-by: fnuesse <felix.nuesse@t-online.de> Added fallback for custom ordering Signed-off-by: fnuesse <felix.nuesse@t-online.de>
| * | | | | | Added copyright noticefnuesse2018-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de>
| * | | | | | Changed togglefnuesse2018-07-123-51/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Codestyle and changed linkgeneration Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Codestyle Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed Codestyle (Renamed Variables) Signed-off-by: fnuesse <felix.nuesse@t-online.de>
| * | | | | | Fixed css-flashingfnuesse2018-07-124-7/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de> Fixed menu if initially empty Signed-off-by: fnuesse <felix.nuesse@t-online.de>
| * | | | | | Added responsive folderaddingfnuesse2018-07-124-11/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: fnuesse <felix.nuesse@t-online.de> Added collapsible to quickaccesslist Signed-off-by: fnuesse <felix.nuesse@t-online.de> Refactored Code Signed-off-by: fnuesse <felix.nuesse@t-online.de>