Sourcecode in Site/edit.skin:
1: <form id="prefs" method="post" action="<% response.action %>">
2: <table border="0" cellspacing="0" cellpadding="2">
3: <tr>
4: <td colspan="2" nowrap="nowrap"><strong><a name="general">General</a></strong></td>
5: </tr>
6: <tr>
7: <td class="small" nowrap="nowrap">Title:</td>
8: <td nowrap="nowrap"><% site.title as="editor" size="20" %></td>
9: </tr>
10: <tr>
11: <td class="small" nowrap="nowrap">Tagline:</td>
12: <td nowrap="nowrap"><% site.tagline as="editor" size="40" %></td>
13: </tr>
14: <tr>
15: <td class="small" nowrap="nowrap">Language:</td>
16: <td nowrap="nowrap"><% site.localechooser %></td>
17: </tr>
18: <tr>
19: <td class="small" nowrap="nowrap">Time zone:</td>
20: <td nowrap="nowrap"><% site.timezonechooser %></td>
21: </tr>
22: <tr>
23: <td class="small" nowrap="nowrap">Long date format:</td>
24: <td nowrap="nowrap"><% site.longdateformat as="chooser" size="20" %></td>
25: </tr>
26: <tr>
27: <td class="small" nowrap="nowrap">Short date format:</td>
28: <td nowrap="nowrap"><% site.shortdateformat as="chooser" size="20" %></td>
29: </tr>
30: <tr>
31: <td class="small" nowrap="nowrap">Days on front page:</td>
32: <td nowrap="nowrap"><% site.showdays as="editor" size="5" maxlength="2" %></td>
33: </tr>
34: <tr>
35: <td class="small" nowrap="nowrap">Site is public:</td>
36: <td nowrap="nowrap"><% site.online as="editor" %></td>
37: </tr>
38: <tr>
39: <td class="small" nowrap="nowrap">Allow comments:</td>
40: <td nowrap="nowrap"><% site.hasdiscussions as="editor" %></td>
41: </tr>
42: <tr>
43: <td class="small" valign="top" nowrap="nowrap">Allow contributions:</td>
44: <td><% site.usermaycontrib as="editor" %><br /><span class="small">Enabling this option means that every registered antville user may create stories.</span></td>
45: </tr>
46: <tr>
47: <td class="small" nowrap="nowrap">Enable archive:</td>
48: <td nowrap="nowrap"><% site.showarchive as="editor" %></td>
49: </tr>
50: <tr>
51: <!-- FIXME: should site.email be dropped? afaik, bounces should be sent to sys.email? [tobi] -->
52: <td class="small" valign="top" nowrap="nowrap">e-mail address:</td>
53: <td><% site.email as="editor" %><br /><span class="small">This e-mail address will be used for sending confirmation mails, i.e. when a user registers or signs up a site.</span></td>
54: </tr>
55: <tr>
56: <td class="small" valign="top" nowrap="nowrap">Notify updates:</td>
57: <td><% site.enableping as="editor" %><br /><span class="small">If this option is enabled <a href="http://www.weblogs.com">weblogs.com</a> will be notified when your site is updated.</span></td>
58: </tr>
59: <tr>
60: <td class="small" valign="top" nowrap="nowrap">Layout:</td>
61: <td><% site.layoutchooser firstOption="--- choose layout ---" %><br /><span class="small">Choose the layout to use for your site. <% site.link to="layouts"
62: text="Go to the layouts page" %> to browse, manage or test-drive the list
63: of available layouts.</span></td>
64: </tr>
65: <tr>
66: <td class="small" valign="top" nowrap="nowrap">Context menu:</td>
67: <td><span class="small"><% site.link to="menuext.reg" text="Click here" %> to install a context menu to directly blog to this site from your Windows® desktop.</span></td>
68: </tr>
69: <tr>
70: <td colspan="2" nowrap="nowrap"><div class="listSeparator"> </div>
71: <strong><a name="spamfilter">Referrer spam filter</a></strong></td>
72: </tr>
73: <tr>
74: <td class="small" valign="top">Enter one <a href="http://devedge.netscape.com/library/manuals/2000/javascript/1.5/reference/regexp.html">filter pattern</a> per line to be applied on every URL in the referrer and backlink lists.</td>
75: <td nowrap="nowrap" valign="top"><% site.preferences name="spamfilter" as="editor" cols="30" rows="7" %></td>
76: </tr>
77:
78: <% site.notification %>
79:
80: <% site.modulePreferences %>
81:
82: <tr> <td></td> <td nowrap="nowrap"><br /><% input type="submit"
83: name="save" value="Save" %> <% input type="submit"
84: name="cancel" value="Cancel" %></td> </tr> </table> </form>
85:
|