Skip to content

Commit

Permalink
Lisense update for MIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Righter authored and Robert Righter committed Jan 4, 2010
1 parent 7ca7ed8 commit 329d764
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 38 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
node-xml
===================

(C) Rob Righter (@robrighter) 2009 - 2010, Licensed under the GNU Lesser General Public License (http://www.gnu.org/copyleft/lesser.html)
(C) Rob Righter (@robrighter) 2009 - 2010, Licensed under the MIT-LICENSE
Contributions from David Joham

node-xml is an xml parser for node.js written in javascript.

This library repackages components from the "XML for Script" library released
under LGPL (http://xmljs.sourceforge.net). That library was written by
David Joham (djoham@yahoo.com) and Scott Severtson.
It has been modified into node-xml to:
(1) become asynchronous
(2) become interruptible
(3) utilize javascript closures


API
---

Expand Down
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var parser = new SAXDriver();

parser.setDocumentHandler({
startElement : function(name, atts) {
sys.puts("=> Started: " + name + " (" + atts.getLength() + " Attributes)");
sys.puts("=> Started: " + name + " (Attributes: " + JSON.stringify(atts) + " )");
},

endElement : function(name) {
Expand Down
33 changes: 5 additions & 28 deletions lib/node-xml.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,8 @@
// node-xml
//
// (C) Rob Righter (@robrighter) 2009 - 2010, Licensed under the GNU Lesser General Public License (http://www.gnu.org/copyleft/lesser.html)
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.

// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
//
// node-xml is an xml parser for node.js written in javascript.
//
// This library repackages components from the "XML for Script" library released
// under LGPL (http://xmljs.sourceforge.net). That library was written by
// David Joham (djoham@yahoo.com) and Scott Severtson.
// It has been modified into node-xml to:
// (1) become asynchronous
// (2) become interruptible
// (3) utilize javascript closures
// node-xml
// An xml parser for node.js
// (C) Rob Righter (@robrighter) 2009 - 2010, Licensed under the MIT-LICENSE
// Contributions from David Joham


(function () {

Expand Down

0 comments on commit 329d764

Please sign in to comment.