[Commits] r457 - in sandbox/website/trunk: docsrc/lib geoext/lib/GeoExt
commits at geoext.org
commits at geoext.org
Fri Apr 24 02:34:18 CEST 2009
Author: tschaub
Date: 2009-04-24 02:34:18 +0200 (Fri, 24 Apr 2009)
New Revision: 457
Added:
sandbox/website/trunk/geoext/lib/GeoExt/template.jst
Removed:
sandbox/website/trunk/docsrc/lib/template.jst
Log:
moving general template
Deleted: sandbox/website/trunk/docsrc/lib/template.jst
===================================================================
--- sandbox/website/trunk/docsrc/lib/template.jst 2009-04-24 00:32:56 UTC (rev 456)
+++ sandbox/website/trunk/docsrc/lib/template.jst 2009-04-24 00:34:18 UTC (rev 457)
@@ -1,71 +0,0 @@
-.. currentmodule:: {{ module }}
-
-:class:`{{ module }}.{{ class }}`
-=================================
-
-{{ constructor }}
-
-{% if parent_link is defined %}
-.. rubric:: Extends
-
-* {{ parent_link }}
-{% endif %}
-
-{% if xtype is defined %}
-{{ xtype }}
-{% endif %}
-
-{% if example is defined %}
-Example Use
------------
-
-{{ example }}
-{% endif %}
-
-{% if config is defined %}
-Config Options
---------------
-
-Configuration properties{% if parent_link is defined %} in addition to
-those listed for {{ parent_link }}{% endif %}.
-
-{% for c in config %}
-{{ c }}
-{% endfor %}
-{% endif %}
-
-{% if properties is defined %}
-Public Properties
------------------
-
-Public properties{% if parent_link is defined %} in addition to those
-listed for {{ parent_link }}{% endif %}.
-
-{% for p in properties %}
-{{ p }}
-{% endfor %}
-{% endif %}
-
-{% if methods is defined %}
-Public Methods
---------------
-
-Public methods{% if parent_link is defined %} in addition to those
-listed for {{ parent_link }}{% endif %}.
-
-{% for m in methods %}
-{{ m }}
-{% endfor %}
-{% endif %}
-
-{% if events is defined %}
-Events
-------
-
-Events{% if parent_link is defined %} in addition to those
-listed for {{ parent_link }}{% endif %}.
-
-{% for e in events %}
-{{ e }}
-{% endfor %}
-{% endif %}
Added: sandbox/website/trunk/geoext/lib/GeoExt/template.jst
===================================================================
--- sandbox/website/trunk/geoext/lib/GeoExt/template.jst (rev 0)
+++ sandbox/website/trunk/geoext/lib/GeoExt/template.jst 2009-04-24 00:34:18 UTC (rev 457)
@@ -0,0 +1,89 @@
+{#
+
+ This template is of general use for documenting GeoExt classes. It produces
+ a doc with the following sections:
+
+ * Header (full class name)
+ * Constructor (class def)
+ * Parent Link (optional link to ext super)
+ * Xtype (optional)
+ * Examples (optional)
+ * Config Options (optional)
+ * Public Properties (optional)
+ * Public Methods (optional)
+ * Events (optional)
+
+#}
+.. currentmodule:: {{ module }}
+
+:class:`{{ module }}.{{ class }}`
+=================================
+
+{{ constructor }}
+
+{% if parent_link is defined %}
+.. rubric:: Extends
+
+* {{ parent_link }}
+{% endif %}
+
+{% if xtype is defined %}
+.. describe:: xtype
+
+ {{ xtype }}
+{% endif %}
+
+{% if example is defined %}
+Example Use
+-----------
+
+{{ example }}
+{% endif %}
+
+{% if config is defined %}
+Config Options
+--------------
+
+Configuration properties{% if parent_link is defined %} in addition to
+those listed for {{ parent_link }}{% endif %}.
+
+{% for c in config %}
+{{ c }}
+{% endfor %}
+{% endif %}
+
+{% if properties is defined %}
+Public Properties
+-----------------
+
+Public properties{% if parent_link is defined %} in addition to those
+listed for {{ parent_link }}{% endif %}.
+
+{% for p in properties %}
+{{ p }}
+{% endfor %}
+{% endif %}
+
+{% if methods is defined %}
+Public Methods
+--------------
+
+Public methods{% if parent_link is defined %} in addition to those
+listed for {{ parent_link }}{% endif %}.
+
+{% for m in methods %}
+{{ m }}
+{% endfor %}
+{% endif %}
+
+{% if events is defined %}
+Events
+------
+
+Events{% if parent_link is defined %} in addition to those
+listed for {{ parent_link }}{% endif %}.
+
+{% for e in events %}
+{{ e }}
+{% endfor %}
+{% endif %}
More information about the Commits
mailing list