[Zope-Checkins] SVN: Zope/trunk/ Removed unmaintained HelpSys documents from ZCatalog and PluginIndexes. Useful explanations are given inside the form templates.

Hanno Schlichting hannosch at hannosch.eu
Sat Jul 31 14:53:29 EDT 2010


Log message for revision 115277:
  Removed unmaintained HelpSys documents from ZCatalog and PluginIndexes. Useful explanations are given inside the form templates.
  

Changed:
  U   Zope/trunk/doc/CHANGES.rst
  U   Zope/trunk/src/Products/PluginIndexes/FieldIndex/FieldIndex.py
  D   Zope/trunk/src/Products/PluginIndexes/FieldIndex/help/
  U   Zope/trunk/src/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
  D   Zope/trunk/src/Products/PluginIndexes/KeywordIndex/help/
  U   Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py
  D   Zope/trunk/src/Products/PluginIndexes/PathIndex/help/
  U   Zope/trunk/src/Products/PluginIndexes/TopicIndex/TopicIndex.py
  D   Zope/trunk/src/Products/PluginIndexes/TopicIndex/help/
  D   Zope/trunk/src/Products/PluginIndexes/help/
  U   Zope/trunk/src/Products/ZCatalog/__init__.py
  U   Zope/trunk/src/Products/ZCatalog/dtml/addIndexForm.dtml
  U   Zope/trunk/src/Products/ZCatalog/dtml/addZCatalog.dtml
  D   Zope/trunk/src/Products/ZCatalog/help/

-=-
Modified: Zope/trunk/doc/CHANGES.rst
===================================================================
--- Zope/trunk/doc/CHANGES.rst	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/doc/CHANGES.rst	2010-07-31 18:53:28 UTC (rev 115277)
@@ -35,6 +35,9 @@
 Restructuring
 +++++++++++++
 
+- Removed unmaintained HelpSys documents from ZCatalog and PluginIndexes.
+  Useful explanations are given inside the form templates.
+
 - Deprecate Products.ZCatalog's current behavior of returning the entire
   catalog content if no query restriction applied. In Zope 2.14 this will
   result in an empty LazyCat to be returned instead.

Modified: Zope/trunk/src/Products/PluginIndexes/FieldIndex/FieldIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/FieldIndex/FieldIndex.py	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/src/Products/PluginIndexes/FieldIndex/FieldIndex.py	2010-07-31 18:53:28 UTC (rev 115277)
@@ -27,12 +27,8 @@
     meta_type="FieldIndex"
 
     manage_options= (
-        {'label': 'Settings',
-         'action': 'manage_main',
-         'help': ('FieldIndex','FieldIndex_Settings.stx')},
-        {'label': 'Browse',
-         'action': 'manage_browse',
-         'help': ('FieldIndex','FieldIndex_Settings.stx')},
+        {'label': 'Settings', 'action': 'manage_main'},
+        {'label': 'Browse', 'action': 'manage_browse'},
     )
 
     query_options = ["query","range"]

Modified: Zope/trunk/src/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/KeywordIndex/KeywordIndex.py	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/src/Products/PluginIndexes/KeywordIndex/KeywordIndex.py	2010-07-31 18:53:28 UTC (rev 115277)
@@ -38,12 +38,8 @@
     meta_type="KeywordIndex"
 
     manage_options= (
-        {'label': 'Settings',
-         'action': 'manage_main',
-         'help': ('KeywordIndex','KeywordIndex_Settings.stx')},
-        {'label': 'Browse',
-         'action': 'manage_browse',
-         'help': ('FieldIndex','FieldIndex_Settings.stx')},
+        {'label': 'Settings', 'action': 'manage_main'},
+        {'label': 'Browse', 'action': 'manage_browse'},
     )
 
     query_options = ("query","operator", "range")

Modified: Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py	2010-07-31 18:53:28 UTC (rev 115277)
@@ -58,9 +58,7 @@
     query_options = ('query', 'level', 'operator')
 
     manage_options= (
-        {'label': 'Settings',
-         'action': 'manage_main',
-         'help': ('PathIndex','PathIndex_Settings.stx')},
+        {'label': 'Settings', 'action': 'manage_main'},
     )
 
     def __init__(self,id,caller=None):

Modified: Zope/trunk/src/Products/PluginIndexes/TopicIndex/TopicIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/TopicIndex/TopicIndex.py	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/src/Products/PluginIndexes/TopicIndex/TopicIndex.py	2010-07-31 18:53:28 UTC (rev 115277)
@@ -49,9 +49,7 @@
     query_options = ('query', 'operator')
 
     manage_options= (
-        {'label': 'FilteredSets',
-         'action': 'manage_main',
-         'help': ('TopicIndex','TopicIndex_searchResults.stx')},
+        {'label': 'FilteredSets', 'action': 'manage_main'},
     )
 
     def __init__(self,id,caller=None):

Modified: Zope/trunk/src/Products/ZCatalog/__init__.py
===================================================================
--- Zope/trunk/src/Products/ZCatalog/__init__.py	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/src/Products/ZCatalog/__init__.py	2010-07-31 18:53:28 UTC (rev 115277)
@@ -23,7 +23,3 @@
                       ZCatalog.manage_addZCatalog),
         icon='www/ZCatalog.gif',
         )
-
-
-    context.registerHelp()
-    context.registerHelpTitle('Zope Help')

Modified: Zope/trunk/src/Products/ZCatalog/dtml/addIndexForm.dtml
===================================================================
--- Zope/trunk/src/Products/ZCatalog/dtml/addIndexForm.dtml	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/src/Products/ZCatalog/dtml/addIndexForm.dtml	2010-07-31 18:53:28 UTC (rev 115277)
@@ -1,15 +1,7 @@
 <dtml-var manage_page_header>
 
-<dtml-var "manage_form_title(this(), _,
-           form_title='Add Index',
-           help_product='PluginIndexes',
-           help_topic='PluginIndexes.stx'
-	   )">
+<dtml-var "manage_form_title(this(), _, form_title='Add Index')">
 
-<p class="form-help">
-help for adding indexes....
-</p>
-
 <form action="manage_addIndex" method="post">
 <input type=hidden name="type" value="&dtml-index_type;">
 

Modified: Zope/trunk/src/Products/ZCatalog/dtml/addZCatalog.dtml
===================================================================
--- Zope/trunk/src/Products/ZCatalog/dtml/addZCatalog.dtml	2010-07-31 18:46:01 UTC (rev 115276)
+++ Zope/trunk/src/Products/ZCatalog/dtml/addZCatalog.dtml	2010-07-31 18:53:28 UTC (rev 115277)
@@ -1,10 +1,6 @@
 <dtml-var manage_page_header>
 
-<dtml-var "manage_form_title(this(), _,
-           form_title='Add ZCatalog',
-           help_product='ZCatalog',
-           help_topic='ZCatalog_Add.stx'
-	   )">
+<dtml-var "manage_form_title(this(), _, form_title='Add ZCatalog')">
 
 <FORM ACTION="manage_addZCatalog" METHOD="POST">
 <table cellspacing="0" cellpadding="2" border="0">



More information about the Zope-Checkins mailing list