You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Henning Schmiedehausen (JIRA)" <ji...@codehaus.org> on 2006/12/10 17:33:41 UTC

[jira] Created: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
-----------------------------------------------------------------------------------------

                 Key: DOXIA-78
                 URL: http://jira.codehaus.org/browse/DOXIA-78
             Project: doxia
          Issue Type: Improvement
          Components: Core
    Affects Versions: 1.0-alpha-8, 1.0
            Reporter: Henning Schmiedehausen
         Attachments: doxia.patch

The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.

As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.

The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Razan Abbass (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=238311#action_238311 ] 

Razan Abbass commented on DOXIA-78:
-----------------------------------

[flights|http://getflightsto.com]
[Pregnancy Period|http://childcareforums.com]


> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Module - Xdoc, Module - Xhtml, Sink API
>    Affects Versions: 1.0-alpha-8
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>             Fix For: 1.1
>
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Reopened: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Lukas Theussl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lukas Theussl reopened DOXIA-78:
--------------------------------

      Assignee: Lukas Theussl  (was: Jason van Zyl)

Re-opening, this patch introduced a bug as it mixes up width with colspan. The sink API currently doesn't know anything about cell spanning, see my proposal at http://docs.codehaus.org/display/DOXIA/Proposed+Changes+to+the+Sink+API

> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: 1.0-alpha-8, 1.0
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Dennis Lundberg (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dennis Lundberg updated DOXIA-78:
---------------------------------

    Comment: was deleted

(was: [flights|http://getflightsto.com]
[Pregnancy Period|http://childcareforums.com]
)

> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Module - Xdoc, Module - Xhtml, Sink API
>    Affects Versions: 1.0-alpha-8
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>             Fix For: 1.1
>
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Lukas Theussl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lukas Theussl updated DOXIA-78:
-------------------------------

    Fix Version/s: 1.0-beta-1
      Component/s:     (was: Core)
                   Sink API
                   Module - Xhtml
                   Module - Xdoc

> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Module - Xdoc, Module - Xhtml, Sink API
>    Affects Versions: 1.0-alpha-8
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>             Fix For: 1.0-beta-1
>
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Lukas Theussl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lukas Theussl closed DOXIA-78.
------------------------------

    Resolution: Fixed

Fixed with DOXIA-204.

> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Module - Xdoc, Module - Xhtml, Sink API
>    Affects Versions: 1.0-alpha-8
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>             Fix For: 1.0-beta-1
>
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Lukas Theussl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lukas Theussl updated DOXIA-78:
-------------------------------

    Affects Version/s:     (was: 1.0)

> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Module - Xdoc, Module - Xhtml, Sink API
>    Affects Versions: 1.0-alpha-8
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>             Fix For: 1.0-beta-1
>
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Lukas Theussl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lukas Theussl updated DOXIA-78:
-------------------------------

    Comment: was deleted

(was: [cheap dress|http://www.facts11.com/download/attachments/1048855/hpd1.html]
[cheap dress pants|http://www.facts11.com/download/attachments/1048855/hpd2.html]
[cheap dress shops|http://www.facts11.com/download/attachments/1048855/hpd3.html]
[cheap dresses for juniors|http://www.facts11.com/download/attachments/1048855/hpd4.html]
[cheap dress shoes|http://www.facts11.com/download/attachments/1048855/hpd5.html]
[cheap dress for a wedding|http://www.facts11.com/download/attachments/1048855/hpd6.html]
[cheap dress rentals|http://www.facts11.com/download/attachments/1048855/hpd7.html]
[cheap dress for prom|http://www.facts11.com/download/attachments/1048855/hpd8.html]
[cheap dresses for prom|http://www.facts11.com/download/attachments/1048855/hpd9.html]
[cheap dress clothes|http://www.facts11.com/download/attachments/1048855/hpd10.html]
[cheap dresses for juniors|http://www.facts11.com/download/attachments/1048855/hpd11.html]
[cheap dress clothes|https://wiki.luc.edu/download/attachments/21266444/hpd12.html]
[cheap dresses for women|https://wiki.luc.edu/download/attachments/21266444/hpd13.html]
[cheap dress up|https://wiki.luc.edu/download/attachments/21266444/hpd14.html]
[cheap dress websites|https://wiki.luc.edu/download/attachments/21266444/hpd15.html]
[cheap dress online|https://wiki.luc.edu/download/attachments/21266444/hpd16.html]
[cheap dress shops|https://wiki.luc.edu/download/attachments/21266444/hpd17.html]
[cheap dresses for homecoming|https://wiki.luc.edu/download/attachments/21266444/hpd18.html]
[cheap dress shirts for men|https://wiki.luc.edu/download/attachments/21266444/hpd19.html]
[cheap dress for sale|https://wiki.luc.edu/download/attachments/21266444/hpd20.html]
[cheap dress stores|https://wiki.luc.edu/download/attachments/21266444/hpd21.html]
[cheap dress suits|https://wiki.luc.edu/download/attachments/21266444/hpd22.html]
[cheap dress forms|https://wiki.luc.edu/download/attachments/21266444/hpd23.html]
[cheap dress boots|http://www.inventiondb.com/view.php?id=545]
[cheap dress for prom|http://www.inventiondb.com/view.php?id=546]
[cheap dressing tables|http://www.inventiondb.com/view.php?id=547]
[cheap dress fabric|http://www.inventiondb.com/view.php?id=548]
[cheap dress for wedding|http://www.inventiondb.com/view.php?id=549]
[cheap dress for sale|http://www.inventiondb.com/view.php?id=550]
[cheap dressage saddles|http://www.inventiondb.com/view.php?id=551]
[cheap dress hire|http://www.inventiondb.com/view.php?id=552]
[cheap dressing mirror|http://www.inventiondb.com/view.php?id=553]
[cheap dressmakers|http://www.inventiondb.com/view.php?id=554]
[cheap dress shirts for men|http://www.inventiondb.com/view.php?id=555]
[cheap dress sandals|http://risd.openprojectdb.org/view.php?id=18]
[cheap dress patterns|http://risd.openprojectdb.org/view.php?id=19]
[cheap dress up clothes|http://risd.openprojectdb.org/view.php?id=20]
[cheap dress watches|http://risd.openprojectdb.org/view.php?id=21]
[cheap dress fabric|http://risd.openprojectdb.org/view.php?id=22]
[cheap dress shoes for men|http://risd.openprojectdb.org/view.php?id=23]
[cheap dressy dresses|http://risd.openprojectdb.org/view.php?id=24]
[cheap dressy shoes|http://risd.openprojectdb.org/view.php?id=25]
[cheap dressy tops|http://risd.openprojectdb.org/view.php?id=26]
[cheap dressing up costumes|http://risd.openprojectdb.org/view.php?id=27]
[cheap dresses for prom|http://opdb.risd.edu/view.php?id=28]
[cheap dress up costumes|http://opdb.risd.edu/view.php?id=29]
[cheap dress patterns|http://opdb.risd.edu/view.php?id=30]
[cheap dress socks|http://opdb.risd.edu/view.php?id=31]
[cheap dress tops|http://opdb.risd.edu/view.php?id=32]
[cheap dress up clothes for kids|http://opdb.risd.edu/view.php?id=33]
[cheap dress watch|http://opdb.risd.edu/view.php?id=34]
[cheap dress ties|http://opdb.risd.edu/view.php?id=35]
[cheap dress wear|http://opdb.risd.edu/view.php?id=36]
[cheap dressage saddles|http://opdb.risd.edu/view.php?id=37]
[cheap dress material|http://opdb.risd.edu/view.php?id=38]
[cheap dresses to wear to a wedding|http://opdb.risd.edu/view.php?id=39]
[cheap dressing tables with mirror|http://opdb.risd.edu/view.php?id=40]
[cheap dressmakers dummy|http://opdb.risd.edu/view.php?id=41]
[cheap dress pumps|http://opdb.risd.edu/view.php?id=42]
[cheap dress makers|http://opdb.risd.edu/view.php?id=43]
[cheap dress heels|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre1]
[cheap dress material|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre2]
[cheap dressmaking fabric|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre3]
[cheap dress makers|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre4]
[cheap dress online|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre5]
[cheap dressy clothes|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre6]
[cheap dress boutiques|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre7]
[cheap dressers for sale|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre8]
[cheap dress designers|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre9]
[cheap dress jewellery|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre10]
[cheap dressy clothing|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre11]
[cheap dress designers|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre12]
[cheap dress jackets|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre13]
[cheap dress blues|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre14]
[cheap dress forms for sale|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre15]
[cheap dressing table mirrors|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre16]
[cheap dress rings|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre17]
[cheap dresses for women|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre18]
[cheap dressy shirts|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre19]
[cheap dress slacks|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre20]
[cheap dress up outfits|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre21]
[cheap dress clothes for men|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre22]
[cheap dress mannequins|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre23]
[cheap dress pants for women|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre24]
[cheap dress for a wedding|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre25]
[cheap dress gloves|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre26]
[cheap dress rentals|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre27]
[cheap dressing tables uk|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre28]
[cheap dressy boots|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre29]
[cheap dress shirts for women|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre30]
[cheap dress boots for women|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre31]
[cheap dressing screen|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre32]
[cheap dress up shoes|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre33]
[cheap dress flats|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre34]
[cheap dress watches|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre35]
[buy cheap dress pants|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre36]
[cheap dress boots for men|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre37]
[cheap dress up wigs|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre38]
[cheap dressing screen|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre39]
[barbie dress games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre40]
[barbie dress games up|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre41]
[play free bratz dress up games online|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre42]
[barbie dress games for girls|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre43]
[bratz dress up games games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre44]
[bratz dress up games free|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre45]
[bratz dress up games and makeover games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre46]
[bratz dress up games online|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre47]
[bratz dress up games games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre48]
[bratz dress up games play|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre49]
[buy dress uk|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre51]
[bratz dress up games free online|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre52]
[free bratz dress up games online|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre53]
[buy dress tape|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre54]
[where can i buy dress fabric|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre55]
[bratz dress up games cooking games|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre56]
[bratz dress up games for free|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre57]
[bratz dress up games for kids|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre58]
[bratz dress up games only|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre59]
[play bratz dress up games online|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre60]
[bratz dress up games and make up|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre61]
[bratz dress up games and makeover games|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre62]
[play free bratz dress up games online|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre63]
[buy dress pants online|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre64]
[bratz dress up games online for free|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre65]
[bratz dress up games and cooking games|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre66]
[free bratz dress up games cooking|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre67]
[bratz dress up games to play online|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre68]
[bratz dress up games to play for free|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre69]
[buy dress|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre70]
[buy dress wedding|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre71]
[army dress blue|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre72]
[army dress blue|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre73]
[buy dress london|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre74]
[buy dress shoes|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre75]
[buy dress uk|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre76]
[buy dress shirts|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre77]
[buy dress form|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre78]
[buy dress pants|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre79]
[buy dress clothes|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre81]
[buy dress fabric|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre82]
[bratz dress up games online|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre83]
[burda dressmaking patterns|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre84]
[buy dress blues|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre85]
[buy dress blues|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre86]
[buy dress canada|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre87]
[buy dress uniform|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre88]
[buy dress material|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre89]
[buy dress online uk|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre90]
[buy dress shoes online|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre91]
[buy dressmakers dummy|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre92]
[buy dress singapore|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre93]
[bratz dress up games cooking|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre94]
[buy dress shirts online|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre95]
[buy dress boots|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre96]
[best buy dress code|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre97]
[buy dress fabric online|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre98]
[where to buy dress pants|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre99]
[buy dress shields|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre100]
[buy dress up clothes|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre101]
[buy dress up costumes|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre102]
[buy dress up games|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre103]
[how to buy dress shirt|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre104]
[buy dress from china|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre105]
[buy dress socks|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre106]
[barbie dress games for girls|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre107]
[where can i buy dress patterns|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre108]
[where to buy dress online|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre109]
[buy dress suits|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre110]
[buy dress tops|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre111]
[buy dress blues army|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre112]
[where to buy dress forms|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre113]
[buy dress form mannequin|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre114]
[buy dress shirts online|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre115]
[where to buy dress shields|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre116]
[buy dress tape|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre117]
[where to buy dress clothes|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre118]
[bratz dress up games and more|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre119]
[buy dress patterns online|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre120]
[where to buy dress patterns|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota1]
[buy dress shirts|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota2]
[where to buy dress tape|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota3]
[buy dress gloves|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota4]
[where to buy dress blues|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota5]
[buy dress material online|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota6]
[buy dress blue uniform|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota7]
[where can i buy dress fabric|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota8]
[buy dress form mannequin|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota9]
[where to buy dress material|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota10]
[how to buy dress pants|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota11]
[bratz dress up games to play for free|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota12]
[buy dress pants online|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota13]
[buy dress pants|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota14]
[where to buy dress up clothes|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota15]
[where to buy dress up clothes|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota16]
)

> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Module - Xdoc, Module - Xhtml, Sink API
>    Affects Versions: 1.0-alpha-8
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>             Fix For: 1.1
>
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Jason van Zyl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jason van Zyl closed DOXIA-78.
------------------------------

    Resolution: Fixed

Patches applied.

> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: doxia
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: 1.0-alpha-8, 1.0
>            Reporter: Henning Schmiedehausen
>            Assignee: Jason van Zyl
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DOXIA-78) Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables

Posted by "Razan Abbass (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/DOXIA-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=217547#action_217547 ] 

Razan Abbass commented on DOXIA-78:
-----------------------------------

[cheap dress|http://www.facts11.com/download/attachments/1048855/hpd1.html]
[cheap dress pants|http://www.facts11.com/download/attachments/1048855/hpd2.html]
[cheap dress shops|http://www.facts11.com/download/attachments/1048855/hpd3.html]
[cheap dresses for juniors|http://www.facts11.com/download/attachments/1048855/hpd4.html]
[cheap dress shoes|http://www.facts11.com/download/attachments/1048855/hpd5.html]
[cheap dress for a wedding|http://www.facts11.com/download/attachments/1048855/hpd6.html]
[cheap dress rentals|http://www.facts11.com/download/attachments/1048855/hpd7.html]
[cheap dress for prom|http://www.facts11.com/download/attachments/1048855/hpd8.html]
[cheap dresses for prom|http://www.facts11.com/download/attachments/1048855/hpd9.html]
[cheap dress clothes|http://www.facts11.com/download/attachments/1048855/hpd10.html]
[cheap dresses for juniors|http://www.facts11.com/download/attachments/1048855/hpd11.html]
[cheap dress clothes|https://wiki.luc.edu/download/attachments/21266444/hpd12.html]
[cheap dresses for women|https://wiki.luc.edu/download/attachments/21266444/hpd13.html]
[cheap dress up|https://wiki.luc.edu/download/attachments/21266444/hpd14.html]
[cheap dress websites|https://wiki.luc.edu/download/attachments/21266444/hpd15.html]
[cheap dress online|https://wiki.luc.edu/download/attachments/21266444/hpd16.html]
[cheap dress shops|https://wiki.luc.edu/download/attachments/21266444/hpd17.html]
[cheap dresses for homecoming|https://wiki.luc.edu/download/attachments/21266444/hpd18.html]
[cheap dress shirts for men|https://wiki.luc.edu/download/attachments/21266444/hpd19.html]
[cheap dress for sale|https://wiki.luc.edu/download/attachments/21266444/hpd20.html]
[cheap dress stores|https://wiki.luc.edu/download/attachments/21266444/hpd21.html]
[cheap dress suits|https://wiki.luc.edu/download/attachments/21266444/hpd22.html]
[cheap dress forms|https://wiki.luc.edu/download/attachments/21266444/hpd23.html]
[cheap dress boots|http://www.inventiondb.com/view.php?id=545]
[cheap dress for prom|http://www.inventiondb.com/view.php?id=546]
[cheap dressing tables|http://www.inventiondb.com/view.php?id=547]
[cheap dress fabric|http://www.inventiondb.com/view.php?id=548]
[cheap dress for wedding|http://www.inventiondb.com/view.php?id=549]
[cheap dress for sale|http://www.inventiondb.com/view.php?id=550]
[cheap dressage saddles|http://www.inventiondb.com/view.php?id=551]
[cheap dress hire|http://www.inventiondb.com/view.php?id=552]
[cheap dressing mirror|http://www.inventiondb.com/view.php?id=553]
[cheap dressmakers|http://www.inventiondb.com/view.php?id=554]
[cheap dress shirts for men|http://www.inventiondb.com/view.php?id=555]
[cheap dress sandals|http://risd.openprojectdb.org/view.php?id=18]
[cheap dress patterns|http://risd.openprojectdb.org/view.php?id=19]
[cheap dress up clothes|http://risd.openprojectdb.org/view.php?id=20]
[cheap dress watches|http://risd.openprojectdb.org/view.php?id=21]
[cheap dress fabric|http://risd.openprojectdb.org/view.php?id=22]
[cheap dress shoes for men|http://risd.openprojectdb.org/view.php?id=23]
[cheap dressy dresses|http://risd.openprojectdb.org/view.php?id=24]
[cheap dressy shoes|http://risd.openprojectdb.org/view.php?id=25]
[cheap dressy tops|http://risd.openprojectdb.org/view.php?id=26]
[cheap dressing up costumes|http://risd.openprojectdb.org/view.php?id=27]
[cheap dresses for prom|http://opdb.risd.edu/view.php?id=28]
[cheap dress up costumes|http://opdb.risd.edu/view.php?id=29]
[cheap dress patterns|http://opdb.risd.edu/view.php?id=30]
[cheap dress socks|http://opdb.risd.edu/view.php?id=31]
[cheap dress tops|http://opdb.risd.edu/view.php?id=32]
[cheap dress up clothes for kids|http://opdb.risd.edu/view.php?id=33]
[cheap dress watch|http://opdb.risd.edu/view.php?id=34]
[cheap dress ties|http://opdb.risd.edu/view.php?id=35]
[cheap dress wear|http://opdb.risd.edu/view.php?id=36]
[cheap dressage saddles|http://opdb.risd.edu/view.php?id=37]
[cheap dress material|http://opdb.risd.edu/view.php?id=38]
[cheap dresses to wear to a wedding|http://opdb.risd.edu/view.php?id=39]
[cheap dressing tables with mirror|http://opdb.risd.edu/view.php?id=40]
[cheap dressmakers dummy|http://opdb.risd.edu/view.php?id=41]
[cheap dress pumps|http://opdb.risd.edu/view.php?id=42]
[cheap dress makers|http://opdb.risd.edu/view.php?id=43]
[cheap dress heels|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre1]
[cheap dress material|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre2]
[cheap dressmaking fabric|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre3]
[cheap dress makers|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre4]
[cheap dress online|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre5]
[cheap dressy clothes|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre6]
[cheap dress boutiques|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre7]
[cheap dressers for sale|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre8]
[cheap dress designers|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre9]
[cheap dress jewellery|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre10]
[cheap dressy clothing|https://gaia.lbl.gov/bcvtb/Abbass%20Razan?action=AttachFile&do=get&target=sdre11]
[cheap dress designers|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre12]
[cheap dress jackets|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre13]
[cheap dress blues|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre14]
[cheap dress forms for sale|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre15]
[cheap dressing table mirrors|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre16]
[cheap dress rings|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre17]
[cheap dresses for women|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre18]
[cheap dressy shirts|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre19]
[cheap dress slacks|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre20]
[cheap dress up outfits|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre21]
[cheap dress clothes for men|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre22]
[cheap dress mannequins|http://wiki.samat.org/Razan%20Abbass?action=AttachFile&do=get&target=sdre23]
[cheap dress pants for women|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre24]
[cheap dress for a wedding|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre25]
[cheap dress gloves|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre26]
[cheap dress rentals|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre27]
[cheap dressing tables uk|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre28]
[cheap dressy boots|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre29]
[cheap dress shirts for women|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre30]
[cheap dress boots for women|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre31]
[cheap dressing screen|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre32]
[cheap dress up shoes|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre33]
[cheap dress flats|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre34]
[cheap dress watches|https://wiki.ubuntu.com/dffd?action=AttachFile&do=get&target=sdre35]
[buy cheap dress pants|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre36]
[cheap dress boots for men|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre37]
[cheap dress up wigs|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre38]
[cheap dressing screen|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre39]
[barbie dress games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre40]
[barbie dress games up|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre41]
[play free bratz dress up games online|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre42]
[barbie dress games for girls|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre43]
[bratz dress up games games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre44]
[bratz dress up games free|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre45]
[bratz dress up games and makeover games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre46]
[bratz dress up games online|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre47]
[bratz dress up games games|https://wiki.edubuntu.org/fesaq?action=AttachFile&do=get&target=sdre48]
[bratz dress up games play|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre49]
[buy dress uk|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre51]
[bratz dress up games free online|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre52]
[free bratz dress up games online|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre53]
[buy dress tape|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre54]
[where can i buy dress fabric|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre55]
[bratz dress up games cooking games|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre56]
[bratz dress up games for free|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre57]
[bratz dress up games for kids|http://wiki.wireshark.org/Abbass%20Razan?action=AttachFile&do=get&target=sdre58]
[bratz dress up games only|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre59]
[play bratz dress up games online|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre60]
[bratz dress up games and make up|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre61]
[bratz dress up games and makeover games|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre62]
[play free bratz dress up games online|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre63]
[buy dress pants online|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre64]
[bratz dress up games online for free|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre65]
[bratz dress up games and cooking games|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre66]
[free bratz dress up games cooking|http://www.x.org/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre67]
[bratz dress up games to play online|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre68]
[bratz dress up games to play for free|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre69]
[buy dress|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre70]
[buy dress wedding|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre71]
[army dress blue|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre72]
[army dress blue|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre73]
[buy dress london|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre74]
[buy dress shoes|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre75]
[buy dress uk|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre76]
[buy dress shirts|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre77]
[buy dress form|http://wiki.dropbox.com/RazanAsdf?action=AttachFile&do=get&target=sdre78]
[buy dress pants|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre79]
[buy dress clothes|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre81]
[buy dress fabric|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre82]
[bratz dress up games online|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre83]
[burda dressmaking patterns|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre84]
[buy dress blues|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre85]
[buy dress blues|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre86]
[buy dress canada|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre87]
[buy dress uniform|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre88]
[buy dress material|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre89]
[buy dress online uk|http://sources.redhat.com/cluster/wiki/Abbass%20Razan?action=AttachFile&do=get&target=sdre90]
[buy dress shoes online|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre91]
[buy dressmakers dummy|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre92]
[buy dress singapore|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre93]
[bratz dress up games cooking|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre94]
[buy dress shirts online|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre95]
[buy dress boots|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre96]
[best buy dress code|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre97]
[buy dress fabric online|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre98]
[where to buy dress pants|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre99]
[buy dress shields|http://www.libsdl.org/cgi/docwiki.cgi/Abbass%20Razan?action=AttachFile&do=get&target=sdre100]
[buy dress up clothes|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre101]
[buy dress up costumes|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre102]
[buy dress up games|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre103]
[how to buy dress shirt|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre104]
[buy dress from china|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre105]
[buy dress socks|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre106]
[barbie dress games for girls|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre107]
[where can i buy dress patterns|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre108]
[where to buy dress online|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre109]
[buy dress suits|http://wiki.cofema.gov.ar/urerbbe?action=AttachFile&do=get&target=sdre110]
[buy dress tops|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre111]
[buy dress blues army|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre112]
[where to buy dress forms|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre113]
[buy dress form mannequin|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre114]
[buy dress shirts online|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre115]
[where to buy dress shields|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre116]
[buy dress tape|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre117]
[where to buy dress clothes|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre118]
[bratz dress up games and more|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre119]
[buy dress patterns online|http://medsquare.org/wiki/xwbas?action=AttachFile&do=get&target=sdre120]
[where to buy dress patterns|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota1]
[buy dress shirts|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota2]
[where to buy dress tape|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota3]
[buy dress gloves|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota4]
[where to buy dress blues|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota5]
[buy dress material online|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota6]
[buy dress blue uniform|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota7]
[where can i buy dress fabric|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota8]
[buy dress form mannequin|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota9]
[where to buy dress material|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota10]
[how to buy dress pants|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota11]
[bratz dress up games to play for free|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota12]
[buy dress pants online|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota13]
[buy dress pants|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota14]
[where to buy dress up clothes|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota15]
[where to buy dress up clothes|http://localhost.lu:8081/vedas?action=AttachFile&do=get&target=sota16]


> Doxia XDOC parser and XHTML renderer ignore "rowspan" and "colspan" attributes for tables
> -----------------------------------------------------------------------------------------
>
>                 Key: DOXIA-78
>                 URL: http://jira.codehaus.org/browse/DOXIA-78
>             Project: Maven Doxia
>          Issue Type: Improvement
>          Components: Module - Xdoc, Module - Xhtml, Sink API
>    Affects Versions: 1.0-alpha-8
>            Reporter: Henning Schmiedehausen
>            Assignee: Lukas Theussl
>             Fix For: 1.1
>
>         Attachments: doxia.patch
>
>
> The xdoc parser ignores rowspan and colspan attributes for <th> and <td> cells (even though the DTD says that these are legal) and the XHTML renderer subsequently does not render out these attributes.
> As the Sink-API offers methods for generating table-cells with a defined width, this is easy to implement (see attached patch), but the rowspan attribute would require new methods in the (very unflexible) API that take both height and width.
> The attached patch fixes the colspan problem for the xdoc parser and the xhtml renderer.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira