ソースを参照

Bug Fix on the configuration parameters in the filesystem session plugin

Roland Haroutiounian 8年前
コミット
fda4259f21

+ 1
- 1
plugins/filesystem_session/__init__.py ファイルの表示

2
 
2
 
3
 __plugin_name__ = 'filesystem_session'
3
 __plugin_name__ = 'filesystem_session'
4
 __version__ = [0,0,1]
4
 __version__ = [0,0,1]
5
-__type__ = 'session_handler'
5
+__plugin_type__ = 'session_handler'
6
 __loader__ = 'main.py'
6
 __loader__ = 'main.py'
7
 __confspec__ = "confspec.py"
7
 __confspec__ = "confspec.py"
8
 __author__ = "Lodel2 dev team"
8
 __author__ = "Lodel2 dev team"

+ 2
- 1
plugins/filesystem_session/confspec.py ファイルの表示

6
     'lodel2.sessions':{
6
     'lodel2.sessions':{
7
         'directory': ('/tmp/', SettingValidator('path')),
7
         'directory': ('/tmp/', SettingValidator('path')),
8
         'expiration': (900, SettingValidator('int')),
8
         'expiration': (900, SettingValidator('int')),
9
-        'file_template': ('lodel2_%s.sess', SettingValidator('dummy'))
9
+        'file_template': ('lodel2_%s.sess', SettingValidator('dummy')),
10
+        'tokensize': (512, SettingValidator('int'))
10
     }
11
     }
11
 }
12
 }

読み込み中…
キャンセル
保存