You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by "Joachim Wackerow (JIRA)" <ji...@apache.org> on 2006/03/15 11:41:58 UTC

[jira] Created: (ADDR-16) Comments in DTD at wrong place

Comments in DTD at wrong place
------------------------------

         Key: ADDR-16
         URL: http://issues.apache.org/jira/browse/ADDR-16
     Project: Addressing
        Type: Bug
 Environment: all
    Reporter: Joachim Wackerow
    Priority: Minor


Comments are written to the DTD file inside the attribute declaration.
This seems not to be the right place. The XML editor XML Spy reports an error.
The comments should stay before the attribute declaration.

Example

not valid:
<!ELEMENT author EMPTY>
<!ATTLIST author
<!-- organisation: JDBC type: VARCHAR(50) -->
    author_id CDATA #REQUIRED
>

valid:
<!ELEMENT author EMPTY>
<!-- organisation: JDBC type: VARCHAR(50) -->
<!ATTLIST author
    author_id CDATA #REQUIRED
>

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


---------------------------------------------------------------------
To unsubscribe, e-mail: addressing-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: addressing-dev-help@ws.apache.org