summaryrefslogtreecommitdiffstats
path: root/apps/files/index.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix dirInfo check when dir does not existVincent Petry2014-04-011-1/+1
|
* Merge pull request #7724 from owncloud/mobileThomas Müller2014-03-281-0/+1
|\ | | | | [WIP] Mobile optimization for base layout and Files app
| * mobile: first mobile fixes for Files. We still need to hide Rename and VersionsJan-Christoph Borchardt2014-03-141-0/+1
| |
* | drop file cache migration OC5 -> OC6Thomas Müller2014-03-181-73/+62
|/
* Merge pull request #7257 from owncloud/filelist-fileinfoVincent Petry2014-02-191-2/+3
|\ | | | | use a FileInfo object of the directory when generting the filelist
| * use a FileInfo object of the directory when generting the filelistRobin Appelman2014-02-181-2/+3
| |
* | Remove usage of legacy OC_AppconfigRobin Appelman2014-02-131-3/+5
|/
* Merge branch 'master' into pr-exceed_upload_limit_msgPellaeon Lin2014-01-301-2/+0
|\ | | | | | | | | | | Conflicts: apps/files/templates/index.php apps/files_sharing/templates/public.php
| * Remove unused $freeSpaceRobin Appelman2014-01-271-2/+0
| |
* | Use $storageInfo['free']Pellaeon Lin2014-01-291-1/+1
| |
* | Comments to clarifyPellaeon Lin2014-01-161-2/+2
| |
* | Display different messages for uploadLimit and freeSpacePellaeon Lin2013-12-081-0/+4
|/
* public upload now also works with encryption enabledBjoern Schiessle2013-11-211-1/+0
|
* Files app backend now normalizes paths before rendering templatesVincent Petry2013-11-141-1/+2
| | | | | | | | Before rendering breadcrumbs or the file list, the paths are now normalized. This prevents the UI to show "." breadcrumbs in case the path contains sections with "/./" Fixes #5848
* Merge pull request #5310 from owncloud/hide_filestable-header_when_emptyChristopher Schäpers2013-10-221-1/+7
|\ | | | | Hide files list header, when theres no files to see
| * Fixed empty content logicVincent Petry2013-10-211-1/+1
| | | | | | | | | | - Remove obsolete code that used another approach for hiding emptycontent - Fixed logic for the showing of the empty content message
| * Fix mind-boggling emptycontent logickondou2013-10-211-1/+3
| |
| * Fix shared folder still showing fileheaderkondou2013-10-211-1/+1
| |
| * Hide files list header, when theres no files to seekondou2013-10-121-1/+5
| |
* | Fixed share with link checkbox missing as regular userVincent Petry2013-10-211-0/+1
|/ | | | | | | | | Instead of loading the app config setting "shareapi_allow_links" using a synchronous ajax call that fails when the user is not an admin, this fix puts the flag directly in the template so it doesn't need to be loaded afterwards. Fixes #5440
* Merge branch 'master' into sharing_mail_notification_masterBjoern Schiessle2013-10-041-0/+5
|\ | | | | | | | | | | Conflicts: apps/files/index.php apps/files/templates/index.php
| * we don't know \OCA\Encryption\Session if the encryption app is not enabled, ↵Bjoern Schiessle2013-10-041-2/+2
| | | | | | | | so we have to set the status manually
| * Merge branch 'master' into encryption_improved_error_messages_4617Bjoern Schiessle2013-09-231-3/+4
| |\ | | | | | | | | | | | | Conflicts: settings/ajax/changepassword.php
| * \ Merge branch 'master' into encryption_improved_error_messages_4617Bjoern Schiessle2013-09-161-48/+29
| |\ \ | | | | | | | | | | | | | | | | Conflicts: apps/files/index.php
| * | | no longer enforce log out, but provide useful errors/warnings insteadBjoern Schiessle2013-09-061-1/+6
| | | |
* | | | Merge branch 'master' into sharing_mail_notification_masterBjoern Schiessle2013-09-231-3/+4
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | Conflicts: lib/public/share.php
| * | | remove unneccessary lib in namespaceJörn Friedrich Dreyer2013-09-201-3/+3
| | | |
| * | | namespaces use upcasefirst partsJörn Friedrich Dreyer2013-09-201-3/+3
| | | | | | | | | | | | | | | | | | | | when _ is left in namespace and files are named after their classes the autoloader will also find classes in the lib folder of an app its magic!
| * | | move upload dialog css to separate fileJörn Friedrich Dreyer2013-09-181-0/+1
| | |/ | |/|
* | | Merge branch 'master' into sharing_mail_notification_masterBjoern Schiessle2013-09-161-48/+30
|\| | | | | | | | | | | | | | Conflicts: apps/files/index.php
| * | Use hash part of URL for IE8 in files appVincent Petry2013-09-131-1/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this fix, the URL wasn't updated in IE8 when navigating into folders. This fix makes use of the hash part of URLs to make this work in IE8, since IE8 doesn't support the history API nor changing the URL without redirecting. From now, both the regular query URL "?dir=somedir" and "#?dir=somedir" will work in both IE8 and non-IE8 browsers. In IE8, query based URLs are automatically converted to hash URLs upon page load. The conversion is done on the server side by redirecting the user to the updated URL. When loading a page directly using a hash URL in the form "#?dir=somedir" in IE8, the server doesn't get the hash, so it will not return any results in that case and rely on ajax to load the first page.
| * | Fixed ajax support to also update the current dir permissionsVincent Petry2013-09-131-13/+1
| | |
| * | Ajax calls for "files" and "files_trashbin" appsVincent Petry2013-09-131-39/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Frontend: - The files app list now uses ajax calls to refresh the list. - Added support the browser back button (history API). - Added mask + spinner while loading file list Backend: - Added utility function in core JS for parsing query strings. - Moved file list + breadcrumb template data code to helper functions - Fixed some file paths in trashbin app to be similar to the files app
| * | adding calls to \OCA\files\lib\Helper::determineIcon($i) in files, trashbin ↵Thomas Müller2013-09-121-0/+1
| |/ | | | | | | and sharing
* | Merge branch 'master' into sharing_mail_notification_masterBjoern Schiessle2013-09-021-0/+2
|\| | | | | | | | | Conflicts: lib/util.php
| * Merge master into oc_previewGeorg Ehrke2013-08-291-1/+1
| |\
| * | move isMimeSupported out of template filesGeorg Ehrke2013-08-211-0/+1
| | |
| * | Merge master into oc_previewGeorg Ehrke2013-08-191-0/+1
| |\ \
| * \ \ Merge branch 'master' into oc_previewThomas Müller2013-07-301-1/+13
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: 3rdparty lib/template.php
| * | | | implement use of previews in sharing appGeorg Ehrke2013-07-111-0/+1
| | | | |
* | | | | enable user to inform recipients about a shared file by mailBjoern Schiessle2013-08-301-1/+2
| |_|_|/ |/| | |
* | | | storage information is path specificThomas Müller2013-08-271-1/+1
| |_|/ |/| |
* | | Merge branch 'master' into decrypt_files_againBjoern Schiessle2013-08-171-1/+8
|\ \ \ | | |/ | |/| | | | | | | Conflicts: apps/files_encryption/tests/keymanager.php
| * | disable "deleted files" button if trash bin is emptyBjörn Schießle2013-07-261-1/+8
| | |
* | | check if some encrypted files are left after the app was disabled and warn ↵Bjoern Schiessle2013-08-121-0/+1
|/ / | | | | | | the user
* | in case the encryption app is enabled we cannot yet allow anonymous uploadThomas Müller2013-07-121-1/+5
| |
* | new admin setting added which allows to turn off anonymous uploadsThomas Müller2013-07-121-0/+1
|/
* fixing Notice: Undefined index: isPublicThomas Müller2013-07-051-0/+1
|
* Public upload featureRoman Geber2013-06-251-1/+2
|
* Sed was wrongLukas Reschke2013-02-281-1/+1
|