Skip to content

Commit 82f832a

Browse files
committed
Updated license and copyright.
Updated classes with bottom indexing notes related to copyright and license.
1 parent 19dbbf8 commit 82f832a

19 files changed

+65
-11
lines changed

License.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Copyright (c) 2010 Javier Velilla and others, http://ejson.origo.ethz.ch
1+
Copyright (c) 2010-2014 Javier Velilla and others,
2+
https://github.com/eiffelhub/json .
23

34

45
Permission is hereby granted, free of charge, to any person obtaining a copy

library/json-safe.ecf

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
<?xml version="1.0" encoding="ISO-8859-1"?>
2-
<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">
2+
<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">
3+
<description>JSON parser</description>
34
<target name="json">
45
<root all_classes="true"/>
56
<file_rule>
67
<exclude>/EIFGENs$</exclude>
78
<exclude>/CVS$</exclude>
89
<exclude>/.svn$</exclude>
910
</file_rule>
10-
<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">
11+
<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">
1112
<assertions/>
1213
</option>
1314
<library name="base" location="$ISE_LIBRARY\library\base\base-safe.ecf" readonly="true"/>
14-
<cluster name="json" location=".\" >
15-
<cluster name="json_kernel" location=".\kernel" recursive="true"/>
16-
<cluster name="json_parser" location=".\parser" recursive="true"/>
17-
<cluster name="json_utility" location=".\utility" recursive="true"/>
15+
<cluster name="json" location=".\">
16+
<cluster name="json_kernel" location=".\kernel\" recursive="true"/>
17+
<cluster name="json_parser" location=".\parser\" recursive="true"/>
18+
<cluster name="json_utility" location=".\utility\" recursive="true"/>
1819
</cluster>
19-
<cluster name="json_converter" location=".\converter" recursive="true"/>
20+
<cluster name="json_converter" location=".\converter\" recursive="true"/>
2021
</target>
2122
</system>

library/kernel/json_array.e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,4 +186,7 @@ feature {NONE} -- Implementation
186186
invariant
187187
items_not_void: items /= Void
188188

189+
note
190+
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
191+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
189192
end

library/kernel/json_boolean.e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,7 @@ feature -- Status report
8181
Result := item.out
8282
end
8383

84+
note
85+
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
86+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
8487
end

library/kernel/json_null.e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,7 @@ feature {NONE} -- Implementation
4545

4646
null_value: STRING = "null"
4747

48+
note
49+
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
50+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
4851
end

library/kernel/json_number.e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,7 @@ feature -- Implementation
143143
invariant
144144
item_not_void: item /= Void
145145

146+
note
147+
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
148+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
146149
end

library/kernel/json_object.e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,4 +325,7 @@ feature {NONE} -- Implementation
325325
invariant
326326
items_not_void: items /= Void
327327

328+
note
329+
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
330+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
328331
end

library/kernel/json_string.e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,4 +500,7 @@ feature {NONE} -- Implementation
500500
invariant
501501
item_not_void: item /= Void
502502

503+
note
504+
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
505+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
503506
end

library/kernel/json_value.e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,7 @@ feature -- Visitor pattern
4040
deferred
4141
end
4242

43+
note
44+
copyright: "2010-2014, Javier Velilla and others https://github.com/eiffelhub/json."
45+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
4346
end

library/license.lic

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
${NOTE_KEYWORD}
2+
copyright: "2010-${YEAR}, Javier Velilla and others https://github.com/eiffelhub/json."
3+
license: "https://github.com/eiffelhub/json/blob/master/License.txt"
4+

0 commit comments

Comments
 (0)