summaryrefslogtreecommitdiff
path: root/.templates/editpage.tmpl
blob: f43d7232fdbc96ac269c61b4de97bc83fb05b3ec (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<TMPL_VAR JAVASCRIPT>
<TMPL_VAR MESSAGE>
<br />
<TMPL_VAR FORM-START>
<TMPL_VAR FIELD-DO>
<TMPL_VAR FIELD-SID>
<TMPL_VAR FIELD-FROM>
<TMPL_VAR FIELD-RCSINFO>
<TMPL_VAR FIELD-NEWFILE>
<TMPL_IF NAME="PAGE_SELECT">
<label for="page" class="inline">Page location:</label><TMPL_VAR FIELD-PAGE>
<label for="type" class="inline">Page type:</label><TMPL_VAR FIELD-TYPE>
<TMPL_ELSE>
<TMPL_VAR FIELD-PAGE>
<TMPL_VAR FIELD-TYPE>
</TMPL_IF>
<div class="editcontentdiv">
<TMPL_VAR FIELD-EDITCONTENT><br />
</div>
<TMPL_IF NAME="CAN_COMMIT">
<label for="editmessage" class="block">Optional description of this change:</label>
<TMPL_VAR FIELD-EDITMESSAGE><br />
</TMPL_IF>

<div class="copyright_assignment_notice">

<p>By contributing to this page, you agree to assign copyright for
your contribution to the Free Software Foundation.  The Free Software
Foundation promises to always use a free documentation license (as per
our criteria of free documentation) when publishing your contribution.
We grant you back all your rights under copyright, including the
rights to copy, modify, and redistribute your contributions.</p>

<p>We're requiring these copyright assignments, so that we'll easily
be able to include your contributions in official GNU documentation,
such as the GNU Hurd manual, etc.  Send email to <a
href="mailto:hurd-maintainers@gnu.org">hurd-maintainers@gnu.org</a>
if there are questions.</p>

</div>

<TMPL_VAR FORM-SUBMIT>
<TMPL_VAR HELPONFORMATTINGLINK>
<TMPL_IF NAME="FIELD-ATTACHMENT">
<a class="toggle" href="#attachments">Attachments</a>
</TMPL_IF>
<TMPL_VAR FIELD-SUBSCRIBE>
<TMPL_IF NAME="FIELD-ATTACHMENT">
<div class="<TMPL_VAR ATTACHMENTS-CLASS>" id="attachments">
<div id="fileupload"> 
<script>
$(function () { $('#fileupload').fileupload(); }); // initialize upload widget
</script>
<script id="template-upload" type="text/x-jquery-tmpl"> 
    <tr class="template-upload{{if error}} ui-state-error{{/if}}">
        <td><input type="checkbox" name="attachment_select" value="${name}" />${name}</td>
        {{if error}}
        <td class="error" colspan="2">failed!</td>
        {{else}}
        <td class="progress" colspan="2"><div></div></td>
        <td class="start"><button>Start</button></td>
        {{/if}}
        <td class="cancel"><button>Cancel</button></td>
    </tr>
</script> 
<script id="template-download" type="text/x-jquery-tmpl"> 
    <tr class="template-download{{if error}} ui-state-error{{/if}}">
        <td><input type="checkbox" checked name="attachment_select" value="${name}" />${name}</td>
        <td>${humansize}</td>
        {{if error}}
        <td class="error" colspan="2">failed!</td>
        {{else}}
        <td>${stored_msg}</td>
        {{/if}}
    </tr>
</script> 
<div class="fileupload-content">
<table class="files">
<TMPL_LOOP NAME="ATTACHMENT_LIST">
<tr><td><input type="checkbox" name="attachment_select" value="<TMPL_VAR NAME ESCAPE="HTML">" /><TMPL_VAR LINK></td><td><TMPL_VAR SIZE></td><td><TMPL_VAR MTIME></td></tr>
</TMPL_LOOP>
</table>
</div>
<TMPL_VAR FIELD-ATTACHMENT>
<noscript><TMPL_VAR FIELD-UPLOAD></noscript>
<TMPL_VAR FIELD-LINK><TMPL_VAR FIELD-RENAME><TMPL_VAR FIELD-REMOVE>
</div> 
</div>
</TMPL_IF>
<TMPL_VAR FORM-END>
<TMPL_VAR WMD_PREVIEW>
<TMPL_IF NAME="PAGE_PREVIEW">
<hr />
<div class="header">
<span>Page preview:</span>
</div>
<div id="preview">
<TMPL_VAR PAGE_PREVIEW>
</div>
</TMPL_IF>
<TMPL_IF NAME="PAGE_DIFF">
<hr />
<div class="header">
<span>Diff:</span>
</div>
<div id="diff">
<TMPL_VAR PAGE_DIFF>
</div>
</TMPL_IF>