Skip to content

Commit 6ff6d7d

Browse files
committed
FEAT: using Gavin F. MacKenzie's parse-xml+ script as a XML codec
It's based on script downloaded from http://www.rebol.org/view-script.r?script=xml-parse.r I was using this script for years in my Rebol2 environment, so I think I can include it in R3 too.. so far I never had time to review it, but I believe, it could be improved and also there are some TODO notes inside the original script.
1 parent b0e31e9 commit 6ff6d7d

File tree

3 files changed

+1177
-1
lines changed

3 files changed

+1177
-1
lines changed

src/mezz/base-defs.r

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ foreach [codec handler] system/codecs [
5656
type: 'image!
5757
suffixes: select [
5858
text [%.txt]
59-
markup [%.html %.htm %.xml %.xsl %.wml %.sgml %.asp %.php %.cgi]
59+
markup [%.html %.htm %.xsl %.wml %.sgml %.asp %.php %.cgi]
6060
] codec
6161
]
6262
; Media-types block format: [.abc .def type ...]

src/mezz/boot-files.r

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ REBOL [
5252
%codec-der.r
5353
%codec-crt.r
5454
%codec-gzip.r
55+
%codec-xml.r
5556
]
5657

5758
;-- protocols:

0 commit comments

Comments
 (0)