~launchpad-pqm/launchpad/devel

10466.8.1 by Leonard Richardson
Initial implementation.
1
<html
2
  xmlns="http://www.w3.org/1999/xhtml"
3
  xmlns:tal="http://xml.zope.org/namespaces/tal"
4
  xmlns:metal="http://xml.zope.org/namespaces/metal"
5
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
6
  i18n:domain="launchpad"
7
>
10466.8.7 by Leonard Richardson
Fixed the apidoc test.
8
  <head>
9
    <title>Launchpad Web Service API</title>
10524.1.2 by Leonard Richardson
Style the apidoc index and simplify its generation.
10
11
    <style type="text/css">
12
            body {
14448.2.1 by mbp at canonical
Remove all references to UbuntuBeta fonts
13
                font-family: Ubuntu, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif;
10524.1.2 by Leonard Richardson
Style the apidoc index and simplify its generation.
14
                font-size: 0.85em;
15
                margin: 2em 8em;
16
            }
17
            h1 {
18
                font-size: 2.5em;
19
            }
20
            h2 {
21
                border-bottom: 1px solid black;
22
                margin-top: 1em;
23
                margin-bottom: 0.5em;
24
                font-size: 2em;
25
               }
26
            ul {
27
                padding-left: 1.75em;
28
            }
29
            p + ul, p + ol, p + dl {
30
                margin-top: 0em;
31
            }
32
    </style>
10466.8.7 by Leonard Richardson
Fixed the apidoc test.
33
  </head>
34
10466.8.1 by Leonard Richardson
Initial implementation.
35
  <body>
36
37
    <h1>Launchpad web service API documentation</h1>
38
10524.1.2 by Leonard Richardson
Style the apidoc index and simplify its generation.
39
    <p tal:content="structure options/config/service_description">
10466.8.1 by Leonard Richardson
Initial implementation.
40
      Description of the Launchpad web service.
41
    </p>
42
43
    <h2>Active versions</h2>
44
45
    <ul>
10524.1.3 by Leonard Richardson
Simplified template code even more thanks to gary's code.
46
      <li tal:repeat="version options/config/active_versions">
10466.8.1 by Leonard Richardson
Initial implementation.
47
        <a tal:attributes="href string:$version.html"
48
           tal:content="version">Version name</a>:
10524.1.3 by Leonard Richardson
Simplified template code even more thanks to gary's code.
49
        <tal:description
50
           replace="options/config/version_descriptions/?version" />
10466.8.1 by Leonard Richardson
Initial implementation.
51
      </li>
52
    </ul>
53
54
  </body>
55
56
</html>