summaryrefslogtreecommitdiff
path: root/doc/templates/generic-types.html
blob: 1deab3b4cc24f395c31116e4e0c602b3fb61c258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" "">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
 <head>
  <title>Generic Types</title>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="style.css" type="text/css"/>
  <link rel="shortcut icon" type="image/png" media="all" href="favicon.png" />
 </head>
 <body>
  <div class="header">
  <h1>Generic Types</h1>
   <a href="index.html">Interface Index</a>
   (<a href="interfaces.html">Compact</a>)
   | <a href="#summary">Summary</a>
   | <a href="#types">Types</a>
  </div>
  <div class="main">
    <div class="summary">
     <a name="summary"></a>
     <h3>Generic Types</h3>
     <table class="summary">
      {% for type in spec.generic_types %}
       {% if type.is_deprecated %}
        <tr class="deprecated">
       {% else %}
        <tr>
       {% endif %}
       <td><a href="{{ type.get_url() }}">{{ type.short_name }}</a></td>
       <td>{{ type.get_type_name() }}</td>
       <td>{{ type.dbus_type }}</td>
       <td>
        {% if type.is_deprecated %} (deprecated) {% endif %}
       </td>
      </tr>
      {% endfor %}
     </table>
    </div>

   <div class="outset types type">
    <a name="types"></a>
    <h1>Generic Types</h1>
    {% for type in spec.generic_types %}
     <div class="inset type">
      <a name="{{ type.get_anchor() }}"></a>
      <span class="permalink">{{ type.get_type_name() }} (<a href="{{ type.get_url() }}">Permalink</a>)</span>
      <h2>
       {{ type.short_name }} &mdash; {{ type.dbus_type }}
      </h2>

      {{ type.get_added() }}
      {{ type.get_deprecated() }}
      {{ type.get_docstring() }}
      {{ type.get_breakdown() }}
     </div>
    {% endfor %}
   </div>
   </div>

 </body>
</html>