summaryrefslogtreecommitdiff
path: root/doc/templates
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-05-06 15:50:57 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-05-06 15:50:59 +0100
commit33b2f298490fcaf9e0b9f1c333477975be64be84 (patch)
treec397cad7194852b7d20faa984996447229303023 /doc/templates
parent1059a5c426aa04efd6277b09c147fcf92ad1d471 (diff)
parentadf4098012e364aa89c90f3111061a93fac13f35 (diff)
Merge branch 'tools'
Reviewed-by: Will Thompson <will.thompson@collabora.co.uk>
Diffstat (limited to 'doc/templates')
-rw-r--r--doc/templates/errors.html8
-rw-r--r--doc/templates/fullindex.html2
2 files changed, 7 insertions, 3 deletions
diff --git a/doc/templates/errors.html b/doc/templates/errors.html
index 907d6601..82c08058 100644
--- a/doc/templates/errors.html
+++ b/doc/templates/errors.html
@@ -18,7 +18,7 @@
<a name="summary"></a>
<h3>Errors</h3>
<table class="summary">
- #for $error in $spec.errors.values()
+ #for $error in $spec.sorted_errors
#if $error.deprecated
<tr class="deprecated">
#else
@@ -33,10 +33,14 @@
</table>
</div>
+ #if $spec.errors_section
+ $spec.errors_section.get_docstring()
+ #end if
+
<div class="outset errors error">
<a name="errors"></a>
<h1>Errors</h1>
- #for $error in $spec.errors.values()
+ #for $error in $spec.sorted_errors
<div class="inset error">
<a name="$error.name"></a>
<span class="permalink">(<a href="$error.get_url()">Permalink</a>)</span>
diff --git a/doc/templates/fullindex.html b/doc/templates/fullindex.html
index 2c465e1d..7ad3153e 100644
--- a/doc/templates/fullindex.html
+++ b/doc/templates/fullindex.html
@@ -8,7 +8,7 @@
</head>
#set $star = []
-#for $item in $spec.everything.values() + $spec.errors.values() + $spec.generic_types
+#for $item in $spec.everything.values() + $spec.errors.values() + $spec.types.values()
#echo $star.append(($item.short_name, $item))
#slurp
#end for