]> scripts.mit.edu Git - wizard.git/commitdiff
Tabs to spaces.
authorEdward Z. Yang <ezyang@mit.edu>
Mon, 11 Jan 2010 00:34:45 +0000 (19:34 -0500)
committerEdward Z. Yang <ezyang@mit.edu>
Mon, 11 Jan 2010 00:34:45 +0000 (19:34 -0500)
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
wizard/app/phpBB.py

index 3d3ae5efab4ec6bf1eab3f587babd11a588f94d6..49fbf4f2d09c0ab72280f91e2d17cbcedd33c923 100644 (file)
@@ -11,133 +11,133 @@ from wizard.app import php
 
 CONFIG = 'config.php'
 def make_filename_regex(var):
-       """See :ref:`versioning config <seed>` for more information."""
-       return CONFIG, php.re_var(var)
+    """See :ref:`versioning config <seed>` for more information."""
+    return CONFIG, php.re_var(var)
 
 seed = util.dictmap(make_filename_regex, {
-               'WIZARD_DBSERVER' : 'dbhost',
-               'WIZARD_DBNAME' : 'dbname',
-               'WIZARD_DBUSER' : 'dbuser',
-               'WIZARD_DBPASSWORD' : 'dbpasswd' })
+        'WIZARD_DBSERVER' : 'dbhost',
+        'WIZARD_DBNAME' : 'dbname',
+        'WIZARD_DBUSER' : 'dbuser',
+        'WIZARD_DBPASSWORD' : 'dbpasswd' })
 
 class Application(app.Application):
-       install_schema = install.ArgSchema('db', 'admin', 'email', 'title')
-       database = 'mysql'
-       parametrized_files = [ CONFIG ] + php.parametrized_files
-       extractors = app.make_extractors(seed)
-       extractors.update(php.extractors)
-       substitutions = app.make_substitutions(seed)
-       substitutions.update(php.substitutions)
-       
-       def checkConfig(self, deployment):
-               return os.path.getsize('config.php')
-       
-       def detectVersion(self, deployment):
-               version = self.detectVersionFromFile('install/database_update.php', php.re_var('updates_to_version'))
-               if version.startswith('.'): # blehh, but phpBB2 uses '.0.19'...
-                       version = '2' + version
-               return version
-       
-       def remove(self, deployment, options):
-               app.remove_database(deployment)
-       
-       def install(self, version, options):
-               old_mode = os.stat(".").st_mode
-               os.chmod("config.php", 0777)
-               self.install_2(options)
-               os.chmod("config.php", old_mode)
-               php.ini_replace_vars()
-       
-       def install_2(self, options):
-               database_dict = {
-                               'lang' : 'english',
-                               'dbms' : 'mysql',
-                               'upgrade' : '0',
-                               'dbhost' : options.dsn.host,
-                               'dbname' : options.dsn.database,
-                               'dbuser' : options.dsn.username,
-                               'dbpasswd' : options.dsn.password,
-                               'prefix' : '',
-                               'board_email' : options.email,
-                               'server_name' : options.web_host,
-                               'server_port' : '80',
-                               'script_path' : options.web_path,
-                               'admin_name' : options.admin_name,
-                               'admin_pass1' : options.admin_password,
-                               'admin_pass2' : options.admin_password,
-                               'install_step' : '1',
-                               'cur_lang' : 'english' }
-               
-               result = install.fetch(options, 'install/install.php', database_dict)
-               logging.debug('install.php output:\n\n' + result)
-               if 'Thank you' not in result:
-                       raise app.InstallFailure()
-               #shutil.rmtree('install')
-               #shutil.rmtree('contrib')
-       
-       def install_3(self, options):
-               def install_helper(sub, post):
-                       uri = 'install/index.php?mode=install&language=en'
-                       if sub:
-                               uri += '&sub=%s' % sub
-                       result = install.fetch(options, uri, post)
-                       logging.debug('%s (%s) output:\n\n' % (uri, sub) + result)
-                       return result
-               
-               # *deep breath*
-               install_helper('', {})
-               install_helper('requirements', {})
-               
-               database_dict = { 'img_imagick' : '/usr/bin/' }
-               install_helper('database', database_dict)
-               
-               database_dict.update({
-                               'dbms' : 'mysql',
-                               'dbhost' : options.mysql_host,
-                               'dbname' : options.mysql_db,
-                               'dbuser' : options.mysql_user,
-                               'dbpasswd' : options.mysql_password,
-                               'table_prefix' : '',
-                               'img_imagick' : '/usr/bin/',
-                               'language' : 'en',
-                               'testdb' : 'true' })
-               install_helper('database', database_dict)
-               
-               database_dict['dbport'] = ''
-               del database_dict['testdb']
-               install_helper('administrator', database_dict)
-               
-               database_dict.update({
-                               'default_lang' : 'en',
-                               'admin_name' : options.admin_name,
-                               'admin_pass1' : options.admin_password,
-                               'admin_pass2' : options.admin_password,
-                               'board_email1' : options.email,
-                               'board_email2' : options.email,
-                               'check' : 'true' })
-               install_helper('administrator', database_dict)
-               
-               del database_dict['check']
-               install_helper('config_file', database_dict)
-               install_helper('advanced', database_dict)
-               
-               database_dict.update({
-                               'email_enable' : '1',
-                               'smtp_delivery' : '0',
-                               'smtp_auth' : 'PLAIN',
-                               'cookie_secure' : '0',
-                               'force_server_vars' : '0',
-                               'server_protocol' : 'http://',
-                               'server_name' : options.web_host,
-                               'server_port' : '80',
-                               'script_path' : options.web_path })
-               install_helper('create_table', database_dict)
-               
-               database_dict.update({
-                               'ftp_path' : '',
-                               'ftp_user' : '',
-                               'ftp_pass' : '',
-                               'smtp_host' : '',
-                               'smtp_user' : '',
-                               'smtp_pass' : '' })
-               install_helper('final', database_dict)
+    install_schema = install.ArgSchema('db', 'admin', 'email', 'title')
+    database = 'mysql'
+    parametrized_files = [ CONFIG ] + php.parametrized_files
+    extractors = app.make_extractors(seed)
+    extractors.update(php.extractors)
+    substitutions = app.make_substitutions(seed)
+    substitutions.update(php.substitutions)
+
+    def checkConfig(self, deployment):
+        return os.path.getsize('config.php')
+
+    def detectVersion(self, deployment):
+        version = self.detectVersionFromFile('install/database_update.php', php.re_var('updates_to_version'))
+        if version.startswith('.'): # blehh, but phpBB2 uses '.0.19'...
+            version = '2' + version
+        return version
+
+    def remove(self, deployment, options):
+        app.remove_database(deployment)
+
+    def install(self, version, options):
+        old_mode = os.stat(".").st_mode
+        os.chmod("config.php", 0777)
+        self.install_2(options)
+        os.chmod("config.php", old_mode)
+        php.ini_replace_vars()
+
+    def install_2(self, options):
+        database_dict = {
+                'lang' : 'english',
+                'dbms' : 'mysql',
+                'upgrade' : '0',
+                'dbhost' : options.dsn.host,
+                'dbname' : options.dsn.database,
+                'dbuser' : options.dsn.username,
+                'dbpasswd' : options.dsn.password,
+                'prefix' : '',
+                'board_email' : options.email,
+                'server_name' : options.web_host,
+                'server_port' : '80',
+                'script_path' : options.web_path,
+                'admin_name' : options.admin_name,
+                'admin_pass1' : options.admin_password,
+                'admin_pass2' : options.admin_password,
+                'install_step' : '1',
+                'cur_lang' : 'english' }
+
+        result = install.fetch(options, 'install/install.php', database_dict)
+        logging.debug('install.php output:\n\n' + result)
+        if 'Thank you' not in result:
+            raise app.InstallFailure()
+        #shutil.rmtree('install')
+        #shutil.rmtree('contrib')
+
+    def install_3(self, options):
+        def install_helper(sub, post):
+            uri = 'install/index.php?mode=install&language=en'
+            if sub:
+                uri += '&sub=%s' % sub
+            result = install.fetch(options, uri, post)
+            logging.debug('%s (%s) output:\n\n' % (uri, sub) + result)
+            return result
+
+        # *deep breath*
+        install_helper('', {})
+        install_helper('requirements', {})
+
+        database_dict = { 'img_imagick' : '/usr/bin/' }
+        install_helper('database', database_dict)
+
+        database_dict.update({
+                'dbms' : 'mysql',
+                'dbhost' : options.mysql_host,
+                'dbname' : options.mysql_db,
+                'dbuser' : options.mysql_user,
+                'dbpasswd' : options.mysql_password,
+                'table_prefix' : '',
+                'img_imagick' : '/usr/bin/',
+                'language' : 'en',
+                'testdb' : 'true' })
+        install_helper('database', database_dict)
+
+        database_dict['dbport'] = ''
+        del database_dict['testdb']
+        install_helper('administrator', database_dict)
+
+        database_dict.update({
+                'default_lang' : 'en',
+                'admin_name' : options.admin_name,
+                'admin_pass1' : options.admin_password,
+                'admin_pass2' : options.admin_password,
+                'board_email1' : options.email,
+                'board_email2' : options.email,
+                'check' : 'true' })
+        install_helper('administrator', database_dict)
+
+        del database_dict['check']
+        install_helper('config_file', database_dict)
+        install_helper('advanced', database_dict)
+
+        database_dict.update({
+                'email_enable' : '1',
+                'smtp_delivery' : '0',
+                'smtp_auth' : 'PLAIN',
+                'cookie_secure' : '0',
+                'force_server_vars' : '0',
+                'server_protocol' : 'http://',
+                'server_name' : options.web_host,
+                'server_port' : '80',
+                'script_path' : options.web_path })
+        install_helper('create_table', database_dict)
+
+        database_dict.update({
+                'ftp_path' : '',
+                'ftp_user' : '',
+                'ftp_pass' : '',
+                'smtp_host' : '',
+                'smtp_user' : '',
+                'smtp_pass' : '' })
+        install_helper('final', database_dict)