Revision: 20503
          http://sourceforge.net/p/jmol/code/20503
Author:   hansonr
Date:     2015-05-18 00:06:29 +0000 (Mon, 18 May 2015)
Log Message:
-----------
PROGRESS
========
5/17/2015

- adds SAX XML parsing (needed for VARNA) 
- uses sax2r3(final) from http://sourceforge.net/projects/sax/files/sax/        
- implements org.xml.sax and javax.xml.sax
- includes swingjs.JSSAXParser, swingjs.JSSAXContentHandler, 
swingjs.JSSAXAttributes
- see swingjs.test.TestXML.java
            String s = "<testing></testing>"
                InputSource is = new InputSource(Rdr.getBR(s));
            javax.xml.parsers.SAXParserFactory.newInstance().newSAXParser()
                                        .parse(is, new JSSAXContentHandler());
- to test, from a developer console, enter: 

  Clazz.loadClass("swingjs.test.TestXML", function() { new 
swingjs.test.TestXML([]) })
  

Modified Paths:
--------------
    trunk/Jmol/src/org/jmol/adapter/readers/xml/XmlReader.java

Modified: trunk/Jmol/src/org/jmol/adapter/readers/xml/XmlReader.java
===================================================================
--- trunk/Jmol/src/org/jmol/adapter/readers/xml/XmlReader.java  2015-05-14 
15:30:32 UTC (rev 20502)
+++ trunk/Jmol/src/org/jmol/adapter/readers/xml/XmlReader.java  2015-05-18 
00:06:29 UTC (rev 20503)
@@ -426,8 +426,6 @@
     return parent.vwr.apiPlatform.getJsObjectInfo(jsObject, method,
         args == null ? nullObj : args);
   }
-  
-  
 
   private Object jsObjectGetMember(Object[] jsObject, String name) {
     return parent.vwr.apiPlatform.getJsObjectInfo(jsObject, name, null);

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Jmol-commits mailing list
Jmol-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-commits

Reply via email to