fusionregistry-commitlog Mailing List for Fusion Registry GPL (Page 2)
Brought to you by:
copland007
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(18) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(27) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SVN c. <fus...@li...> - 2008-02-04 04:45:12
|
Revision: 26 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=26&view=rev Author: copland007 Date: 2008-02-03 20:45:18 -0800 (Sun, 03 Feb 2008) Log Message: ----------- Added database cleanup tool to remove duplicate rows in field_entries related to bug #1742529 Modified Paths: -------------- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2008-02-04 04:42:06 UTC (rev 25) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2008-02-04 04:45:18 UTC (rev 26) @@ -101,6 +101,14 @@ $this->orphan_remove(); break; + case 'db_search_1742529': + $this->db_search_1742529(); + break; + + case 'db_remove_1742529': + $this->db_remove_1742529(); + break; + default: $this->main_menu(); break; @@ -109,6 +117,133 @@ /** + * Find those duplicate ibf_registry_field_entry rows! + * + * Basic chain of events are to loop through the field_entry table + * for each item_id, then loop through each set of entry_id and + * field_id for that item. Find the largest value entry_id, mark the + * rest for removal. + */ + function db_search_1742529() + { + $marked_for_death = $this->execute_db_search_1742529(); + + //------------------------------- + // Construct menu HTML + //------------------------------- + + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Duplicate Row Locator", "Below are all the duplicate rows in the ibf_registry_field_entry table that were found.<br /><br />". $this->ad_registry_loader->imgs['warning'] ." <b>This operation is not undo-able! Once you choose to remove these duplicate rows they will be gone, please make a backup of your ibf_registry_field_entries sql table before proceeding!!</b>".'<br /> ' ) . "<br >"; + + $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', 'db_remove_1742529' ), + 2 => array( 'act' , REGISTRY_URL ), + 3 => array( 'menu', 'tools' ), + 4 => array( 'section', 'components' ), + ) ); + + $this->ipsclass->html .= $this->ipsclass->adskin->start_table( "Duplicate ibf_registry_field_entry rows to be deleted" ); + + // If they don't have any, let them know + if ( count($marked_for_death) <= 0 ) + { + $this->ipsclass->html .= $this->ipsclass->adskin->add_td_row( array( "Congratulations! You have no duplicate rows to clean up!" ) ); + } + else + { + // Otherwise print them all out baby! + $list_html = join(', ', $marked_for_death); + + $this->ipsclass->html .= $this->ipsclass->adskin->add_td_row( array( $list_html ) ); + } + + $this->ipsclass->html .= $this->ipsclass->adskin->end_form('Remove '. count($marked_for_death) .' Duplicate Rows'); + + $this->ipsclass->html .= $this->ipsclass->adskin->end_table(); + + $this->ipsclass->admin->output(); + } + + + /** + * Do the actual removal of dup entries + */ + function db_remove_1742529() + { + $output = array(); + + $marked_for_death = $this->execute_db_search_1742529(); + + // If we don't get anything in our returned array, there's nothing to do ;) + if ( count($marked_for_death) > 0 ) + { + $rm_list = join("','", $marked_for_death); + $this->ipsclass->DB->simple_exec_query( array( 'delete' => 'registry_field_entries', 'where' => "entry_id IN ( '$rm_list' )" ) ); + + // Report our mischief ways :) + $text = "<b>Duplicate rows removed</b><br /><br />".implode( "<br />", $output ); + $url = "act=".REGISTRY_URL."§ion=components&menu=tools"; + $time = 5; + + // Big brother is watching :) + $this->ipsclass->admin->save_log("Removed Duplicate Fusion Registry sql field_entries"); + } + else + { + $text = "<b>No duplicate rows were found, therefore none were removed ;)</b>"; + $url = "act=".REGISTRY_URL."§ion=components&menu=tools"; + $time = 5; + } + + // End of the show, c'ya + $this->ipsclass->admin->redirect( $url, $text, 0, $time ); + } + + + /** + * Helper function to search for dup entries in field_entries table + */ + function execute_db_search_1742529() + { + $marked_for_death = array(); + + // Loop through for each item + $item_query_id = $this->ipsclass->DB->query("SELECT DISTINCT (item_id) FROM ibf_registry_field_entries"); + while ( $item_row = $this->ipsclass->DB->fetch_row($item_query_id) ) + { + $dup_rows = array(); // Bad boy rows marked for death + $max_rows = array(); // Keep track of max values (valid rows) + + $entry_query_id = $this->ipsclass->DB->query("SELECT entry_id,field_id FROM ibf_registry_field_entries WHERE item_id='$item_row[item_id]'"); + + // Loop through each entry_id for each item_id + while ( $entry_row = $this->ipsclass->DB->fetch_row($entry_query_id) ) + { + if ( isset( $max_rows[$entry_row[field_id]] ) ) { + if ( $entry_row[entry_id] > $max_rows[$entry_row[field_id]] ) + { + // This looks better, keep it, mark the last known max for death + array_push($dup_rows, $max_rows[$entry_row[field_id]]); + $max_rows[$entry_row[field_id]] = $entry_row[entry_id]; + } + } + else + { + // There isn't a max row set yet, so set it now + $max_rows[$entry_row[field_id]] = $entry_row[entry_id]; + } + } + + // Push to big array + foreach ($dup_rows as $dup_id) + { + array_push($marked_for_death, $dup_id); + } + } + + return $marked_for_death; + } + + + /** * Find those Orphans! * * Basic chain of events are to compare all the known file names @@ -761,6 +896,26 @@ $this->ipsclass->html .= $this->ipsclass->adskin->end_table(); + $this->ipsclass->html .= '<br />'; + + //------------------------------- + // Find/Remove Duplicate DB records from bug #1742529 + //------------------------------- + + $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', 'db_search_1742529' ), + 2 => array( 'act' , REGISTRY_URL ), + 3 => array( 'menu', 'tools' ), + 4 => array( 'section', 'components' ), + ) ); + + $desc = 'The \'Cleanup Database - bug #1742529 fix\' tool is used to locate any duplicate rows in the ibf_registry_field_entries that the Fusion Registry had once created. The duplicate rows were created as the result of a bug in the code that was present until version 3.0.5. Under normal circumstances there should be no duplicate rows.<br /><br />The first step of this tool is just to search for duplicate rows, no action will be taken unless you confirm the findings on the next step.'; + + $this->ipsclass->html .= $this->ipsclass->adskin->start_table( "Cleanup Database - bug #1742529 fix", $desc ); + + $this->ipsclass->html .= $this->ipsclass->adskin->end_form('Search for Duplicate Rows'); + + $this->ipsclass->html .= $this->ipsclass->adskin->end_table(); + // That's all folk! $this->ipsclass->admin->output(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2008-02-04 04:42:06
|
Revision: 25 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=25&view=rev Author: copland007 Date: 2008-02-03 20:42:06 -0800 (Sun, 03 Feb 2008) Log Message: ----------- Add upgrade kit 30005 Modified Paths: -------------- tools/trunk/deploy_registry.bat Modified: tools/trunk/deploy_registry.bat =================================================================== --- tools/trunk/deploy_registry.bat 2007-06-24 20:14:50 UTC (rev 24) +++ tools/trunk/deploy_registry.bat 2008-02-04 04:42:06 UTC (rev 25) @@ -36,6 +36,7 @@ IF NOT EXIST %upgrade_dir%\upgrade_30002\nul (mkdir %upgrade_dir%\upgrade_30002) IF NOT EXIST %upgrade_dir%\upgrade_30003\nul (mkdir %upgrade_dir%\upgrade_30003) IF NOT EXIST %upgrade_dir%\upgrade_30004\nul (mkdir %upgrade_dir%\upgrade_30004) +IF NOT EXIST %upgrade_dir%\upgrade_30005\nul (mkdir %upgrade_dir%\upgrade_30005) ECHO. ECHO Copying all files to destination... @@ -61,6 +62,7 @@ copy %source_dir%\sources\components_public\fusionscripts\fusionregistry\upgrade\upgrade_30002\*.* %upgrade_dir%\upgrade_30002\ copy %source_dir%\sources\components_public\fusionscripts\fusionregistry\upgrade\upgrade_30003\*.* %upgrade_dir%\upgrade_30003\ copy %source_dir%\sources\components_public\fusionscripts\fusionregistry\upgrade\upgrade_30004\*.* %upgrade_dir%\upgrade_30004\ +copy %source_dir%\sources\components_public\fusionscripts\fusionregistry\upgrade\upgrade_30005\*.* %upgrade_dir%\upgrade_30005\ ECHO. ECHO All done! This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-20 03:30:39
|
Revision: 23 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=23&view=rev Author: copland007 Date: 2007-06-19 20:30:39 -0700 (Tue, 19 Jun 2007) Log Message: ----------- Merged stable_3_0_x changes r6:22 into the trunk. Modified Paths: -------------- trunk/INSTALL.txt trunk/README.txt trunk/UPGRADE.txt trunk/fusionregistry_component.xml trunk/ipb_skin-fusionregistry.xml.gz trunk/upload/cache/lang_cache/en/lang_registry.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php trunk/upload/sources/components_acp/registry.php trunk/upload/sources/components_public/fusion_config.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php trunk/upload/sources/components_public/registry.php trunk/upload/sources/portal_plugins/registry-cfg.php trunk/upload/sources/portal_plugins/registry.php trunk/upload/sources/tasks/registrysessions.php Added Paths: ----------- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php Removed Paths: ------------- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php Modified: trunk/INSTALL.txt =================================================================== --- trunk/INSTALL.txt 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/INSTALL.txt 2007-06-20 03:30:39 UTC (rev 23) @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -28,8 +28,7 @@ ============================================================================ -These instructions are for a new fresh install. -Fusion Registry v3.0.3 only works with IPB v2.2.x! +Installing Fusion Registry ============================================================================ Upgrading and Installing note: As with any change to files on your server Modified: trunk/README.txt =================================================================== --- trunk/README.txt 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/README.txt 2007-06-20 03:30:39 UTC (rev 23) @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/UPGRADE.txt =================================================================== --- trunk/UPGRADE.txt 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/UPGRADE.txt 2007-06-20 03:30:39 UTC (rev 23) @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -28,7 +28,7 @@ ============================================================================ -Upgrading to Fusion Registry v3.0.3 +Upgrading Fusion Registry ============================================================================ Upgrading and Installing note: As with any change to files on your server @@ -46,9 +46,9 @@ 2. Head into your ACP -> ADMIN -> Manage Components. Delete the old Fusion Registry component, then use the 'Import XML Component File' to import - the component xml file 'fusionregistry_component.xml' from v3.0.3. + the new component xml file 'fusionregistry_component.xml'. -3. Import the new v3.0.3 skin and remove (or hide) any previous Fusion +3. Import the new skin and remove (or hide) any previous Fusion Registry/Garage Module skin set. Update any custom skin sets to use the newly imported skin as the new parent. See the installation instructions for more details on this process if needed. Modified: trunk/fusionregistry_component.xml =================================================================== --- trunk/fusionregistry_component.xml 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/fusionregistry_component.xml 2007-06-20 03:30:39 UTC (rev 23) @@ -6,7 +6,7 @@ <com_title>Fusion Registry</com_title> <com_author>Fusion Scripts</com_author> <com_url>http://www.fusionscripts.com</com_url> - <com_version>3.0.3</com_version> + <com_version>3.0.4</com_version> <com_date_added>1181093473</com_date_added> <com_menu_data><![CDATA[a:7:{i:1;a:5:{s:9:"menu_text";s:13:"Configuration";s:8:"menu_url";s:11:"menu=config";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:6:"config";s:13:"menu_permlang";s:29:"Allow ACCESS to configuration";}i:11;a:5:{s:9:"menu_text";s:13:"Custom Fields";s:8:"menu_url";s:18:"menu=custom_fields";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:13:"custom_fields";s:13:"menu_permlang";s:29:"Allow ACCESS to custom fields";}i:111;a:5:{s:9:"menu_text";s:13:"Rating Fields";s:8:"menu_url";s:18:"menu=rating_fields";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:13:"rating_fields";s:13:"menu_permlang";s:29:"Allow ACCESS to rating fields";}i:1111;a:5:{s:9:"menu_text";s:18:"Makes & Models";s:8:"menu_url";s:17:"menu=makes_models";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:12:"makes_models";s:13:"menu_permlang";s:34:"Allow ACCESS to makes & models";}i:11111;a:5:{s:9:"menu_text";s:23:"Modification Categories";s:8:"menu_url";s:15:"menu=categories";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:10:"categories";s:13:"menu_permlang";s:39:"Allow ACCESS to modification categories";}i:111111;a:5:{s:9:"menu_text";s:11:"Permissions";s:8:"menu_url";s:16:"menu=permissions";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:11:"permissions";s:13:"menu_permlang";s:27:"Allow ACCESS to permissions";}i:1111111;a:5:{s:9:"menu_text";s:5:"Tools";s:8:"menu_url";s:10:"menu=tools";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:5:"tools";s:13:"menu_permlang";s:21:"Allow ACCESS to tools";}}]]></com_menu_data> <com_enabled>1</com_enabled> Modified: trunk/ipb_skin-fusionregistry.xml.gz =================================================================== (Binary files differ) Modified: trunk/upload/cache/lang_cache/en/lang_registry.php =================================================================== --- trunk/upload/cache/lang_cache/en/lang_registry.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/cache/lang_cache/en/lang_registry.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -185,11 +185,8 @@ $cat_array[] = array( $registry_cat['id'], $registry_cat['title']); } - $this->ipsclass->admin->page_detail = "Before we remove this Fusion Registry category, we need to determine what to do with any modifications that may be left in this category."; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Removing Fusion Registry category '$name'", "Before we remove this Fusion Registry category, we need to determine what to do with any modifications that may be left in this category.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_title = "Removing Fusion Registry category '$name'"; - - // Build the HTML $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', 'delete_cat' ), 2 => array( 'act' , REGISTRY_URL ), @@ -225,8 +222,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "You may add/modify/delete Fusion Registry Modification Categories below."; - $this->ipsclass->admin->page_title = "Fusion Registry Category Management"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Category Management", "You may add/modify/delete Fusion Registry Modification Categories below.".'<br /> ' ) . "<br >"; //---------------------------------------- // Current Categories Modify/Delete Form @@ -339,8 +335,7 @@ 5 => array( 'section', 'components' ), ) ); - $this->ipsclass->admin->page_detail = "You may modify the title for the Fusion Registry category below."; - $this->ipsclass->admin->page_title = "Modifying Fusion Registry Category '{$registry_cat['title']}'"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Modifying Fusion Registry Category '{$registry_cat['title']}'", "You may modify the title for the Fusion Registry category below.".'<br /> ' ) . "<br >"; $this->ipsclass->adskin->td_header[] = array( " " , "20%" ); $this->ipsclass->adskin->td_header[] = array( " " , "80%" ); Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -181,8 +181,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "You may update your Fusion Registry Configuration below."; - $this->ipsclass->admin->page_title = "Fusion Registry Configuration"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Configuration", "You may update your Fusion Registry Configuration below.".'<br /> ' ) . "<br >"; //------------------------------ // Fusion Registry Configuration form @@ -418,9 +417,8 @@ $this->ipsclass->html .= $this->ipsclass->adskin->end_table(); - // That's all folk! $this->ipsclass->admin->output(); } } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -216,24 +216,24 @@ */ function do_form($type='edit') { - $this->ipsclass->admin->page_detail = "This section will allow you to add or edit an existing custom field.<br /><br />"; + $cf_help = "This section will allow you to add or edit an existing custom field.<br /><br />"; // Add key to help people out - $this->ipsclass->admin->page_detail .= '<b>Quick Options Help - </b><br /><br />'. - 'For Radio Buttons, Select Lists and Check Boxes enter options like this:<br />'. - 'value1|Display1<br />'. - 'value2|Display2<br />'. - 'Where <i>value</i> is what is stored in the database, and <i>Display</i> '. - 'is what is shown to end users. You can change the <i>Display</i> value at any time and not '. - 'affect existing entries in the database. Enter one <i>value|Display</i> option per line.<br /><br >'. + $cf_help .= '<b>Quick Options Help - </b><br /><br />'. + 'For Radio Buttons, Select Lists and Check Boxes enter options like this:<br />'. + 'value1|Display1<br />'. + 'value2|Display2<br />'. + 'Where <i>value</i> is what is stored in the database, and <i>Display</i> '. + 'is what is shown to end users. You can change the <i>Display</i> value at any time and not '. + 'affect existing entries in the database. Enter one <i>value|Display</i> option per line.<br /><br >'. - 'For special built-in fields you have the following choices available (these are for supporting legacy '. - 'fields for automotive related sites):<br />'. - '<i>year</i> - This will create a populated select list<br />'. - '<i>make</i> - This will create the automotive Make field controlled via javascript<br />'. - '<i>model</i> - This will create the automative Model field controlled via javascript<br /><br />'. + 'For special built-in fields you have the following choices available (these are for supporting legacy '. + 'fields for automotive related sites):<br />'. + '<i>year</i> - This will create a populated select list<br />'. + '<i>make</i> - This will create the automotive Make field controlled via javascript<br />'. + '<i>model</i> - This will create the automative Model field controlled via javascript<br /><br />'. - '<b>NOTE: For the make/model special fields to work you MUST create both of them!</b>'; + '<b>NOTE: For the make/model special fields to work you MUST create both of them!</b>'; if ( $type == 'edit' ) { @@ -265,7 +265,7 @@ $field_types = $this->field_types_list(); - $this->ipsclass->admin->page_title = $title; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( $title, $cf_help.'<br /> ' ) . "<br >"; $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', $code ), 2 => array( 'act' , REGISTRY_URL ), @@ -453,8 +453,6 @@ */ function do_group_form($type='edit') { - $this->ipsclass->admin->page_detail = "This section will allow you to add or edit an existing custom field group. Custom fields can only be in one custom field group at a time, so the available fields to add to the group below will exclude any already present in other groups."; - if ( $type == 'edit' ) { if ($this->ipsclass->input['g'] == "") @@ -481,7 +479,7 @@ $code = "group_donew"; } - $this->ipsclass->admin->page_title = $title; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( $title, "This section will allow you to add or edit an existing custom field group. Custom fields can only be in one custom field group at a time, so the available fields to add to the group below will exclude any already present in other groups.".'<br /> ' ) . "<br >"; // Now let's plop in the dynamic query for either the new/edit group form $rs = $this->ipsclass->DB->query($query); @@ -626,8 +624,7 @@ $cf_defs = $this->lib['custom_fields']->get_cf_defs( array( 'ORDER BY' => 'field_order ASC, field_name ASC' ) ); $cf_groups = $this->lib['custom_fields']->get_cf_groups(); - $this->ipsclass->admin->page_title = "Fusion Registry Custom Fields Overview"; - $this->ipsclass->admin->page_detail = "You can manage your garage custom fields from here.<br /><br /><span style='color:red'><b>PLEASE NOTE:</b> You must not configure the same order number for more than 1 custom field. Doing so will result in some of your custom fields from not showing up!</span>"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Custom Fields Overview", "You can manage your garage custom fields from here.<br /><br /><span style='color:red'><b>PLEASE NOTE:</b> You must not configure the same order number for more than 1 custom field. Doing so will result in some of your custom fields from not showing up!</span>".'<br /> ' ) . "<br >"; // Get the processed list of all custom fields and groups $cf_processed = $this->lib['custom_fields']->process_cf_defs( array( 'cf_defs' => $cf_defs, 'cf_groups' => $cf_groups, 'type' => 'acp_highlight' ) ); Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -252,9 +252,7 @@ */ function make_menu() { - // Page stuff - $this->ipsclass->admin->page_detail = "You may add/rename/delete Fusion Registry Vehicle Makes below.<br /><br /><b>NOTE:</b> This section of the ACP is targeted towards vehicle based registries.<br />If you do not run a vehicle based registry you can ignore this section of the ACP entirely."; - $this->ipsclass->admin->page_title = "Fusion Registry Vehicle Makes"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Vehicle Makes", "You may add/rename/delete Fusion Registry Vehicle Makes below.<br /><br /><b>NOTE:</b> This section of the ACP is targeted towards vehicle based registries.<br />If you do not run a vehicle based registry you can ignore this section of the ACP entirely.".'<br /> ' ) . "<br >"; //------------------------------ // Add new Make Form @@ -388,9 +386,7 @@ $this->ipsclass->DB->query("SELECT make FROM ibf_registry_makes WHERE id='".$this->ipsclass->input['make_id']."'"); $make = $this->ipsclass->DB->fetch_row(); - // Page stuff - $this->ipsclass->admin->page_detail = "You may add/rename/delete Fusion Registry Vehicle Models below."; - $this->ipsclass->admin->page_title = "Fusion Registry `". $make['make'] ."` Models"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry `". $make['make'] ."` Models", "You may add/rename/delete Fusion Registry Vehicle Models below.".'<br /> ' ) . "<br >"; //------------------------------ // Add new Model Form @@ -637,11 +633,8 @@ $this->ipsclass->input['make_id'] = implode(',', $this->ipsclass->input['make_id']); } - $this->ipsclass->admin->page_detail = $this->ad_registry_loader->imgs['warning'] ." Before we delete the Fusion Registry Vehicle Make(s), we need to determine what to do with any vehicles that may be associated to the Make(s). Please note that during this process all models belonging to the make(s) will also be deleted. Any vehicles that are associated to those models will have their Models un-associated and will need to be updated."; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Removing Fusion Registry Make(s)", $this->ad_registry_loader->imgs['warning'] ." Before we delete the Fusion Registry Vehicle Make(s), we need to determine what to do with any vehicles that may be associated to the Make(s). Please note that during this process all models belonging to the make(s) will also be deleted. Any vehicles that are associated to those models will have their Models un-associated and will need to be updated.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_title = "Removing Fusion Registry Make(s)"; - - // Build the HTML $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code' , 'delete_make' ), 2 => array( 'act' , REGISTRY_URL ), @@ -807,11 +800,8 @@ $this->ipsclass->input['model_id'] = implode(',', $this->ipsclass->input['model_id']); } - $this->ipsclass->admin->page_detail = $this->ad_registry_loader->imgs['warning'] ." Before we delete this Fusion Registry Vehicle Model, we need to determine what to do with any vehicles that may be associated to this Model."; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Removing Fusion Registry Vehicle Model(s)", $this->ad_registry_loader->imgs['warning'] ." Before we delete this Fusion Registry Vehicle Model, we need to determine what to do with any vehicles that may be associated to this Model.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_title = "Removing Fusion Registry Vehicle Model(s)"; - - // Build the HTML $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code' , 'delete_model' ), 2 => array( 'act' , REGISTRY_URL ), Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -510,10 +510,8 @@ */ function main_menu() { - $this->ipsclass->admin->page_title = "Edit permissions for Fusion Registry"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Edit permissions for Fusion Registry", "<b>Fusion Registry access permissions</b><br />(Check box for access, uncheck to not allow access). 'Interact' dictates whether the mask will be able to vote, search, and leave comments in the Registry. 'Add' dictates whether the mask will be able to add new items and modifications to the Fusion Registry. 'Upload' dictates whether the mask will be able to upload images in the Fusion Registry.<p /><b>NOTE:</b> Regardless of permission settings for Guests below they will not be allowed to add a new item to the Fusion Registry.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_detail = "<b>Fusion Registry access permissions</b><br />(Check box for access, uncheck to not allow access). 'Interact' dictates whether the mask will be able to vote, search, and leave comments in the Registry. 'Add' dictates whether the mask will be able to add new items and modifications to the Fusion Registry. 'Upload' dictates whether the mask will be able to upload images in the Fusion Registry.<p /><b>NOTE:</b> Regardless of permission settings for Guests below they will not be allowed to add a new item to the Fusion Registry."; - $code = "config"; $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', $code ), @@ -542,4 +540,4 @@ $this->ipsclass->admin->output(); } } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -192,8 +192,6 @@ */ function do_form($type='edit') { - $this->ipsclass->admin->page_detail = "This section will allow you to add or edit an existing rating field."; - if ( $type == 'edit' ) { if ($this->ipsclass->input['r'] == "") @@ -222,7 +220,7 @@ $code = "donew"; } - $this->ipsclass->admin->page_title = $title; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( $title, "This section will allow you to add or edit an existing rating field.".'<br /> ' ) . "<br >"; $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', $code ), 2 => array( 'act' , REGISTRY_URL ), @@ -293,8 +291,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "You may update your Fusion Registry Rating Configuration below."; - $this->ipsclass->admin->page_title = "Fusion Registry Rating Configuration"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Rating Configuration", "You may update your Fusion Registry Rating Configuration below.".'<br /> ' ) . "<br >"; //------------------------------ // Fusion Registry Configuration form Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -53,8 +53,8 @@ /**#@+ @var string */ var $base_url; - var $r_version_short = 'v3.0.3'; - var $r_version_long = '30003'; + var $r_version_short = 'v3.0.4'; + var $r_version_long = '30004'; /**#@-*/ /** @var object */ Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -164,8 +164,7 @@ // Construct menu HTML //------------------------------- - $this->ipsclass->admin->page_detail = "Below are all the orphaned files that were found. An orphaned file is defined as a file that exists on your local drive that is no longer present in the database.<br />Please check all the applicable orphans you wish to delete.<br /><br />". $this->ad_registry_loader->imgs['warning'] ." <b>This operation is not undo-able! Once you choose to remove an orphan it is gone for good.</b>"; - $this->ipsclass->admin->page_title = "Fusion Registry Orphan Locator"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Orphan Locator", "Below are all the orphaned files that were found. An orphaned file is defined as a file that exists on your local drive that is no longer present in the database.<br />Please check all the applicable orphans you wish to delete.<br /><br />". $this->ad_registry_loader->imgs['warning'] ." <b>This operation is not undo-able! Once you choose to remove an orphan it is gone for good.</b>".'<br /> ' ) . "<br >"; // Inject our javascript toggle $this->ipsclass->html .= <<<EOF @@ -713,8 +712,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "Below are tools that can help you keep your Fusion Registry running smooth."; - $this->ipsclass->admin->page_title = "Fusion Registry Tools"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Tools", "Below are tools that can help you keep your Fusion Registry running smooth.".'<br /> ' ) . "<br >"; //------------------------------- // Rebuild Thumbs Modified: trunk/upload/sources/components_acp/registry.php =================================================================== --- trunk/upload/sources/components_acp/registry.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_acp/registry.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusion_config.php =================================================================== --- trunk/upload/sources/components_public/fusion_config.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusion_config.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -42,8 +42,8 @@ define( 'INS_ROOT_PATH', '../../../../../' ); define( 'INS_KERNEL_PATH', INS_ROOT_PATH.'ips_kernel/' ); -define( 'FR_VERSION_SHORT', 'v3.0.3' ); -define( 'FR_VERSION_LONG', '30003' ); +define( 'FR_VERSION_SHORT', 'v3.0.4' ); +define( 'FR_VERSION_LONG', '30004' ); require './template.php'; Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,5 +2,5 @@ INSERT INTO `ibf_registry_config` VALUES ('convert_path', '/usr/bin/convert'); INSERT INTO `ibf_registry_config` VALUES ('convert_options', '-antialias +profile "*"'); INSERT INTO `ibf_registry_config` VALUES ('date_format', 'm-j-y H:i'); -INSERT INTO `ibf_registry_config` VALUES ('version_long', '30003'); -INSERT INTO `ibf_registry_config` VALUES ('version_short', 'v3.0.3'); \ No newline at end of file +INSERT INTO `ibf_registry_config` VALUES ('version_long', '30004'); +INSERT INTO `ibf_registry_config` VALUES ('version_short', 'v3.0.4'); \ No newline at end of file Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -713,4 +713,4 @@ } } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -59,8 +59,8 @@ var $class = ""; /** @var string */ - var $r_version_short = 'v3.0.3'; - var $r_version_long = '30003'; + var $r_version_short = 'v3.0.4'; + var $r_version_long = '30004'; var $r_session = ""; /**#@-*/ Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -1084,4 +1084,4 @@ } } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -377,4 +377,4 @@ } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -379,4 +379,4 @@ } } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -562,4 +562,4 @@ } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -604,4 +604,4 @@ } -?> +?> \ No newline at end of file Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or @@ -191,6 +191,7 @@ // These are straight "INSERT ... SELECT ... FROM ..." statements. // Images + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_images ". "( attach_id, attach_location, attach_hits, attach_ext, attach_file, ". "attach_thumb_location, attach_thumb_width, attach_thumb_height, ". @@ -203,6 +204,7 @@ $executed++; // Gallery + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_gallery ". "( id, item_id, image_id ) ". "SELECT g.id, g.garage_id, g.image_id ". @@ -211,6 +213,7 @@ $executed++; // Guestbooks + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_guestbooks ". "( id, item_id, author_id, post_date, ip_address, post ) ". "SELECT gb.id, gb.garage_id, gb.author_id, gb.post_date, gb.ip_address, gb.post ". @@ -219,6 +222,7 @@ $executed++; // Categories + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_categories ". "( id, title, image_id ) ". "SELECT c.id, c.title, c.image_id ". @@ -227,6 +231,7 @@ $executed++; // Makes + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_makes ". "( id, make ) ". "SELECT m.id, m.make ". @@ -235,6 +240,7 @@ $executed++; // Models + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_models ". "( id, make_id, model ) ". "SELECT m.id, m.make_id, m.model ". @@ -243,6 +249,7 @@ $executed++; // Modifications + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_mods ". "( id, item_id, member_id, category_id, title, price, install_price, ". "rating, comments, image_id, date_created, date_updated ) ". Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php 2007-06-20 03:30:39 UTC (rev 23) @@ -2,7 +2,7 @@ /*-------------------------------------------------------------------------\ | | ======================================================== -| Fusion Registry GPL v3.0.3 +| Fusion Registry GPL | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or Copied: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004 (from rev 22, branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004) Deleted: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php 2007-06-19 17:55:50 UTC (rev 22) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php 2007-06-20 03:30:39 UTC (rev 23) @@ -1,144 +0,0 @@ -<?php -/*-------------------------------------------------------------------------\ -| -| ======================================================== -| Fusion Registry GPL -| Copyright (C) 2007 Fusion Scripts -| -| This program is free software; you can redistribute it and/or -| modify it under the terms of the GNU General Public License -| as published by the Free Software Foundation; either version 2 -| of the License, or (at your option) any later version. -| -| This program is distributed in the hope that it will be useful, -| but WITHOUT ANY WARRANTY; without even the implied warranty of -| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -| GNU General Public License for more details. -| -| You should have received a copy of the GNU General Public License -| along with this program; if not, write to the Free Software -| Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -| ======================================================== -| -| Email: in...@fu... -| Web-Site: http://www.fusionscripts.com/ -| -| $Id$ -| -\-------------------------------------------------------------------------*/ - -/** - * Installation template class - * - * @package Fusion Registry - * @subpackage installer - * @version $Id$ - */ -if ( ! defined( 'IN_IPB' ) ) -{ - print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files."; - exit(); -} - -class version_upgrade -{ - var $ipsclass; - var $instagrade; - var $this_version = '30004'; - var $upgrade_from = '30003'; - var $base_url = ''; - var $mod_to_run = ''; - - - /** - * Generate the upgrades to happen string - */ - function version_process() - { - $this->base_url = "index.php?act=kit"; - - if ( is_array( $this->instagrade->modules_to_run ) and count( $this->instagrade->modules_to_run ) ) - { - $tmp = array_shift( $this->instagrade->modules_to_run ); - - $this->mod_to_run = implode( ', ', $this->instagrade->modules_to_run ); - } - - if ( ! $this->mod_to_run ) - { - $this->mod_to_run = 'None'; - } - } - - - /** - * Oh how we love to upgrade! - */ - function auto_run() - { - switch( $this->ipsclass->input['kitact'] ) - { - case 'cleanup': - $this->do_cleanup(); - break; - - default: - $this->upgrade_kit_intro(); - break; - } - } - - - - /** - * Only thing we need to do is update the DB version - */ - function do_cleanup() - { - $executed = 0; - - // Update the database version strings - $vers = array( 'version_long' => $this->this_version, - 'version_short' => 'v3.0.4' ); - - foreach ( $vers ... [truncated message content] |
From: SVN c. <fus...@li...> - 2007-06-19 17:55:47
|
Revision: 22 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=22&view=rev Author: copland007 Date: 2007-06-19 10:55:50 -0700 (Tue, 19 Jun 2007) Log Message: ----------- Add cleanup section Modified Paths: -------------- tools/trunk/release.sh Modified: tools/trunk/release.sh =================================================================== --- tools/trunk/release.sh 2007-06-19 04:55:43 UTC (rev 21) +++ tools/trunk/release.sh 2007-06-19 17:55:50 UTC (rev 22) @@ -84,7 +84,14 @@ rm -f ${dirname}.tar zip -9 -r ${dirname}.zip ${dirname} +echo $split echo +echo "Cleaning up ..." +echo + +rm -rf ${dirname} + +echo echo $split echo echo "Generating md5sums ..." This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-19 03:47:16
|
Revision: 19 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=19&view=rev Author: copland007 Date: 2007-06-18 20:47:18 -0700 (Mon, 18 Jun 2007) Log Message: ----------- Create tag release_3_0_4 Added Paths: ----------- tags/release_3_0_4/ Copied: tags/release_3_0_4 (from rev 18, branches/stable_3_0_x) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-19 03:42:45
|
Revision: 18 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=18&view=rev Author: copland007 Date: 2007-06-18 20:42:46 -0700 (Mon, 18 Jun 2007) Log Message: ----------- Update version number to 3.0.4 Modified Paths: -------------- branches/stable_3_0_x/fusionregistry_component.xml branches/stable_3_0_x/ipb_skin-fusionregistry.xml.gz branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php Added Paths: ----------- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php Modified: branches/stable_3_0_x/fusionregistry_component.xml =================================================================== --- branches/stable_3_0_x/fusionregistry_component.xml 2007-06-19 03:34:29 UTC (rev 17) +++ branches/stable_3_0_x/fusionregistry_component.xml 2007-06-19 03:42:46 UTC (rev 18) @@ -6,7 +6,7 @@ <com_title>Fusion Registry</com_title> <com_author>Fusion Scripts</com_author> <com_url>http://www.fusionscripts.com</com_url> - <com_version>3.0.3</com_version> + <com_version>3.0.4</com_version> <com_date_added>1181093473</com_date_added> <com_menu_data><![CDATA[a:7:{i:1;a:5:{s:9:"menu_text";s:13:"Configuration";s:8:"menu_url";s:11:"menu=config";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:6:"config";s:13:"menu_permlang";s:29:"Allow ACCESS to configuration";}i:11;a:5:{s:9:"menu_text";s:13:"Custom Fields";s:8:"menu_url";s:18:"menu=custom_fields";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:13:"custom_fields";s:13:"menu_permlang";s:29:"Allow ACCESS to custom fields";}i:111;a:5:{s:9:"menu_text";s:13:"Rating Fields";s:8:"menu_url";s:18:"menu=rating_fields";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:13:"rating_fields";s:13:"menu_permlang";s:29:"Allow ACCESS to rating fields";}i:1111;a:5:{s:9:"menu_text";s:18:"Makes & Models";s:8:"menu_url";s:17:"menu=makes_models";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:12:"makes_models";s:13:"menu_permlang";s:34:"Allow ACCESS to makes & models";}i:11111;a:5:{s:9:"menu_text";s:23:"Modification Categories";s:8:"menu_url";s:15:"menu=categories";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:10:"categories";s:13:"menu_permlang";s:39:"Allow ACCESS to modification categories";}i:111111;a:5:{s:9:"menu_text";s:11:"Permissions";s:8:"menu_url";s:16:"menu=permissions";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:11:"permissions";s:13:"menu_permlang";s:27:"Allow ACCESS to permissions";}i:1111111;a:5:{s:9:"menu_text";s:5:"Tools";s:8:"menu_url";s:10:"menu=tools";s:13:"menu_redirect";i:0;s:12:"menu_permbit";s:5:"tools";s:13:"menu_permlang";s:21:"Allow ACCESS to tools";}}]]></com_menu_data> <com_enabled>1</com_enabled> Modified: branches/stable_3_0_x/ipb_skin-fusionregistry.xml.gz =================================================================== (Binary files differ) Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php 2007-06-19 03:34:29 UTC (rev 17) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php 2007-06-19 03:42:46 UTC (rev 18) @@ -53,8 +53,8 @@ /**#@+ @var string */ var $base_url; - var $r_version_short = 'v3.0.3'; - var $r_version_long = '30003'; + var $r_version_short = 'v3.0.4'; + var $r_version_long = '30004'; /**#@-*/ /** @var object */ Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php 2007-06-19 03:34:29 UTC (rev 17) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php 2007-06-19 03:42:46 UTC (rev 18) @@ -42,8 +42,8 @@ define( 'INS_ROOT_PATH', '../../../../../' ); define( 'INS_KERNEL_PATH', INS_ROOT_PATH.'ips_kernel/' ); -define( 'FR_VERSION_SHORT', 'v3.0.3' ); -define( 'FR_VERSION_LONG', '30003' ); +define( 'FR_VERSION_SHORT', 'v3.0.4' ); +define( 'FR_VERSION_LONG', '30004' ); require './template.php'; Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php 2007-06-19 03:34:29 UTC (rev 17) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php 2007-06-19 03:42:46 UTC (rev 18) @@ -2,5 +2,5 @@ INSERT INTO `ibf_registry_config` VALUES ('convert_path', '/usr/bin/convert'); INSERT INTO `ibf_registry_config` VALUES ('convert_options', '-antialias +profile "*"'); INSERT INTO `ibf_registry_config` VALUES ('date_format', 'm-j-y H:i'); -INSERT INTO `ibf_registry_config` VALUES ('version_long', '30003'); -INSERT INTO `ibf_registry_config` VALUES ('version_short', 'v3.0.3'); \ No newline at end of file +INSERT INTO `ibf_registry_config` VALUES ('version_long', '30004'); +INSERT INTO `ibf_registry_config` VALUES ('version_short', 'v3.0.4'); \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php 2007-06-19 03:34:29 UTC (rev 17) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php 2007-06-19 03:42:46 UTC (rev 18) @@ -59,8 +59,8 @@ var $class = ""; /** @var string */ - var $r_version_short = 'v3.0.3'; - var $r_version_long = '30003'; + var $r_version_short = 'v3.0.4'; + var $r_version_long = '30004'; var $r_session = ""; /**#@-*/ Added: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php (rev 0) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php 2007-06-19 03:42:46 UTC (rev 18) @@ -0,0 +1,144 @@ +<?php +/*-------------------------------------------------------------------------\ +| +| ======================================================== +| Fusion Registry GPL +| Copyright (C) 2007 Fusion Scripts +| +| This program is free software; you can redistribute it and/or +| modify it under the terms of the GNU General Public License +| as published by the Free Software Foundation; either version 2 +| of the License, or (at your option) any later version. +| +| This program is distributed in the hope that it will be useful, +| but WITHOUT ANY WARRANTY; without even the implied warranty of +| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +| GNU General Public License for more details. +| +| You should have received a copy of the GNU General Public License +| along with this program; if not, write to the Free Software +| Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +| ======================================================== +| +| Email: in...@fu... +| Web-Site: http://www.fusionscripts.com/ +| +| $Id$ +| +\-------------------------------------------------------------------------*/ + +/** + * Installation template class + * + * @package Fusion Registry + * @subpackage installer + * @version $Id$ + */ +if ( ! defined( 'IN_IPB' ) ) +{ + print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files."; + exit(); +} + +class version_upgrade +{ + var $ipsclass; + var $instagrade; + var $this_version = '30004'; + var $upgrade_from = '30003'; + var $base_url = ''; + var $mod_to_run = ''; + + + /** + * Generate the upgrades to happen string + */ + function version_process() + { + $this->base_url = "index.php?act=kit"; + + if ( is_array( $this->instagrade->modules_to_run ) and count( $this->instagrade->modules_to_run ) ) + { + $tmp = array_shift( $this->instagrade->modules_to_run ); + + $this->mod_to_run = implode( ', ', $this->instagrade->modules_to_run ); + } + + if ( ! $this->mod_to_run ) + { + $this->mod_to_run = 'None'; + } + } + + + /** + * Oh how we love to upgrade! + */ + function auto_run() + { + switch( $this->ipsclass->input['kitact'] ) + { + case 'cleanup': + $this->do_cleanup(); + break; + + default: + $this->upgrade_kit_intro(); + break; + } + } + + + + /** + * Only thing we need to do is update the DB version + */ + function do_cleanup() + { + $executed = 0; + + // Update the database version strings + $vers = array( 'version_long' => $this->this_version, + 'version_short' => 'v3.0.4' ); + + foreach ( $vers as $name => $value ) + { + $db_string = $this->ipsclass->DB->compile_db_update_string( array( 'config_name' => $name, + 'config_value' => $value + ) ); + + $this->ipsclass->DB->query( "UPDATE ".$this->ipsclass->vars['sql_tbl_prefix']."registry_config SET $db_string ". + "WHERE config_name='$name'" ); + + $executed++; + } + + + // All done + $this->instagrade->redirect( "index.php?act=done", "Cleanup complete, $executed queries run...." ); + } + + + /** + * Print intro + */ + function upgrade_kit_intro() + { + $this->ipsclass->template->print_header(); + + $this->ipsclass->template->contents .= <<<HTML +This upgrade kit will upgrade you from <b>"{$this->instagrade->version_history[$this->upgrade_from]}"</b> to <b>"{$this->instagrade->version_history[$this->this_version]}"</b> +<br /> +<br /> +<div align='center'><a href="{$this->base_url}&kitact=cleanup" class='button' style='color: #003366'>Continue >></a></div> +<br /> +<br /> +<div align='center'>Upgrade kits still to run after this upgrade: {$this->mod_to_run}</div> +HTML; + + $this->ipsclass->template->output(); + } + +} + +?> \ No newline at end of file Property changes on: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30004/version_upgrade.php ___________________________________________________________________ Name: svn:keywords + Id Name: svn:eol-style + native Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php 2007-06-19 03:34:29 UTC (rev 17) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php 2007-06-19 03:42:46 UTC (rev 18) @@ -7,6 +7,7 @@ '30001' => 'Fusion Registry v3.0.1 Final', '30002' => 'Fusion Registry v3.0.2 Final', '30003' => 'Fusion Registry v3.0.3', + '30004' => 'Fusion Registry v3.0.4', ); ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-18 19:29:16
|
Revision: 14 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=14&view=rev Author: copland007 Date: 2007-06-18 12:25:40 -0700 (Mon, 18 Jun 2007) Log Message: ----------- Resolve bug 1739318. Insert "$this->ipsclass->DB->allow_sub_select = 1;" before any sub-select queries. Modified Paths: -------------- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php 2007-06-18 07:25:57 UTC (rev 13) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php 2007-06-18 19:25:40 UTC (rev 14) @@ -191,6 +191,7 @@ // These are straight "INSERT ... SELECT ... FROM ..." statements. // Images + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_images ". "( attach_id, attach_location, attach_hits, attach_ext, attach_file, ". "attach_thumb_location, attach_thumb_width, attach_thumb_height, ". @@ -203,6 +204,7 @@ $executed++; // Gallery + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_gallery ". "( id, item_id, image_id ) ". "SELECT g.id, g.garage_id, g.image_id ". @@ -211,6 +213,7 @@ $executed++; // Guestbooks + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_guestbooks ". "( id, item_id, author_id, post_date, ip_address, post ) ". "SELECT gb.id, gb.garage_id, gb.author_id, gb.post_date, gb.ip_address, gb.post ". @@ -219,6 +222,7 @@ $executed++; // Categories + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_categories ". "( id, title, image_id ) ". "SELECT c.id, c.title, c.image_id ". @@ -227,6 +231,7 @@ $executed++; // Makes + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_makes ". "( id, make ) ". "SELECT m.id, m.make ". @@ -235,6 +240,7 @@ $executed++; // Models + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_models ". "( id, make_id, model ) ". "SELECT m.id, m.make_id, m.model ". @@ -243,6 +249,7 @@ $executed++; // Modifications + $this->ipsclass->DB->allow_sub_select = 1; $this->ipsclass->DB->query( "INSERT INTO ".$this->ipsclass->vars['sql_tbl_prefix']."registry_mods ". "( id, item_id, member_id, category_id, title, price, install_price, ". "rating, comments, image_id, date_created, date_updated ) ". |
From: SVN c. <fus...@li...> - 2007-06-18 05:29:46
|
Revision: 12 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=12&view=rev Author: copland007 Date: 2007-06-17 22:29:48 -0700 (Sun, 17 Jun 2007) Log Message: ----------- Initial import. Added Paths: ----------- tools/trunk/release.sh Added: tools/trunk/release.sh =================================================================== --- tools/trunk/release.sh (rev 0) +++ tools/trunk/release.sh 2007-06-18 05:29:48 UTC (rev 12) @@ -0,0 +1,105 @@ +#!/bin/bash +# +# release.sh: build release +# +# USAGE: release.sh PROJECT TAG RELEASE-VERSION +# +# TAG is the SVN tag of the release +# +# RELEASE-VERSION is the name that will be given to the tarball. +# Eg. if RELEASE-VERSION is v3_0_3 then the tarball will be fusionregistry-v3_0_3.tar.gz +# +# +# $Id$ +# + +if [ $# -lt "3" ] +then + echo + echo "Usage: $0 PROJECT TAG RELEASE-VERSION" + echo " see the comments in this script for more info." + echo + exit 1 +fi + +# This forces all exported releases to be on the same timezone +# when SVN props are used inside files. +TZ=UTC + +PROJECT=$1 +TAG=$2 +RELEASE_VERSION=$3 + +case "$PROJECT" in + fusionregistry) + repos_name="fusionregistry" + ;; + *) + echo + echo "ERROR: '$PROJECT' is an unknown project." + echo " choose one of: fusionregistry" + echo + exit 1 +esac + +dirname="${repos_name}-${RELEASE_VERSION}" + +echo +echo " Tag name: $TAG" +echo " Directory: $dirname" + +if test -d ${dirname}; then + echo "ERROR: for safety, you must manually remove $dirname." + echo + exit 1 +fi + +split="---------------------------------------------------------------------" + +# make sure that the perms are good for the tarball +umask 022 + +echo +echo $split +echo +echo "Starting SVN export of ${repos_name} to $dirname ..." +echo +svn export https://fusionregistry.svn.sourceforge.net/svnroot/${repos_name}/tags/${TAG} ${dirname} + +echo +echo $split +echo +echo "Eliminating unwanted files (e.g. .cvsignore) ..." + +find $dirname -name .cvsignore | xargs rm -f + +echo +echo $split +echo +echo "Building the tarball, .gz and .bz2 files ..." + +tar cf ${dirname}.tar ${dirname} +gzip -9 --to-stdout ${dirname}.tar > ${dirname}.tar.gz +bzip2 -9 -c ${dirname}.tar > ${dirname}.tar.bz2 +rm ${dirname}.tar +zip -9 -r ${dirname}.zip ${dirname} + +echo +echo $split +echo +echo "Generating md5sums ..." + +rm -f ${dirname}.md5 + +ARCH_FORMATS="tar.gz tar.bz2 zip" + +if test -x "`which md5sum 2> /dev/null`"; then + for x in ${ARCH_FORMATS} + do + md5sum ${dirname}.${x} >> ${dirname}.md5 + done +fi + +echo +echo "Completed!" +echo Property changes on: tools/trunk/release.sh ___________________________________________________________________ Name: svn:executable + * Name: svn:keywords + Id Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-17 06:20:09
|
Revision: 9 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=9&view=rev Author: copland007 Date: 2007-06-16 23:20:07 -0700 (Sat, 16 Jun 2007) Log Message: ----------- Resolve bug 1737606. $ipsclass->admin->page_detail and page_title were removed from the ACP skin template in IPB 2.3.0, to fix now implicitly insert $ipsclass->skin_acp_global->information_box() into each ACP page. Modified Paths: -------------- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php 2007-06-15 05:12:19 UTC (rev 8) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php 2007-06-17 06:20:07 UTC (rev 9) @@ -185,11 +185,8 @@ $cat_array[] = array( $registry_cat['id'], $registry_cat['title']); } - $this->ipsclass->admin->page_detail = "Before we remove this Fusion Registry category, we need to determine what to do with any modifications that may be left in this category."; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Removing Fusion Registry category '$name'", "Before we remove this Fusion Registry category, we need to determine what to do with any modifications that may be left in this category.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_title = "Removing Fusion Registry category '$name'"; - - // Build the HTML $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', 'delete_cat' ), 2 => array( 'act' , REGISTRY_URL ), @@ -225,8 +222,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "You may add/modify/delete Fusion Registry Modification Categories below."; - $this->ipsclass->admin->page_title = "Fusion Registry Category Management"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Category Management", "You may add/modify/delete Fusion Registry Modification Categories below.".'<br /> ' ) . "<br >"; //---------------------------------------- // Current Categories Modify/Delete Form @@ -339,8 +335,7 @@ 5 => array( 'section', 'components' ), ) ); - $this->ipsclass->admin->page_detail = "You may modify the title for the Fusion Registry category below."; - $this->ipsclass->admin->page_title = "Modifying Fusion Registry Category '{$registry_cat['title']}'"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Modifying Fusion Registry Category '{$registry_cat['title']}'", "You may modify the title for the Fusion Registry category below.".'<br /> ' ) . "<br >"; $this->ipsclass->adskin->td_header[] = array( " " , "20%" ); $this->ipsclass->adskin->td_header[] = array( " " , "80%" ); Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-15 05:12:19 UTC (rev 8) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-17 06:20:07 UTC (rev 9) @@ -181,8 +181,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "You may update your Fusion Registry Configuration below."; - $this->ipsclass->admin->page_title = "Fusion Registry Configuration"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Configuration", "You may update your Fusion Registry Configuration below.".'<br /> ' ) . "<br >"; //------------------------------ // Fusion Registry Configuration form @@ -418,7 +417,6 @@ $this->ipsclass->html .= $this->ipsclass->adskin->end_table(); - // That's all folk! $this->ipsclass->admin->output(); } Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php 2007-06-15 05:12:19 UTC (rev 8) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php 2007-06-17 06:20:07 UTC (rev 9) @@ -216,24 +216,24 @@ */ function do_form($type='edit') { - $this->ipsclass->admin->page_detail = "This section will allow you to add or edit an existing custom field.<br /><br />"; + $cf_help = "This section will allow you to add or edit an existing custom field.<br /><br />"; // Add key to help people out - $this->ipsclass->admin->page_detail .= '<b>Quick Options Help - </b><br /><br />'. - 'For Radio Buttons, Select Lists and Check Boxes enter options like this:<br />'. - 'value1|Display1<br />'. - 'value2|Display2<br />'. - 'Where <i>value</i> is what is stored in the database, and <i>Display</i> '. - 'is what is shown to end users. You can change the <i>Display</i> value at any time and not '. - 'affect existing entries in the database. Enter one <i>value|Display</i> option per line.<br /><br >'. + $cf_help .= '<b>Quick Options Help - </b><br /><br />'. + 'For Radio Buttons, Select Lists and Check Boxes enter options like this:<br />'. + 'value1|Display1<br />'. + 'value2|Display2<br />'. + 'Where <i>value</i> is what is stored in the database, and <i>Display</i> '. + 'is what is shown to end users. You can change the <i>Display</i> value at any time and not '. + 'affect existing entries in the database. Enter one <i>value|Display</i> option per line.<br /><br >'. - 'For special built-in fields you have the following choices available (these are for supporting legacy '. - 'fields for automotive related sites):<br />'. - '<i>year</i> - This will create a populated select list<br />'. - '<i>make</i> - This will create the automotive Make field controlled via javascript<br />'. - '<i>model</i> - This will create the automative Model field controlled via javascript<br /><br />'. + 'For special built-in fields you have the following choices available (these are for supporting legacy '. + 'fields for automotive related sites):<br />'. + '<i>year</i> - This will create a populated select list<br />'. + '<i>make</i> - This will create the automotive Make field controlled via javascript<br />'. + '<i>model</i> - This will create the automative Model field controlled via javascript<br /><br />'. - '<b>NOTE: For the make/model special fields to work you MUST create both of them!</b>'; + '<b>NOTE: For the make/model special fields to work you MUST create both of them!</b>'; if ( $type == 'edit' ) { @@ -265,7 +265,7 @@ $field_types = $this->field_types_list(); - $this->ipsclass->admin->page_title = $title; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( $title, $cf_help.'<br /> ' ) . "<br >"; $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', $code ), 2 => array( 'act' , REGISTRY_URL ), @@ -453,8 +453,6 @@ */ function do_group_form($type='edit') { - $this->ipsclass->admin->page_detail = "This section will allow you to add or edit an existing custom field group. Custom fields can only be in one custom field group at a time, so the available fields to add to the group below will exclude any already present in other groups."; - if ( $type == 'edit' ) { if ($this->ipsclass->input['g'] == "") @@ -481,7 +479,7 @@ $code = "group_donew"; } - $this->ipsclass->admin->page_title = $title; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( $title, "This section will allow you to add or edit an existing custom field group. Custom fields can only be in one custom field group at a time, so the available fields to add to the group below will exclude any already present in other groups.".'<br /> ' ) . "<br >"; // Now let's plop in the dynamic query for either the new/edit group form $rs = $this->ipsclass->DB->query($query); @@ -626,8 +624,7 @@ $cf_defs = $this->lib['custom_fields']->get_cf_defs( array( 'ORDER BY' => 'field_order ASC, field_name ASC' ) ); $cf_groups = $this->lib['custom_fields']->get_cf_groups(); - $this->ipsclass->admin->page_title = "Fusion Registry Custom Fields Overview"; - $this->ipsclass->admin->page_detail = "You can manage your garage custom fields from here.<br /><br /><span style='color:red'><b>PLEASE NOTE:</b> You must not configure the same order number for more than 1 custom field. Doing so will result in some of your custom fields from not showing up!</span>"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Custom Fields Overview", "You can manage your garage custom fields from here.<br /><br /><span style='color:red'><b>PLEASE NOTE:</b> You must not configure the same order number for more than 1 custom field. Doing so will result in some of your custom fields from not showing up!</span>".'<br /> ' ) . "<br >"; // Get the processed list of all custom fields and groups $cf_processed = $this->lib['custom_fields']->process_cf_defs( array( 'cf_defs' => $cf_defs, 'cf_groups' => $cf_groups, 'type' => 'acp_highlight' ) ); Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php 2007-06-15 05:12:19 UTC (rev 8) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php 2007-06-17 06:20:07 UTC (rev 9) @@ -252,9 +252,7 @@ */ function make_menu() { - // Page stuff - $this->ipsclass->admin->page_detail = "You may add/rename/delete Fusion Registry Vehicle Makes below.<br /><br /><b>NOTE:</b> This section of the ACP is targeted towards vehicle based registries.<br />If you do not run a vehicle based registry you can ignore this section of the ACP entirely."; - $this->ipsclass->admin->page_title = "Fusion Registry Vehicle Makes"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Vehicle Makes", "You may add/rename/delete Fusion Registry Vehicle Makes below.<br /><br /><b>NOTE:</b> This section of the ACP is targeted towards vehicle based registries.<br />If you do not run a vehicle based registry you can ignore this section of the ACP entirely.".'<br /> ' ) . "<br >"; //------------------------------ // Add new Make Form @@ -388,9 +386,7 @@ $this->ipsclass->DB->query("SELECT make FROM ibf_registry_makes WHERE id='".$this->ipsclass->input['make_id']."'"); $make = $this->ipsclass->DB->fetch_row(); - // Page stuff - $this->ipsclass->admin->page_detail = "You may add/rename/delete Fusion Registry Vehicle Models below."; - $this->ipsclass->admin->page_title = "Fusion Registry `". $make['make'] ."` Models"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry `". $make['make'] ."` Models", "You may add/rename/delete Fusion Registry Vehicle Models below.".'<br /> ' ) . "<br >"; //------------------------------ // Add new Model Form @@ -637,11 +633,8 @@ $this->ipsclass->input['make_id'] = implode(',', $this->ipsclass->input['make_id']); } - $this->ipsclass->admin->page_detail = $this->ad_registry_loader->imgs['warning'] ." Before we delete the Fusion Registry Vehicle Make(s), we need to determine what to do with any vehicles that may be associated to the Make(s). Please note that during this process all models belonging to the make(s) will also be deleted. Any vehicles that are associated to those models will have their Models un-associated and will need to be updated."; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Removing Fusion Registry Make(s)", $this->ad_registry_loader->imgs['warning'] ." Before we delete the Fusion Registry Vehicle Make(s), we need to determine what to do with any vehicles that may be associated to the Make(s). Please note that during this process all models belonging to the make(s) will also be deleted. Any vehicles that are associated to those models will have their Models un-associated and will need to be updated.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_title = "Removing Fusion Registry Make(s)"; - - // Build the HTML $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code' , 'delete_make' ), 2 => array( 'act' , REGISTRY_URL ), @@ -807,11 +800,8 @@ $this->ipsclass->input['model_id'] = implode(',', $this->ipsclass->input['model_id']); } - $this->ipsclass->admin->page_detail = $this->ad_registry_loader->imgs['warning'] ." Before we delete this Fusion Registry Vehicle Model, we need to determine what to do with any vehicles that may be associated to this Model."; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Removing Fusion Registry Vehicle Model(s)", $this->ad_registry_loader->imgs['warning'] ." Before we delete this Fusion Registry Vehicle Model, we need to determine what to do with any vehicles that may be associated to this Model.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_title = "Removing Fusion Registry Vehicle Model(s)"; - - // Build the HTML $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code' , 'delete_model' ), 2 => array( 'act' , REGISTRY_URL ), Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-15 05:12:19 UTC (rev 8) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-17 06:20:07 UTC (rev 9) @@ -510,10 +510,8 @@ */ function main_menu() { - $this->ipsclass->admin->page_title = "Edit permissions for Fusion Registry"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Edit permissions for Fusion Registry", "<b>Fusion Registry access permissions</b><br />(Check box for access, uncheck to not allow access). 'Interact' dictates whether the mask will be able to vote, search, and leave comments in the Registry. 'Add' dictates whether the mask will be able to add new items and modifications to the Fusion Registry. 'Upload' dictates whether the mask will be able to upload images in the Fusion Registry.<p /><b>NOTE:</b> Regardless of permission settings for Guests below they will not be allowed to add a new item to the Fusion Registry.".'<br /> ' ) . "<br >"; - $this->ipsclass->admin->page_detail = "<b>Fusion Registry access permissions</b><br />(Check box for access, uncheck to not allow access). 'Interact' dictates whether the mask will be able to vote, search, and leave comments in the Registry. 'Add' dictates whether the mask will be able to add new items and modifications to the Fusion Registry. 'Upload' dictates whether the mask will be able to upload images in the Fusion Registry.<p /><b>NOTE:</b> Regardless of permission settings for Guests below they will not be allowed to add a new item to the Fusion Registry."; - $code = "config"; $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', $code ), Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php 2007-06-15 05:12:19 UTC (rev 8) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php 2007-06-17 06:20:07 UTC (rev 9) @@ -192,8 +192,6 @@ */ function do_form($type='edit') { - $this->ipsclass->admin->page_detail = "This section will allow you to add or edit an existing rating field."; - if ( $type == 'edit' ) { if ($this->ipsclass->input['r'] == "") @@ -222,7 +220,7 @@ $code = "donew"; } - $this->ipsclass->admin->page_title = $title; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( $title, "This section will allow you to add or edit an existing rating field.".'<br /> ' ) . "<br >"; $this->ipsclass->html .= $this->ipsclass->adskin->start_form( array( 1 => array( 'code', $code ), 2 => array( 'act' , REGISTRY_URL ), @@ -293,8 +291,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "You may update your Fusion Registry Rating Configuration below."; - $this->ipsclass->admin->page_title = "Fusion Registry Rating Configuration"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Rating Configuration", "You may update your Fusion Registry Rating Configuration below.".'<br /> ' ) . "<br >"; //------------------------------ // Fusion Registry Configuration form Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2007-06-15 05:12:19 UTC (rev 8) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2007-06-17 06:20:07 UTC (rev 9) @@ -164,8 +164,7 @@ // Construct menu HTML //------------------------------- - $this->ipsclass->admin->page_detail = "Below are all the orphaned files that were found. An orphaned file is defined as a file that exists on your local drive that is no longer present in the database.<br />Please check all the applicable orphans you wish to delete.<br /><br />". $this->ad_registry_loader->imgs['warning'] ." <b>This operation is not undo-able! Once you choose to remove an orphan it is gone for good.</b>"; - $this->ipsclass->admin->page_title = "Fusion Registry Orphan Locator"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Orphan Locator", "Below are all the orphaned files that were found. An orphaned file is defined as a file that exists on your local drive that is no longer present in the database.<br />Please check all the applicable orphans you wish to delete.<br /><br />". $this->ad_registry_loader->imgs['warning'] ." <b>This operation is not undo-able! Once you choose to remove an orphan it is gone for good.</b>".'<br /> ' ) . "<br >"; // Inject our javascript toggle $this->ipsclass->html .= <<<EOF @@ -713,8 +712,7 @@ */ function main_menu() { - $this->ipsclass->admin->page_detail = "Below are tools that can help you keep your Fusion Registry running smooth."; - $this->ipsclass->admin->page_title = "Fusion Registry Tools"; + $this->ipsclass->html .= $this->ipsclass->skin_acp_global->information_box( "Fusion Registry Tools", "Below are tools that can help you keep your Fusion Registry running smooth.".'<br /> ' ) . "<br >"; //------------------------------- // Rebuild Thumbs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-15 05:12:18
|
Revision: 8 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=8&view=rev Author: copland007 Date: 2007-06-14 22:12:19 -0700 (Thu, 14 Jun 2007) Log Message: ----------- Remove trailing newline to prevent IPB Whitespace Checker from reporting these files. Modified Paths: -------------- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php branches/stable_3_0_x/upload/sources/tasks/registrysessions.php Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-15 05:12:19 UTC (rev 8) @@ -423,4 +423,4 @@ $this->ipsclass->admin->output(); } } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-15 05:12:19 UTC (rev 8) @@ -542,4 +542,4 @@ $this->ipsclass->admin->output(); } } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php 2007-06-15 05:12:19 UTC (rev 8) @@ -713,4 +713,4 @@ } } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php 2007-06-15 05:12:19 UTC (rev 8) @@ -1084,4 +1084,4 @@ } } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php 2007-06-15 05:12:19 UTC (rev 8) @@ -377,4 +377,4 @@ } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php 2007-06-15 05:12:19 UTC (rev 8) @@ -379,4 +379,4 @@ } } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php 2007-06-15 05:12:19 UTC (rev 8) @@ -562,4 +562,4 @@ } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php =================================================================== --- branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php 2007-06-15 05:12:19 UTC (rev 8) @@ -604,4 +604,4 @@ } -?> +?> \ No newline at end of file Modified: branches/stable_3_0_x/upload/sources/tasks/registrysessions.php =================================================================== --- branches/stable_3_0_x/upload/sources/tasks/registrysessions.php 2007-06-13 03:54:02 UTC (rev 7) +++ branches/stable_3_0_x/upload/sources/tasks/registrysessions.php 2007-06-15 05:12:19 UTC (rev 8) @@ -113,4 +113,4 @@ } } -?> +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-13 03:56:44
|
Revision: 7 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=7&view=rev Author: copland007 Date: 2007-06-12 20:54:02 -0700 (Tue, 12 Jun 2007) Log Message: ----------- Create release_3_0_3 tag Added Paths: ----------- tags/release_3_0_3/ Copied: tags/release_3_0_3 (from rev 6, branches/stable_3_0_x) |
From: SVN c. <fus...@li...> - 2007-06-13 03:49:49
|
Revision: 6 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=6&view=rev Author: copland007 Date: 2007-06-12 20:49:50 -0700 (Tue, 12 Jun 2007) Log Message: ----------- Create stable_3_0_x branch Added Paths: ----------- branches/stable_3_0_x/ Copied: branches/stable_3_0_x (from rev 5, trunk) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: CVS c. <fus...@li...> - 2007-06-12 02:42:37
|
Revision: 5 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=5&view=rev Author: copland007 Date: 2007-06-11 19:42:36 -0700 (Mon, 11 Jun 2007) Log Message: ----------- Added optional step for profile link if user has custom skin. Modified Paths: -------------- trunk/INSTALL.txt trunk/UPGRADE.txt Modified: trunk/INSTALL.txt =================================================================== --- trunk/INSTALL.txt 2007-06-11 05:00:21 UTC (rev 4) +++ trunk/INSTALL.txt 2007-06-12 02:42:36 UTC (rev 5) @@ -108,7 +108,29 @@ ii) ADD at the top of the file after the "$lang = array(" line: 'find_registry' => "Find Member's <{R_NAME}> Entries", +iii) If you already have a custom skin in place you will need to do this + step as well. If you do not have a skin that customized 'Topic View' -> + 'RenderRow' you can skip this step! + Head into your ACP -> Look & Feel -> Skin Manager. Click on your skin + set (not the imported Fusion Registry skin), and choose 'Edit Template + HTML'. Choose 'Topic View' -> 'RenderRow'. Find the following: + +<div class='popupmenu-item-last'> + <img src='{$this->ipsclass->vars['img_url']}/folder_profile_portal/find_posts.png' alt='' border='0' /> <a href='{$this->ipsclass->base_url}act=Search&CODE=getalluser&mid={$author['id']}'>{$this->ipsclass->lang['dd_find_posts']}</a> +</div> + + Replace with this: + +<div class='popupmenu-item'> + <img src='{$this->ipsclass->vars['img_url']}/folder_profile_portal/find_posts.png' alt='' border='0' /> <a href='{$this->ipsclass->base_url}act=Search&CODE=getalluser&mid={$author['id']}'>{$this->ipsclass->lang['dd_find_posts']}</a> +</div> + +<div class='popupmenu-item-last'> + <img src='{$this->ipsclass->vars['img_url']}/folder_profile_portal/find_posts.png' alt='' border='0' /> <a href="{$this->ipsclass->base_url}autocom=<{R_URL}>&cmd=do_member_search&member_name={$post['members_display_name']}">{$this->ipsclass->lang['find_registry']}</a> +</div> + + ============================================================================ Step 5: Configuring session cleanup task ============================================================================ Modified: trunk/UPGRADE.txt =================================================================== --- trunk/UPGRADE.txt 2007-06-11 05:00:21 UTC (rev 4) +++ trunk/UPGRADE.txt 2007-06-12 02:42:36 UTC (rev 5) @@ -58,8 +58,30 @@ 'find_registry' => "Find Member's <{R_NAME}> Entries", -5. Point your browser to the following URL: +5. If you already have a custom skin in place you will need to do this + step as well. If you do not have a skin that customized 'Topic View' -> + 'RenderRow' you can skip this step! + Head into your ACP -> Look & Feel -> Skin Manager. Click on your skin + set (not the imported Fusion Registry skin), and choose 'Edit Template + HTML'. Choose 'Topic View' -> 'RenderRow'. Find the following: + +<div class='popupmenu-item-last'> + <img src='{$this->ipsclass->vars['img_url']}/folder_profile_portal/find_posts.png' alt='' border='0' /> <a href='{$this->ipsclass->base_url}act=Search&CODE=getalluser&mid={$author['id']}'>{$this->ipsclass->lang['dd_find_posts']}</a> +</div> + + Replace with this: + +<div class='popupmenu-item'> + <img src='{$this->ipsclass->vars['img_url']}/folder_profile_portal/find_posts.png' alt='' border='0' /> <a href='{$this->ipsclass->base_url}act=Search&CODE=getalluser&mid={$author['id']}'>{$this->ipsclass->lang['dd_find_posts']}</a> +</div> + +<div class='popupmenu-item-last'> + <img src='{$this->ipsclass->vars['img_url']}/folder_profile_portal/find_posts.png' alt='' border='0' /> <a href="{$this->ipsclass->base_url}autocom=<{R_URL}>&cmd=do_member_search&member_name={$post['members_display_name']}">{$this->ipsclass->lang['find_registry']}</a> +</div> + +6. Point your browser to the following URL: + http://yourdomain.com/forum/sources/components_public/fusionscripts/fusionregistry/upgrade/ You may need to unlock the upgrader when you access the above URL before This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: CVS c. <fus...@li...> - 2007-06-11 05:00:20
|
Revision: 4 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=4&view=rev Author: copland007 Date: 2007-06-10 22:00:21 -0700 (Sun, 10 Jun 2007) Log Message: ----------- Set the svn:needs-lock for the skin file. Property Changed: ---------------- trunk/ipb_skin-fusionregistry.xml.gz Property changes on: trunk/ipb_skin-fusionregistry.xml.gz ___________________________________________________________________ Name: svn:needs-lock + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SVN c. <fus...@li...> - 2007-06-11 04:50:12
|
Revision: 3 http://fusionregistry.svn.sourceforge.net/fusionregistry/?rev=3&view=rev Author: copland007 Date: 2007-06-10 21:50:10 -0700 (Sun, 10 Jun 2007) Log Message: ----------- Set the svn:keyword "Id" property on appropriate files. Modified Paths: -------------- trunk/INSTALL.txt trunk/README.txt trunk/UPGRADE.txt trunk/upload/cache/lang_cache/en/lang_registry.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php trunk/upload/sources/components_acp/registry.php trunk/upload/sources/components_public/fusion_config.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql_importer.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/sql_importer.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php trunk/upload/sources/components_public/registry.php trunk/upload/sources/portal_plugins/registry-cfg.php trunk/upload/sources/portal_plugins/registry.php trunk/upload/sources/tasks/registrysessions.php Property Changed: ---------------- trunk/INSTALL.txt trunk/README.txt trunk/UPGRADE.txt trunk/upload/cache/lang_cache/en/lang_registry.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php trunk/upload/sources/components_acp/registry.php trunk/upload/sources/components_public/fusion_config.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/makes_models.sql.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/tables.sql.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql_importer.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/sql_importer.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/mysql_post_updates.sql.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/mysql_updates.sql.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/mysql_updates.sql.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php trunk/upload/sources/components_public/registry.php trunk/upload/sources/portal_plugins/registry-cfg.php trunk/upload/sources/portal_plugins/registry.php trunk/upload/sources/tasks/registrysessions.php Modified: trunk/INSTALL.txt =================================================================== --- trunk/INSTALL.txt 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/INSTALL.txt 2007-06-11 04:50:10 UTC (rev 3) @@ -22,7 +22,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: INSTALL.txt,v 1.2 2007/06/08 06:19:43 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ Property changes on: trunk/INSTALL.txt ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/README.txt =================================================================== --- trunk/README.txt 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/README.txt 2007-06-11 04:50:10 UTC (rev 3) @@ -22,7 +22,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: README.txt,v 1.2 2007/06/06 20:30:26 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ Property changes on: trunk/README.txt ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/UPGRADE.txt =================================================================== --- trunk/UPGRADE.txt 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/UPGRADE.txt 2007-06-11 04:50:10 UTC (rev 3) @@ -22,7 +22,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: UPGRADE.txt,v 1.3 2007/06/08 06:23:37 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ Property changes on: trunk/UPGRADE.txt ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/cache/lang_cache/en/lang_registry.php =================================================================== --- trunk/upload/cache/lang_cache/en/lang_registry.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/cache/lang_cache/en/lang_registry.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: lang_registry.php,v 1.1.1.1 2007/06/06 17:34:42 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ Property changes on: trunk/upload/cache/lang_cache/en/lang_registry.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_categories.php,v 1.1.1.1 2007/06/06 17:34:42 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_categories.php,v 1.1.1.1 2007/06/06 17:34:42 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_categories.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_config.php,v 1.1.1.1 2007/06/06 17:34:43 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_config.php,v 1.1.1.1 2007/06/06 17:34:43 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_config.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_custom_fields.php,v 1.1.1.1 2007/06/06 17:34:43 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_custom_fields.php,v 1.1.1.1 2007/06/06 17:34:43 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_custom_fields.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_makes_models.php,v 1.1.1.1 2007/06/06 17:34:44 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_makes_models.php,v 1.1.1.1 2007/06/06 17:34:44 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_makes_models.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_permissions.php,v 1.1.1.1 2007/06/06 17:34:44 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_permissions.php,v 1.1.1.1 2007/06/06 17:34:44 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_permissions.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_rating_fields.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_rating_fields.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_rating_fields.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_registry_loader.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_registry_loader.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_registry_loader.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php =================================================================== --- trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ad_tools.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: ad_tools.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'AD_REGISTRY_CALLED' ) ) Property changes on: trunk/upload/sources/components_acp/fusionscripts/fusionregistry/ad_tools.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_acp/registry.php =================================================================== --- trunk/upload/sources/components_acp/registry.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_acp/registry.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: registry.php,v 1.2 2007/06/07 00:13:01 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage admin - * @version $Id: registry.php,v 1.2 2007/06/07 00:13:01 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_acp/registry.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusion_config.php =================================================================== --- trunk/upload/sources/components_public/fusion_config.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusion_config.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: fusion_config.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -34,7 +34,7 @@ * your installation of the Fusion Registry. * * @package Fusion Registry - * @version $Id: fusion_config.php,v 1.1.1.1 2007/06/06 17:34:45 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_public/fusion_config.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: attach.php,v 1.1.1.1 2007/06/06 17:34:46 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -31,7 +31,7 @@ * 'registry_attach' class for the Fusion Registry. * * @package Fusion Registry - * @version $Id: attach.php,v 1.1.1.1 2007/06/06 17:34:46 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/attach.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: guestbook.php,v 1.1.1.1 2007/06/06 17:34:46 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -31,7 +31,7 @@ * 'registry_guestbook' class for the Fusion Registry. * * @package Fusion Registry - * @version $Id: guestbook.php,v 1.1.1.1 2007/06/06 17:34:46 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/guestbook.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: index.php,v 1.1.1.1 2007/06/06 17:34:49 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: index.php,v 1.1.1.1 2007/06/06 17:34:49 copland007 Exp $ + * @version $Id$ */ // Setup Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/index.php ___________________________________________________________________ Name: svn:keywords + Id Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/inserts.sql.php ___________________________________________________________________ Name: svn:keywords + Id Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/makes_models.sql.php ___________________________________________________________________ Name: svn:keywords + Id Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql/tables.sql.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql_importer.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql_importer.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql_importer.php 2007-06-11 04:50:10 UTC (rev 3) @@ -4,7 +4,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: sql_importer.php,v 1.1.1.1 2007/06/06 17:34:49 copland007 Exp $ + * @version $Id$ */ class sql_importer { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/sql_importer.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: template.php,v 1.1.1.1 2007/06/06 17:34:49 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: template.php,v 1.1.1.1 2007/06/06 17:34:49 copland007 Exp $ + * @version $Id$ */ class template { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/install/template.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: item.php,v 1.1.1.1 2007/06/06 17:34:48 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -31,7 +31,7 @@ * 'item' class for the Fusion Registry. * * @package Fusion Registry - * @version $Id: item.php,v 1.1.1.1 2007/06/06 17:34:48 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/item.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: content.php,v 1.1.1.1 2007/06/06 17:34:51 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage lib - * @version $Id: content.php,v 1.1.1.1 2007/06/06 17:34:51 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/content.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: core.php,v 1.1.1.1 2007/06/06 17:34:51 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage lib - * @version $Id: core.php,v 1.1.1.1 2007/06/06 17:34:51 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/core.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: custom_fields.php,v 1.1.1.1 2007/06/06 17:34:52 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage lib - * @version $Id: custom_fields.php,v 1.1.1.1 2007/06/06 17:34:52 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/custom_fields.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: functions.php,v 1.1.1.1 2007/06/06 17:34:52 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage lib - * @version $Id: functions.php,v 1.1.1.1 2007/06/06 17:34:52 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/functions.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: ratings.php,v 1.1.1.1 2007/06/06 17:34:52 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage lib - * @version $Id: ratings.php,v 1.1.1.1 2007/06/06 17:34:52 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/ratings.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: session.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -35,7 +35,7 @@ * * @package Fusion Registry * @subpackage lib - * @version $Id: session.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/session.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: upload.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage lib - * @version $Id: upload.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/lib/upload.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: main.php,v 1.1.1.1 2007/06/06 17:34:48 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -31,7 +31,7 @@ * 'main' class for the Fusion Registry. * * @package Fusion Registry - * @version $Id: main.php,v 1.1.1.1 2007/06/06 17:34:48 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/main.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: modification.php,v 1.1.1.1 2007/06/06 17:34:49 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -31,7 +31,7 @@ * 'modification' class for the Fusion Registry. * * @package Fusion Registry - * @version $Id: modification.php,v 1.1.1.1 2007/06/06 17:34:49 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/modification.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: index.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage upgrade - * @version $Id: index.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ + * @version $Id$ */ // Setup Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/index.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: instagrade.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage upgrader - * @version $Id: instagrade.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ + * @version $Id$ */ class instagrade { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/instagrade.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/sql_importer.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/sql_importer.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/sql_importer.php 2007-06-11 04:50:10 UTC (rev 3) @@ -3,7 +3,7 @@ * SQL importer and execution class * * @subpackage installer - * @version $Id: sql_importer.php,v 1.1.1.1 2007/06/06 17:34:53 copland007 Exp $ + * @version $Id$ */ class sql_importer { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/sql_importer.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: template.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: template.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ + * @version $Id$ */ class template { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/instagrade/template.php ___________________________________________________________________ Name: svn:keywords + Id Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/mysql_post_updates.sql.php ___________________________________________________________________ Name: svn:keywords + Id Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/mysql_updates.sql.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_20007/version_upgrade.php ___________________________________________________________________ Name: svn:keywords + Id Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/mysql_updates.sql.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30000/version_upgrade.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30001/version_upgrade.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30002/version_upgrade.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -32,7 +32,7 @@ * * @package Fusion Registry * @subpackage installer - * @version $Id: version_upgrade.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) { Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/upgrade_30003/version_upgrade.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php =================================================================== --- trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php 2007-06-11 04:50:10 UTC (rev 3) @@ -6,7 +6,7 @@ '30000' => 'Fusion Registry v3.0.0 Final', '30001' => 'Fusion Registry v3.0.1 Final', '30002' => 'Fusion Registry v3.0.2 Final', - '30003' => 'Fusion Registry v3.0.3 Final', + '30003' => 'Fusion Registry v3.0.3', ); ?> \ No newline at end of file Property changes on: trunk/upload/sources/components_public/fusionscripts/fusionregistry/upgrade/version_history.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/components_public/registry.php =================================================================== --- trunk/upload/sources/components_public/registry.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/components_public/registry.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: registry.php,v 1.1.1.1 2007/06/06 17:34:46 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -36,7 +36,7 @@ * harness. * * @package Fusion Registry - * @version $Id: registry.php,v 1.1.1.1 2007/06/06 17:34:46 copland007 Exp $ + * @version $Id$ */ /** Property changes on: trunk/upload/sources/components_public/registry.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/portal_plugins/registry-cfg.php =================================================================== --- trunk/upload/sources/portal_plugins/registry-cfg.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/portal_plugins/registry-cfg.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: registry-cfg.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ Property changes on: trunk/upload/sources/portal_plugins/registry-cfg.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/portal_plugins/registry.php =================================================================== --- trunk/upload/sources/portal_plugins/registry.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/portal_plugins/registry.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: registry.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ Property changes on: trunk/upload/sources/portal_plugins/registry.php ___________________________________________________________________ Name: svn:keywords + Id Modified: trunk/upload/sources/tasks/registrysessions.php =================================================================== --- trunk/upload/sources/tasks/registrysessions.php 2007-06-11 04:29:37 UTC (rev 2) +++ trunk/upload/sources/tasks/registrysessions.php 2007-06-11 04:50:10 UTC (rev 3) @@ -23,7 +23,7 @@ | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | -| $Id: registrysessions.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ +| $Id$ | \-------------------------------------------------------------------------*/ @@ -36,7 +36,7 @@ * * @package Fusion Registry * @subpackage tasks - * @version $Id: registrysessions.php,v 1.1.1.1 2007/06/06 17:34:54 copland007 Exp $ + * @version $Id$ */ if ( ! defined( 'IN_IPB' ) ) Property changes on: trunk/upload/sources/tasks/registrysessions.php ___________________________________________________________________ Name: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: CVS c. <fus...@li...> - 2007-06-08 06:21:08
|
Update of /cvsroot/fusionregistry/fusionregistry In directory sc8-pr-cvs17:/tmp/cvs-serv5781 Modified Files: ipb_skin-fusionregistry.xml.gz Log Message: Change Topic View -> RenderRow, added new profile link to users' registry items. Contributed by Loren! Index: ipb_skin-fusionregistry.xml.gz =================================================================== RCS file: /cvsroot/fusionregistry/fusionregistry/ipb_skin-fusionregistry.xml.gz,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsPmioYn and /tmp/cvsQmlVUU differ |
From: CVS c. <fus...@li...> - 2007-06-07 00:11:17
|
Update of /cvsroot/fusionregistry/fusionregistry In directory sc8-pr-cvs17:/tmp/cvs-serv21291 Modified Files: UPGRADE.txt Log Message: Added step for removing old component xml Index: UPGRADE.txt =================================================================== RCS file: /cvsroot/fusionregistry/fusionregistry/UPGRADE.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** UPGRADE.txt 6 Jun 2007 22:30:01 -0000 1.1 --- UPGRADE.txt 7 Jun 2007 00:11:14 -0000 1.2 *************** *** 36,40 **** removed. It would also be good practice to make a backup of your database. ! Upload all the files: /cache/lang_cache/en/lang_registry.php --- 36,40 ---- removed. It would also be good practice to make a backup of your database. ! 1. Upload all the files: /cache/lang_cache/en/lang_registry.php *************** *** 45,49 **** /style_images/1/registry_images/* ! Point your browser to the following URL: http://yourdomain.com/forum/sources/components_public/fusionscripts/fusionregistry/upgrade/ --- 45,53 ---- /style_images/1/registry_images/* ! 2. Head into your ACP -> ADMIN -> Manage Components. Delete the old Fusion ! Registry component, then use the 'Import XML Component File' to import the ! component xml file 'fusionregistry_component.xml' from v3.0.3. ! ! 3. Point your browser to the following URL: http://yourdomain.com/forum/sources/components_public/fusionscripts/fusionregistry/upgrade/ |
From: CVS c. <fus...@li...> - 2007-06-06 22:30:02
|
Update of /cvsroot/fusionregistry/fusionregistry In directory sc8-pr-cvs17:/tmp/cvs-serv13979 Added Files: UPGRADE.txt Log Message: Initial import into cvs. --- NEW FILE: UPGRADE.txt --- /*-------------------------------------------------------------------------\ | | ======================================================== | Fusion Registry GPL v3.0.3 | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU General Public License | as published by the Free Software Foundation; either version 2 | of the License, or (at your option) any later version. | | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | GNU General Public License for more details. | | You should have received a copy of the GNU General Public License | along with this program; if not, write to the Free Software | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ======================================================== | | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | | $Id: UPGRADE.txt,v 1.1 2007/06/06 22:30:01 copland007 Exp $ | \-------------------------------------------------------------------------*/ ============================================================================ Upgrading to Fusion Registry v3.0.3 ============================================================================ Upgrading and Installing note: As with any change to files on your server you should always make a backup of any files that will be modified or removed. It would also be good practice to make a backup of your database. Upload all the files: /cache/lang_cache/en/lang_registry.php /sources/components_acp/* (and all sub files/folders) /sources/components_public/* (and all sub files/folders) /sources/portal_plugins/* /sources/tasks/registrysessions.php /style_images/1/registry_images/* Point your browser to the following URL: http://yourdomain.com/forum/sources/components_public/fusionscripts/fusionregistry/upgrade/ You may need to unlock the upgrader when you access the above URL before you can proceed. Follow the on screen instructions to unlock the upgrader. That's it you're done with upgrade! ============================================================================ Upgrading from Garage Module to Fusion Registry ============================================================================ Upgrading and Installing note: As with any change to files on your server you should always make a backup of any files that will be modified or removed. It would also be good practice to make a backup of your database. The new upgrader system will make your upgrade nice and easy. If you are upgrading from Garage Module I can not stress enough to make a backup of your database and files, including your uploads! There are no code edits required for Fusion Registry to run, so you can start by removing any and all edits to your source files for the older versions of the Garage Module. You can also delete the 'ioncube' directory that contains the ionCube loader files as it is no longer required. In your ACP -> Look & Feel -> Skin Manager, ensure your custom skin does not have a link to the Garage Module in your board header. This link will be added automatically by the Components system. Edit the following Template Bit to check "All Glocal HTML" -> "global_board_header". If you find this line, remove it: <a href='{ipb.script_url}act=garage'>Garage</a> Also in the Skin Manager remove or hide the previous Garage Module skin set. Once you have completed all the above clean up work, proceed to the installation instructions and follow the same steps as if your were installing Fusion Registry from scratch. !!! IMPORTANT -- FOR STEP 2 INSTEAD OF RUNNING THE INSTALLER, RUN THE UPGRADER! |
From: CVS c. <fus...@li...> - 2007-06-06 20:38:28
|
Update of /cvsroot/fusionregistry/fusionregistry In directory sc8-pr-cvs17:/tmp/cvs-serv32555 Added Files: INSTALL.txt Log Message: Initial import into cvs. --- NEW FILE: INSTALL.txt --- /*-------------------------------------------------------------------------\ | | ======================================================== | Fusion Registry GPL v3.0.3 | Copyright (C) 2007 Fusion Scripts | | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU General Public License | as published by the Free Software Foundation; either version 2 | of the License, or (at your option) any later version. | | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | GNU General Public License for more details. | | You should have received a copy of the GNU General Public License | along with this program; if not, write to the Free Software | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ======================================================== | | Email: in...@fu... | Web-Site: http://www.fusionscripts.com/ | | $Id: INSTALL.txt,v 1.1 2007/06/06 20:38:25 copland007 Exp $ | \-------------------------------------------------------------------------*/ ============================================================================ These instructions are for a new fresh install. Fusion Registry v3.0.3 only works with IPB v2.2.x! ============================================================================ Upgrading and Installing note: As with any change to files on your server you should always make a backup of any files that will be modified or removed. It would also be good practice to make a backup of your database. ============================================================================ Step 1: Upload the following files ============================================================================ /cache/lang_cache/en/lang_registry.php /sources/components_acp/* (and all sub files/folders) /sources/components_public/* (and all sub files/folders) /sources/portal_plugins/* /sources/tasks/registrysessions.php /style_images/1/registry_images/* Ensure that your ./uploads directory permissions are CHMOD 0777 ============================================================================ Step 2: Run Installer ============================================================================ To install the needed SQL tables and data point your internet browser to the new installer. DO NOT EXECUTE this from within any site management software such as Cpanel! http://yourdomain.com/forum/sources/components_public/fusionscripts/fusionregistry/install/ Follow the installer steps and when you are finished remove the install directory from your server. ============================================================================ Step 3: Import and setup the skin ============================================================================ This is a tricky procedure, please follow it closely ;) Since the Fusion Registry skin combines edits to other template bit groups, and custom macros, you can not simply place a copy of the skin_*.php files into your skin cache folders and be done. If for some reason your XML skin import function is not working you need to resolve that problem before continuing to ensure skin inheritance functions properly! i) Head into your ACP -> Look & Feel -> Skin Import/Export ii) In the 'Upload XML Template set' box, click Browse and choose the included "ipb_skin-fusionregistry.xml.gz" file. iii) In the 'New Skin Set Name?' box you may leave it blank or type in a custom name. iv) Click Import Skin XML. Ensure no errors occur. If you have a skin set already that you have done modifications to, then set that skin to have this newly imported skin as the parent. This will ensure that the skin inheritance works and you maintain all your custom edits along with the Fusion Registry elements. To set another skin set to have the garage skin set as the parent click on the other skin set on the 'Skin Manager' page, choose 'Edit Settings'. For the 'Skin Set Parent?' option choose 'Fusion Registry' or whatever you named the newly imported skin set. Click Edit Skin Settings. It is not suggested that you do your site skin modifications to the imported Fusion Registry skin set. Keep the Fusion Registry skin set as is so future upgrades to the Fusion Registry skin will be painless for you ;) ============================================================================ Step 4: Configuring session cleanup task ============================================================================ Although this step is not required it is highly recommended to keep your ibf_registry_sessions table nice and tidy. Head into your Task Manager and click 'Add New Task' near the bottom. Enter the following values: - Task Title: "Fusion Registry Session Cleanup" - Task Short Description: "Remove old Fusion Registry sessions" - Task PHP File To Run: "registrysessions.php" - Time Options... - Task Time: Minutes: "0" - Task Time: Hours: "Every Hour" - Task Time: Week Day: "Every Week Day" - Task Time: Month Day: "Every Day of the Month" - Enable Task Logging: "Yes" - Enable Task?: "Yes" ============================================================================ Step 5: Importing and setting up the component settings ============================================================================ Once you complete this process below you will find the administration for your Fusion Registry in your ACP -> Components screen. If you have sub-admins you can also configure permissions for Fusion Registry administration through the ACP -> Admin -> Manage Restrictions page. This process will also automatically add a link to your board header. i) Head into your ACP -> Admin -> Manage Components. ii) In the 'Upload XML components file from your computer' box, click Browse and choose the included "fusionregistry_component.xml" file. iii) Click Import. ============================================================================ All done! ============================================================================ You can access Fusion Registry by pointing your browser to: http://www.yoursite.com/forums/index.php?autocom=registry Change yoursite.com to your website name. The first thing you will want to do is go into your AdminCP and go through the Configuration options for Fusion Registry, reading each carefully! Then add your Modification Categories. Please note that many features are disabled by default, you will need to enable them in your AdminCP. All editable text is available in the language section of your AdminCP under the filename lang_registry.php. |
From: CVS c. <fus...@li...> - 2007-06-06 20:30:27
|
Update of /cvsroot/fusionregistry/fusionregistry In directory sc8-pr-cvs17:/tmp/cvs-serv29134 Modified Files: README.txt Log Message: Update install/upgrade sections, removed url. Index: README.txt =================================================================== RCS file: /cvsroot/fusionregistry/fusionregistry/README.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** README.txt 6 Jun 2007 17:34:42 -0000 1.1.1.1 --- README.txt 6 Jun 2007 20:30:26 -0000 1.2 *************** *** 45,64 **** - ============================================================================ ! INSTRUCTIONS FOR NEW INSTALL ============================================================================ ! Please see the online documentation on installing at the following location: ! ! http://support.fusionscripts.com/docs/idx.php/17/0/Installation.html ! ============================================================================ ! UPGRADING ============================================================================ ! Please see the online documentation on upgrading at the following locations: ! ! http://support.fusionscripts.com/docs/idx.php/18/0/Upgrade.html \ No newline at end of file --- 45,58 ---- ============================================================================ ! INSTALL ============================================================================ ! Please see the INSTALL.txt file for instructions. ============================================================================ ! UPGRADE ============================================================================ ! Please see the UPGRADE.txt file for instructions. \ No newline at end of file |