[Commits] r469 - in sandbox/website/trunk: docsrc/lib geoext/lib/GeoExt

commits at geoext.org commits at geoext.org
Sat Apr 25 01:23:19 CEST 2009


Author: tschaub
Date: 2009-04-25 01:23:19 +0200 (Sat, 25 Apr 2009)
New Revision: 469

Added:
   sandbox/website/trunk/docsrc/lib/template.jst
Removed:
   sandbox/website/trunk/geoext/lib/GeoExt/template.jst
Log:
moving template from code source to doc source

Copied: sandbox/website/trunk/docsrc/lib/template.jst (from rev 457, sandbox/website/trunk/geoext/lib/GeoExt/template.jst)
===================================================================
--- sandbox/website/trunk/docsrc/lib/template.jst	                        (rev 0)
+++ sandbox/website/trunk/docsrc/lib/template.jst	2009-04-24 23:23:19 UTC (rev 469)
@@ -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 %}

Deleted: sandbox/website/trunk/geoext/lib/GeoExt/template.jst
===================================================================
--- sandbox/website/trunk/geoext/lib/GeoExt/template.jst	2009-04-24 23:22:11 UTC (rev 468)
+++ sandbox/website/trunk/geoext/lib/GeoExt/template.jst	2009-04-24 23:23:19 UTC (rev 469)
@@ -1,89 +0,0 @@
-{#
-
-    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