In-Portal Issue Tracker - In-Portal CMS
Viewing Issue Advanced Details
1173 [In-Portal CMS] Template System feature request N/A 2011-11-29 02:31 2012-07-25 05:32
alex  
alex  
normal  
closed 5.1.3  
fixed  
 
none 5.2.0-B1  
https://groups.google.com/d/topic/in-portal-dev/QLILUDfQLOo/discussion
Fixes wrong current template used inside ajax requests
1
0001173: Wrong template on templates loaded via AJAX requests
In-Portal uses <inp2:m_Link .../> tag to build links to this/other pages of website.

When:
* template is not specified, then link to current page will be created;
* template is specified, then link to given page will be created.

However, when parts of a page are loaded via ajax requests, e.g.

<script type="text/javascript">
    $('#target-div').load( '<inp2:m_Link template="path/to/ajax/template" no_amp="1" js_escape="1"/>' );
</script>

then within "path/to/ajax/template" template current template will now be "path/to/ajax/template" instead of template used to display the page that made that ajax request.


Attached patch solves this problem allowing to specify alternative template, that should be used by template parser to display page content. Fixed version of JavaScript code from example above now will look like:

<script type="text/javascript">
    $('#target-div').load( '<inp2:m_Link render_template="path/to/ajax/template" no_amp="1" js_escape="1"/>' );
</script>
patch links_inside_ajax_template_fix.patch (503) 2011-11-29 02:31
http://tracker.in-portal.org/file_download.php?file_id=1332&type=bug
Issue History
2012-07-25 05:32 alex Note Added: 0005045
2012-07-25 05:32 alex Status resolved => closed
2011-11-29 02:33 alex Note Added: 0004178
2011-11-29 02:33 alex Status reviewed and tested => resolved
2011-11-29 02:33 alex Fixed in Version => 5.2.0-B1
2011-11-29 02:33 alex Resolution open => fixed
2011-11-29 02:33 alex Assigned To !COMMUNITY => alex
2011-11-29 02:33 alex Changeset attached 5.2.x r14803
2011-11-29 02:32 alex Note Added: 0004177
2011-11-29 02:32 alex Status needs testing => reviewed and tested
2011-11-29 02:32 alex Assigned To => !COMMUNITY
2011-11-29 02:32 alex Developer => alex
2011-11-29 02:32 alex Status active => needs testing
2011-11-29 02:32 alex Reference => https://groups.google.com/d/topic/in-portal-dev/QLILUDfQLOo/discussion
2011-11-29 02:31 alex New Issue
2011-11-29 02:31 alex File Added: links_inside_ajax_template_fix.patch
2011-11-29 02:31 alex Change Log Message => Fixes wrong current template used inside ajax requests
2011-11-29 02:31 alex Estimate Points => 1

Notes
(0004177)
alex   
2011-11-29 02:32   
Will test all together later.
(0004178)
alex   
2011-11-29 02:33   
Fix committed to 5.2.x branch. Commit Message:

Fixes 0001173: Wrong template on templates loaded via AJAX requests
(0005045)
alex   
2012-07-25 05:32   
Since 5.2.0 version was released.