Skip to content

Commit

Permalink
Switch back to LGPL 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornharrtell committed Mar 14, 2011
1 parent 0e009e2 commit a7e4723
Show file tree
Hide file tree
Showing 27 changed files with 600 additions and 89 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -21,7 +21,7 @@ Currently the port implements APIs for the the core geom.* classes and the valid
suite is sort of half-way ported. The large work of porting the algorithms of
JTS Topology Suite has yet to be started.

The code is licensed using the MIT license to encourage use and easy contribution.
The code is licensed using the LGPL 2.1 license.

Development environment
-----------------------
Expand Down
19 changes: 19 additions & 0 deletions license-notice.txt
@@ -0,0 +1,19 @@
The JSTS Topology Suite is a collection of JavaScript classes that
implement the fundamental operations required to validate a given
geo-spatial data set to a known topological specification.

Copyright (C) 2011 Björn Harrtell

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
522 changes: 503 additions & 19 deletions license.txt

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/jsts.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/*jslint forin: true */
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/


Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/Coordinate.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/Envelope.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/Geometry.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
8 changes: 8 additions & 0 deletions src/jsts/geom/GeometryCollection.js
@@ -1,3 +1,11 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/



/**
* @constructor
* @extends {OpenLayers.Geometry.Collection}
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/GeometryFactory.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/LineString.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/


Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/LinearRing.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/Point.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/


Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/Polygon.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/geom/mixin.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/jsts/io.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/


Expand Down
6 changes: 3 additions & 3 deletions src/jsts/io/WKTReader.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/


Expand Down
6 changes: 3 additions & 3 deletions src/jsts/io/WKTWriter.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/Coordinate.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.geom.Coordinate', function() {
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/Envelope.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.geom.Envelope', function() {
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/Geometry.js
@@ -1,5 +1,5 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/GeometryFactory.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.geom.GeometryFactory', function() {
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/LineString.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.geom.LineString', function() {
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/LinearRing.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.geom.LinearRing', function() {
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/Point.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.geom.Point', function() {
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/geom/Polygon.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.geom.Polygon', function() {
Expand Down
6 changes: 3 additions & 3 deletions test/spec/jsts/io.js
@@ -1,7 +1,7 @@
/* Copyright (c) 2011 by Björn Harrtell.
* Published under the MIT license.
* See https://github.com/bjornharrtell/jsts/blob/master/license.txt for the
* full text of the license.
* Published under the LGPL 2.1 license.
* See /license-notice.txt for the full text of the license notice.
* See /license.txt for the full text of the license.
*/

describe('jsts.io.*', function() {
Expand Down

0 comments on commit a7e4723

Please sign in to comment.