From: raghunayyar Date: Wed, 12 Feb 2014 05:30:10 +0000 (+0530) Subject: Initial Commit : User Search, Fixes Typos X-Git-Tag: v7.0.0alpha2~144^2~97 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c7af9cd6dd81072cf686ec123322c4241322bf73;p=nextcloud-server.git Initial Commit : User Search, Fixes Typos --- diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php index b770aaaf311..0a79527c219 100644 --- a/settings/ajax/creategroup.php +++ b/settings/ajax/creategroup.php @@ -7,7 +7,7 @@ $groupname = $_POST["groupname"]; // Does the group exist? if( in_array( $groupname, OC_Group::getGroups())) { - OC_JSON::error(array("data" => array( "message" => $l->t("Unable to add group") ))); + OC_JSON::error(array("data" => array( "message" => $l->t("Group already exists") ))); exit(); } diff --git a/settings/css/settings.css b/settings/css/settings.css index d0a64dd6bda..696fe01a91e 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -7,7 +7,7 @@ input#openid, input#webdav { width:20em; } #user-controls { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; - position: fixed; right: 0; left:380px; height: 44px; width: 100%; + position: fixed; right: 0; left:380px; height: 44px; padding: 0; margin: 0; background: #eee; border-bottom: 1px solid #e7e7e7; z-index: 50; @@ -57,6 +57,8 @@ span.utils .delete { margin: 3px; top: 4px; } #app-navigation ul li:hover > span.utils .delete { display: block; } +#usersearchform { position: absolute; top: 4px; right: 10px; } +#usersearchform label { font-weight: 700; } form { display:inline; } table.grid th { height:2em; color:#999; } table.grid th, table.grid td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; } diff --git a/settings/js/users.js b/settings/js/users.js index 8107a98df0b..c1a52ef9bee 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -620,6 +620,17 @@ $(document).ready(function () { } ) }); + // Implements User Search + $('#usersearchform input').keyup(function() { + var inputVal = $(this).val(); + $('table tbody tr td.name').each(function() { + if ($('table tbody tr').text().search(new RegExp(inputVal, "i")) < 0) { + $('table tbody tr').fadeOut(); + } else { + $('table tbody tr').show(); + } + }); + }); // Handle undo notifications OC.Notification.hide(); diff --git a/settings/templates/users.php b/settings/templates/users.php index daf0ee49e4a..89c83c3bd41 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -44,7 +44,7 @@ $_['subadmingroups'] = array_flip($items);
- t('Default Storage'));?> + t('Default Quota'));?> +