Skip to content

Commit f9fe063

Browse files
committed
CHANGE: including some of modules as a delayed (required to import them before use)
1 parent 9458d4d commit f9fe063

11 files changed

+1284
-1274
lines changed

src/mezz/codec-bbcode.reb

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
REBOL [
2-
Title: "BBcode"
3-
Name: 'codec-bbcode
4-
Purpose: {Basic BBCode implementation. For more info about BBCode check http://en.wikipedia.org/wiki/BBCode}
5-
Date: 24-Apr-2020/17:07:36+2:00
2+
Name: bbcode
3+
Type: module
4+
Options: [delay]
65
Version: 0.3.0
6+
Title: "BBcode codec"
7+
Purpose: {Basic BBCode implementation. For more info about BBCode check http://en.wikipedia.org/wiki/BBCode}
8+
File: https://raw.githubusercontent.com/Oldes/Rebol3/master/src/mezz/codec-bbcode.reb
9+
Date: 24-Apr-2020
10+
Author: "Oldes"
711
History: [
812
0.1.0 5-Jan-2009 "initial version"
913
0.2.0 19-Feb-2012 "review"
1014
0.2.1 22-Aug-2012 "added [hr] and [anchor]"
1115
0.3.0 24-Apr-2020 "ported to Rebol3"
1216
]
13-
File: %codec-bbcode.r
14-
Author: "Oldes"
15-
Type: 'module
1617
]
1718

1819
opened-tags: copy []

src/mezz/codec-html-entities.reb

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
Rebol [
2-
Title: "HTML entities"
3-
Purpose: "To decode HTML entities in a text"
4-
Date: 12-May-2020
5-
Author: "Oldes"
6-
Name: 'html-entities
7-
Type: 'module
2+
Name: html-entities
3+
Type: module
4+
Options: [delay]
85
Version: 1.0.0
6+
Title: "HTML entities codec"
7+
Purpose: "To decode HTML entities in a text"
8+
File: https://raw.githubusercontent.com/Oldes/Rebol3/master/src/mezz/codec-html-entities.reb
9+
Date: 12-May-2020
10+
Author: "Oldes"
911
Rights: http://opensource.org/licenses/Apache-2.0
1012
Usage: [
1113
"Test: ♠ & ¢ <a> and Δδ ¾" =

src/mezz/codec-json.reb

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
Rebol [
2+
Name: json
3+
Type: module
4+
Options: [delay]
5+
Exports: [to-json load-json]
6+
Version: 0.1.0
27
Title: "JSON codec"
3-
Name: 'JSON
48
Purpose: "Convert Rebol value into JSON format and back."
5-
File: %codec-json.r
6-
Version: 0.1.0
9+
File: https://raw.githubusercontent.com/Oldes/Rebol3/master/src/mezz/codec-json.reb
710
Author: [
811
"Gregg Irwin" {
912
Ported from %json.r by Romano Paolo Tenca, Douglas Crockford,
@@ -44,9 +47,6 @@ Rebol [
4447
https://github.com/rebolek/red-tools/blob/master/json.red
4548
https://github.com/rgchris/Scripts/blob/master/red/altjson.red
4649
]
47-
48-
Type: 'module
49-
Exports: [to-json load-json]
5050
]
5151

5252
;----------------------------------------------------------------

src/mezz/codec-pdf.reb

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
REBOL [
2-
title: "REBOL 3 codec for PDF files"
3-
name: 'codec-pdf
4-
type: 'module
5-
author: rights: "Oldes"
2+
name: pdf
3+
type: module
4+
options: [delay]
65
version: 0.1.0
6+
title: "PDF file codec"
7+
file: https://raw.githubusercontent.com/Oldes/Rebol3/master/src/mezz/codec-pdf.reb
8+
author: "Oldes"
79
history: [16-Sep-2021 "Oldes" {Initial version - raw PDF data de/encode}]
810
notes: {
9-
The codecs is so far able to decode PDF's Carousel Object Structure into Rebol structure.
11+
The codec is so far able to decode PDF's Carousel Object Structure into Rebol structure.
1012
https://web.archive.org/web/20121205012515/http://jimpravetz.com/blog/2012/12/in-defense-of-cos/
1113
http://what-when-how.com/itext-5/understanding-the-carousel-object-system-itext-5/
1214

0 commit comments

Comments
 (0)