Skip to content

Commit

Permalink
CHANGE: using lowercase in codec names (it looks better)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Jun 9, 2020
1 parent db5b44a commit 3d1436a
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/mezz/codec-bbcode.r
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ bbcode: func [
]

register-codec [
name: 'BBCode
name: 'bbcode
title: "Bulletin Board Code"
suffixes: [%.bbcode]

Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-crt.r
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REBOL [
]

register-codec [
name: 'CRT
name: 'crt
title: "Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"
suffixes: [%.crt]
decode: wrap [
Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-der.r
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ REBOL [
]

register-codec [
name: 'DER
name: 'der
title: "Distinguished Encoding Rules"
suffixes: [%.p12 %.pfx %.cer %.der %.jks]
decode: function[data [binary!]][
Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-gzip.r
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ REBOL [
]

register-codec [
name: 'GZIP
name: 'gzip
title: "Lossless compressed data format compatible with GZIP utility."
suffixes: [%.gz]
decode: function[data [binary!]] [
Expand Down
18 changes: 9 additions & 9 deletions src/mezz/codec-image.r
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ REBOL [
]

register-codec [
name: 'ICO
name: 'ico
title: "Computer icons in MS Windows"
suffixes: [%.ico]

Expand All @@ -21,7 +21,7 @@ register-codec [
]

register-codec [
name: 'DNG
name: 'dng
title: "Digital Negative"
suffixes: [%.dng]
comment: {Decodes only thumbnail, not RAW data!}
Expand All @@ -32,7 +32,7 @@ register-codec [
]

register-codec [
name: 'DDS
name: 'dds
title: "DirectDraw Surface"
suffixes: [%.dds]

Expand All @@ -42,7 +42,7 @@ register-codec [
]

register-codec [
name: 'TIFF
name: 'tiff
title: "Tagged Image File Format"
suffixes: [%.tif %.tiff]

Expand All @@ -52,7 +52,7 @@ register-codec [
]

register-codec [
name: 'GIF
name: 'gif
title: "Graphics Interchange Format"
suffixes: [%.gif]

Expand All @@ -62,7 +62,7 @@ register-codec [
]

register-codec [
name: 'BMP
name: 'bmp
title: "Portable Bitmap"
suffixes: [%.bmp]

Expand All @@ -72,7 +72,7 @@ register-codec [
]

register-codec [
name: 'JPEGXR
name: 'jpegxr
title: "JPEG extended range"
suffixes: [%.jxr %.hdp %.wdp]

Expand All @@ -82,7 +82,7 @@ register-codec [
]

register-codec [
name: 'JPEG
name: 'jpeg
title: "Joint Photographic Experts Group"
suffixes: [%.jpg %.jpeg]

Expand All @@ -92,7 +92,7 @@ register-codec [
]

register-codec [
name: 'PNG
name: 'png
title: "Portable Network Graphics"
suffixes: [%.png]

Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-json.r
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ to-json: function [


register-codec [
name: 'JSON
name: 'json
title: "JavaScript Object Notation"
suffixes: [%.json]

Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-swf.r
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,7 @@ import module [
]

register-codec [
name: 'SWF
name: 'swf
title: "ShockWave Flash"
suffixes: [%.swf]

Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-tar.r
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ REBOL [
]

register-codec [
name: 'TAR
name: 'tar
title: "TAR File Format"
suffixes: [%.tar]

Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-wav.r
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ REBOL [
]

register-codec [
name: 'WAV
name: 'wav
title: "Waveform Audio File Format"
suffixes: [%.wav %.wave]

Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-xml.r
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ REBOL [
;------------------------

register-codec [
name: 'XML
name: 'xml
title: "Extensible Markup Language"
suffixes: [%.xml %.pom]

Expand Down
2 changes: 1 addition & 1 deletion src/mezz/codec-zip.r
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ REBOL [
]

register-codec [
name: 'ZIP
name: 'zip
title: "ZIP File Format"
suffixes: [%.zip %.aar %.jar %.apk %.zipx %.appx %.epub]

Expand Down

0 comments on commit 3d1436a

Please sign in to comment.