Broetchen1234 / iui

Automatically exported from code.google.com/p/iui
MIT License
0 stars 0 forks source link

Link to External link with out target="_self" cause rendering issue #229

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Create a link to external page using Ajax Hyperlink ( with out target="_self"
2.The destination URL is render as normal HTML, I using <ul> and <il> but
it not translate to hierarchical side-schrolling

What is the expected output? What do you see instead?
The toolbar seem to render correctly but the body render as normal HTML
instead of iphone format

What version of the product are you using? On what operating system?
Fedora 12, using Genshi template, IUI version 0.31

Please provide any additional information below.
More over, it seem like I can't clear the catch after using Ajax
Hyperlinks, page stay unchanged after I change the HTML code and reload the
server

here is the HTML code for Ajax Hyperlinks in index page
<li><a href="/iui/pete/vid_showcase.xhtml?category=cat1"
target="_self">Cat1</a></li>

here is the HTML code for the external page 
Note that, I didn't have HTML tag for external page

    <div id="videoshowcase" title="Video Showcase"
xmlns:py="http://genshi.edgewall.org/" xmlns="http://www.w3.org/1999/xhtml"
xmlns:xi="http://www.w3.org/2001/XInclude">
    <ul id="test" title="Twistbox">
        <li class="group">${categoryTitle}</li>
        <py:for each="row in page.getItems()">
          <li>
            <a href="${row.buyURL.encode()}" target="_self">
            <table>
              <tr>
                <td>
                  <img src="${row.thumbURL.encode()}" alt="A-Ga" width="80"
height="58" />
                </td>
                <td>
                  ${row.tag}
                </td>
              </tr>
            </table>
             </a>
          </li>
        </py:for>
    </ul>
    </div>

Original issue reported on code.google.com by peerap...@gmail.com on 6 Mar 2010 at 12:37