Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move findLanguage() and setLanguageFromRequest() to factory | Joas Schilling | 2016-01-26 | 7 | -102/+166 |
| | |||||
* | Move languageExists() to the factory | Joas Schilling | 2016-01-26 | 3 | -8/+27 |
| | |||||
* | Move findAvailableLanguages() to the factory | Joas Schilling | 2016-01-26 | 5 | -21/+68 |
| | |||||
* | Merge pull request #21901 from owncloud/fix-setup | Thomas Müller | 2016-01-26 | 1 | -5/+8 |
|\ | | | | | Fix setup page | ||||
| * | Fix setup page | Morris Jobke | 2016-01-26 | 1 | -5/+8 |
| | | | | | | | | * fixes #21897 | ||||
* | | Merge pull request #21853 from owncloud/tags-fixpropertyma | Thomas Müller | 2016-01-26 | 2 | -4/+2 |
|\ \ | | | | | | | Fix oc:tags tag list serializer | ||||
| * | | Fix TagList serializer | Vincent Petry | 2016-01-22 | 1 | -3/+1 |
| | | | |||||
| * | | Fix oc:tags tag list serializer | Vincent Petry | 2016-01-22 | 1 | -1/+1 |
| | | | | | | | | | | | | Fixes propfind/proppatch of oc:tags | ||||
* | | | Merge pull request #21845 from owncloud/sync-system-addressbook-on-avatar-change | Thomas Müller | 2016-01-26 | 5 | -21/+40 |
|\ \ \ | | | | | | | | | Changing the avatar of the user emits the changeUser event which trig… | ||||
| * | | | Trigger change on avatar delete | Thomas Müller | 2016-01-25 | 2 | -1/+3 |
| | | | | |||||
| * | | | Assert that User::triggerChange is called upon avatar change | Thomas Müller | 2016-01-25 | 1 | -3/+7 |
| | | | | |||||
| * | | | Changing the avatar of the user emits the changeUser event which triggers ↵ | Thomas Müller | 2016-01-25 | 5 | -21/+34 |
| | | | | | | | | | | | | | | | | update of the system addressbook | ||||
* | | | | Merge pull request #21894 from owncloud/refactor-csrf | Thomas Müller | 2016-01-26 | 17 | -79/+764 |
|\ \ \ \ | | | | | | | | | | | Add new CSRF manager for unit testing purposes | ||||
| * | | | | Regenerate CSRF token upon login | Lukas Reschke | 2016-01-25 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | Otherwise somebody else might be able to note down the CSRF token before login on a shared computer. | ||||
| * | | | | Add new CSRF manager for unit testing purposes | Lukas Reschke | 2016-01-25 | 17 | -79/+762 |
| | | | | | | | | | | | | | | | | | | | | This adds a new CSRF manager for unit testing purposes, it's interface is based upon https://github.com/symfony/security-csrf. Due to some of our required custom changes it is however not possible to use the Symfony component directly. | ||||
* | | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-01-26 | 224 | -306/+90 |
| | | | | | |||||
* | | | | | Merge pull request #21892 from owncloud/issue-21890-parameters | Thomas Müller | 2016-01-25 | 9 | -21/+64 |
|\ \ \ \ \ | |_|/ / / |/| | | | | Add parameters types to IQueryBuilder | ||||
| * | | | | Replace other usages | Joas Schilling | 2016-01-25 | 8 | -21/+25 |
| | | | | | |||||
| * | | | | Add parameters to public interface | Joas Schilling | 2016-01-25 | 1 | -0/+39 |
| | |_|/ | |/| | | |||||
* | | | | Merge pull request #21885 from owncloud/add-size-minus-zero-to-avatar | Thomas Müller | 2016-01-25 | 3 | -18/+31 |
|\ \ \ \ | | | | | | | | | | | Adding support of -1 as size to be passed into get and getFile | ||||
| * | | | | Adding support of -1 as size to be passed into get and getFile | Thomas Müller | 2016-01-25 | 3 | -18/+31 |
| |/ / / | |||||
* | | | | Merge pull request #21830 from owncloud/systemtags-sidebar-permissions | Thomas Müller | 2016-01-25 | 9 | -249/+460 |
|\ \ \ \ | |/ / / |/| | | | Systemtags sidebar permissions | ||||
| * | | | System tags sidebar selector now respects permissions | Vincent Petry | 2016-01-25 | 8 | -248/+447 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | For admins: display the namespace behind the tag name. For users: no namespace, don't display non-assignable tags in the dropdown, display already assigned non-assignable tags with a different style | ||||
| * | | | Expose whether user is an admin through a method | Vincent Petry | 2016-01-25 | 1 | -1/+13 |
|/ / / | | | | | | | | | | Which is nicer than an obscure global variable | ||||
* | | | Merge pull request #18444 from owncloud/occ-config-types | Thomas Müller | 2016-01-25 | 6 | -73/+413 |
|\ \ \ | | | | | | | | | occ config:system:set can now set other value types | ||||
| * | | | Allow array recursion in get | Joas Schilling | 2016-01-14 | 2 | -6/+31 |
| | | | | |||||
| * | | | Allow deleting a nested system config value | Joas Schilling | 2016-01-14 | 3 | -16/+156 |
| | | | | |||||
| * | | | Retain backwards compatibility | Joas Schilling | 2016-01-14 | 2 | -76/+71 |
| | | | | |||||
| * | | | occ config:system:set can now set other value types | Robin McCorkell | 2016-01-14 | 2 | -52/+232 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integers, doubles, booleans and even arrays can now be set, with the --type=... option. Array setting can be specified by passing multiple name arguments, e.g. `./occ config:system:set redis port --value=123 --type=integer` | ||||
* | | | | Merge pull request #21401 from owncloud/dav-cache-getchildren | Thomas Müller | 2016-01-25 | 3 | -7/+32 |
|\ \ \ \ | | | | | | | | | | | Put nodes from Directory->getChildren in the ObjectTree cache | ||||
| * | | | | Put nodes from Directory->getChildren in the ObjectTree cache | Robin Appelman | 2016-01-17 | 3 | -7/+32 |
| | | | | | |||||
* | | | | | Merge pull request #21424 from owncloud/appversions | Thomas Müller | 2016-01-25 | 2 | -21/+11 |
|\ \ \ \ \ | | | | | | | | | | | | | Use appConfig to get app versions | ||||
| * | | | | | Faster AppConfig->getValues | Robin Appelman | 2016-01-11 | 1 | -7/+6 |
| | | | | | | |||||
| * | | | | | Use appconfig for getAppVersions | Robin Appelman | 2016-01-11 | 1 | -14/+5 |
| | | | | | | |||||
* | | | | | | Merge pull request #21806 from owncloud/mdusher-master | Thomas Müller | 2016-01-25 | 1 | -3/+3 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | [jenkins] Added ' to characters allowed in the username | ||||
| * | | | | | | fix error message and comment | Morris Jobke | 2016-01-20 | 1 | -2/+2 |
| | | | | | | | |||||
| * | | | | | | Added ' to characters allowed in the username | Michael U | 2016-01-20 | 1 | -2/+2 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #21811 from owncloud/fix-unauthenticated-avatar | Thomas Müller | 2016-01-25 | 1 | -2/+5 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Show default placeholder if avatar image can't be fetched | ||||
| * | | | | | | | Show default placeholder if avatar image can't be fetched | Morris Jobke | 2016-01-20 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes owncloud/documents#601 * ref #14564 | ||||
* | | | | | | | | Merge pull request #21844 from owncloud/drop-image-path | Thomas Müller | 2016-01-25 | 8 | -37/+25 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Remove OC_Helper::imagePath and use the proper public interface | ||||
| * | | | | | | | | Remove OC_Helper::imagePath and use the proper public interface | Morris Jobke | 2016-01-24 | 8 | -37/+25 |
| | | | | | | | | | |||||
* | | | | | | | | | Merge pull request #21862 from owncloud/sync-certificates-with-upstream | Thomas Müller | 2016-01-25 | 1 | -119/+60 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [master] Sync certificates with upstream | ||||
| * | | | | | | | | | Sync certificates with upstream | Lukas Reschke | 2016-01-22 | 1 | -119/+60 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #21878 from owncloud/fix-apps-management-templating | Thomas Müller | 2016-01-25 | 1 | -2/+2 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Include author and license in l10n string to be able to change order | ||||
| * | | | | | | | | | | Includ author and license in l10n string to be able to change order | Morris Jobke | 2016-01-25 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes #21874 | ||||
* | | | | | | | | | | | Merge pull request #21879 from owncloud/remove-unused-code | Thomas Müller | 2016-01-25 | 1 | -1/+0 |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | remove unused variable | ||||
| * | | | | | | | | | | remove unused variable | Morris Jobke | 2016-01-25 | 1 | -1/+0 |
|/ / / / / / / / / / | |||||
* | | | | | | | | | | Merge pull request #21877 from owncloud/fix_dav_app | Lukas Reschke | 2016-01-25 | 1 | -0/+2 |
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | Add missing use statements for IGroupManager and IUserSession | ||||
| * | | | | | | | | | Add missing use statements for IGroupManager and IUserSession | Roeland Jago Douma | 2016-01-25 | 1 | -0/+2 |
|/ / / / / / / / / | |||||
* | / / / / / / / | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-01-25 | 16 | -40/+86 |
| |/ / / / / / / |/| | | | | | | |