[Commits] r537 - core/trunk/docsrc/lib
commits at geoext.org
commits at geoext.org
Thu Apr 30 05:20:27 CEST 2009
Author: tschaub
Date: 2009-04-30 05:20:27 +0200 (Thu, 30 Apr 2009)
New Revision: 537
Modified:
core/trunk/docsrc/lib/template.jst
Log:
Deciding that the singular is more natural to write.
Modified: core/trunk/docsrc/lib/template.jst
===================================================================
--- core/trunk/docsrc/lib/template.jst 2009-04-30 02:12:54 UTC (rev 536)
+++ core/trunk/docsrc/lib/template.jst 2009-04-30 03:20:27 UTC (rev 537)
@@ -17,7 +17,7 @@
.. currentmodule:: {{ module }}
:class:`{{ module }}.{{ class }}`
-=================================
+================================================================================
{% if base_link is defined or xtype is defined or _parents is defined%}
.. cssclass:: meta
@@ -57,42 +57,42 @@
{% endfor %}
{% endif %}
-{% if properties is defined %}
+{% if property is defined %}
Public Properties
-----------------
Public properties{% if base_link is defined %} in addition to those
listed for {{ base_link }}{% endif %}.
-{% for (name, desc) in properties|dictsort %}
+{% for (name, desc) in property|dictsort %}
.. attribute:: {{ class }}.{{ name }}
{{ desc|indent(4) }}
{% endfor %}
{% endif %}
-{% if methods is defined %}
+{% if method is defined %}
Public Methods
--------------
Public methods{% if base_link is defined %} in addition to those
listed for {{ base_link }}{% endif %}.
-{% for (name, desc) in methods|dictsort %}
+{% for (name, desc) in method|dictsort %}
.. method:: {{ class }}.{{ name }}
{{ desc|indent(4) }}
{% endfor %}
{% endif %}
-{% if events is defined %}
+{% if event is defined %}
Events
------
Events{% if base_link is defined %} in addition to those
listed for {{ base_link }}{% endif %}.
-{% for (name, desc) in events|dictsort %}
+{% for (name, desc) in event|dictsort %}
.. describe:: {{ name }}
{{ desc|indent(4) }}
More information about the Commits
mailing list