root/trunk/calendar3/webadmin/war/docs/system/modSyspars.jsp

Revision 60 (checked in by johnsa, 7 years ago)

added system parameters form to admin stylesheet
updated xml and added views for use in pull down (select) list
added success message to UpdateSysparsAction?
added unremoveable value to subscriptions xml

  • Property svn:eol-style set to native
Line 
1 <%@ taglib uri='struts-bean' prefix='bean' %>
2 <%@ taglib uri='struts-logic' prefix='logic' %>
3 <%@ taglib uri='struts-html' prefix='html' %>
4 <%@ taglib uri='struts-genurl' prefix='genurl' %>
5 <html:xhtml/>
6
7 <%@include file="/docs/header.jsp"%>
8
9 <page>modSyspars</page>
10 <bean:define id="systemParams" name="peForm" property="syspars"/>
11 <system>
12   <defaultUserViewName><bean:write name="systemParams" property="defaultUserViewName"/></defaultUserViewName>
13   <directoryBrowsingDisallowed><bean:write name="systemParams" property="directoryBrowsingDisallowed"/></directoryBrowsingDisallowed>
14   <httpConnectionsPerUser><bean:write name="systemParams" property="httpConnectionsPerUser"/></httpConnectionsPerUser>
15   <httpConnectionsPerHost><bean:write name="systemParams" property="httpConnectionsPerHost"/></httpConnectionsPerHost>
16   <httpConnections><bean:write name="systemParams" property="httpConnections"/></httpConnections>
17   <defaultUserQuota><bean:write name="systemParams" property="defaultUserQuota"/></defaultUserQuota>
18 </system>
19
20 <views>
21   <logic:iterate name="peForm" property="views" id="view">
22     <view>
23       <name><bean:write name="view" property="name" /></name>
24     </view>
25   </logic:iterate>
26 </views>
27
28 <%@include file="/docs/footer.jsp"%>
Note: See TracBrowser for help on using the browser.