Skip to content

Commit b2e59dd

Browse files
committed
FIX: JSON codec - license & rights updated
1 parent f45e86c commit b2e59dd

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

NOTICE

+3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ JPEG decoder:
5252
Copyright 1994-1996, Thomas G. Lane.
5353
This file is part of the Independent JPEG Group's software.
5454

55+
JSON codec:
56+
Copyright (C) 2019 Red Foundation. All rights reserved.
57+
5558
dtoa:
5659
The author of this software is David M. Gay.
5760
Copyright (c) 1991, 2000, 2001 by Lucent Technologies.

src/mezz/codec-json.r

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Red [
22
Title: "JSON codec"
3+
Purpose: "Convert Rebol value into JSON format and back."
34
File: %json.red
45
Version: 0.1.0
56
Author: [
@@ -23,14 +24,17 @@ Red [
2324
0.0.4 9-Oct-2018 "Gabriele" "Back to an easier to read recursive version"
2425
0.1.0 13-Feb-2020 "Oldes" "Ported Red's version back to Rebol"
2526
]
26-
27-
Purpose: "Convert Rebol value into JSON format and back."
28-
License: [
29-
http://www.apache.org/licenses/LICENSE-2.0
30-
and "The Software shall be used for Good, not Evil."
31-
]
3227

33-
Repository: https://github.com/giesse/red-json
28+
Rights: "Copyright (C) 2019 Red Foundation. All rights reserved."
29+
License: {
30+
Distributed under the Boost Software License, Version 1.0.
31+
See https://github.com/red/red/blob/master/BSL-License.txt
32+
}
33+
34+
Repository: [
35+
https://github.com/red/red/blob/master/environment/codecs/json.red
36+
https://github.com/giesse/red-json
37+
]
3438
References: [
3539
http://www.json.org/
3640
https://www.ietf.org/rfc/rfc4627.txt
@@ -92,6 +96,7 @@ translit: func [
9296
| skip
9397
]
9498
]
99+
string
95100
]
96101

97102
;-----------------------------------------------------------

0 commit comments

Comments
 (0)