~m4v/+junk/Factos

« back to all changes in this revision

Viewing changes to config.py

  • Committer: Elián Hanisch
  • Date: 2010-05-16 06:10:54 UTC
  • Revision ID: lambdae2@gmail.com-20100516061054-y63xd9ln3i8fykiz
reactoring, drop setting table name with config options, is useless.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
        registry.String('',
107
107
        """ """))
108
108
 
109
 
conf.registerGroup(Factos.sqlite, 'table')
110
 
conf.registerGlobalValue(Factos.sqlite.table, 'fact',
111
 
        registry.String('facts', """Name for the fact tables. Local tables will be named as 'name_#channel'."""))
112
 
conf.registerGlobalValue(Factos.sqlite.table, 'history',
113
 
        registry.String('undo', """Name for the history tables. Local tables will be named as 'name_#channel'."""))
114
 
conf.registerGlobalValue(Factos.sqlite.table, 'redo',
115
 
        registry.String('redo', """Name for the redo history tables. Local tables will be named as 'name_#channel'."""))
116
 
conf.registerGlobalValue(Factos.sqlite.table, 'users',
117
 
        registry.String('users', """Name for the user table."""))
118
109
 
119
110
# vim:set shiftwidth=4 tabstop=4 softtabstop=4 expandtab textwidth=100: