sboag       99/12/14 07:11:47

  Modified:    src/org/apache/xalan/xpath/xml FormatterToHTML.java
  Log:
  Backed out of not-escaping '<' for now.
  
  Revision  Changes    Path
  1.13      +4 -1      
xml-xalan/src/org/apache/xalan/xpath/xml/FormatterToHTML.java
  
  Index: FormatterToHTML.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/src/org/apache/xalan/xpath/xml/FormatterToHTML.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- FormatterToHTML.java      1999/12/14 02:11:03     1.12
  +++ FormatterToHTML.java      1999/12/14 15:11:47     1.13
  @@ -367,7 +367,10 @@
     {
       super.initAttrCharsMap();
       m_attrCharsMap[(int)'\n'] = 'S';
  -    m_attrCharsMap[(int)'<'] = '\0';
  +    // XSLT Spec: The html output method should not 
  +    // escape < characters occurring in attribute values.
  +    // (But I'll comment this out for Stefano for the moment.)
  +    // m_attrCharsMap[(int)'<'] = '\0';
       m_attrCharsMap[(int)'>'] = '\0';
       m_charsMap[0x0A] = 'S';
       m_charsMap[0x0D] = 'S';
  
  
  

Reply via email to