Initial Commit : User Search, Fixes Typos

This commit is contained in:
raghunayyar 2014-02-12 11:00:10 +05:30 committed by Arthur Schiwon
parent 223e342664
commit c7af9cd6dd
4 changed files with 20 additions and 3 deletions

View File

@ -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();
}

View File

@ -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; }

View File

@ -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();

View File

@ -44,7 +44,7 @@ $_['subadmingroups'] = array_flip($items);
<!-- Default storage -->
<div class="app-settings">
<div class="quota">
<span><?php p($l->t('Default Storage'));?></span>
<span><?php p($l->t('Default Quota'));?></span>
<?php if((bool) $_['isadmin']): ?>
<select class='quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>">
<option
@ -106,6 +106,10 @@ $_['subadmingroups'] = array_flip($items);
alt="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"/>
</div>
<?php endif; ?>
<form autocomplete="off" id="usersearchform">
<label><?php p($l->t( 'Search' )); ?></label>
<input type="text" class="input" />
</form>
</div>
<table class="hascontrols grid" data-groups="<?php p(json_encode($allGroups));?>">
<thead>