summaryrefslogtreecommitdiff
path: root/html/help.html
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-01-23 00:25:31 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-01-23 00:25:31 +0000
commitb2aa5bb6136f733bd983bea03239e976fe4dc6ba (patch)
treeb6b662ab840963f0b9089c90f52e9e9ef8270b55 /html/help.html
Initial commit. Ported cgit design to roundup's
Diffstat (limited to 'html/help.html')
-rw-r--r--html/help.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/html/help.html b/html/help.html
new file mode 100644
index 0000000..3b134ad
--- /dev/null
+++ b/html/help.html
@@ -0,0 +1,39 @@
+<!--
+Macros for framed help windows
+-->
+
+<!-- legend for helper search results -->
+<thead>
+<tr metal:define-macro="legend">
+ <th><b>x</b></th>
+ <th tal:repeat="prop props" tal:content="prop" i18n:translate=""></th>
+</tr>
+</thead>
+
+<table width="100%"
+ metal:define-macro="batch_navi"
+ tal:define="prev batch/previous;
+ next batch/next;
+ "
+ tal:condition="python:prev or next">
+ <tr class="navigation">
+ <th width="30%">
+ <a tal:condition="prev"
+ tal:attributes="href python:request.indexargs_url(request.classname, {'@template':'help-list', 'property': request.form['property'].value, 'properties': request.form['properties'].value, 'form': request.form['form'].value, '@startwith':prev.first, '@pagesize':prev.size})"
+ i18n:translate="" >&lt;&lt; previous</a>
+ &nbsp;
+ </th>
+ <th i18n:translate="" width="40%"><span tal:replace="batch/start" i18n:name="start"
+ />..<span tal:replace="python: batch.start + batch.length -1" i18n:name="end"
+ /> out of <span tal:replace="batch/sequence_length" i18n:name="total"
+ />
+ </th>
+ <th width="30%">
+ <a tal:condition="next"
+ tal:attributes="href python:request.indexargs_url(request.classname, {'@template':'help-list', 'property': request.form['property'].value, 'properties': request.form['properties'].value, 'form': request.form['form'].value, '@startwith':next.first, '@pagesize':next.size})"
+ i18n:translate="" >next &gt;&gt;</a>
+ &nbsp;
+ </th>
+ </tr>
+ </table>
+<!-- SHA: 5bb5e9db92d4dea06f6bd0224f34dce86020d4c2 -->