In-Portal Issue Tracker

Welcome to the In-Portal Open Source CMS Issue Tracker! This is a central management / tracking tool for all types of tasks / issues / bugs for the In-Portal Project. Before reporting any issues, please make sure to read the Guide into Issue Tracker and How to Properly Test and Report Bugs!

Viewing Issue Simple Details Jump to Notes ] Wiki ]  Related Changesets ] View Advanced ] Issue History ] Print ]
ID Category Type Reproducibility Date Submitted Last Update
0000279 [In-Portal CMS] Optimization feature request N/A 2009-09-09 07:01 2010-07-22 15:06
Reporter alex View Status public Project Name In-Portal CMS
Assigned To alex Developer
Priority normal Resolution fixed Fixed in Version 5.1.0-B1
Status closed Product Version Target Version 5.1.0
Time EstimateNo estimate
Summary 0000279: Phrases of state and country names
Description Currently we have around 400 phrases of for countries and states used for ex. during checkout process. Translation of such kind of phrases almost never got changed and they provide additional load to each template, because they are used for Country field for users and user object is loaded on every page and these phrase with it.

I propose to create multilingual column Translation in StdDestinations table and move all current state/country translations there. Then loading of these moved values should be done using "options_sql" option in field definition in unit config.

Later we can add separate grid, where administrators could enable/disabled unneeded countries/states and change their translation.
Additional Information Same idea with currency translations.

In total we could decrease language pack by approximately 600 phrases, that never got changed.

---------

Country and state names and currencies should stay in language pack but not under <phrases> node by now. We can create special nodes for them, and language pack format will be like:

<LANGUAGES>
    <LANGUAGE PackName="English" Encoding="base64">
        <PHRASES>
            ...
        </PHRASES>
        <COUNTRIES>
            <COUNTRY iso="USA" translation=".....">
                <STATE iso="IL">...</STATE>
                ...
            </COUNTRY>
            ...
        </COUNTRIES>
        <CURRENCIES>
            ...
        </CURRENCIES>
        <EVENTS>
            ...
        </EVENTS>
    </LANGUAGE>
</LANGUAGES>

This way different language translation of countries/states/currencies could be still transferred in language packs, but won't be stored in Phrase table.
Tags No tags attached.
Reference
Change Log Message Refactoring Countries and States functionality and adding management options
Estimate Points 0
Attached Files patch file icon country_state_refactoring_core.patch [^] (148,485 bytes) 2010-04-11 08:34 [Show Content]
patch file icon country_state_refactoring_core_addon1.patch [^] (14,980 bytes) 2010-04-11 08:35 [Show Content]
patch file icon country_state_refactoring_modules.patch [^] (144,694 bytes) 2010-04-11 08:35 [Show Content]
patch file icon country_state_refactoring_themes.patch [^] (20,008 bytes) 2010-04-11 08:35 [Show Content]
patch file icon country_state_refactoring_core_v2_(including_addon1).patch [^] (163,836 bytes) 2010-04-27 07:26 [Show Content]
patch file icon country_state_refactoring_core_v3.patch [^] (164,567 bytes) 2010-04-27 14:24 [Show Content]
patch file icon country_state_refactoring_modules_v2.patch [^] (145,690 bytes) 2010-04-27 14:24 [Show Content]
patch file icon country_state_refactoring_core_v4.patch [^] (166,718 bytes) 2010-04-28 05:47 [Show Content]
patch file icon country_state_refactoring_modules_v3.patch [^] (146,585 bytes) 2010-04-28 05:47 [Show Content]
jpg file icon usps-fatal.jpg [^] (487,094 bytes) 2010-05-14 18:07
patch file icon in-commerce_country_fix.patch [^] (4,113 bytes) 2010-05-15 05:17 [Show Content]
patch file icon in-commerce_country_fix_v2.patch [^] (7,462 bytes) 2010-05-16 01:42 [Show Content]
patch file icon export_country_state_only_for_core.patch [^] (2,360 bytes) 2010-05-18 07:46 [Show Content]

- Relationships Relation Graph ] Dependency Graph ]
parent of 0000773closed (5.1.0)Dmitry New Icons for "Site Domains" and "Countries & States" configuration sections 
parent of 0000780closed (5.1.0)alex Language pack upgrade fails, when it contains translations to non-existing email events 
related to 0000692closed (5.0.3)alex Translatable fields are not always created during table scan 
related to 0000694closed (5.0.3)alex SQL is partially parsed, when displayed in custom field editing form 
related to 0000640closed (5.0.3)alex Current language is not replaced inside calculated fields, when "%2$s" is used 
related to 0001201closed (5.2.0)alex Fatal error during Installation on States import with MySQL in Strict Mode 

-  Notes
User avatar (0001744)
alex (manager)
2010-03-24 11:30

1. Rename "StdDestinations" table to "CountryStates".
2. Prefix for new unit config will be "country-state".
User avatar (0001845)
alex (manager)
2010-04-11 08:36

Not so much files changed, but still need to review every place where countries/states are involved. For a list of places consult changed files.

All patches from related issues should be applied for given task patches to work.
User avatar (0001945)
Dmitry (manager)
2010-04-25 21:09

Some issues with CORE and CORE add-on Patches (other 2 applied okay). Please review and update.
User avatar (0001969)
alex (manager)
2010-04-27 07:26

New patch attached.
User avatar (0001976)
Dmitry (manager)
2010-04-27 11:36

A few comments so far:

1. Move Country drop-down under Name field
2. Disable Country drop-down when radio-button Country is selected.

Please update and provide Patch for further tests.
User avatar (0001984)
alex (manager)
2010-04-27 14:25

Patch re-assembled using latest code from 5.1.x branch.
User avatar (0001985)
Dmitry (manager)
2010-04-27 16:03

Thanks - it's much better now.

A a few new things that I have found:

1. I think "ISO Code" should unique when adding/editing a Country, and adding/editing State in the current Country.

2. Adjust installational/upgrade SQLs so lN_Name is NULL by default

3. Clean lN_Name values when language is deleted.

4. on Add New language copy State/Country values from the Copy From language into new one.

Please commit once above completed.


TODO later:

1. Need to add IS NULL check for cases when Current language translation is NOT set and we need to use Primary (lPrimary_Name) field.

2. Create new icon
User avatar (0002002)
alex (manager)
2010-04-28 05:50

New patches attached.

1. I think "ISO Code" should unique when adding/editing a Country, and adding/editing State in the current Country.
Done.

2. Adjust installational/upgrade SQLs so lN_Name is NULL by default
Not done, since we could check for empty string to detect, that translation isn't available.

3. Clean lN_Name values when language is deleted.
Not done, since we haven't still decided in google groups about deleting translated data from all tables except for Phrase and Events upon language deletion.

4. on Add New language copy State/Country values from the Copy From language into new one.
Done other way, so translation from primary language is shown, when translation on current language is missing (changed 5 unit configs + 2 methods of CountryStateHelper).
User avatar (0002020)
Dmitry (manager)
2010-04-28 09:11

Tested good, please commit.
User avatar (0002022)
alex (manager)
2010-04-28 10:21

Fix committed to 5.1.x branch. Commit Message:

Fixes 0000279: Phrases of state and country names
User avatar (0002203)
Dmitry (manager)
2010-05-14 17:22
edited on: 2010-05-14 18:10

Found issues:

1. shipping_quote_engine_eh.php file, in OnBeforeUpdate is does the following code:

$from_country = $this->Application->ConfigValue('Comm_Shipping_Country');
        if (strlen($from_country) == 3) {
            $cs_helper =& $this->Application->recallObject('CountryStatesHelper');
            /* @var $cs_helper kCountryStatesHelper */

            // get 2symbol ISO code from 3symbol ISO code
            $from_country = $cs_helper->getCountryIso($from_country);
        }

which fails to return ANY ISO codes since on input "$from_country" is a number (ID).


2. Fatal error on the Shipping step when all ship. info is entered. See usps-fatal.jpg attachment. In my case I am using USPS engine, but I think it's the same for all CustomQuoteEngines.

User avatar (0002209)
alex (manager)
2010-05-15 05:19

1. Patch "in-commerce_country_fix.patch" fixes 1st issue from 0000279:0002203 - problem was on the other end (in configuration variable).

2. Can't replicate, since I have other code in usps.php:106 line. Are you sure you have latest file version? In mine usps.php I'm calling CountryStatesHelper and not running direct SQL to StdDestinations table.
User avatar (0002212)
Dmitry (manager)
2010-05-15 20:17

Thanks. I think 2. is my issue

Another quick thing, Fatal on Admin->Configuration->eCommerce->Output section:

Fatal Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CONCAT("cust_" FieldName) AS OptionValue FROM CustomField WHERE (Type = 11) AND ' at line 1 (1064)
SQL:
    SELECT Prompt AS OptionName CONCAT("cust_" FieldName) AS OptionValue
    FROM CustomField
    WHERE (Type = 11) AND (IsSystem = 0) in w:\core\kernel\application.php on line 2694


Not sure if it's related here of the task with Configuration options.
User avatar (0002213)
alex (manager)
2010-05-16 01:43

Patch "in-commerce_country_fix_v2.patch" fixes previous and latest problem together. Please test.

Latest found problem is related to this task, because "," was replaced with "||" inside ConfigurationValues.ValuesList field. Module "In-Commerce" had typo error in install_data.sql.
User avatar (0002216)
Dmitry (manager)
2010-05-16 21:19

Reviewed and tested. Please commit.
User avatar (0002219)
alex (manager)
2010-05-17 12:49

Fix committed to 5.1.x branch. Commit Message:

Fixes 0000279: Phrases of state and country names
User avatar (0002225)
alex (manager)
2010-05-18 07:47

Countries & states are exported always, even, when I export only In-Commerce language pack.
User avatar (0002226)
alex (manager)
2010-05-18 07:47

Patch "export_country_state_only_for_core.patch" contains fix of described before problem.
User avatar (0002242)
Dmitry (manager)
2010-05-18 22:27

Tested good, please commit.
User avatar (0002248)
alex (manager)
2010-05-19 02:41

Fix committed to 5.1.x branch. Commit Message:

Fixes 0000279: Phrases of state and country names
User avatar (0002518)
alex (manager)
2010-07-22 15:06

Closing, since 5.1.0 release has been released.

- Related Changesets
In-Portal CMS: 5.1.x r13583
Timestamp: 2010-05-19 02:41:43
Author: alex
Details ] Diff ]
Fixes 0000279: Phrases of state and country names
mod - /in-portal/branches/5.1.x/core/units/helpers/language_import_helper.php Diff ] File ]
Modules :: In-Commerce: 5.1.x r13565
Timestamp: 2010-05-17 12:49:03
Author: alex
Details ] Diff ]
Fixes 0000279: Phrases of state and country names
mod - /w/in-commerce/branches/5.1.x/install/install_data.sql Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/install/upgrades.sql Diff ] File ]
In-Portal CMS: 5.1.x r13470
Timestamp: 2010-04-28 10:21:51
Author: alex
Details ] Diff ]
Fixes 0000279: Phrases of state and country names
add - /in-portal/branches/5.1.x/core/admin_templates/country_states File ]
add - /in-portal/branches/5.1.x/core/admin_templates/country_states/country_state_edit.tpl File ]
add - /in-portal/branches/5.1.x/core/admin_templates/country_states/country_state_list.tpl File ]
mod - /in-portal/branches/5.1.x/core/admin_templates/users/users_edit.tpl Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/english.lang Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/install_data.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/install_schema.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/remove_schema.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/upgrades.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/upgrades.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/constants.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/db_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/kbase.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/utility/http_query.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/configuration/configuration_event_handler.php Diff ] File ]
add - /in-portal/branches/5.1.x/core/units/country_states File ]
add - /in-portal/branches/5.1.x/core/units/country_states/country_state_eh.php File ]
add - /in-portal/branches/5.1.x/core/units/country_states/country_states_config.php File ]
mod - /in-portal/branches/5.1.x/core/units/custom_data/custom_data_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/country_states_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/language_import_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/mod_rewrite_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/users/users_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/users/users_event_handler.php Diff ] File ]
Themes :: OnlineStore: 1.1.x r13469
Timestamp: 2010-04-28 10:11:09
Author: alex
Details ] Diff ]
Bug 0000279: Phrases of state and country names
mod - /themes/onlinestore/branches/1.1.x/in-commerce/blocks/checkout/billing_address.tpl Diff ] File ]
mod - /themes/onlinestore/branches/1.1.x/in-commerce/blocks/checkout/form_register.tpl Diff ] File ]
mod - /themes/onlinestore/branches/1.1.x/in-commerce/blocks/checkout/shipping_address.tpl Diff ] File ]
mod - /themes/onlinestore/branches/1.1.x/in-commerce/blocks/my_account/address_edit.tpl Diff ] File ]
mod - /themes/onlinestore/branches/1.1.x/in-commerce/blocks/my_account/my_profile.tpl Diff ] File ]
mod - /themes/onlinestore/branches/1.1.x/platform/blocks/login/form_register.tpl Diff ] File ]
Themes :: Advanced: 1.1.x r13468
Timestamp: 2010-04-28 10:10:53
Author: alex
Details ] Diff ]
Bug 0000279: Phrases of state and country names
mod - /themes/advanced/branches/1.1.x/in-commerce/elements/content_boxes/checkout/billing_address.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/elements/content_boxes/checkout/shipping_address.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/my_account/edit_address.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/my_account/new_address.tpl Diff ] File ]
Modules :: In-News: 5.1.x r13467
Timestamp: 2010-04-28 10:10:00
Author: alex
Details ] Diff ]
Bug 0000279: Phrases of state and country names
mod - /modules/in-news/branches/5.1.x/install/install_data.sql Diff ] File ]
Modules :: In-Link: 5.1.x r13466
Timestamp: 2010-04-28 10:09:49
Author: alex
Details ] Diff ]
Bug 0000279: Phrases of state and country names
mod - /modules/in-link/branches/5.1.x/install/install_data.sql Diff ] File ]
mod - /modules/in-link/branches/5.1.x/install/upgrades.sql Diff ] File ]
Modules :: In-Commerce: 5.1.x r13465
Timestamp: 2010-04-28 10:08:00
Author: alex
Details ] Diff ]
Bug 0000279: Phrases of state and country names
mod - /w/in-commerce/branches/5.1.x/admin_templates/discounts/gift_certificate_edit.tpl Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/admin_templates/shipping/zone_edit.tpl Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/admin_templates/taxes/taxes_edit.tpl Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/install/install_data.sql Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/install/upgrades.sql Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/addresses/addresses_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/addresses/addresses_event_handler.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gw_classes/authorizenet.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gw_classes/google_checkout.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gw_classes/multicards.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gw_classes/paymentech.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gw_classes/paypal.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gw_classes/paypal_direct.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gw_classes/worldpay.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gift_certificates/gift_certificates_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/manufacturers/manufacturers_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/manufacturers/manufacturers_event_handler.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/orders/orders_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/orders/orders_event_handler.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/orders/orders_item.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/orders/orders_tag_processor.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping_quote_engines/custom_shipping_quote_engine.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping_quote_engines/intershipper.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping_quote_engines/shipping_quote_engine_event_handler.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping_quote_engines/usps.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/taxes/taxes_tag_processor.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/zones/zones_tag_processor.php Diff ] File ]
Modules :: In-Bulletin: 5.1.x r13464
Timestamp: 2010-04-28 10:06:01
Author: alex
Details ] Diff ]
Bug 0000279: Phrases of state and country names
mod - /modules/in-bulletin/branches/5.1.x/install/install_data.sql Diff ] File ]

- Issue History
Date Modified Username Field Change
2012-02-06 04:06 alex Relationship added related to 0001201
2010-07-22 15:06 alex Note Added: 0002518
2010-07-22 15:06 alex Status resolved => closed
2010-06-15 12:25 alex Relationship added parent of 0000780
2010-06-10 14:59 Dmitry Relationship added parent of 0000773
2010-05-19 02:41 alex Note Added: 0002248
2010-05-19 02:41 alex Status reviewed and tested => resolved
2010-05-19 02:41 alex Resolution reopened => fixed
2010-05-19 02:41 alex Changeset attached 5.1.x r13583
2010-05-18 22:27 Dmitry Note Added: 0002242
2010-05-18 22:27 Dmitry Assigned To !COMMUNITY => alex
2010-05-18 22:27 Dmitry Status needs testing => reviewed and tested
2010-05-18 07:47 alex Note Added: 0002226
2010-05-18 07:47 alex Status needs feedback => needs testing
2010-05-18 07:47 alex Assigned To alex => !COMMUNITY
2010-05-18 07:47 alex Note Added: 0002225
2010-05-18 07:47 alex Status resolved => needs feedback
2010-05-18 07:47 alex Resolution fixed => reopened
2010-05-18 07:46 alex File Added: export_country_state_only_for_core.patch
2010-05-17 12:49 alex Note Added: 0002219
2010-05-17 12:49 alex Status reviewed and tested => resolved
2010-05-17 12:49 alex Resolution reopened => fixed
2010-05-17 12:49 alex Changeset attached 5.1.x r13565
2010-05-16 21:19 Dmitry Note Added: 0002216
2010-05-16 21:19 Dmitry Assigned To !COMMUNITY => alex
2010-05-16 21:19 Dmitry Status needs testing => reviewed and tested
2010-05-16 01:43 alex Note Added: 0002213
2010-05-16 01:43 alex Assigned To alex => !COMMUNITY
2010-05-16 01:43 alex Status needs work => needs testing
2010-05-16 01:42 alex File Added: in-commerce_country_fix_v2.patch
2010-05-15 20:17 Dmitry Note Added: 0002212
2010-05-15 20:17 Dmitry Assigned To !COMMUNITY => alex
2010-05-15 20:17 Dmitry Status needs testing => needs work
2010-05-15 05:20 alex Assigned To alex => !COMMUNITY
2010-05-15 05:20 alex Status needs feedback => needs testing
2010-05-15 05:19 alex Note Added: 0002209
2010-05-15 05:17 alex File Added: in-commerce_country_fix.patch
2010-05-14 18:10 Dmitry Note Edited: 0002203 View Revisions
2010-05-14 18:10 Dmitry Note Edited: 0002203 View Revisions
2010-05-14 18:07 Dmitry File Added: usps-fatal.jpg
2010-05-14 17:22 Dmitry Note Added: 0002203
2010-05-14 17:22 Dmitry Status resolved => needs feedback
2010-05-14 17:22 Dmitry Resolution fixed => reopened
2010-04-28 10:21 alex Note Added: 0002022
2010-04-28 10:21 alex Status reviewed and tested => resolved
2010-04-28 10:21 alex Fixed in Version => 5.1.0-B1
2010-04-28 10:21 alex Resolution open => fixed
2010-04-28 10:21 alex Assigned To !COMMUNITY => alex
2010-04-28 10:21 alex Changeset attached 5.1.x r13470
2010-04-28 10:11 alex Changeset attached 1.1.x r13469
2010-04-28 10:10 alex Changeset attached 1.1.x r13468
2010-04-28 10:10 alex Changeset attached 5.1.x r13467
2010-04-28 10:09 alex Changeset attached 5.1.x r13466
2010-04-28 10:08 alex Changeset attached 5.1.x r13465
2010-04-28 10:06 alex Changeset attached 5.1.x r13464
2010-04-28 10:04 alex Changeset attached 5.1.x r13463
2010-04-28 09:11 Dmitry Note Added: 0002020
2010-04-28 09:11 Dmitry Status needs testing => reviewed and tested
2010-04-28 05:50 alex Note Added: 0002002
2010-04-28 05:50 alex Assigned To alex => !COMMUNITY
2010-04-28 05:50 alex Status needs work => needs testing
2010-04-28 05:47 alex Status reviewed and tested => needs work
2010-04-28 05:47 alex File Added: country_state_refactoring_modules_v3.patch
2010-04-28 05:47 alex File Added: country_state_refactoring_core_v4.patch
2010-04-27 16:31 Dmitry Change Log Message => Refactoring Countries and States functionality and adding management options
2010-04-27 16:03 Dmitry Note Added: 0001985
2010-04-27 16:03 Dmitry Assigned To !COMMUNITY => alex
2010-04-27 16:03 Dmitry Status needs testing => reviewed and tested
2010-04-27 14:25 alex Note Added: 0001984
2010-04-27 14:25 alex Assigned To alex => !COMMUNITY
2010-04-27 14:25 alex Status needs work => needs testing
2010-04-27 14:24 alex File Added: country_state_refactoring_modules_v2.patch
2010-04-27 14:24 alex File Added: country_state_refactoring_core_v3.patch
2010-04-27 11:36 Dmitry Note Added: 0001976
2010-04-27 11:36 Dmitry Assigned To Dmitry => alex
2010-04-27 11:36 Dmitry Status needs testing => needs work
2010-04-27 07:26 alex Note Added: 0001969
2010-04-27 07:26 alex Assigned To alex => Dmitry
2010-04-27 07:26 alex Status needs work => needs testing
2010-04-27 07:26 alex File Added: country_state_refactoring_core_v2_(including_addon1).patch
2010-04-25 21:09 Dmitry Note Added: 0001945
2010-04-25 21:09 Dmitry Assigned To !COMMUNITY => alex
2010-04-25 21:09 Dmitry Status needs testing => needs work
2010-04-11 08:36 alex Time Estimate Removed 4 =>
2010-04-11 08:36 alex Note Added: 0001845
2010-04-11 08:36 alex Assigned To => !COMMUNITY
2010-04-11 08:36 alex Developer => alex
2010-04-11 08:36 alex Status active => needs testing
2010-04-11 08:35 alex File Added: country_state_refactoring_themes.patch
2010-04-11 08:35 alex File Added: country_state_refactoring_modules.patch
2010-04-11 08:35 alex File Added: country_state_refactoring_core_addon1.patch
2010-04-11 08:34 alex File Added: country_state_refactoring_core.patch
2010-04-11 08:08 alex Relationship added related to 0000640
2010-04-10 17:18 alex Relationship added related to 0000694
2010-04-10 07:26 alex Relationship added related to 0000692
2010-03-24 11:39 alex Additional Information Updated View Revisions
2010-03-24 11:30 alex Note Added: 0001744
2010-01-12 11:22 alex Time Estimate Added 4
2009-10-07 07:03 alex Additional Information Updated View Revisions
2009-09-20 15:12 alex Type bug report => feature request
2009-09-20 15:12 alex Reproducibility always => N/A
2009-09-09 15:36 Dmitry Target Version => 5.1.0
2009-09-09 07:01 alex New Issue



Web Development by Intechnic
In-Portal Open Source CMS
In-Portal Open Source CMS
Copyright © 2000 - 2009 MantisBT Group

Powered by Mantis Bugtracker