spambayes/spambayes CoreUI.py, 1.1.2.3, 1.1.2.4 Options.py, 1.141.2.1, 1.141.2.2

"Skip Montanaro" <[email protected]> Tue, 22 May 2007 19:18:03 -0700
Newsgroups gmane.mail.spam.spambayes.cvs
Message-ID <[email protected]>
Update of /cvsroot/spambayes/spambayes/spambayes
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9996/spambayes

Modified Files:
      Tag: CORESVR
	CoreUI.py Options.py 
Log Message:
now we can import a useless plugin

Index: CoreUI.py
===================================================================
RCS file: /cvsroot/spambayes/spambayes/spambayes/Attic/CoreUI.py,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -d -r1.1.2.3 -r1.1.2.4
*** CoreUI.py	22 May 2007 03:05:12 -0000	1.1.2.3
--- CoreUI.py	23 May 2007 02:18:01 -0000	1.1.2.4
***************
*** 100,104 ****
  )
  
! # Like the above, but hese are the options that will be offered on the
  # advanced configuration page.
  adv_map = (
--- 100,104 ----
  )
  
! # Like the above, but these are the options that will be offered on the
  # advanced configuration page.
  adv_map = (
***************
*** 808,811 ****
--- 808,812 ----
          self.prepared = False
          self.can_stop = True
+         self.plugin = None
  
          # Unique names for cached messages - see `getNewMessageName()` below.

Index: Options.py
===================================================================
RCS file: /cvsroot/spambayes/spambayes/spambayes/Options.py,v
retrieving revision 1.141.2.1
retrieving revision 1.141.2.2
diff -C2 -d -r1.141.2.1 -r1.141.2.2
*** Options.py	18 May 2007 03:54:39 -0000	1.141.2.1
--- Options.py	23 May 2007 02:18:01 -0000	1.141.2.2
***************
*** 1295,1298 ****
--- 1295,1304 ----
       r"\w\w(?:_\w\w)?", RESTORE),
    ),
+ 
+   "Plugin" : (
+     ("x-module", _("Plugin module name"), "WebAppPlugin",
+      _("""The name of the plugin module for the core server."""),
+      r"[\w]+", DO_NOT_RESTORE),
+     ),
  }