Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4625400

stddoclet: Missing whitespace in DOCTYPE declaration

XMLWordPrintable

    • mantis
    • sparc
    • solaris_8



      Name: jl125535 Date: 01/17/2002


      FULL PRODUCT VERSION :
      java version "1.3.1"
      Jav(TM) 2 Runtime Environment, Standard Edition (build Blackdown-1.3.1-FCS)
      Java HotSpot(TM) Client VM (build Blackdown-1.3.1-FCS, mixed mode)

      FULL OPERATING SYSTEM VERSION :
      linux-2.4.17
      libc6-2.2.4
      Debian GNU 3.0

      This behavior also appears on Solaris 8 with JDK 1.4 beta 3.


      A DESCRIPTION OF THE PROBLEM :
      This bug is very similar to 4418115.

      The generated JavaDoc documentation has a wrong DOCTYPE
      definition:
      <!DOCTYPE HTML PUBLIC "-//W3C/DTD HTML 4.0
      Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">

      There is no blank between the public identifier
      "-//W3C/DTD HTML 4.0 Transitional//EN"
      and its URI
      "http://www.w3.org/TR/REC-html40/loose.dtd"

      Every old generated JavaDoc is wrong. The bug was found when
      trying to parse generated JavaDoc for automated index
      generation of installed package documentation.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1. echo "public class x { }" > x.java
      2. javadoc x.java
      3. head -1 *.html

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      Actual Result:
      <!DOCTYPE HTML PUBLIC "-//W3C/DTD HTML 4.0
      Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">

      Expected Result:
      <!DOCTYPE HTML PUBLIC "-//W3C/DTD HTML 4.0 Transitional//EN"
      "http://www.w3.org/TR/REC-html40/loose.dtd">

      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      class x { }
      ---------- END SOURCE ----------

      CUSTOMER WORKAROUND :
      Postprecess every generated JavaDoc and add a blank:
      find . -name \*.html -exec perl -i -p -e 's,<!DOCTYPE HTML
      PUBLIC "-//W3C/DTD HTML 4.0
      Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">,<!DOCTYPE
      HTML PUBLIC "-//W3C/DTD HTML 4.0 Transitional//EN"
      "http://www.w3.org/TR/REC-html40/loose.dtd">,' {} \;
      (Review ID: 138175)
      ======================================================================

            dkramersunw Douglas Kramer (Inactive)
            jleesunw Jon Lee (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: