Changeset 2093 in ExiteCMS for modules/ExiteCMS/tracsvn/php-files/modules/tracsvn/module_installer.php
- Timestamp:
- 12/05/08 21:43:27 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/ExiteCMS/tracsvn/php-files/modules/tracsvn/module_installer.php
r2043 r2093 24 24 $mod_title = "Trac-SVN reports"; 25 25 $mod_description = "This ExiteCMS module provides a reporting of Trac Project management, and connects to SVN to retrieve details status information"; 26 $mod_version = "0.1. 4";26 $mod_version = "0.1.5"; 27 27 $mod_developer = "WanWizard"; 28 28 $mod_email = "wanwizard@exitecms.org"; … … 128 128 $localestrings['en']['455'] = "Operation on a non-public section of the repository"; 129 129 $localestrings['en']['456'] = "Non-public repository paths:"; 130 $localestrings['en']['457'] = "Trac base URL:"; 130 131 131 132 $localestrings['en']['500'] = "Changeset"; … … 209 210 $localestrings['nl']['455'] = "Bewerking op een niet publiek deel van de repository"; 210 211 $localestrings['nl']['456'] = "Niet publieke repository paden:"; 212 $localestrings['nl']['457'] = "Trac basis URL:"; 211 213 212 214 $localestrings['nl']['500'] = "Changeset"; … … 241 243 $mod_install_cmds[] = array('type' => 'db', 'value' => "INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_database', '')"); 242 244 $mod_install_cmds[] = array('type' => 'db', 'value' => "INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_url', '')"); 245 $mod_install_cmds[] = array('type' => 'db', 'value' => "INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_trac_url', '')"); 243 246 $mod_install_cmds[] = array('type' => 'db', 'value' => "INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_svncmd', '/usr/bin/svn')"); 244 247 $mod_install_cmds[] = array('type' => 'db', 'value' => "INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_svnauth', '--username name_here --password pass_here')"); … … 267 270 $mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_database'"); 268 271 $mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_url'"); 272 $mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_trac_url'"); 269 273 $mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_svncmd'"); 270 274 $mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_svnauth'"); … … 313 317 case "0.1.3": 314 318 // no upgrades this version 319 case "0.1.4": 320 // add the new trac base URL 321 $result = dbquery("INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_trac_url', '')"); 315 322 default: 316 323 // do this with every upgrade
Note: See TracChangeset
for help on using the changeset viewer.
