1 <?xml version="1.0" encoding="utf-8"?>
2 <html xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal" xmlns:i18n="http://xml.zope.org/namespaces/i18n" metal:use-macro="context/main_template/macros/master">
4 <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
6 <body metal:fill-slot="main_no_tabs" i18n:domain="plinn" tal:omit-tag="" tal:define="form options/form">
7 <h1 i18n:translate="">Configure the Portal</h1>
9 <p i18n:translate="">This form is used to set the portal configuration
11 <form method="post" tal:attributes="action form/action">
12 <table class="TwoColumnForm">
14 <th i18n:translate="">Portal 'From' name</th>
16 <input name="email_from_name" value="" tal:attributes="value form/email_from_name"/>
17 <dl class="FieldHelp">
18 <dd i18n:translate="">When the portal generates mail, it uses this name as
19 its (apparent) sender.</dd>
24 <th i18n:translate="">Portal 'From' address</th>
26 <input name="email_from_address" value="" tal:attributes="value form/email_from_address"/>
27 <dl class="FieldHelp">
28 <dd i18n:translate="">When the portal generates mail, it uses this address
29 as its (apparent) return address.</dd>
34 <th i18n:translate="">SMTP server</th>
36 <input name="smtp_server" value="" tal:attributes="value form/smtp_server"/>
37 <dl class="FieldHelp">
38 <dd i18n:translate="">This is the address of your local SMTP (out-going
44 <th i18n:translate="">Portal title</th>
46 <input name="title" value="" tal:attributes="value form/title"/>
47 <dl class="FieldHelp">
48 <dd i18n:translate="">This is the title which appears at the top of every
54 <th i18n:translate="">Portal description</th>
55 <td class="TextField">
56 <textarea name="description" rows="3" cols="40" tal:content="form/description"/>
57 <dl class="FieldHelp">
58 <dd i18n:translate=""> This description is made available via syndicated
59 content and elsewhere. It should be fairly brief.</dd>
64 <th i18n:translate="">Keywords</th>
65 <td class="TextField">
66 <textarea name="keywords:lines" rows="6" cols="40" tal:content="form/keywords"/>
67 <dl class="FieldHelp">
68 <dd i18n:translate="">Keywords describing the portal. Type one keyword (or expression) per line.</dd>
72 <tr i18n:domain="plinn">
73 <th i18n:translate="">Copyright notice</th>
74 <td class="TextField">
75 <input name="copyright_notice" value="" tal:attributes="value form/copyright_notice"/>
76 <dl class="FieldHelp">
77 <dd i18n:translate="">Copyright notice displayed on the portal footer.</dd>
82 <th i18n:translate="">Password policy</th>
85 <input type="radio" name="validate_email:boolean" value="True" tal:attributes="checked form/validate_email"/>
86 <tal:span i18n:translate="">Generate and email members' initial
91 <input type="radio" name="validate_email:boolean" value="False" tal:attributes="checked not:form/validate_email"/>
92 <tal:span i18n:translate="">Allow members to select their initial
98 <th i18n:translate="">Portal default encoding</th>
100 <input name="default_charset" value="" disabled="disabled" tal:attributes="value form/default_charset"/>
101 <dl class="FieldHelp">
102 <dd i18n:translate="">Charset used to decode portal content strings.
103 If empty, 'ascii' is used.</dd>
108 <th i18n:translate="">
112 <input name="slide_size:int" value="" tal:attributes="value form/slide_size" size="5"/>
113 <dl class="FieldHelp">
114 <dd i18n:translate="">This is the size of the thumbnails in the photo album, in pixels.</dd>
118 <tr i18n:domain="plinn">
119 <th i18n:translate="">Default ajax options</th>
122 <input type="checkbox" name="ajax_rootClickHandler:boolean" tal:attributes="checked form/ajax_rootClickHandler"/>
123 <span i18n:translate="" tal:omit-tag="">Enable handling of all clicks over links</span>
127 <input type="checkbox" name="ajax_autoFormManager:boolean" tal:attributes="checked form/ajax_autoFormManager"/>
128 <span i18n:translate="" tal:omit-tag="">Enable handling of all forms submissions</span>
137 <metal:macro metal:use-macro="context/form_widgets/macros/buttons"/>