Code

Merged search_indexing-branch with HEAD
[roundup.git] / roundup / templates / extended / instance_config.py
index b10c039a17b4c6609befc9c0a9b7aff67fb91363..ec6a3bf8f2fcaa7cc403849e9098782ae99b533a 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: instance_config.py,v 1.17 2002-05-22 00:32:34 richard Exp $
+# $Id: instance_config.py,v 1.18 2002-05-25 07:16:25 rochecompaan Exp $
 
 MAIL_DOMAIN=MAILHOST=HTTP_HOST=None
 HTTP_PORT=0
@@ -118,6 +118,11 @@ HEADER_INDEX_LINKS = ['DEFAULT', 'ALL_SUPPORT', 'UNASSIGNED_ISSUE',
 # list the classes that users are able to add nodes to
 HEADER_ADD_LINKS = ['issue', 'support']
 
+# list the classes that users can search
+HEADER_SEARCH_LINKS = ['issue', 'support']
+
+SEARCH_FILTERS = ['ISSUE_FILTER', 'SUPPORT_FILTER']
+
 # Now the DEFAULT display specifications. TODO: describe format
 DEFAULT_INDEX = {
   'LABEL': 'All Issues',
@@ -197,8 +202,27 @@ MY_SUPPORT_INDEX = {
   },
 }
 
+ISSUE_FILTER = {
+  'CLASS': 'issue',
+  'FILTER': ['status', 'priority', 'assignedto', 'creator']
+}
+
+SUPPORT_FILTER = {
+  'CLASS': 'issue',
+  'FILTER': ['status', 'priority', 'assignedto', 'creator']
+}
+
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.17  2002/05/22 00:32:34  richard
+#  . changed the default message list in issues to display the message body
+#  . made backends.__init__ be more specific about which ImportErrors it really
+#    wants to ignore
+#  . fixed the example addresses in the templates to use correct example domains
+#  . cleaned out the template stylesheets, removing a bunch of junk that really
+#    wasn't necessary (font specs, styles never used) and added a style for
+#    message content
+#
 # Revision 1.16  2002/05/21 06:05:54  richard
 #  . #551483 ] assignedto in Client.make_index_link
 #
@@ -215,6 +239,15 @@ MY_SUPPORT_INDEX = {
 #    the config variables EMAIL_KEEP_QUOTED_TEST and
 #    EMAIL_LEAVE_BODY_UNCHANGED.
 #
+# Revision 1.13.2.2  2002/05/02 11:49:19  rochecompaan
+# Allow customization of the search filters that should be displayed
+# on the search page.
+#
+# Revision 1.13.2.1  2002/04/20 13:23:34  rochecompaan
+# We now have a separate search page for nodes.  Search links for
+# different classes can be customized in instance_config similar to
+# index links.
+#
 # Revision 1.13  2002/03/14 23:59:24  richard
 #  . #517734 ] web header customisation is obscure
 #