Skip to content

Commit

Permalink
Unify wording of "@license GPL-2.0+" lines
Browse files Browse the repository at this point in the history
  • Loading branch information
thiemowmde authored and adrianheine committed Apr 7, 2016
1 parent b711aab commit e87b9ae
Show file tree
Hide file tree
Showing 63 changed files with 63 additions and 63 deletions.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* RequireJS configuration
* Basic RequireJS configuration object expanded with the list of test modules.
*
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
this.config = ( function() {
Expand Down
2 changes: 1 addition & 1 deletion lib/TestRunner/TestRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* } );
* testRunner.start();
*
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/TestRunner/TestRunner.phantom.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* PhantomJS test runner module corresponding to the native test runner implementation.
*
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/TestRunner/runTests.phantom.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* PhantomJS test runner.
* PhantomJS will exit with an error code if one ore more tests fail.
*
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
/* global phantom, require, console */
Expand Down
2 changes: 1 addition & 1 deletion lib/globeCoordinate/globeCoordinate.Formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Globe coordinate formatter.
* @class globeCoordinate.Formatter
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion lib/globeCoordinate/globeCoordinate.GlobeCoordinate.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/**
* Globe coordinate object.
* @class globeCoordinate.GlobeCoordinate
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion lib/globeCoordinate/globeCoordinate.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* VERSION: 0.1
* @class globeCoordinate
* @singleton
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Denny Vrandečić
* @author H. Snater < [email protected] >
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/resources.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
* @author H. Snater < [email protected] >
*
Expand Down
2 changes: 1 addition & 1 deletion lib/util/util.inherit.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ this.util = this.util || {};

/**
* Helper for prototypical inheritance.
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
*
* @param {string|Function} [nameOrBase] The name of the new constructor (currently not used).
Expand Down
2 changes: 1 addition & 1 deletion src/DataValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @class dataValues.DataValue
* @abstract
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/dataValues.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @class dataValues
* @singleton
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*/
this.dataValues = new ( function Dv() {
Expand Down
2 changes: 1 addition & 1 deletion src/resources.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
* @author H. Snater < [email protected] >
*
Expand Down
2 changes: 1 addition & 1 deletion src/valueFormatters/ValueFormatterStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function assertIsValueFormatterConstructor( Formatter ) {
* Store managing ValueFormatter instances.
* @class valueFormatters.ValueFormatterStore
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueFormatters/formatters/NullFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var PARENT = vf.ValueFormatter;
* @class valueFormatters.NullFormatter
* @extends valueFormatters.ValueFormatter
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueFormatters/formatters/StringFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = vf.ValueFormatter;
* @class valueFormatters.StringFormatter
* @extends valueFormatters.ValueFormatter
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueFormatters/formatters/ValueFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @class valueFormatters.ValueFormatter
* @abstract
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueFormatters/resources.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @codeCoverageIgnoreStart
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/ValueParserStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function assertIsValueParserConstructor( Parser ) {
* Store managing ValueParser instances.
* @class valueParsers.ValueParserStore
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/parsers/BoolParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = vp.ValueParser;
* @class valueParsers.BoolParser
* @extends valueParsers.ValueParser
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/parsers/FloatParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = vp.ValueParser;
* @class valueParsers.FloatParser
* @extends valueParsers.ValueParser
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/parsers/IntParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = vp.ValueParser;
* @class valueParsers.IntParser
* @extends valueParsers.ValueParser
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/parsers/NullParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var PARENT = vp.ValueParser,
* @class valueParsers.NullParser
* @extends valueParsers.ValueParser
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/parsers/StringParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = vp.ValueParser;
* @class valueParsers.StringParser
* @extends valueParsers.ValueParser
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/parsers/ValueParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @class valueParsers.ValueParser
* @abstract
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/valueParsers/resources.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
* @author Daniel Werner < [email protected] >
*
Expand Down
2 changes: 1 addition & 1 deletion src/values/BoolValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = dv.DataValue;
* @class dataValues.BoolValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/values/DecimalValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ var PARENT = dv.DataValue;
* @class dataValues.DecimalValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @param {string|number} value
Expand Down
2 changes: 1 addition & 1 deletion src/values/GlobeCoordinateValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = dv.DataValue;
* @class dataValues.GlobeCoordinateValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/values/MonolingualTextValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var PARENT = dv.DataValue;
* @class dataValues.MonolingualTextValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
* @author Jeroen De Dauw < [email protected] >
*
Expand Down
2 changes: 1 addition & 1 deletion src/values/MultilingualTextValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var PARENT = dv.DataValue;
* @class dataValues.MultilingualTextValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
* @author Daniel Werner < [email protected] >
*
Expand Down
2 changes: 1 addition & 1 deletion src/values/NumberValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = dv.DataValue;
* @class dataValues.NumberValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/values/QuantityValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @class dataValues.QuantityValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
* @author H. Snater < [email protected] >
*
Expand Down
2 changes: 1 addition & 1 deletion src/values/StringValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = dv.DataValue;
* @class dataValues.StringValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner
* @author Jeroen De Dauw < [email protected] >
*
Expand Down
2 changes: 1 addition & 1 deletion src/values/TimeValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var PARENT = dv.DataValue;
* @class dataValues.TimeValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
* @author Thiemo Mättig
*
Expand Down
2 changes: 1 addition & 1 deletion src/values/UnDeserializableValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var PARENT = dv.DataValue;
* @class dataValues.UnDeserializableValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Daniel Werner < [email protected] >
*
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion src/values/UnknownValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var PARENT = dv.DataValue;
* @class dataValues.UnknownValue
* @extends dataValues.DataValue
* @since 0.1
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*
* @constructor
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
define( [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
* @author Thiemo Mättig
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/globeCoordinate/globeCoordinate.tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
define( [
Expand Down
2 changes: 1 addition & 1 deletion tests/src/dataValues.DataValue.tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*/
define( [
Expand Down
2 changes: 1 addition & 1 deletion tests/src/dataValues.tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*/
define( [
Expand Down
2 changes: 1 addition & 1 deletion tests/src/valueFormatters/ValueFormatterStore.tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
define( [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
define( [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
define( [
Expand Down
2 changes: 1 addition & 1 deletion tests/src/valueFormatters/valueFormatters.tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
( function( vf, util, $, QUnit ) {
Expand Down
2 changes: 1 addition & 1 deletion tests/src/valueParsers/ValueParserStore.tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author H. Snater < [email protected] >
*/
define( [
Expand Down
2 changes: 1 addition & 1 deletion tests/src/valueParsers/parsers/BoolParser.tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*/
define( [
Expand Down
Loading

0 comments on commit e87b9ae

Please sign in to comment.