summaryrefslogtreecommitdiffstats
path: root/settings/ajax
Commit message (Collapse)AuthorAgeFilesLines
* Migrate personal certificate handling into AppFramework controllersLukas Reschke2015-04-202-80/+0
| | | | Also added unit-tests and better error-handling
* Removing left overs from old encryption appThomas Müller2015-04-073-132/+0
|
* Correctly purge the cache when an app is disabled via cliJoas Schilling2015-04-012-7/+0
|
* Add check for activated local memcacheLukas Reschke2015-03-281-40/+0
| | | | | | Also used the opportunity to refactor it into an AppFramework controller so that we can unit test it. Fixes https://github.com/owncloud/core/issues/14956
* Update license headersJenkins for ownCloud2015-03-2618-30/+394
|
* Add wrapper for GuzzleLukas Reschke2015-03-251-1/+1
|
* Revert "Updating license headers"Morris Jobke2015-02-2618-385/+33
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-2318-33/+385
|
* This is an arrayLukas Reschke2015-02-131-1/+1
|
* Manually type-case all AJAX filesLukas Reschke2015-02-1313-17/+17
| | | | | | This enforces proper types on POST and GET arguments where I considered it sensible. I didn't update some as I don't know what kind of values they would support :see_no_evil: Fixes https://github.com/owncloud/core/issues/14196 for core
* adapt decrypt all and restore/delete key backups to the new folder structure ↵Bjoern Schiessle2015-01-132-17/+6
| | | | for encryption key introduced with OC8
* Cache responses from the AppStore serverLukas Reschke2015-01-094-0/+13
| | | | | | | | | | Otherwise every time the AppStore was opened a lot of connections to the AppStore server were made which resulted in a terrible performance. This changeset will cache the response for a sensible time so that only the first request will be somewhat slow. Performance changes: - Loading a category took previously more than 3 seconds on my machine. Now for every follow-up request it takes less than 200ms, resulting in a performance gain of 1950% - Loading the category list took previously about 750ms - now it takes 154ms, a total performance gain of 395%
* add Download logfile button to admin settingsGeorg Ehrke2015-01-072-34/+0
| | | | | | | | | | | | | | | | | | | | add logSettingsController add download logfile button move getEntries to LogSettingsController move set log level to logsettingscontroller.php add warning if logfile is bigger than 100MB add unit test for set log level fix typecasting, add new line at EoF show log and logfile download only if log_type is set to owncloud add unit test for getFilenameForDownload
* Mail address of users is now changable in the user managementMorris Jobke2014-12-181-15/+0
| | | | | | | | | | | * introduced new route settings/users/{id}/mailAddress * kept old responses * better error messages * dropped lostpassword.php from settings/ajax * cleaned up the UserList.add() and hand in user object instead of each attribute as another parameter * check for change permission of mail address * proper response messages
* Merge pull request #12611 from owncloud/use-uid-instead-of-loginnameLukas Reschke2014-12-101-1/+1
|\ | | | | Use UID instead of login name
| * Use UID instead of login nameLukas Reschke2014-12-041-1/+1
| | | | | | | | Login name can be something different and thus I'm pretty sure this will break in combination with external auth providers such as LDAP.
* | Fix namespace of Files_Encryption outside of the appJoas Schilling2014-12-091-1/+1
| |
* | reduce OC_Preferences, OC_Config and \OCP\Config usageMorris Jobke2014-12-083-3/+3
| | | | | | | | | | | | | | | | | | | | * files_encryption * files_versions * files_trashbin * tests * status.php * core * server container
* | Add REST route for user & group managementLukas Reschke2014-12-086-258/+0
| | | | | | | | First step of a somewhat testable user management. - I know, the JSON returns are in an ugly format but the JS expects it that way. So let's keep it that way until we have time to fix the JS in the future.
* | Check for working .htaccess via AJAXLukas Reschke2014-12-061-2/+3
|/ | | | Fixes https://github.com/owncloud/core/issues/12650
* Migrate "setsecurity.php" to the AppFrameworkLukas Reschke2014-11-031-21/+0
| | | | | | | | | | | | Add switch to enforce SSL for subdomains Add unit tests Add test for boolean values Camel-case Fix ugly JS
* Migrate new app settings to AppFrameworkLukas Reschke2014-10-152-95/+0
| | | | Let's migrate those two new files.
* introduce new app page layoutThomas Müller2014-10-154-77/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filter installed and not-installed apps properly kill unneeded file load category 'Installed' on page load adding documentation links new apps mgmt: first style adjustment apps mgmt: only show license and preview if they exist adding buttons new apps mgmt: fix for mobile use app icon if available new apps mgmt: position enable/disable toggle to the right new apps mgmt: proper display of icons or previews new apps mgmt: fix loading spinner reenable group selection for apps new apps mgmt: position enable button normally again new apps mgmt: clarify wording from 'Installed' to 'Enabled' reintroduce enable/disable Move rating image path generation to client-side Move expression outside of l10n fix group handling add buttons for 'More apps' and 'Add your app' again disable changed date of app for now adding recommended label style 'Recommended' app tag fixing php warning sort by rating adding meta-category 'Recommended' Only show existing documentation links lacy loading of screenshots making group based app activation work again adding support to get the app icon not only by the app name but also simply by the fixed name 'app.svg' adding app.svg for all core apps query string '?installed' is not longer needed update and uninstall is back + error feedback remove unneeded parameter fix alignment of 'recommended' label
* Moved WebDAV and internet checks to client side JSVincent Petry2014-09-231-0/+23
| | | | | | | - Added setup checks in JavaScript - Moved isWebDAVWorking to JS using SetupChecks - Moved internet connection checks to an ajax call that goes through the server
* Remove excludegroup.phpVincent Petry2014-09-091-18/+0
| | | | The ajax call is now using ajax/appconfig.php instead
* Merge pull request #10740 from owncloud/fix-everyone-group-countLukas Reschke2014-09-081-0/+49
|\ | | | | Using countUsers method to return true count of users
| * Using countUsers method to return true count of usersClark Tomlinson2014-09-051-0/+49
| |
* | Check for admin user instead of subadminLukas Reschke2014-09-081-1/+1
| |
* | Merge pull request #10420 from owncloud/external-share-self-signedLukas Reschke2014-08-312-0/+39
|\ \ | | | | | | Make external shares work with imported self signed certificates
| * | Add unit tests and fix rootcerts creation bugLukas Reschke2014-08-311-3/+4
| | |
| * | Cleanup certificate codeRobin Appelman2014-08-311-7/+6
| | |
| * | remove outdated checksRobin Appelman2014-08-312-4/+0
| | |
| * | Move certificate management interface from files_external to coreRobin Appelman2014-08-312-0/+43
| |/
* / Use public api for getting l10nRobin Appelman2014-08-3114-17/+17
|/
* Redirect user after clicking on linkLukas Reschke2014-08-221-3/+3
| | | | Use DI
* Add a trusted domain wizardLukas Reschke2014-08-211-2/+10
| | | | | | Adds a little button to the trusted domain warning, if an admin clicks on the warning he will be redirected to ownCloud and asked whether he want to trust this domain. By far not the cleanest code, or clean at all, but does the job and I don't see a reason to make a lot of changes for this little improvement.
* Merge pull request #9866 from owncloud/app-upgradeRobin Appelman2014-08-191-0/+3
|\ | | | | Don't do app upgrades in the background
| * Set maintaince mode when updating an app from the app storeRobin Appelman2014-08-041-0/+3
| |
* | properly encode groups as json, not ',' separatedJörn Friedrich Dreyer2014-08-181-3/+3
|/
* Merge pull request #9750 from owncloud/issue/9745Vincent Petry2014-07-211-7/+9
|\ | | | | Correctly use groups parameter only when its not empty
| * Correctly use groups parameter only when its not emptyJoas Schilling2014-07-211-7/+9
| | | | | | | | Fix #9745
* | Do not force isAdmin as true and so the list is filtered correctlyJoas Schilling2014-07-211-3/+1
| |
* | Fix username for subadmins and only send subadmin groupsJoas Schilling2014-07-211-2/+5
|/ | | | Fix #9748
* remove dead codeArthur Schiwon2014-07-141-7/+7
| | | | | | | | | | do not filter groups. but update the user count according to the filter improve phpdoc improve metadata runtime cache add metadata tests
* magic strings - bad kungfuThomas Müller2014-07-091-0/+3
|
* skip certain tests for shipped appsGeorg Ehrke2014-06-131-1/+4
|
* Merge branch 'master' into update_shipped_apps_from_appstoreGeorg Ehrke2014-06-055-15/+98
|\ | | | | | | | | | | Conflicts: lib/private/app.php settings/templates/apps.php
| * Merge pull request #8264 from owncloud/app-enable-by-groupicewind19912014-06-031-1/+3
| |\ | | | | | | Add the option to enable apps only for specific groups
| | * Add option to enable app for specific groupsRobin Appelman2014-06-031-1/+3
| | |
| * | remove group rename stuff, there is not support in the backends yet. to do ↵Arthur Schiwon2014-06-021-24/+0
| | | | | | | | | | | | for oc8.