From 5ccba979c6955d6944b847d5735fa05b4f1a1711 Mon Sep 17 00:00:00 2001 From: Eric MacDonald Date: Wed, 8 Sep 2021 21:00:13 -0400 Subject: [PATCH] More neat URLs --- zefie_wtvp_minisrv/WTVLzpf.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/zefie_wtvp_minisrv/WTVLzpf.js b/zefie_wtvp_minisrv/WTVLzpf.js index 593d0330..c3c8c75e 100644 --- a/zefie_wtvp_minisrv/WTVLzpf.js +++ b/zefie_wtvp_minisrv/WTVLzpf.js @@ -4,8 +4,11 @@ * This compression algorithm is based on LZP by Charles Bloom and was originally written for server to client communication by Andy McFadden * This uses a (static) Huffman dictionary that was tuned for character occurances in a typical HTML page at the time (around 1996-1997). * - * Andy McFadden: https://fadden.com/ - * LZP: https://en.wikibooks.org/wiki/Data_Compression/Dictionary_compression#LZP + * Andy McFadden: + * https://fadden.com/ + * LZP: + * https://cbloom.com/src/index_lz.html + * https://en.wikibooks.org/wiki/Data_Compression/Dictionary_compression#LZP * * I wouldn't recommend using LZPF on anything but HTML and other text-based data (unless the data has many repeating bytes) * LZPF can be replaced with gzip for LC2 and newer boxes. Classic is stuck with LZPF.