In-Portal

Checkout Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates

1. Fixes 0000031: Convert FCK "Internal Link Pointers" to Real URLs.

2. Fixes 0000032: SQL Error when using FCKEditor to edit textarea data.

3. In edit templates, where HTML isn't allowed, but multi line input is required 'allow_html="0"' added to inp_edit_textarea blocks.

4. Module root categories during installation were incorrectly sorted: "Products, Topics, News, Links" instead of "Links, News, Topics, Products".

5. Fixed "Preview" button in FCKEditor, when editing content blocks:

  • problems with non-latin character encoding in javascript
  • "Preview" button were not visible during content block editing, but was visible during category description editing, where it shouldn't.

    6. Method "CategoriesTagProcessor::_replacePageIds" moved to "CategoryHelper::replacePageIds" and can be used in any place, where required.

    7. Add new field option: "using_fck". When specified, then all "@@ID@@" occurences are replaced with actual structure page urls.

INP-21

INP-22

    • -1
    • +1
    /branches/RC/core/units/forms/forms_config.php
    • -1
    • +8
    /branches/RC/core/install/install_toolkit.php
    • -0
    • +23
    /branches/RC/core/units/content/content_eh.php
  1. … 10 more files in changeset.

Method "kDBEventHandler:getPassedID" failed to return correct ID, when "special" was used and method "kDBEventHandler::StoreSelectedIDs" was not called before it (like in OnEdit event).

    • -1
    • +1
    /branches/RC/core/kernel/db/db_event_handler.php

1. Additional parameters to PrintList2 tag:

  • "limit" (input) - tells, how many of queried from database records should be actually displayed.
  • "num" (output) - record number (relative to queried record count).
  • "last_row" (output) - tells, that current record is located in last row (when printing records in table)

    2. "no_next_page_render_as" parameter added to PrintPages tag.

    3. GridInfo tag fixed, so it doesn't report, that pagination is required, when pagination is not used (per_page="-1" in InitList/PrintList tag).

    • -1
    • +3
    /branches/RC/core/kernel/db/db_event_handler.php
    • -2
    • +11
    /branches/RC/core/kernel/db/db_tag_processor.php

Ignore "tools/internal" folder.

Bug #0000009: Admin: Duplicate Link Checker.

1. Allows to use base64_encode function result as ID in grids.

2. Deprecated "adm_SaveReturnScript" tag removed.

3. When grid with special was used and event raised from grid (like OnPreCreate or OnNew) performed redirect, when first selected item ID was not passed in redirect link.

4. Private method "kCatDBEventHandler::_getMassPermissionEvents" added. Method allows category item event handlers to add own events to permission checking.

MINL-1

    • -1
    • +2
    /branches/RC/core/kernel/db/db_event_handler.php

Fixes #0000006: Left Tree with Sections Fails to Update.

1. Tree also was not refreshed automatically, when "Approve" & "Decline" (changed show in menu status), "Move Up" & "Move Down" (changed priority) toolbar buttons were used.

INP-2

Fixes #0000008: Limiting "Form Creator" to DBG Mode.

1. Added new configuration variable "DebugOnlyFormConfigurator" (in "Configuration -> Website Settings -> Advanced" section).

INP-4

    • -0
    • +3
    /branches/RC/core/install/upgrades.sql
    • -0
    • +1
    /branches/RC/core/install/english.lang
    • -0
    • +2
    /branches/RC/core/install/install_data.sql
    • -0
    • +10
    /branches/RC/core/admin_templates/tree.tpl

bug #0000007 fixed - Switching between Catalog / Show All grids

INP-3

    • -4
    • +10
    /branches/RC/core/admin_templates/tree.tpl

svn mailing testing

Tag "kDBTagProcessor::SelectParam" now also skips parameter value, when it's equals to "0" (zero).

1. Method "kDBEventHandler::UseTempTables" wasn't getting actual main item's special when temp handler were deleting subitems.

2. Fixed bug in previous fix of JSONHelper class: strings were enclosed with single quotes, but single quotes were not escaped in string content.

    • -6
    • +18
    /branches/RC/core/kernel/db/db_event_handler.php

1. When item ID was 0 (new main item creation) method "kDBEventHandler::getPassedID" wasn't returning it. Though such ID was returned by "kDBEventHandler::StoreSelectedIDs", that was called later from "kDBEventHandler::getPassedID" method.

2. Foreign key value for subitem WITH SPECIAL wasn't set in kDBEventHandler::OnNew event and 2 warnings were shown.

3. Temp mode mark (<prefix_special>_mode variable) in method "kDBEventHandler::setTempWindowID" was not passed to item editing/creation window, when in both grid and item edit template special was used.

4. Fixed bug in "kDBTagProcessor::FieldVisible" resulting 2 warnings where VerifyPassword field visibility was checked. This is only virtual field, that doesn't exist in unit config and is created on the fly by kPasswordFormatter class.

5. Specials used in "events" request variable were stripped, before adding to "passed" request variable in method "kEventManager::ProcessRequest". Because of such behavior data associated with stripped specials (like temp mode mark and item's ID) were not available in "m_Link" tag used with 'pass="all"' parameter. Fixed by removing such stripping in administrative console only.

6. Prefix data passed in POST wasn't able to overwrite prefix data passed in GET in case, when special was used. This caused problems during item editing when special was used in grid and item edit template.

7. Missing "noimage.gif" image added.

    • binary
    /branches/RC/system/images/noimage.gif
    • -7
    • +21
    /branches/RC/core/kernel/db/db_event_handler.php
    • -3
    • +12
    /branches/RC/core/kernel/event_manager.php
    • -0
    • +32
    /branches/RC/core/kernel/utility/http_query.php
    • -0
    • +5
    /branches/RC/core/kernel/db/db_tag_processor.php

Debug code removed.

1. #27493 - Admin: Add Item on Advanced View

2. OnCancel event was called on "categories/categories_edit" template instead of "OnCancelEdit" resulting no temporary table was deleted.

3. Method kApplication::ConfigValue fixed. Now if variable value is present, but it has NULL as value, then such variable is not threated as missing and duplicate queries are performed.

TODO: replace all NULL values in ConfigurationValues table with default values based on variable type (0 for checkbox, empty string for text and so on)

4. Now kDBEventHandler::StoreSelectedIDs could also get IDs from new "ids" $event parameter, rather, then from request. Useful, when IDs are changed on kDBEventHandler::CheckPermission method (before actual event call).

5. Method CategoryHelper::getStructureTreeAsOptions added. Method provides ability to get all category structure as options for any dbitem field (like ParentId for categories and CategoryId for category items).

6. Method CustomFieldsEventHandler::_getHiddenFiels fixed. Now it doesn't given warning when editing category item, with no custom fields to show on general tab.

7. Fixed method kCatDBItem::MoveToCat. Now, when category item is in temp mode, then category manipulations are also made in temp tables.

8. Permission checking logic for categories and category items in temp table is changed. Now everything in temp tables for them is allowed. Permissions are checked only when Save button is pressed during main item (not subitem) editing. When user selected 5 items, but he can edit only 2 of them, then other 3 are automatically excluded from item edit form. When all of selected items are excluded, then user gets "no permission" screen. Same with "move up/down", "approve/decline" toolbar buttons.

9. Method CategoriesEventHandler::printChildren && CategoriesEventHandler::getChildren moved to CategoryHelper and now are used by new CategoryHelper::getStructureTreeAsOptions method. Some documentation added for other CategoryHelper methods.

10. Permission debugging information was not available in some of permission checking methods. That's why method kPermissionHelper::finalizePermissionCheck added. Method should be used in any place, when $event status should change to erPERM_FAIL.

11. Column filters on Category Edit -> Custom tab's grid were not working, because of incorrect grid name used (Default instead of SeparateTab).

12. Fixed title preset name in "products/products_access" template (was "pr", but should be "access").

13. Fixed incorrect pagination prefix in some templates.

14. Formatter added for OnSale field in Products table.

15. No permission template fixed, now it doesn't break catalog.

16. sections_list template fixed to use new blocks.

  1. … 15 more files in changeset.

1. #27504 - Admin: Left Tree -> Add 2px Padding-Right to Elements

2. Skin name made requred.

    • -1
    • +1
    /branches/RC/core/units/skins/skins_config.php
    • -1
    • +1
    /branches/RC/core/install/install_data.sql

1. Special "primary" added for "skin" prefix for easy primary skin accessing.

2. Fixed some issues with uploaded/resized image path building, when WriteableBase was "\system" on Windows.

    • -1
    • +2
    /branches/RC/core/kernel/db/db_event_handler.php
    • -0
    • +25
    /branches/RC/core/units/skins/skin_eh.php

This commit was manufactured by cvs2svn to create tag 'release_5_0_0'.

1. Added submenu item in "Catalog -> Tools" menu for rebuilding priorities cache in current category

2. "View in Browse Mode" link is now hidden from catalog item selector.

3. Added missing js_escape parameter to phrases used in javascript in combined_header block.

4. Fixed bad automatic thickbox window positioning, when firebug or bookmark panel was opened (iframe was moving outside it's window).

5. New parameter $onAfterOpenPopup added for js functions: std_precreate_item, std_new_item, std_edit_temp_item.

6. inp_edit_box_ml block was used on non-multilanguage field (for prefix "skin", "test").

7. Improvements in installator & unit config reader for windows (DIRECTORY_SEPARATOR was used insead of "/" that was hardcoded). Iproved file scanning operation performance.

8. Installation on linux failed on 2nd step, when config.php file was missing and attempt was made to check it's write permissions.

9. kDBConnection::doInsert method iproved, so it now can perform multiple record insert into same table using only one INSERT statement no matter what actual records will be inserted.

10. Removed unused code from kDBTagProcessor::PredefinedSearchOptions tag

11. Now grid filters are not affected by DefaultSettingUsedId configuration variable.

12. Fixed Debugger::netMatch method. Now it doesn't raise warnings every time, when compare 2 given ip addresses (not subnet masks as earlier).

13. Improved config file search engine, now it takes 1 second to scan all config file for all in-portal modules.

14. preg_match in kUnitConfigReader::configAllowed replaced with substr, that improved config file checking speed.

15. Fixed bug in "Content" removal in each category path (was not removed, when only Content was present in category path).

16. Fixed bug in ExportHelper, that asked item for ExportColumns field even, when such field was not available.

17. When installed on local domain (tested on windows), then paid modules were not available at all, but they should be available for installing.

    • -9
    • +34
    /branches/RC/core/kernel/db/db_connection.php
    • -0
    • +5
    /branches/RC/core/install/english.lang
    • -2
    • +2
    /branches/RC/core/units/users/users_config.php
    • -1
    • +1
    /branches/RC/core/install/upgrades.sql
  1. … 21 more files in changeset.
      • empty log message ***

Fixed problem in JSONHelper, when string with only numbers inside beginning with leading zeros was encoded as number and leading zeros were lost as a result.

1. #27081 - Admin: Editor in Site Views fix

2. kDateFormatter doesn't create *_formatted virtual fields anymore.

    • -9
    • +11
    /branches/RC/core/units/general/cat_dbitem.php
    • -7
    • +19
    /branches/RC/core/install/upgrades.php

1. Fixed bug, when catalog grid filter raised fatal error when using category selector.

#27465 - Admin: All Grids -> Broken Size for Field with Checkboxes

#27462 - License Check for Modules

    • -2
    • +10
    /branches/RC/core/kernel/application.php

FieldVisible tag added to all local copies of blocks (copied from form_blocks and then changed)

1. Fixed category edit template layout in IE -> hidden fields moved outside table to look normal.

2. Fixed ajax overlay zIndex, so new windows will open over it, not under it as before.

3. Content category stripped from exported data.

4. Use is redirected exactly to import target category (not just in home category as before) after import is made.

5. #27456 - Admin: Import -> Multiple Fixes

    • -8
    • +8
    /branches/RC/core/install/install_toolkit.php
    • -0
    • +9
    /branches/RC/core/kernel/db/db_tag_processor.php

#27460 - Admin: Hide Fields & Sections marked in Site Configs (virtual hidden fields fix)

    • -2
    • +16
    /branches/RC/core/kernel/db/db_tag_processor.php

#27081 - Admin: Editor in Site Views

    • -0
    • +24
    /branches/RC/core/admin_templates/themes/extra_toolbar.tpl
    • -1
    • +1
    /branches/RC/core/install/install_data.sql
    • -0
    • +2
    /branches/RC/core/admin_templates/head.tpl

1. Final ajustments to categories_edit template to work with site config field hiding engine.

2. Custom field options list made smaller.

3. no_special parameter added to inp_label block.

4. Some debug code removed from kApplication class.

5. Added tags FieldVisible and FieldsVisible to show/hide fields based on data from site configs.

6. Global template compiler (from system tools section) now works only with enabled themes.

7. Fixed some warning on import/export screen.

8. #27460 - Admin: Hide Fields & Sections marked in Site Configs

    • -1
    • +0
    /branches/RC/core/units/admin/admin_config.php
    • -0
    • +11
    /branches/RC/core/install/english.lang
    • -4
    • +0
    /branches/RC/core/kernel/application.php
    • -1
    • +3
    /branches/RC/core/install/upgrades.sql
    • -0
    • +46
    /branches/RC/core/kernel/db/db_tag_processor.php

Single quotes used in block definitions to prevent syntax highlighting problems in Zend.