~jelmer/pydoctor/unstable

« back to all changes in this revision

Viewing changes to pydoctor/templates/common.html

  • Committer: Jelmer Vernooij
  • Date: 2010-12-06 17:04:54 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: jelmer@samba.org-20101206170454-gmp3o2d1d2qb6n3h
Tags: 0.3+bzr567-1
* New upstream snapshot.
 + Add basic support for introspection. Closes: #538984
* Bump standards version to 3.9.1 (no changes).
* Add watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
3
          "DTD/xhtml1-strict.dtd">
 
4
<html xmlns:nevow="http://nevow.com/ns/nevow/0.1" nevow:render="all">
 
5
  <head>
 
6
    <title><nevow:slot name="title">Something</nevow:slot> : API documentation</title>
 
7
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
 
8
    <link rel="stylesheet" type="text/css" href="apidocs.css" />
 
9
    <nevow:slot name="ifusesorttable">
 
10
      <script nevow:pattern="ifusesorttable" type="text/javascript"
 
11
              src="sorttable.js"></script>
 
12
    </nevow:slot>
 
13
    <nevow:slot name="pydoctorjs">
 
14
      <script nevow:pattern="pydoctorjs" type="text/javascript"
 
15
              src="pydoctor.js"></script>
 
16
    </nevow:slot>
 
17
  </head>
 
18
  <body>
 
19
    <nevow:slot name="heading"><h1>Heading</h1></nevow:slot>
 
20
    <p>
 
21
      <span id="part"><nevow:slot name="part">Part of something</nevow:slot></span>
 
22
      <nevow:slot name="source">
 
23
        <a nevow:pattern="source">View Source</a>
 
24
      </nevow:slot>
 
25
      <nevow:slot name="inhierarchy">
 
26
        <a nevow:pattern="inhierarchy">View In Hierarchy</a>
 
27
      </nevow:slot>
 
28
    </p>
 
29
    <div>
 
30
      <nevow:slot name="extras">
 
31
        A docstring.
 
32
      </nevow:slot>
 
33
    </div>
 
34
    <nevow:slot name="docstring">
 
35
      A docstring.
 
36
    </nevow:slot>
 
37
 
 
38
    <nevow:slot name="splittingLinks" />
 
39
    <p nevow:pattern="splittingLinks">
 
40
      <a id="showSplitLink" href="#" onclick="showSplit()" class="jslink">Split Table into Classes</a>
 
41
      <a id="showBigLink" href="#" onclick="showBig()" class="jslink">Show Methods in One Table</a>
 
42
    </p>
 
43
    <div id="splitTables">
 
44
      <nevow:slot name="mainTable" />
 
45
      <nevow:slot name="baseTables" />
 
46
      <nevow:invisible nevow:pattern="baseTable">
 
47
        <p>
 
48
          Inherited from <nevow:slot name="baseName" />:
 
49
        </p>
 
50
        <nevow:slot name="baseTable" />
 
51
      </nevow:invisible>
 
52
    </div>
 
53
    <nevow:slot name="bigTable" />
 
54
    <div id="bigTable" nevow:pattern="bigTable">
 
55
    </div>
 
56
    <nevow:slot name="packageInitTable" />
 
57
 
 
58
    <nevow:slot name="childlist" />
 
59
    <address>
 
60
      <a href="index.html">API Documentation</a> for <nevow:slot name="project">Some
 
61
        Project</nevow:slot>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at <nevow:slot name="buildtime">some time</nevow:slot>.
 
62
    </address>
 
63
  </body>
 
64
</html>