Ignore:
Timestamp:
12/05/08 21:43:27 (3 years ago)
Author:
WanWizard
Message:

made the side panel clickable, which will open the trac changset page when clicked

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/ExiteCMS/tracsvn/php-files/modules/tracsvn/module_installer.php

    r2043 r2093  
    2424$mod_title = "Trac-SVN reports"; 
    2525$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"; 
    2727$mod_developer = "WanWizard"; 
    2828$mod_email = "wanwizard@exitecms.org"; 
     
    128128$localestrings['en']['455'] = "Operation on a non-public section of the repository"; 
    129129$localestrings['en']['456'] = "Non-public repository paths:"; 
     130$localestrings['en']['457'] = "Trac base URL:"; 
    130131 
    131132$localestrings['en']['500'] = "Changeset"; 
     
    209210$localestrings['nl']['455'] = "Bewerking op een niet publiek deel van de repository"; 
    210211$localestrings['nl']['456'] = "Niet publieke repository paden:"; 
     212$localestrings['nl']['457'] = "Trac basis URL:"; 
    211213 
    212214$localestrings['nl']['500'] = "Changeset"; 
     
    241243$mod_install_cmds[] = array('type' => 'db', 'value' => "INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_database', '')"); 
    242244$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', '')"); 
    243246$mod_install_cmds[] = array('type' => 'db', 'value' => "INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('tracsvn_svncmd', '/usr/bin/svn')"); 
    244247$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')"); 
     
    267270$mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_database'"); 
    268271$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'"); 
    269273$mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_svncmd'"); 
    270274$mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'tracsvn_svnauth'"); 
     
    313317            case "0.1.3": 
    314318                // 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', '')"); 
    315322            default: 
    316323                // do this with every upgrade 
Note: See TracChangeset for help on using the changeset viewer.