summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Convert OC_L10N_String to a string in OC_JSON::encodedPrintBart Visscher2012-06-221-0/+10
|
* Spelling fixesBart Visscher2012-06-221-3/+4
|
* Avoid fetch ocs info if the appstore is disabledBrice Maron2012-06-221-22/+31
|
* Correct css inclusion with minimizerBrice Maron2012-06-221-2/+1
|
* Enhance hint about writable app directoryBrice Maron2012-06-221-1/+2
|
* Correct image path and apps path replacementBrice Maron2012-06-221-1/+2
|
* Correct OC_Config writer. Use var_export (has support for array,...)Brice Maron2012-06-221-14/+3
|
* Fixes for multi app dir :Brice Maron2012-06-221-2/+2
| | | | | Url should be given as relative path (to webroot) Correct link construction from js
* some path fixes for multi-dir appThomas Mueller2012-06-222-3/+3
|
* Provide solution for smoother migration for apps to multi-app dirBrice Maron2012-06-211-1/+5
|
* Do not search apps if oc is not yet installedBrice Maron2012-06-211-0/+2
|
* Merge branch 'master' into multi_app_dirBrice Maron2012-06-213-2/+90
|\
| * Implemented deleteAll() method in OC_FilesystemView (interface) and ↵Sam Tuke2012-06-213-2/+90
| | | | | | | | | | | | | | | | | | OC_Filestorage_Common (logic) Made OC_Filestorage_Local and OC_Filestorage_Shared extend OC_Filestorage_Common Set searchInDir() to protected instead of private in OC_Filestorage_Local and OC_Filestorage_Shared Added class documentation to OC_Filestorage_Common Cleaned up OCA_Versions::expireAll()
* | Correct writable check for app dirBrice Maron2012-06-211-3/+5
| |
* | Correct inclusion pathsBrice Maron2012-06-211-17/+42
| |
* | Merge branch 'master' into multi_app_dirBrice Maron2012-06-2130-864/+1061
|\| | | | | | | | | | | | | | | | | | | Conflicts: lib/app.php lib/base.php lib/minimizer/css.php lib/minimizer/js.php lib/template.php lib/util.php
| * fix saved file size for uploaded filesRobin Appelman2012-06-211-4/+4
| |
| * truncate decrypted files based on filelengthRobin Appelman2012-06-211-5/+5
| |
| * check if the data directory is accessible via http. Show a big security ↵Frank Karlitschek2012-06-211-7/+46
| | | | | | | | warning if yes
| * fix mimetype for cdr files - bugfix for oc 559Georg Ehrke2012-06-211-1/+2
| |
| * Only call OC_FileCache::get('/Shared') if it exists in the file cache, ↵Michael Gapczynski2012-06-201-1/+6
| | | | | | | | | | | | | | | | prevents premature addition of the Shared folder to the file cache Conflicts: lib/fileproxy/quota.php
| * added new user settings interface for deleting old file versionsSam Tuke2012-06-201-3/+0
| | | | | | | | | | fixed OCA_VersionsexpireAll() to use native PHP readdir() removed local storage implementation of readdir()
| * Merge branch 'master' of gitorious.org:owncloud/owncloudSam Tuke2012-06-204-17/+19
| |\
| | * Merge branch 'audit'Bart Visscher2012-06-201-1/+1
| | |\
| | | * Start of audit appBart Visscher2012-05-071-1/+1
| | | | | | | | | | | | | | | | Audit the filesystem action
| | * | Prefer requested app before redirecting to default pageBart Visscher2012-06-201-1/+5
| | | |
| | * | Delay setup of FS until OC_Filesystem is usedBart Visscher2012-06-203-9/+6
| | | |
| | * | Small code reorderBart Visscher2012-06-201-5/+6
| | | |
| | * | remove unnecessary commentBjoern Schiessle2012-06-201-1/+1
| | | |
| * | | removed readdir to fix bug oc-1054Sam Tuke2012-06-201-1/+0
| |/ /
| * | don't show other users file if the filesystem is not index alreadyRobin Appelman2012-06-201-0/+3
| | |
| * | Remove OC::$CONFIG_DATADIRECTORY, not usedBart Visscher2012-06-193-33/+18
| | |
| * | Move check code from setupFS to checkServerBart Visscher2012-06-191-34/+20
| | |
| * | Fixed deleteAll function for deleting all old versions of files (expireAll)Sam Tuke2012-06-194-0/+11
| | | | | | | | | | | | Added new readdir() method to all storage classes and handlers (only working implementation in local.php)
| * | removing sanitizeHTML() function from template.php since I moved it to util.phpBjoern Schiessle2012-06-191-11/+0
| | | | | | | | | | | | to make it more generic.
| * | Remember result of OC_User::isLoggedIn, can be very expensive to checkBart Visscher2012-06-191-2/+6
| | |
| * | use new sanitize HTML functionBjoern Schiessle2012-06-191-7/+1
| | |
| * | introducing a sanitize HTML function for the internal and the public API. ThisBjoern Schiessle2012-06-192-1/+28
| | | | | | | | | | | | | | | allows to easily convert strings to HTML before displaying them on the web page to reduce the risk of xss vulnerabilities.
| * | quota calculation fixedBjoern Schiessle2012-06-191-1/+1
| | |
| * | fixes oc-668Thomas Mueller2012-06-181-0/+6
| | |
| * | Delay loading of translations until they are usedBart Visscher2012-06-182-7/+48
| | |
| * | Force sanitize function to use UTF8 (for php lower than 5.4)Brice Maron2012-06-181-1/+1
| | |
| * | Merge branch 'master' of gitorious.org:owncloud/owncloudBjoern Schiessle2012-06-186-260/+211
| |\ \
| | * | Use TemplateLayout functions for finding js and css files in minimizerBart Visscher2012-06-183-99/+1
| | | |
| | * | Prepare template js and css functions for use in the js and css minimizersBart Visscher2012-06-181-32/+32
| | | |
| | * | Move page layout handling to its own classBart Visscher2012-06-182-127/+173
| | | |
| | * | Move formfactor code to OC_TemplateBart Visscher2012-06-182-34/+37
| | | |
| * | | ignore "Shared"-directory when calculating free spaceBjoern Schiessle2012-06-181-0/+2
| |/ /
| * | Fix errors for minimizerBart Visscher2012-06-183-1/+12
| | |
| * | Forgot a fileBart Visscher2012-06-181-0/+70
| | |