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 Advanced Details Jump to Notes ] Wiki ]  Related Changesets ] View Simple ] Issue History ] Print ]
ID Category Type Reproducibility Date Submitted Last Update
0000359 [In-Portal CMS] Front End bug report always 2009-10-06 14:09 2010-01-11 22:05
Reporter alex View Status public Project Name In-Portal CMS
Assigned To alex Developer
Priority normal Resolution fixed Platform
Status closed   OS
  OS Version
ETA none Fixed in Version 5.0.2-B1 Product Version 5.0.1
  Target Version 5.0.2 Product Build
Time EstimateNo estimate
Summary 0000359: Two different urls will lead to same physical template on Front-End
Description In case, when physical template link is build using st_CachedMenu tag, then actual path to template in structure (if any) is used for url. In case, when m_Link tag is used without st_CachedMenu tag, then url is actual path to template on disk. For example:
1. "terms-and-conditions" - st_CachedMenu variant
2. "terms" - m_Link variant
 
Steps To Reproduce
Additional Information
Tags No tags attached.
Reference
Change Log Message
Estimate Points 0
Attached Files patch file icon unify physical template links.patch [^] (7,116 bytes) 2009-10-08 14:04 [Show Content]
patch file icon symlink_for_physical_templates_v3.patch [^] (62,053 bytes) 2009-10-27 04:41 [Show Content]
patch file icon symlink_for_physical_templates_v4.patch [^] (71,099 bytes) 2009-11-03 13:56 [Show Content]

- Relationships Relation Graph ] Dependency Graph ]
parent of 0001386resolved (5.2.1)alex Incorrect section/category physical template detection 
related to 0000016closed (5.0.2)alex Redo "IsIndexPage" and "SymLink" functionality for Sections 
related to 0001304closed (5.2.0)alex Parameters "use_section" and "pass_category" are ignored by m_RequireLogin tag in mod-rewrite 

-  Notes
User avatar (0000828)
Dmitry (manager)
2009-10-06 16:41

Agreed, but 2 notes:

1. I think we should do this for all Sections NOT only the ones that marked as IsMenu since can foresee cases when I have something hidden from the Menu, but still need to refer to correct Section / URL.

2. We should make additional parameter available which will allow to by pass/exclude from build URL to the template using that mapping instead will do as before. This might be helpful for the future.

Both things are more like improvements to proposed functionality.

Please move forward with this development.
User avatar (0000830)
alex (manager)
2009-10-08 07:38

Here is one more idea: when number is given instead of template name, then use structure page url as template name and also pass this number as m_cat_id to link building system.

This will solve the cases, when we need to address specific virtual page in some processing code, like events or tags, but we don't want all this to crash, when client renames that virtual page (because ID will stay the same anyway).
User avatar (0000832)
Dmitry (manager)
2009-10-08 11:40

Yes, this is a good point.

Let's just cover up the case when Template can be the ID what id we pass as @@ID@@ format - same as we do in Content Blocks for path building?

Back to you for the feedback.
User avatar (0000839)
alex (manager)
2009-10-08 14:06

Ups, did that in "id:ID" format really before you suggested @@ID@@ format.
User avatar (0000845)
Dmitry (manager)
2009-10-08 14:40

Is it hard to change so we can actually test this in multiple scenarios.

Also it would help if you list some basic cases for the test please (especially with passing Events)
User avatar (0000846)
alex (manager)
2009-10-08 15:02

Test Case (need to create templates mentioned here by hand):

1. we have physical template "sample/file" ("file.tpl" in "sample" folder in theme root)
2. test, that it's accessible by it's physical location: http://www.site.com/sample/file.html
3. Rebuild theme files and place this template under "directory" subfolder (it now has structure path as "directory/file".
4. Test, that it is accessible by it's structure url, like: http://www.site.com/directory/file.html
5. Rename structure page corresponding to "file.tpl" template to "Other file".
6. Test, that it is accessible by it's new structure url, like: http://www.site.com/directory/other_file.html
7. In any theme file, e.g. index.tpl build link to this page:
<inp2:m_Link template="sample/file"/> - work
<inp2:m_Link template="directory/file"/> - don't work
<inp2:m_Link template="directory/other_file"/> - work
<inp2:m_Link template="id:#ID#"/> - work (replace #ID# with page id)

First links, that work should be identical no matter what template name is given to tag.


User avatar (0000853)
Dmitry (manager)
2009-10-08 17:57

Can't Apply the patch against latest SVN version.

There was 1 related Commit which can affect this.

Please check.
User avatar (0000865)
alex (manager)
2009-10-09 05:17

Of course it's impossible to apply patch against latest SVN version, because it's changed since patch was created. You can only apply patch to SVN version based on what it was created. There are two ways to solve the problem:

Way #1
------
There are revision numbers in patch file near each filename to be patched. You can update your working copy to one (maybe largest number) of them and apply patch then. Then, when some files were changed/created merge these changes to other in-portal installation, which should updated to HEAD branch, not individual revision, where patch was applied.

Way #2
------
Same as way #1, except of that as source project for applying patch you choose last released branch.

-----
Maybe we should write such rule, that patch should be created against svn version, which was used for reporting task (see "Product Version" field). For now I create patches from "5.0.x" branch and continue developing in it, that's why patches, that changes same files can't be applied without problems.
User avatar (0000928)
Dmitry (manager)
2009-10-18 03:23

Please see last comment in 0000016
User avatar (0000994)
Dmitry (manager)
2009-10-26 17:11

Issues with Current solution. Let's hold off on applying new method automatically on ALL URLs in In-Portal 5.0.2
================

We came across some major issues with building and parsing URLs using new method.

More specifically there are situations when new URL consist of 2 sections:

NOW with Patch:

Section (category) and Section-Page (section in the structure, design already assigned to the structure)

BEFORE

Section (category) and Template (physical template)


As you can see the problem is that we aren't able to properly parse and gather the Design template from the Section.

=============


For now it was decided to pass a new use_section="1" parameter to m_Link and similar URL build tags (HREF method) that will apply new functionality and include it in 5.0.2

Please update and attach a new patch here.


User avatar (0001005)
Dmitry (manager)
2009-10-28 00:36
edited on: 2009-10-28 01:18

Tested and there is problem - with System sections in CachedMenu

Example is here -- http://simone1.intechnic.com/dev/SVN/5.0.x/index.html

Click on Privacy Policy in top menu, I get

http://simone1.intechnic.com/dev/SVN/5.0.x/privacy:1.html


Also, could you please describe how "external" forward works/operated now?

User avatar (0001043)
alex (manager)
2009-11-03 14:05

1. Issue with "http://simone1.intechnic.com/dev/SVN/5.0.x/privacy:1.html" url in menu fixed (use_section="$use_section" should be now used in links for blocks, that are used by st_CachedMenu tag and it's fixed for current themes inside this patch).

2. External works this way:
You edit any section and check "Use External Url" checkbox. Additional field with url appears. If url starts with a protocol, like "http://" or any other protocol, e.g. "ftp://", then link to such category (when used in menu) will be given link. When url doesn't start with protocol, then base url of site is applied before entered url and result is used for links in menu. This works with mod-rewrite on and off.

For now links build by c_CategoryLink doesn't support external links, because it will require additional query to match given category id to external url (if any) and I don't see any direct application for it today.

In case, if link is made to physical template with use_section="1" parameter, then, when corresponding physical template category have external url, then it will be used. That's kind of side effect, because why physical template should link to other site.
User avatar (0001044)
alex (manager)
2009-11-03 14:10

Fix committed to 5.0.x branch. Commit Message:

Fixes 0000359: Two different urls will lead to same physical template on Front-End
User avatar (0001045)
alex (manager)
2009-11-03 14:13

Reminder sent to: Dmitry

This is largest patch among ones I've attached throughout the mantis, and based on your ability to quickly change the theme templates I'm afraid, that it will be really hard to apply it after testing. Also because it's 4th version of this patch, then this time it should definitely work and I've already commited it to SVN.

Also be sure to test, that require login and no permission redirects are made using full url now, because this patch also implements this.
User avatar (0001112)
alex (manager)
2009-11-13 12:57

Fix committed to 5.0.x branch. Commit Message:

Fixes 0000359: Two different urls will lead to same physical template on Front-End
User avatar (0001116)
alex (manager)
2009-11-13 12:59

Fix committed to 5.0.x branch. Commit Message:

Fixes 0000359: Two different urls will lead to same physical template on Front-End
User avatar (0001125)
alex (manager)
2009-11-13 13:06

Fix committed to 5.0.x branch. Commit Message:

Fixes 0000359: Two different urls will lead to same physical template on Front-End
User avatar (0001129)
alex (manager)
2009-11-13 13:34

This task was resolved multiple times, because of themes were moved into separate modules. I will revert issue status and fixed in version fields back to normal manually.
User avatar (0001327)
Dmitry (manager)
2010-01-11 22:05

Closing completed tasks.

- Related Changesets
In-Portal CMS: 5.0.x r12877
Timestamp: 2009-11-03 14:10:32
Author: alex
Details ] Diff ]
Fixes 0000359: Two different urls will lead to same physical template on Front-End
mod - /in-portal/branches/5.0.x/admin/system_presets/simple/categories_c.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/categories/categories_edit.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/config/config_general.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/incs/form_blocks.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/tools/system_tools.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/english.lang Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/install_schema.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/application.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/kbase.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/processors/main_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/utility/http_query.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/admin/admin_events_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/category_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/helpers_config.php Diff ] File ]
add - /in-portal/branches/5.0.x/core/units/helpers/menu_helper.php File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/mod_rewrite_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/permissions_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/structure/structure_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_sections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_subsections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/default/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/side_boxes/sub_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/sitemap.tpl Diff ] File ]
Themes :: Advanced: 5.0.x r12877
Timestamp: 2009-11-03 14:10:32
Author: alex
Details ] Diff ]
Fixes 0000359: Two different urls will lead to same physical template on Front-End
mod - /in-portal/branches/5.0.x/admin/system_presets/simple/categories_c.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/categories/categories_edit.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/config/config_general.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/incs/form_blocks.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/tools/system_tools.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/english.lang Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/install_schema.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/application.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/kbase.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/processors/main_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/utility/http_query.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/admin/admin_events_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/category_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/helpers_config.php Diff ] File ]
add - /in-portal/branches/5.0.x/core/units/helpers/menu_helper.php File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/mod_rewrite_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/permissions_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/structure/structure_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_sections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_subsections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/default/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/side_boxes/sub_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/sitemap.tpl Diff ] File ]
Themes :: Default: 5.0.x r12877
Timestamp: 2009-11-03 14:10:32
Author: alex
Details ] Diff ]
Fixes 0000359: Two different urls will lead to same physical template on Front-End
mod - /in-portal/branches/5.0.x/admin/system_presets/simple/categories_c.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/categories/categories_edit.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/config/config_general.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/incs/form_blocks.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/tools/system_tools.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/english.lang Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/install_schema.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/application.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/kbase.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/processors/main_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/utility/http_query.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/admin/admin_events_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/category_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/helpers_config.php Diff ] File ]
add - /in-portal/branches/5.0.x/core/units/helpers/menu_helper.php File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/mod_rewrite_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/permissions_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/structure/structure_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_sections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_subsections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/default/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/side_boxes/sub_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/sitemap.tpl Diff ] File ]
Themes :: Simple: 5.0.x r12877
Timestamp: 2009-11-03 14:10:32
Author: alex
Details ] Diff ]
Fixes 0000359: Two different urls will lead to same physical template on Front-End
mod - /in-portal/branches/5.0.x/admin/system_presets/simple/categories_c.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/categories/categories_edit.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/config/config_general.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/incs/form_blocks.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/admin_templates/tools/system_tools.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/english.lang Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/install_schema.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/install/upgrades.sql Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/application.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/db/db_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/kbase.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/processors/main_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/kernel/utility/http_query.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/admin/admin_events_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/categories/categories_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/category_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/helpers_config.php Diff ] File ]
add - /in-portal/branches/5.0.x/core/units/helpers/menu_helper.php File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/mod_rewrite_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/helpers/permissions_helper.php Diff ] File ]
mod - /in-portal/branches/5.0.x/core/units/structure/structure_config.php Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_sections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/advanced/platform/elements/menu_subsections.xml.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/default/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/footer.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/navigation_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/elements/side_boxes/sub_menu.elm.tpl Diff ] File ]
mod - /in-portal/branches/5.0.x/themes/simple/sitemap.tpl Diff ] File ]

- Issue History
Date Modified Username Field Change
2012-09-03 07:52 alex Relationship added parent of 0001386
2012-05-29 06:09 alex Relationship added related to 0001304
2010-01-11 22:05 Dmitry Note Added: 0001327
2010-01-11 22:05 Dmitry Status resolved => closed
2009-11-13 13:34 alex Note Added: 0001129
2009-11-13 13:34 alex Fixed in Version => 5.0.2-B1
2009-11-13 13:06 alex Note Added: 0001125
2009-11-13 13:06 alex Changeset attached 5.0.x r12877
2009-11-13 12:59 alex Note Added: 0001116
2009-11-13 12:59 alex Changeset attached 5.0.x r12877
2009-11-13 12:57 alex Changeset attached 5.0.x r12877
2009-11-13 12:57 alex Note Added: 0001112
2009-11-13 12:57 alex Fixed in Version 5.0.2-B1 =>
2009-11-03 14:13 alex Issue Monitored: Dmitry
2009-11-03 14:13 alex Note Added: 0001045
2009-11-03 14:10 alex Note Added: 0001044
2009-11-03 14:10 alex Status needs testing => resolved
2009-11-03 14:10 alex Fixed in Version => 5.0.2-B1
2009-11-03 14:10 alex Resolution open => fixed
2009-11-03 14:10 alex Changeset attached 5.0.x r12877
2009-11-03 14:05 alex Note Added: 0001043
2009-11-03 14:05 alex Status needs work => needs testing
2009-11-03 13:56 alex File Added: symlink_for_physical_templates_v4.patch
2009-10-28 01:18 Dmitry Note Edited: 0001005 View Revisions
2009-10-28 00:36 Dmitry Note Added: 0001005
2009-10-28 00:36 Dmitry Assigned To !COMMUNITY => alex
2009-10-28 00:36 Dmitry Status needs testing => needs work
2009-10-27 04:42 alex Assigned To alex => !COMMUNITY
2009-10-27 04:42 alex Status needs work => needs testing
2009-10-27 04:41 alex File Added: symlink_for_physical_templates_v3.patch
2009-10-26 17:11 Dmitry Note Added: 0000994
2009-10-26 17:11 Dmitry Status needs feedback => needs work
2009-10-18 03:23 Dmitry Note Added: 0000928
2009-10-18 03:23 Dmitry Assigned To Dmitry => alex
2009-10-18 03:23 Dmitry Status needs testing => needs feedback
2009-10-11 10:31 Dmitry Relationship added related to 0000016
2009-10-09 05:17 alex Note Added: 0000865
2009-10-09 05:17 alex Assigned To alex => Dmitry
2009-10-09 05:17 alex Status needs work => needs testing
2009-10-08 17:57 Dmitry Note Added: 0000853
2009-10-08 17:57 Dmitry Assigned To !COMMUNITY => alex
2009-10-08 17:57 Dmitry Status needs testing => needs work
2009-10-08 15:02 alex Note Added: 0000846
2009-10-08 15:02 alex Assigned To alex => !COMMUNITY
2009-10-08 15:02 alex Status needs work => needs testing
2009-10-08 14:40 Dmitry Note Added: 0000845
2009-10-08 14:40 Dmitry Assigned To Dmitry => alex
2009-10-08 14:40 Dmitry Status needs testing => needs work
2009-10-08 14:06 alex Note Added: 0000839
2009-10-08 14:06 alex Assigned To alex => Dmitry
2009-10-08 14:06 alex Status active => needs testing
2009-10-08 14:04 alex Status needs feedback => active
2009-10-08 14:04 alex Assigned To => alex
2009-10-08 14:04 alex Assigned To alex =>
2009-10-08 14:04 alex File Added: unify physical template links.patch
2009-10-08 11:42 Dmitry Status active => needs feedback
2009-10-08 11:42 Dmitry Description Updated View Revisions
2009-10-08 11:40 Dmitry Note Added: 0000832
2009-10-08 11:40 Dmitry Assigned To Dmitry => alex
2009-10-08 11:40 Dmitry Status needs feedback => active
2009-10-08 11:40 Dmitry Description Updated View Revisions
2009-10-08 11:40 Dmitry Additional Information Updated View Revisions
2009-10-08 07:38 alex Note Added: 0000830
2009-10-08 07:38 alex Assigned To alex => Dmitry
2009-10-08 07:38 alex Status active => needs feedback
2009-10-06 16:41 Dmitry Note Added: 0000828
2009-10-06 14:10 alex Target Version 5.0.1 => 5.0.2
2009-10-06 14:09 alex Assigned To => alex
2009-10-06 14:09 alex Target Version => 5.0.1
2009-10-06 14:09 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