blob: 0f3aabe198f722a50a4650878c97bf89e712d370 [file] [log] [blame]
<%--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. The ASF licenses this file to You
under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. For additional information regarding
copyright in this work, please see the NOTICE file in the top level
directory of this distribution.
--%>
<%@ include file="/WEB-INF/jsps/taglibs-struts2.jsp" %>
<p class="subtitle"><s:text name="inviteMember.subtitle" /></p>
<p><s:text name="inviteMember.prompt" /></p>
<s:form action="invite!save" cssClass="form-horizontal">
<s:hidden name="salt" />
<s:hidden name="weblog" value="%{actionWeblog.handle}" />
<div class="formrow">
<label for="userName" class="formrow">
<s:text name="inviteMember.userName" /></label>
<div>
<input name="userName" id="userName" size="30" maxlength="30"
onfocus="onMemberNameFocus(true)" onkeyup="onMemberNameChange(true)" /><br />
</div>
</div>
<div class="formrow">
<label class="formrow" />&nbsp;</label>
<div>
<select id="userList" size="10" onchange="onMemberSelected()" style="width:400px"></select>
</div>
</div>
<div style="clear:left">
<label for="userName" class="formrow" />
<s:text name="inviteMember.permissions" /></label>
<input type="radio" name="permissionString" value="admin" />
<s:text name="inviteMember.administrator" />
<input type="radio" name="permissionString" value="post" checked />
<s:text name="inviteMember.author" />
<input type="radio" name="permissionString" value="edit_draft" />
<s:text name="inviteMember.limited" />
</div>
<br />
<s:submit id="inviteButton" value="%{getText('inviteMember.button.save')}" cssClass="btn btn-default"/>
<s:submit value="%{getText('generic.cancel')}" action="invite!cancel" cssClass="btn"/>
</s:form>
<script>
<%@ include file="/roller-ui/scripts/ajax-user.js" %>
$(document).ready(function () {
$('#userName').focus();
$('#inviteButton').attr("disabled", true);
});
function onMemberNameChange(enabled) {
u = userURL;
if (enabled != null) {
u = u + "&enabled=" + enabled;
}
userName = $('#userName').val();
if (userName.length > 0) {
u = u + "&startsWith=" + userName;
}
sendUserRequest(u);
}
function onMemberSelected() {
userName = $('#userList').children("option:selected").val();
if (userName !== '') {
$('#inviteButton').attr("disabled", false);
}
}
function onMemberNameFocus(enabled) {
if (!init) {
init = true;
u = userURL;
if (enabled != null) {
u = u + "&enabled=" + enabled;
}
sendUserRequest(u);
} else {
$('#inviteButton').attr("disabled", false);
}
}
</script>