summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Fix system tags proppatch with booleansVincent Petry2016-01-273-10/+53
| | | | | | | Backbone webdav adapter now converts booleans and ints to strings. Fixed system tags to use "true" / "false" strings for booleans instead of 1 / 0.
* Deprecate getFirstWeekDay() and getDateFormat() in favor of l()Joas Schilling2016-01-261-2/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-01-264-10/+12
|
* System tags sidebar selector now respects permissionsVincent Petry2016-01-255-244/+405
| | | | | | | 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 methodVincent Petry2016-01-251-1/+13
| | | | Which is nicer than an obscure global variable
* Merge pull request #18444 from owncloud/occ-config-typesThomas Müller2016-01-253-21/+191
|\ | | | | occ config:system:set can now set other value types
| * Allow array recursion in getJoas Schilling2016-01-141-3/+16
| |
| * Allow deleting a nested system config valueJoas Schilling2016-01-142-10/+52
| |
| * Retain backwards compatibilityJoas Schilling2016-01-141-51/+56
| |
| * occ config:system:set can now set other value typesRobin McCorkell2016-01-141-9/+119
| | | | | | | | | | | | | | 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 #21811 from owncloud/fix-unauthenticated-avatarThomas Müller2016-01-251-2/+5
|\ \ | | | | | | Show default placeholder if avatar image can't be fetched
| * | Show default placeholder if avatar image can't be fetchedMorris Jobke2016-01-201-2/+5
| | | | | | | | | | | | | | | * fixes owncloud/documents#601 * ref #14564
* | | Merge pull request #21844 from owncloud/drop-image-pathThomas Müller2016-01-251-1/+1
|\ \ \ | | | | | | | | Remove OC_Helper::imagePath and use the proper public interface
| * | | Remove OC_Helper::imagePath and use the proper public interfaceMorris Jobke2016-01-241-1/+1
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2016-01-256-22/+44
|/ / /
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-01-246-24/+54
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-01-23138-6/+224
| | |
* | | Merge pull request #21850 from owncloud/more-output-for-integrity-checkThomas Müller2016-01-221-0/+6
|\ \ \ | | | | | | | | Print output for integrity check during ./occ upgrade
| * | | Print output for integrity check during ./occ upgradeMorris Jobke2016-01-221-0/+6
| | | |
* | | | Merge pull request #21849 from owncloud/add-custom-marker-into-htaccessThomas Müller2016-01-221-0/+1
|\ \ \ \ | | | | | | | | | | Add custom marker into htaccess and execute integrity check after installation
| * | | | Run on installerLukas Reschke2016-01-221-0/+1
| | | | |
* | | | | Merge pull request #21816 from ↵Thomas Müller2016-01-222-9/+19
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | owncloud/require-a-specific-path-instead-of-autoguessing Use path instead of app id for occ app signing
| * | | | Use path instead of app idLukas Reschke2016-01-202-9/+19
| | |/ / | |/| | | | | | | | | | | | | | | | | | This change requires the usage of a path instead of the App ID when signing code. This has the advantage that developers can also sign code under a different location to make it easier. (e.g. remove `.git`, …) Also it adds an example command usage as well as a link to the documentation
* | | | Add a default app icon for apps that don't have oneJoas Schilling2016-01-221-0/+4
| |/ / |/| |
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-01-22148-1140/+1140
| | |
* | | Move getDescriptiveTag to coreJoas Schilling2016-01-214-3/+99
| | |
* | | Merge pull request #21797 from owncloud/proper-controller-in-coreThomas Müller2016-01-219-45/+14
|\ \ \ | | | | | | | | Move controller in core/ to a common subfolder
| * | | move lost controller to core/controllerMorris Jobke2016-01-206-38/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * lostpassword.css is unneeded since #11696 is merged - 1b50d4f7ceb92fffe0d38f823f175cf7e419c69e * js is already in core/js * css is moved to core/css/lostpassword * template is moved to core/templates/lostpassword
| * | | move user controller to core/controllerMorris Jobke2016-01-202-2/+2
| | | |
| * | | move setup controller to core/controllerMorris Jobke2016-01-201-2/+2
| | | |
| * | | move avatar controller to core/controllerMorris Jobke2016-01-202-3/+3
| | | |
* | | | Merge pull request #20847 from owncloud/systemtags-uiThomas Müller2016-01-2112-3/+1134
|\ \ \ \ | |_|/ / |/| | | System tags sidebar section
| * | | Added system tags GUI in sidebarVincent Petry2016-01-1912-22/+1094
| | | | | | | | | | | | | | | | | | | | Added files details sidebar panel to assign/unassign/rename/delete system tags.
| * | | Implement toggleselect extension for select2Vincent Petry2016-01-191-0/+59
| | | | | | | | | | | | | | | | To make it possible to toggle selected values inside the dropdown
* | | | [tx-robot] updated from transifexJenkins for ownCloud2016-01-204-4/+48
|/ / /
* | | Make it possible to enable apps for groups only via occJoas Schilling2016-01-192-6/+37
| | |
* | | Make it possible to disable apps via the console, which are not enabled for ↵Joas Schilling2016-01-192-3/+16
| | | | | | | | | | | | the current user
* | | Make sure to list "group enabled" apps as enabledJoas Schilling2016-01-192-5/+17
|/ / | | | | | | also when they are not enabled for the current user
* | update JS humanFileSize to use KB instead of kBMorris Jobke2016-01-192-7/+7
| |
* | Run the command once againJoas Schilling2016-01-181-13/+13
| |
* | Sort the list before savingJoas Schilling2016-01-181-0/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-01-174-0/+156
| |
* | Backbone transport for WebdavVincent Petry2016-01-165-0/+736
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-01-162-0/+2
| |
* | Merge pull request #21370 from owncloud/system-certs-occThomas Müller2016-01-154-0/+226
|\ \ | | | | | | Add occ commands to manager trusted certificates
| * | Add occ commands to manager trusted certificatesRobin Appelman2016-01-134-0/+226
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-01-154-0/+34
| |/ |/|
* | [tx-robot] updated from transifexJenkins for ownCloud2016-01-144-0/+44
| |
* | Merge pull request #21676 from owncloud/fix-setup-login-input-shadowsThomas Müller2016-01-131-2/+3
|\ \ | |/ |/| fix login/setup page input shadows
| * fix login/setup page input shadowsChristoph Wurst2016-01-131-2/+3
| | | | | | | | fixes #21658