[Laszlo-checkins] r11326 - openlaszlo/trunk/WEB-INF/lps/lfc/services

dda@openlaszlo.org dda at openlaszlo.org
Thu Oct 2 17:43:29 PDT 2008


Author: dda
Date: 2008-10-02 17:43:28 -0700 (Thu, 02 Oct 2008)
New Revision: 11326

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/services/LzCSSStyle.lzs
Log:
Change 20081002-dda-n by dda at lester.local on 2008-10-02 10:00:56 EDT
    in /Users/dda/laszlo/src/svn/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Fix js2doc.schema build error due to bad html in javascript

New Features:

Bugs Fixed:

Technical Reviewer: ptw (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    Build was getting this error:

  js2doc.schema:
     [java] Oct 2, 2008 12:32:31 AM org.openlaszlo.js2doc.JS2Doc$Visitor visitDirectiveConditional
     [java] WARNING: Conditional: Unmatched '$' identifier $svg
     [java] Oct 2, 2008 12:32:31 AM org.openlaszlo.js2doc.JS2Doc$Visitor visitDirectiveConditional
     [java] WARNING: Conditional: Unmatched '$' identifier $swf7
     [java] [Fatal Error] :1:66: The element type "value" must be terminated by the matching end-tag "</value>".
     [java] Oct 2, 2008 12:32:35 AM org.openlaszlo.js2doc.JS2DocUtils setXMLContent
     [java] WARNING: Could not parse comment '<fragment>optimization for selectors which use [<attr>=<value>]</fragment>'
     [java] org.xml.sax.SAXParseException: The element type "value" must be terminated by the matching end-tag "</value>".
     [java] 	at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
     [java] 	at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
     [java] 	at org.openlaszlo.js2doc.JS2DocUtils.setXMLContent(JS2DocUtils.java:110)

  presumably a doc build would get a similar error.

  Due to a naked tag appearing in javadoc ('[<attr>=<value>]').

Tests:



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/services/LzCSSStyle.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/services/LzCSSStyle.lzs	2008-10-03 00:25:26 UTC (rev 11325)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/services/LzCSSStyle.lzs	2008-10-03 00:43:28 UTC (rev 11326)
@@ -487,7 +487,7 @@
   /** @access private */
   var _rules = new Array();
 
-  /** optimization for selectors which use [<attr>=<value>]
+  /** optimization for selectors which use [&lt;attr&gt;=&lt;value&gt;]
    * @access private */
   var _attrRules = {};
 



More information about the Laszlo-checkins mailing list