summaryrefslogtreecommitdiffstats
path: root/settings/js
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fixed file list sortingVincent Petry2014-08-111-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now using a natural sort algorithm that is more consistent between JS and PHP (although not perfect in some corner cases) - added OC.Util.naturalSortComparator that uses the same algo that was used for the user list - changed user list and files list to use OC.Util.naturalSortComparator - removed toLowerCase() and changed the comparator to use String.localeCompare() - added unit tests - added OC_NaturalSort that is used by OCP\Util::naturalSortCompare()
* | | Add timeout to user and group deletion notificationVincent Petry2014-09-151-4/+43
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added timeout in DeleteHandler to auto-delete after a delay. Fixed issue where OC.Notification.hide() was called twice in a row when deleting multiple entries, causing the second notification to disappear. Fixed issue where "undo" click event handler was registered multiple times when calling setNotifications() twice. Added JS unit tests for the DeleteHandler class. Refix undo users, groups feature Timeout is now cleared in cancel(). Fixed click handler name for "undo" to be able to work with multiple DeleteHandler instances (in our case one for users and one for groups) so that there is no conflict.
* | Merge pull request #10740 from owncloud/fix-everyone-group-countLukas Reschke2014-09-081-0/+11
|\ \ | | | | | | Using countUsers method to return true count of users
| * | Using countUsers method to return true count of usersClark Tomlinson2014-09-051-0/+11
| | |
* | | Add unit tests and fix rootcerts creation bugLukas Reschke2014-08-311-1/+1
| | |
* | | Cleanup routesRobin Appelman2014-08-311-2/+1
| | |
* | | Move certificate management interface from files_external to coreRobin Appelman2014-08-311-87/+128
|/ /
* | Adds 2 checkboxes at the top of userlist in the settings, to display/hide ↵Stephane V2014-08-281-0/+23
| | | | | | | | | | | | optional columns This fixes #9367.
* | Implementing moment.jsClark Tomlinson2014-08-281-3/+2
| | | | | | | | | | | | | | | | Updating Usages Removing unused method Adding JS Doc
* | Redirect user after clicking on linkLukas Reschke2014-08-221-1/+3
| | | | | | | | Use DI
* | Add a trusted domain wizardLukas Reschke2014-08-211-0/+16
| | | | | | | | | | | | 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.
* | Fix default quota settings fieldVincent Petry2014-08-121-30/+52
| | | | | | | | | | | | | | | | | | | | | | The default quota settings field is initially hidden which makes it impossible for singleSelect() to make its width measurements. This fix uses the app navigation slide "show" event to defer the singleSelect() initialization on the default quota field. Refactored setQuota() into UserList._updateQuota(). Refactored duplicate event handler code into UserList.onQuotaSelect().
* | Use global apps slide toggle logicVincent Petry2014-08-121-24/+0
|/ | | | | Remove local app settings slide logic and make it use the global one triggered by the "data-apps-slide-toggle" attribute.
* Merge pull request #10176 from owncloud/fix-install-icon-sizeMorris Jobke2014-08-051-1/+1
|\ | | | | use correct app-icon class for new apps as well, fix icon size
| * use correct app-icon class for new apps as well, fix icon sizeJan-Christoph Borchardt2014-08-051-1/+1
| |
* | Merge pull request #10154 from owncloud/uninstall-undefined-appitemMorris Jobke2014-08-051-1/+2
|\ \ | |/ |/| Fix undefined variable when uninstalling an app
| * Fix undefined variable when uninstalling an appRobin Appelman2014-08-041-1/+2
| |
* | Set group usercount to 0, not '', fixes #9782tomneedham2014-08-041-1/+3
|/
* Fixed wrong brackets in apps settingsDer-Jan2014-07-301-1/+1
|
* $.unique works only for DOM elementsArthur Schiwon2014-07-181-1/+3
|
* Fixed JS and CSS issues in users pageVincent Petry2014-07-173-4/+4
| | | | | | - Renamed "delete" to "deleteEntry" to make IE8 happy. - Added missing "svg" class for the "+" button - Added height to "+" button but was unable to properly align it
* Merge pull request #9628 from edozzo/masterblizzz2014-07-151-2/+12
|\ | | | | Userlist: async load doesnt fill checked group/subadmin array
| * Strinct comparsion fixDeLtAfOx2014-07-151-2/+2
| |
| * Userlist: async load doesnt fill checked group/subadmin arrayDeLtAfOx2014-07-151-2/+12
| |
* | remove dead codeArthur Schiwon2014-07-142-2/+9
|/ | | | | | | | | | do not filter groups. but update the user count according to the filter improve phpdoc improve metadata runtime cache add metadata tests
* use .filterAttr()Thomas Müller2014-07-091-4/+4
|
* use .filterAttr()Thomas Müller2014-07-091-7/+8
|
* some more cleanupThomas Müller2014-07-091-38/+36
|
* remove the group in case the last user has removed from that groupThomas Müller2014-07-091-0/+12
|
* fixing JS synatx errorsThomas Müller2014-07-092-5/+5
|
* avoid global selectorArthur Schiwon2014-07-091-1/+1
|
* increase/decrease everyone count on user creation/deletionArthur Schiwon2014-07-092-7/+41
|
* decrease user count in affected groups after user deleteArthur Schiwon2014-07-091-0/+14
|
* increment group counters when a user is createdArthur Schiwon2014-07-092-2/+12
|
* Merge pull request #9505 from stephane84/fix-9497Vincent Petry2014-07-071-0/+1
|\ | | | | Refocus input field after user creation
| * Fixes #9497Stephane V2014-07-071-0/+1
| |
* | Merge pull request #9479 from stephane84/fix-9147Morris Jobke2014-07-071-0/+1
|\ \ | | | | | | Log table design glitch in date field
| * | Bug 9147 owncloud/coreStephane V2014-07-061-0/+1
| |/ | | | | | | Added class="date" in the latest column of the log table to get everything on one line (in the ajax request).
* / improvements for uninstall buttonGeorg Ehrke2014-07-051-6/+6
|/
* Revert "hides table header while users load."Arthur Schiwon2014-07-021-2/+0
| | | | This reverts commit 0dc12a3737127aad28be12f9417d2a63601a88ff.
* hides table header while users load.raghunayyar2014-07-011-0/+2
|
* Fix test mail behaviourMorris Jobke2014-06-251-3/+3
| | | | | | | * ref #8854 * prevent default of "send test mail" button * drop unused form serialization * use display name of user for test mail
* Make sure last seen tooltip always appears even after searching and filteringArthur Schiwon2014-06-191-3/+13
|
* Migrate table layout to p layout for share settingsMorris Jobke2014-06-171-1/+2
| | | | ref #8906
* Merge pull request #8808 from owncloud/update_shipped_apps_from_appstoreGeorg Ehrke2014-06-161-0/+27
|\ | | | | Make shipped apps updatable via appstore
| * Merge branch 'master' into update_shipped_apps_from_appstoreGeorg Ehrke2014-06-057-559/+1259
| |\ | | | | | | | | | | | | | | | Conflicts: lib/private/app.php settings/templates/apps.php
| * | remove console.log in apps.jsGeorg Ehrke2014-06-041-1/+0
| | |
| * | add button for properly uninstalling appsGeorg Ehrke2014-05-311-0/+28
| | |
* | | styleArthur Schiwon2014-06-161-2/+2
| | |
* | | escape before output, fixes #9041Arthur Schiwon2014-06-161-1/+1
| | |