[Zope3-checkins] CVS: Zope3/src/zope/app/browser/skins/rotterdam -
template.pt:1.42
Jim Fulton
jim at zope.com
Thu Oct 16 06:15:46 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/browser/skins/rotterdam
In directory cvs.zope.org:/tmp/cvs-serv13384/src/zope/app/browser/skins/rotterdam
Modified Files:
template.pt
Log Message:
Removed an insanely expensive and broken view, FindRelevantHelpTopics.
I don't know exactly what this thing was supposed to do, as there
were no comments and there was a meaningless doc string. It
effectively did nothing, but took a very long time to do it, making
every page render much more slowly than it should.
There were no tests.
=== Zope3/src/zope/app/browser/skins/rotterdam/template.pt 1.41 => 1.42 ===
--- Zope3/src/zope/app/browser/skins/rotterdam/template.pt:1.41 Wed Aug 6 10:41:54 2003
+++ Zope3/src/zope/app/browser/skins/rotterdam/template.pt Thu Oct 16 06:15:45 2003
@@ -223,43 +223,6 @@
</div>
</div>
- <!-- Do not remove! This box will show the contextually related
- help topics and point to the Onlinehelp skin -->
- <div class="box" id="help"
- tal:define="results view/@@find_help_topics|nothing"
- tal:condition="results">
- <h4 i18n:translate="">Online Help</h4>
- <div class="body">
- <div tal:repeat="entry results" tal:omit-tag="">
- <a href="#"
- tal:define="url string:'${entry/url}';
- name string:'OnlineHelp';
- settings string:'height=400
- ,width=700
- ,resizable=1
- ,scrollbars=yes
- ,location=yes
- ,status=yes
- ,toolbar=yes
- ,menubar=yes'"
- tal:attributes="href python:'javascript:popup('
- + url + ','
- + name + ','
- + settings +')'"
- >
- <div tal:define="oddrow repeat/entry/odd"
- tal:attributes="class python:oddrow and 'even' or 'odd'"
- tal:content="entry/topic/title"
- i18n:translate="">Topic Title
- </div>
- </a>
- </div>
- </div>
-
-
- <div class="spacer">
-
- </div>
</div>
More information about the Zope3-Checkins
mailing list