Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #19024 from owncloud/remove-get_temp_dir | Thomas Müller | 2015-09-15 | 1 | -8/+0 |
|\ | | | | | Remove get_temp_dir() | ||||
| * | Remove get_temp_dir() | Robin McCorkell | 2015-09-15 | 1 | -8/+0 |
| | | |||||
* | | Allow /tests folder in autoloader by default | Lukas Reschke | 2015-09-15 | 1 | -1/+2 |
|/ | | | | | | Given the fact that "/tests" is not shipped by default and this has broken some applications and frustrated quite some people we should add "/tests" to the default allowed autoloading set. I do consider the security impact marginally since the /tests folder is not shipped within the release as well as usually has a hard requirement on being called by phpunit. | ||||
* | Merge pull request #18658 from owncloud/configurable-temp | Frank Karlitschek | 2015-09-12 | 1 | -14/+3 |
|\ | | | | | Configurable temporary directory | ||||
| * | moved code to /lib/private/tempmanager.php | root | 2015-08-29 | 1 | -14/+3 |
| | | | | | | | | | | | | fix for unit test some fixes | ||||
* | | Only add valid root for enabled apps | Robin McCorkell | 2015-09-05 | 1 | -4/+0 |
| | | |||||
* | | Merge pull request #18794 from individual-it/reuse_systemConfig | Individual IT Services | 2015-09-04 | 1 | -1/+1 |
|\ \ | | | | | | | reuse existing $systemConfig variable | ||||
| * | | reuse existing $systemConfig variable | Individual IT Services | 2015-09-03 | 1 | -1/+1 |
| | | | |||||
* | | | Proper details about git submodule update | Morris Jobke | 2015-09-03 | 1 | -1/+1 |
|/ / | | | | | | | * fixes #18801 | ||||
* / | verify the path in the autoloader | Robin Appelman | 2015-09-01 | 1 | -4/+15 |
|/ | |||||
* | Remove DEBUG constant and use config value | Morris Jobke | 2015-08-24 | 1 | -4/+5 |
| | | | | | * introduces config.php option 'debug' that defaults to false * migrate DEBUG constant to config value | ||||
* | Merge pull request #18482 from owncloud/encrypt-session-data | Morris Jobke | 2015-08-24 | 1 | -5/+7 |
|\ | | | | | Add a session wrapper to encrypt the data before storing it on disk | ||||
| * | Add a session wrapper to encrypt the data before storing it on disk | Joas Schilling | 2015-08-21 | 1 | -5/+7 |
| | | |||||
* | | Merge pull request #18254 from owncloud/mitigate-breach | Morris Jobke | 2015-08-24 | 1 | -12/+1 |
|\ \ | |/ |/| | Add mitigation against BREACH | ||||
| * | Add mitigation against BREACH | Lukas Reschke | 2015-08-14 | 1 | -12/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | While BREACH requires the following three factors to be effectively exploitable we should add another mitigation: 1. Application must support HTTP compression 2. Response most reflect user-controlled input 3. Response should contain sensitive data Especially part 2 is with ownCloud not really given since user-input is usually only echoed if a CSRF token has been passed. To reduce the risk even further it is however sensible to encrypt the CSRF token with a shared secret. Since this will change on every request an attack such as BREACH is not feasible anymore against the CSRF token at least. | ||||
* | | Merge pull request #17434 from owncloud/update-showappnameonappupdate | Morris Jobke | 2015-08-20 | 1 | -21/+36 |
|\ \ | |/ |/| | Display app names in update page for app updates | ||||
| * | Additions to update page | Vincent Petry | 2015-08-20 | 1 | -4/+5 |
| | | | | | | | | | | | | | | Apps to update and to disable will always be shown. Main title changes only when apps need updated, not core. Added bullet style. Exclude incompatible apps from updated apps list. | ||||
| * | Display app names in update page for app updates | Vincent Petry | 2015-08-19 | 1 | -21/+35 |
| | | | | | | | | | | Whenever the update page is displayed for apps, show app names instead of the core update text. | ||||
* | | load backbone universally | Arthur Schiwon | 2015-08-06 | 1 | -0/+2 |
| | | |||||
* | | - more injection | Thomas Müller | 2015-07-30 | 1 | -1/+3 |
| | | | | | | | | | | | | - less static calls - use params on sql queries - handle sql exception on database and user creation gracefully | ||||
* | | Remove commented code | Morris Jobke | 2015-07-24 | 1 | -2/+0 |
| | | |||||
* | | Merge pull request #17075 from owncloud/bootstrap-tooltip | Bernhard Posselt | 2015-07-23 | 1 | -2/+2 |
|\ \ | | | | | | | Replace jQuery tipsy with bootstrap tooltip | ||||
| * | | moved tooltip.js to vendor scripts | Hendrik Leppelsack | 2015-06-22 | 1 | -1/+1 |
| | | | |||||
| * | | replaced tipsy with bootstrap tooltip | Hendrik Leppelsack | 2015-06-22 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #17381 from owncloud/fix_sharing_add_to_group | Morris Jobke | 2015-07-21 | 1 | -0/+1 |
|\ \ \ | |_|/ |/| | | [sharing] fix addToGroup hook | ||||
| * | | intproduce pre_addToGroup hook. we need to calculate the possible unique | Bjoern Schiessle | 2015-07-06 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | targets before the user was added to the group otherwise we will always detect a name collision | ||||
* | | | Javascript mimetype icon resolver | Roeland Jago Douma | 2015-07-06 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it possible to retrieve the icon for mimetypes in javascript. It makes no additional queries to the server to retrieve the mimetype. * config/mimetypealiases.json added * mimetype.js: this is where the logic resides to convert from mimetype to icon url * mimetypelist.js: generated file with a list of mimetype mapping (aliases) and the list of icon files * ./occ maintenance:mimetypesjs : new command for occ to gernerate mimetypes.js * unit tests updated and still work * javascript tests added * theming support * folder of the theme is now present in javascript (OC.theme.folder) | ||||
* | | | Remove OC_Log | Thomas Müller | 2015-07-03 | 1 | -4/+5 |
|/ / | |||||
* | | Catch cache garbage collection exception on postLogin | Vincent Petry | 2015-06-30 | 1 | -2/+8 |
| | | | | | | | | Just log the exception instead of preventing access to OC. | ||||
* | | update license headers and authors | Morris Jobke | 2015-06-25 | 1 | -1/+1 |
|/ | |||||
* | Fix login handler for file cache - fixes #16795 | Thomas Müller | 2015-06-08 | 1 | -1/+4 |
| | |||||
* | Bring back OC\Cache\File - fixes #16760 | Thomas Müller | 2015-06-05 | 1 | -0/+14 |
| | |||||
* | Merge pull request #16200 from owncloud/kill-globalfilecache | Morris Jobke | 2015-06-02 | 1 | -14/+0 |
|\ | | | | | Drop file caching | ||||
| * | also free joblist and base from file cache code | Arthur Schiwon | 2015-05-12 | 1 | -14/+0 |
| | | |||||
* | | release all locks on shutdown | Robin Appelman | 2015-06-01 | 1 | -0/+2 |
| | | |||||
* | | fix preview hooks, enable_previews default is true | Georg Ehrke | 2015-05-13 | 1 | -1/+1 |
| | | |||||
* | | use hooks to update encryption keys instead of the storage wrapper if a file ↵ | Bjoern Schiessle | 2015-05-11 | 1 | -0/+2 |
|/ | | | | | | gets renamed/restored, as long as we are in the storage wrapper the file cache isn't up-to-date | ||||
* | Do not trigger preview hooks if enable_previews is false | Hugo Gonzalez Labrador | 2015-05-06 | 1 | -10/+10 |
| | |||||
* | Do not trigger preview hooks if enable_previews is false | Hugo Gonzalez Labrador | 2015-05-06 | 1 | -7/+9 |
| | |||||
* | Don't display errors and log them | Lukas Reschke | 2015-05-05 | 1 | -5/+3 |
| | | | | Fixes https://github.com/owncloud/core/issues/16014 | ||||
* | Try to set required ini values in base.php | Lukas Reschke | 2015-05-03 | 1 | -0/+7 |
| | | | | Fixes https://github.com/owncloud/core/issues/16006 | ||||
* | use the preSetup hook to ensure the encryption wrapper is applied correctly | Robin Appelman | 2015-04-30 | 1 | -1/+1 |
| | |||||
* | Delay initialization of the OC\Encryption\Update - introducing ↵ | Thomas Müller | 2015-04-17 | 1 | -19/+2 |
| | | | | 'OC\Encryption\HookManager' | ||||
* | detect system wide mount points correctly | Bjoern Schiessle | 2015-04-16 | 1 | -0/+1 |
| | |||||
* | Merge pull request #15489 from owncloud/dont_hide_exceptions_master | Thomas Müller | 2015-04-10 | 1 | -0/+4 |
|\ | | | | | Dont hide exceptions master | ||||
| * | do not disclose information, show generic error on login page | Jörn Friedrich Dreyer | 2015-04-10 | 1 | -0/+4 |
| | | | | | | | | | | | | Conflicts: core/templates/login.php lib/base.php | ||||
* | | Merge pull request #15510 from owncloud/cron-singleuser | Thomas Müller | 2015-04-10 | 1 | -14/+24 |
|\ \ | |/ |/| | block cron when in single user mode | ||||
| * | Fix singe user mode on public.php - take two | Thomas Müller | 2015-04-10 | 1 | -1/+5 |
| | | |||||
| * | Fix single user check in case no user is logged in | Thomas Müller | 2015-04-09 | 1 | -13/+19 |
| | | |||||
* | | Adding check command to validate server environment - fixes #15429 | Thomas Müller | 2015-04-08 | 1 | -25/+26 |
|/ |