[Commits] r475 - sandbox/website/trunk/docsrc/lib
commits at geoext.org
commits at geoext.org
Sat Apr 25 18:22:06 CEST 2009
Author: tschaub
Date: 2009-04-25 18:22:06 +0200 (Sat, 25 Apr 2009)
New Revision: 475
Modified:
sandbox/website/trunk/docsrc/lib/template.jst
Log:
expand names for readibility
Modified: sandbox/website/trunk/docsrc/lib/template.jst
===================================================================
--- sandbox/website/trunk/docsrc/lib/template.jst 2009-04-25 16:15:29 UTC (rev 474)
+++ sandbox/website/trunk/docsrc/lib/template.jst 2009-04-25 16:22:06 UTC (rev 475)
@@ -49,10 +49,10 @@
Configuration properties{% if parent_link is defined %} in addition to
those listed for {{ parent_link }}{% endif %}.
-{% for c in config|dictsort %}
-.. describe:: {{ c[0] }}
+{% for (name, desc) in config|dictsort %}
+.. describe:: {{ name }}
- {{ c[1]|indent(4) }}
+ {{ desc|indent(4) }}
{% endfor %}
{% endif %}
@@ -63,10 +63,10 @@
Public properties{% if parent_link is defined %} in addition to those
listed for {{ parent_link }}{% endif %}.
-{% for p in properties|dictsort %}
-.. attribute:: {{ class }}.{{ p[0] }}
+{% for (name, desc) in properties|dictsort %}
+.. attribute:: {{ class }}.{{ name }}
- {{ p[1]|indent(4) }}
+ {{ desc|indent(4) }}
{% endfor %}
{% endif %}
@@ -77,10 +77,10 @@
Public methods{% if parent_link is defined %} in addition to those
listed for {{ parent_link }}{% endif %}.
-{% for m in methods|dictsort %}
-.. method:: {{ class }}.{{ m[0] }}
+{% for (name, desc) in methods|dictsort %}
+.. method:: {{ class }}.{{ name }}
- {{ m[1]|indent(4) }}
+ {{ desc|indent(4) }}
{% endfor %}
{% endif %}
@@ -91,9 +91,9 @@
Events{% if parent_link is defined %} in addition to those
listed for {{ parent_link }}{% endif %}.
-{% for e in events|dictsort %}
-.. describe:: {{ e[0] }}
+{% for (name, desc) in events|dictsort %}
+.. describe:: {{ name }}
- {{ e[1] }}
+ {{ desc|indent(4) }}
{% endfor %}
{% endif %}
More information about the Commits
mailing list