[Commits] r2427 - core/trunk/docsrc/lib

commits at geoext.org commits at geoext.org
Tue Oct 5 08:21:37 CEST 2010


Author: fredj
Date: 2010-10-05 08:21:36 +0200 (Tue, 05 Oct 2010)
New Revision: 2427

Modified:
   core/trunk/docsrc/lib/template.jst
Log:
display ptype value in api doc. (closes #359)

Modified: core/trunk/docsrc/lib/template.jst
===================================================================
--- core/trunk/docsrc/lib/template.jst	2010-10-04 07:48:38 UTC (rev 2426)
+++ core/trunk/docsrc/lib/template.jst	2010-10-05 06:21:36 UTC (rev 2427)
@@ -6,6 +6,7 @@
         * Header (full class name)
         * Base Link and Ineritance (optional link to ext super and parent classes)
         * Xtype (optional)
+        * Ptype (optional)
         * Constructor (class def)
         * Examples (optional)
         * Config Options (optional)
@@ -20,7 +21,7 @@
 :class:`{{ module }}.{{ class }}`
 ================================================================================
 
-{% if base_link is defined or xtype is defined or _parents is defined%}
+{% if base_link is defined or xtype is defined or ptype is defined or _parents is defined %}
 .. cssclass:: meta
 
 {% if base_link is defined or _parents is defined %}
@@ -33,7 +34,11 @@
 xtype
     ``{{ xtype }}``
 {% endif %}
+{% if ptype is defined %}
+ptype
+    ``{{ ptype }}``
 {% endif %}
+{% endif %}
 
 {{ constructor }}
 



More information about the Commits mailing list