diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2009-03-26 00:19:09 +0900 |
---|---|---|
committer | Davyd Madeley <davyd@madeley.id.au> | 2009-03-26 00:19:09 +0900 |
commit | 6be5c5d7df5c24408cb1486bbac74f91df89df75 (patch) | |
tree | 25146228c5ddb3bd036e36fd80f5c2d17efe30e3 /doc | |
parent | cbf065a7351b7b891056a5a23c804f31efbcc0e5 (diff) |
Don't display AwkwardTelepathyProperty in the docs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/templates/devhelp.devhelp2 | 1 | ||||
-rw-r--r-- | doc/templates/interface.html | 4 | ||||
-rw-r--r-- | doc/templates/style.css | 8 |
3 files changed, 9 insertions, 4 deletions
diff --git a/doc/templates/devhelp.devhelp2 b/doc/templates/devhelp.devhelp2 index 13a9beb2..af327fa6 100644 --- a/doc/templates/devhelp.devhelp2 +++ b/doc/templates/devhelp.devhelp2 @@ -6,6 +6,7 @@ #end for <sub name="Generic Types" link="generic-types.html"/> <sub name="Errors" link="errors.html"/> + <sub name="Full Index" link="fullindex.html"/> </chapters> <functions> #for $obj in $spec.everything.values() + $spec.types.values() + $spec.errors.values() diff --git a/doc/templates/interface.html b/doc/templates/interface.html index f0c77a40..ac258043 100644 --- a/doc/templates/interface.html +++ b/doc/templates/interface.html @@ -286,14 +286,14 @@ #end if #if $interface.tpproperties - <div class="outset tpproperties property"> + <div class="outset tpproperties tpproperty"> <a name="tpproperties"></a> <h1>Telepathy Properties</h1> <div> Accessed using the org.freedesktop.Telepathy.Properties interface. </div> #for $property in $interface.tpproperties - <div class="inset property"> + <div class="inset tpproperty"> <a name="$property.name"></a> <span class="permalink">(<a href="$property.get_url()">Permalink</a>)</span> <h2> diff --git a/doc/templates/style.css b/doc/templates/style.css index f656fbe4..a6b2646d 100644 --- a/doc/templates/style.css +++ b/doc/templates/style.css @@ -90,12 +90,16 @@ div.properties { background-color: #ad7fa8; } +div.property { + border: 1px solid #75507b; +} + div.tpproperties { background-color: #999999; } -div.property { - border: 1px solid #75507b; +div.tpproperty { + border: 1px solid: #333333; } div.types { |