You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Malachi de AElfweald (JIRA)" <ji...@codehaus.org> on 2009/05/01 04:01:45 UTC

[jira] Created: (DOXIA-310) Unable to get custom entity references to work

Unable to get custom entity references to work
----------------------------------------------

                 Key: DOXIA-310
                 URL: http://jira.codehaus.org/browse/DOXIA-310
             Project: Maven Doxia
          Issue Type: Bug
          Components: Core
    Affects Versions: 1.1.1
         Environment: maven-site-plugin 2.1-SNAPSHOT w/ XDOC
            Reporter: Malachi de AElfweald
         Attachments: testcase.tgz

followed these instructions:
http://svn.apache.org/viewvc/maven/doxia/site/src/site/fml/faq.fml?annotate=739143&pathrev=739143

to include these entity references:
http://kallisti.eoti.org/ambrosia/kallisti/trit.ent

included test case has 3 different examples:
1. using the character references defined in the trit.ent. Character references were removed from the table during site:site
2. using the character references by number. Character references were replaced with '?' during site:site
3. copied site generated test2 and added the character references in by hand. That is the only one that works.



-- 
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-310) Unable to get custom entity references to work

Posted by "Malachi de AElfweald (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/DOXIA-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=175042#action_175042 ] 

Malachi de AElfweald commented on DOXIA-310:
--------------------------------------------

verified that customized entity names work now

> Unable to get custom entity references to work
> ----------------------------------------------
>
>                 Key: DOXIA-310
>                 URL: http://jira.codehaus.org/browse/DOXIA-310
>             Project: Maven Doxia
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: maven-site-plugin 2.1-SNAPSHOT w/ XDOC
>            Reporter: Malachi de AElfweald
>            Assignee: Vincent Siveton
>             Fix For: 1.1.1
>
>         Attachments: testcase.tgz
>
>
> followed these instructions:
> http://svn.apache.org/viewvc/maven/doxia/site/src/site/fml/faq.fml?annotate=739143&pathrev=739143
> to include these entity references:
> http://kallisti.eoti.org/ambrosia/kallisti/trit.ent
> included test case has 3 different examples:
> 1. using the character references defined in the trit.ent. Character references were removed from the table during site:site
> 2. using the character references by number. Character references were replaced with '?' during site:site
> 3. copied site generated test2 and added the character references in by hand. That is the only one that works.

-- 
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-310) Unable to get custom entity references to work

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

Vincent Siveton closed DOXIA-310.
---------------------------------

         Assignee: Vincent Siveton
       Resolution: Fixed
    Fix Version/s: 1.1.1

allow pattern to accept 5 chars, snapshot redeployed.

> Unable to get custom entity references to work
> ----------------------------------------------
>
>                 Key: DOXIA-310
>                 URL: http://jira.codehaus.org/browse/DOXIA-310
>             Project: Maven Doxia
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: maven-site-plugin 2.1-SNAPSHOT w/ XDOC
>            Reporter: Malachi de AElfweald
>            Assignee: Vincent Siveton
>             Fix For: 1.1.1
>
>         Attachments: testcase.tgz
>
>
> followed these instructions:
> http://svn.apache.org/viewvc/maven/doxia/site/src/site/fml/faq.fml?annotate=739143&pathrev=739143
> to include these entity references:
> http://kallisti.eoti.org/ambrosia/kallisti/trit.ent
> included test case has 3 different examples:
> 1. using the character references defined in the trit.ent. Character references were removed from the table during site:site
> 2. using the character references by number. Character references were replaced with '?' during site:site
> 3. copied site generated test2 and added the character references in by hand. That is the only one that works.

-- 
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-310) Unable to get custom entity references to work

Posted by "Lukas Theussl (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/DOXIA-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=174876#action_174876 ] 

Lukas Theussl commented on DOXIA-310:
-------------------------------------

There must be something wrong with the regex pattern used to parse the entities. I checked that with the following local declarations

{code:xml}
<!ENTITY tritPos     "&#x1d7ed;"> <!-- MATHEMATICAL SANS-SERIF BOLD DIGIT ONE -->
<!ENTITY tritNeg     "&#x1d7d9;"> <!-- MATHEMATICAL DOUBLE-STRUCK DIGIT ONE -->
<!ENTITY tritNeu     "&#x1d7f6;"> <!-- MATHEMATICAL MONOSPACE DIGIT ZERO -->
<!ENTITY MyAlpha     "&#913;"> <!-- greek capital letter alpha, U+0391 -->
{code}

only MyAlpha gets added to the list of entities in addDTDEntities of AbstractXmlParser.

> Unable to get custom entity references to work
> ----------------------------------------------
>
>                 Key: DOXIA-310
>                 URL: http://jira.codehaus.org/browse/DOXIA-310
>             Project: Maven Doxia
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: maven-site-plugin 2.1-SNAPSHOT w/ XDOC
>            Reporter: Malachi de AElfweald
>         Attachments: testcase.tgz
>
>
> followed these instructions:
> http://svn.apache.org/viewvc/maven/doxia/site/src/site/fml/faq.fml?annotate=739143&pathrev=739143
> to include these entity references:
> http://kallisti.eoti.org/ambrosia/kallisti/trit.ent
> included test case has 3 different examples:
> 1. using the character references defined in the trit.ent. Character references were removed from the table during site:site
> 2. using the character references by number. Character references were replaced with '?' during site:site
> 3. copied site generated test2 and added the character references in by hand. That is the only one that works.

-- 
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-310) Unable to get custom entity references to work

Posted by "Malachi de AElfweald (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/DOXIA-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=174836#action_174836 ] 

Malachi de AElfweald commented on DOXIA-310:
--------------------------------------------

This should not be 'major' priority. Sorry, forgot to set that.

> Unable to get custom entity references to work
> ----------------------------------------------
>
>                 Key: DOXIA-310
>                 URL: http://jira.codehaus.org/browse/DOXIA-310
>             Project: Maven Doxia
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: maven-site-plugin 2.1-SNAPSHOT w/ XDOC
>            Reporter: Malachi de AElfweald
>         Attachments: testcase.tgz
>
>
> followed these instructions:
> http://svn.apache.org/viewvc/maven/doxia/site/src/site/fml/faq.fml?annotate=739143&pathrev=739143
> to include these entity references:
> http://kallisti.eoti.org/ambrosia/kallisti/trit.ent
> included test case has 3 different examples:
> 1. using the character references defined in the trit.ent. Character references were removed from the table during site:site
> 2. using the character references by number. Character references were replaced with '?' during site:site
> 3. copied site generated test2 and added the character references in by hand. That is the only one that works.

-- 
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