Menu

#18 nested list handling

closed-fixed
5
2006-04-25
2006-04-25
LiuCougar
No

the xhtml input:
<ol>
<li>first</li>
<li>second</li>
<li>third</li>
<ol>
<li>sub 1</li>
<li>sub 2</li>
<li>sub 3</li>
</ol>
<li>final</li>
</ol>

should generate this ezxml doc:

<paragraph>
<ol>
<li>
<paragraph>first</paragraph>
</li>
<li>
<paragraph>second</paragraph>
</li>
<li>
<paragraph>third
<ol>
<li>
<paragraph>sub 1</paragraph>
</li>
<li>
<paragraph>sub 2</paragraph>
</li>
<li>
<paragraph>sub 3</paragraph>
</li>
</ol>
</paragraph>
</li>
<li>
<paragraph>final</paragraph>
</li>
</ol>
</paragraph>

Discussion

  • LiuCougar

    LiuCougar - 2006-04-25

    Logged In: YES
    user_id=600121

    fixed in r74
    ATTENTION: there is a reference bug in eZ 3.7 which prevents
    nested list work correctly, please see the bug report and a
    patch to rectify it.
    http://ez.no/community/bugs/lastchild_in_ezdomnode_should_return_reference

    Before eZ merge it into their codebase, you have to apply
    that patch in order to have nested list work correctly

     
  • LiuCougar

    LiuCougar - 2006-04-25
    • status: open --> closed-fixed
     

Log in to post a comment.