blob: 2c7072a9308bc0e65b05dd83a14763af7de7284c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<h1>{categoryname}</h1>
<p>{categorydescription}</p>
<h3>Sections</h3>
<ul>
<!-- BEGIN sections_list -->
<li><a href="#{sectionnum}">{sectionname}</a></li>
<!-- END sections_list -->
</ul>
<p><br/></p>
<!-- BEGIN feature_editor -->
<p>
If you put an URL in the description field, a link will be created
to this URL. Note that <strong>almost all</strong> links should point to
/docs/current, and <strong>not</strong> to individual version docs.
Only if the feature refers to something version specific should direct
version links be used.
</p>
<p><b>NOTE!</b> This page resaves the whole form when you hit save. So
if you have kept the page idle for a while, refresh before you edit
anything so you don't overwrite someone elses changes...</p>
<form method="post" action="{saveurl}">
<!-- END feature_editor -->
<div class="tblBasic">
<table border="0" cellpadding="0" cellspacing="0" class="tblBasicGrey">
{table_contents}
</table>
</div>
<!-- BEGIN feature_editor2 -->
<input type="submit" value="Save"/> <input type="reset" value="Reset"/>
</form>
<br/>
<form method="post" action="{addurl}">
<select name="groupid">{feature_groups}</select>
<input type="text" name="featurename" />
<input type="submit" value="Add new feature" />
</form>
<hr />
<h2>Groups</h2>
<form method="post" action="{saveurl}">
<input type="hidden" name="savegroup" value="1">
<div class="tblBasic">
<table border="0" cellpadding="0" cellspacing="0" class="tblBasicGrey">
<tr>
<th class="colFirst">Groupname</th>
<th class="colMid">Sort key</th>
<th class="colLast"> </th>
</tr>
{group_table_contents}
</table>
</div>
<input type="submit" value="Save groups" />
<input type="reset" value="Reset groups" />
</form>
<br/>
<form method="post" action="{addurl}">
<input type="text" name="groupname" />
<input type="submit" value="Add new group" />
</form>
<!-- END feature_editor2 -->
<!-- BEGIN feature_teaser -->
<p>If you are a contributor, click <a href="{editurl}">here</a> to edit the contents of
this page.</p>
<!-- END feature_teaser -->
|