~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/help/toc.html

  • Committer: William Grant
  • Date: 2010-02-15 05:37:50 UTC
  • Revision ID: grantw@unimelb.edu.au-20100215053750-hihmegnp8e7dshc2
Ignore test coverage files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
  <body>
7
7
    <h1>Help</h1>
8
8
    <div id="ivle_padding">
9
 
      <py:def function="show_toc(toc_part, path)">
10
 
        <py:for each="part in toc_part">
11
 
          <py:if test="isinstance(toc_part[part], dict)">
12
 
            <li><strong>${part}</strong>
 
9
      <py:def function="show_toc(helptree)">
 
10
        <py:for each="item in helptree.values()">
 
11
          <py:if test="isinstance(item, HelpTree)">
 
12
            <li><strong>${item.name}</strong>
13
13
              <ul>
14
 
                ${show_toc(toc_part[part], path + '/' + part)}
 
14
                ${show_toc(item)}
15
15
              </ul>
16
16
            </li>
17
17
          </py:if>
18
 
          <py:if test="isinstance(toc_part[part], basestring)">
19
 
            <li><a href="${path + '/' + part}">${part}</a></li>
 
18
          <py:if test="isinstance(item, HelpEntry)">
 
19
            <li><a href="${req.publisher.generate(item)}">${item.name}</a></li>
20
20
          </py:if>
21
21
        </py:for>
22
22
      </py:def>
23
23
      <ul>
24
 
        ${show_toc(toc, '/+help')}
 
24
        ${show_toc(context)}
25
25
        <li><a href="/+tos">Terms of Service</a></li>
26
26
      </ul>
27
27
    </div>