[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.p Remove sort method for directly provided interfaces in the introspector.html view

Roger Ineichen roger at projekt01.ch
Wed May 11 10:06:08 EDT 2005


Log message for revision 30325:
  Remove sort method for directly provided interfaces in the introspector.html view
  Added comment about the sort order in the label.
  Can anybody check the label in the template for typos?

Changed:
  U   Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt
  UU  Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.py

-=-
Modified: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt	2005-05-11 09:45:33 UTC (rev 30324)
+++ Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt	2005-05-11 14:06:08 UTC (rev 30325)
@@ -14,7 +14,7 @@
 <div class="row"
      tal:define="interfaces view/direct_interfaces"
      tal:condition="interfaces">
-  <div class="label" i18n:translate="">Directly provided interfaces</div>
+  <div class="label" i18n:translate="">Directly provided interfaces in the provided order</div>
   <div class="field">
     <ul>
       <li tal:repeat="iface interfaces"><a tal:attributes="href iface/url"

Modified: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.py
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.py	2005-05-11 09:45:33 UTC (rev 30324)
+++ Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.py	2005-05-11 14:06:08 UTC (rev 30325)
@@ -13,7 +13,7 @@
 ##############################################################################
 """Introspector view for content components
 
-$Id: browser.py 29143 2005-02-14 22:43:16Z srichter $
+$Id$
 """
 __docformat__ = 'restructuredtext'
 
@@ -50,5 +50,4 @@
                            {"name": iface.__name__,
                             "module": iface.__module__,
                             "url": url}))
-        result.sort()
         return [dict for name, dict in result]


Property changes on: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.py
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the Zope3-Checkins mailing list