[Spambayes-checkins] spambayes Options.py,1.60,1.61 hammie.py,1.32,1.33

Tim Peters tim_one@users.sourceforge.net
Sun Oct 27 22:56:18 2002


Update of /cvsroot/spambayes/spambayes
In directory usw-pr-cvs1:/tmp/cvs-serv18295

Modified Files:
	Options.py hammie.py 
Log Message:
s/persistant/persistent/g in new code.


Index: Options.py
===================================================================
RCS file: /cvsroot/spambayes/spambayes/Options.py,v
retrieving revision 1.60
retrieving revision 1.61
diff -C2 -d -r1.60 -r1.61
*** Options.py	27 Oct 2002 22:07:42 -0000	1.60
--- Options.py	27 Oct 2002 22:56:15 -0000	1.61
***************
*** 285,289 ****
  
  # The default database path used by hammie
! persistant_storage_file: hammie.db
  
  # The range of clues that are added to the "hammie" header in the E-mail
--- 285,289 ----
  
  # The default database path used by hammie
! persistent_storage_file: hammie.db
  
  # The range of clues that are added to the "hammie" header in the E-mail
***************
*** 298,302 ****
  # (quick to train on huge amounts of messages). Set this to True to use a
  # database by default.
! persistant_use_database: False
  """
  
--- 298,302 ----
  # (quick to train on huge amounts of messages). Set this to True to use a
  # database by default.
! persistent_use_database: False
  """
  
***************
*** 355,361 ****
                     },
      'Hammie': {'hammie_header_name': string_cracker,
!                'persistant_storage_file': string_cracker,
                 'clue_mailheader_cutoff': float_cracker,
!                'persistant_use_database': boolean_cracker,
                 },
  
--- 355,361 ----
                     },
      'Hammie': {'hammie_header_name': string_cracker,
!                'persistent_storage_file': string_cracker,
                 'clue_mailheader_cutoff': float_cracker,
!                'persistent_use_database': boolean_cracker,
                 },
  

Index: hammie.py
===================================================================
RCS file: /cvsroot/spambayes/spambayes/hammie.py,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** hammie.py	27 Oct 2002 22:07:42 -0000	1.32
--- hammie.py	27 Oct 2002 22:56:15 -0000	1.33
***************
*** 59,63 ****
  
  # Default database name
! DEFAULTDB = options.persistant_storage_file
  
  # Probability at which a message is considered spam
--- 59,63 ----
  
  # Default database name
! DEFAULTDB = options.persistent_storage_file
  
  # Probability at which a message is considered spam
***************
*** 69,73 ****
  
  # Use a database? If False, use a pickle
! USEDB = options.persistant_use_database
  
  # Tim's tokenizer kicks far more booty than anything I would have
--- 69,73 ----
  
  # Use a database? If False, use a pickle
! USEDB = options.persistent_use_database
  
  # Tim's tokenizer kicks far more booty than anything I would have