Index of topic texts available.
()
| 2642 | return 'Search Results', contents |
| 2643 | |
| 2644 | def html_topics(): |
| 2645 | """Index of topic texts available.""" |
| 2646 | |
| 2647 | def bltinlink(name): |
| 2648 | return '<a href="topic?key=%s">%s</a>' % (name, name) |
| 2649 | |
| 2650 | heading = html.heading( |
| 2651 | '<strong class="title">INDEX</strong>', |
| 2652 | ) |
| 2653 | names = sorted(Helper.topics.keys()) |
| 2654 | |
| 2655 | contents = html.multicolumn(names, bltinlink) |
| 2656 | contents = heading + html.bigsection( |
| 2657 | 'Topics', 'index', contents) |
| 2658 | return 'Topics', contents |
| 2659 | |
| 2660 | def html_keywords(): |
| 2661 | """Index of keywords.""" |
no test coverage detected