]> scripts.mit.edu Git - wizard.git/blob - wizard/app/php.py
Remove spurious app import.
[wizard.git] / wizard / app / php.py
1 import re
2
3 from wizard import app, util
4
5 def make_filename_regex(var):
6     return 'php.ini', re.compile('^(' + app.expand_re(var) + r'\s*=\s*)(.*)()$', re.M)
7
8 seed = util.dictmap(make_filename_regex, {
9         'WIZARD_SESSIONNAME': 'session.name',
10         'WIZARD_TMPDIR': ('upload_tmp_dir', 'session.save_path'),
11         })
12
13 extractors = app.make_extractors(seed)
14 substitutions = app.make_substitutions(seed)
15 deprecated_keys = set([])
16