Updated license and copyright.

Updated classes with bottom indexing notes related to copyright and license.
This commit is contained in:
2014-09-30 10:46:12 +02:00
parent 19dbbf89e7
commit 82f832a556
19 changed files with 65 additions and 11 deletions

View File

@@ -1,4 +1,5 @@
Copyright (c) 2010 Javier Velilla and others, http://ejson.origo.ethz.ch Copyright (c) 2010-2014 Javier Velilla and others,
https://github.com/eiffelhub/json .
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="json" uuid="4E21C3BD-7951-4C6E-A673-431E762D7414" library_target="json"> <system xmlns="http://www.eiffel.com/developers/xml/configuration-1-13-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-13-0 http://www.eiffel.com/developers/xml/configuration-1-13-0.xsd" name="json" uuid="4E21C3BD-7951-4C6E-A673-431E762D7414" library_target="json">
<description>JSON parser</description>
<target name="json"> <target name="json">
<root all_classes="true"/> <root all_classes="true"/>
<file_rule> <file_rule>
@@ -7,15 +8,15 @@
<exclude>/CVS$</exclude> <exclude>/CVS$</exclude>
<exclude>/.svn$</exclude> <exclude>/.svn$</exclude>
</file_rule> </file_rule>
<option trace="false" profile="false" debug="false" warning="true" full_class_checking="true" is_attached_by_default="true" void_safety="all" syntax="standard" namespace="EJSON.Library"> <option trace="false" profile="false" debug="false" warning="true" full_class_checking="true" is_attached_by_default="true" void_safety="transitional" syntax="standard" namespace="EJSON.Library">
<assertions/> <assertions/>
</option> </option>
<library name="base" location="$ISE_LIBRARY\library\base\base-safe.ecf" readonly="true"/> <library name="base" location="$ISE_LIBRARY\library\base\base-safe.ecf" readonly="true"/>
<cluster name="json" location=".\" > <cluster name="json" location=".\">
<cluster name="json_kernel" location=".\kernel" recursive="true"/> <cluster name="json_kernel" location=".\kernel\" recursive="true"/>
<cluster name="json_parser" location=".\parser" recursive="true"/> <cluster name="json_parser" location=".\parser\" recursive="true"/>
<cluster name="json_utility" location=".\utility" recursive="true"/> <cluster name="json_utility" location=".\utility\" recursive="true"/>
</cluster> </cluster>
<cluster name="json_converter" location=".\converter" recursive="true"/> <cluster name="json_converter" location=".\converter\" recursive="true"/>
</target> </target>
</system> </system>

View File

@@ -186,4 +186,7 @@ feature {NONE} -- Implementation
invariant invariant
items_not_void: items /= Void items_not_void: items /= Void
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -81,4 +81,7 @@ feature -- Status report
Result := item.out Result := item.out
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -45,4 +45,7 @@ feature {NONE} -- Implementation
null_value: STRING = "null" null_value: STRING = "null"
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -143,4 +143,7 @@ feature -- Implementation
invariant invariant
item_not_void: item /= Void item_not_void: item /= Void
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -325,4 +325,7 @@ feature {NONE} -- Implementation
invariant invariant
items_not_void: items /= Void items_not_void: items /= Void
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -500,4 +500,7 @@ feature {NONE} -- Implementation
invariant invariant
item_not_void: item /= Void item_not_void: item /= Void
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -40,4 +40,7 @@ feature -- Visitor pattern
deferred deferred
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

4
library/license.lic Normal file
View File

@@ -0,0 +1,4 @@
${NOTE_KEYWORD}
copyright: "2010-${YEAR}, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"

View File

@@ -1,8 +1,8 @@
note note
description: "Parse serialized JSON data" description: "Parse serialized JSON data"
author: "jvelilla" author: "$Author$"
date: "2008/08/24" date: "$Date$"
revision: "Revision 0.1" revision: "$Revision$"
class class
JSON_PARSER JSON_PARSER
@@ -637,4 +637,7 @@ feature {NONE} -- Constants
null_id: STRING = "null" null_id: STRING = "null"
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -6,4 +6,7 @@ note
deferred class deferred class
JSON_PARSER_ACCESS JSON_PARSER_ACCESS
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -121,4 +121,7 @@ feature {NONE} -- Implementation
invariant invariant
representation_not_void: representation /= Void representation_not_void: representation /= Void
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -84,4 +84,7 @@ feature -- Status report
Result := c = token_exp or else c.as_lower = token_exp Result := c = token_exp or else c.as_lower = token_exp
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -43,4 +43,7 @@ feature -- Access
end end
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -55,4 +55,7 @@ feature -- Visitor Pattern
do do
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -160,4 +160,7 @@ feature -- Visitor Pattern
output.append ("%"") output.append ("%"")
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -53,4 +53,7 @@ feature -- Visitor Pattern
deferred deferred
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end

View File

@@ -101,4 +101,7 @@ feature -- Visitor Pattern
to_json.append ("%"") to_json.append ("%"")
end end
note
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
end end