File tree 2 files changed +15
-7
lines changed
2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,9 @@ JPEG decoder:
52
52
Copyright 1994-1996, Thomas G. Lane.
53
53
This file is part of the Independent JPEG Group's software.
54
54
55
+ JSON codec:
56
+ Copyright (C) 2019 Red Foundation. All rights reserved.
57
+
55
58
dtoa:
56
59
The author of this software is David M. Gay.
57
60
Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
Original file line number Diff line number Diff line change 1
1
Red [
2
2
Title: "JSON codec"
3
+ Purpose: "Convert Rebol value into JSON format and back."
3
4
File: %json.red
4
5
Version: 0.1.0
5
6
Author: [
@@ -23,14 +24,17 @@ Red [
23
24
0.0.4 9-Oct-2018 "Gabriele" "Back to an easier to read recursive version"
24
25
0.1.0 13-Feb-2020 "Oldes" "Ported Red's version back to Rebol"
25
26
]
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
- ]
32
27
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
+ ]
34
38
References: [
35
39
http://www.json.org/
36
40
https://www.ietf.org/rfc/rfc4627.txt
@@ -92,6 +96,7 @@ translit: func [
92
96
| skip
93
97
]
94
98
]
99
+ string
95
100
]
96
101
97
102
;-----------------------------------------------------------
You can’t perform that action at this time.
0 commit comments