~ubuntu-branches/debian/sid/pydoctor/sid

« back to all changes in this revision

Viewing changes to pydoctor/templates/function-child.html

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2013-09-15 13:58:49 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130915135849-g206zbvqwvz0ptdg
Tags: 0.5b1+bzr603-1
* New upstream snapshot.
* Switch from cdbs to dh.
* Bump standards version to 3.9.4 (no changes).
* Update Vcs header.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<div xmlns:nevow="http://nevow.com/ns/nevow/0.1" class="function">
 
1
<div xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1" class="function">
2
2
  <a>
3
 
    <nevow:attr name="name" nevow:render="functionAnchor" />
 
3
    <t:attr name="name" t:render="functionAnchor" />
4
4
  </a>
5
5
  <a>
6
 
    <nevow:attr name="name" nevow:render="shortFunctionAnchor" />
 
6
    <t:attr name="name" t:render="shortFunctionAnchor" />
7
7
  </a>
8
8
  <div class="functionHeader">
9
 
    <nevow:invisible nevow:render="decorator" />
 
9
    <t:invisible t:render="decorator" />
10
10
    def
11
 
    <nevow:invisible nevow:render="functionName">
 
11
    <t:invisible t:render="functionName">
12
12
      functionName():
13
 
    </nevow:invisible>
14
 
    <a class="functionSourceLink" nevow:render="sourceLink">
15
 
      <nevow:attr name="href"><nevow:slot name="sourceHref" /></nevow:attr>
 
13
    </t:invisible>
 
14
    <a class="functionSourceLink" t:render="sourceLink">
 
15
      <t:attr name="href"><t:slot name="sourceHref" /></t:attr>
16
16
      (source)
17
17
    </a>
18
18
  </div>
19
 
  <div class="functionBody">
20
 
    <nevow:invisible nevow:render="functionExtras" />
21
 
    <nevow:invisible nevow:render="functionBody">
 
19
  <div class="docstring functionBody">
 
20
    <t:invisible t:render="functionExtras" />
 
21
    <t:invisible t:render="functionBody">
22
22
      Docstring.
23
 
    </nevow:invisible>
 
23
    </t:invisible>
24
24
  </div>
25
25
</div>