summaryrefslogtreecommitdiff
path: root/www/wwwoffle/patches
diff options
context:
space:
mode:
authorfredb <fredb>2002-07-16 14:28:07 +0000
committerfredb <fredb>2002-07-16 14:28:07 +0000
commit7eede7fc5113853ad5e1a4fc9ae40056ed8f1eee (patch)
tree8f652db126eb835019d7f7feb926abbd24280d12 /www/wwwoffle/patches
parent9fec38c3e5bca1156012c27421fde82f27dffc9f (diff)
downloadpkgsrc-7eede7fc5113853ad5e1a4fc9ae40056ed8f1eee.tar.gz
Update to 2.7c. Straight from the NEWS file:
Bug Fixes: Install two DLLs for the Win32 version. Don't crash for HTTP servers that send headers prefixed with whitespace. Make the "edit selected entry" option work. Don't write uncompressed data to the cache with a header saying it is compressed. Be more lenient in detecting spiders that cannot make requests. The wwwoffle-tools programs now handle dir names as if they had http:// in front. Disallow wwwoffle requests for protocols that WWWOFFLE does not handle. Use the command line config filename in error messages. Fix to allow compilation on SGI IRIX. Handle XHTML style tags when modifying HTML. Updated setuid/setgid code. Some memory leaks removed and potential crashes removed due to using lint). New Features: Split up Set-Cookie headers since browsers can't handle them. Don't request deflated data since WWWOFFLE and servers don't agree on format. Added a form on the monitor options page to stop monitoring a URL. The confirm-requests option now asks for confirmation for page reloads. Documentation: Update FAQ to reference privoxy as well as JunkBuster. Describe how to modify htdig templates to work with WWWOFFLE.
Diffstat (limited to 'www/wwwoffle/patches')
-rw-r--r--www/wwwoffle/patches/patch-ab13
1 files changed, 0 insertions, 13 deletions
diff --git a/www/wwwoffle/patches/patch-ab b/www/wwwoffle/patches/patch-ab
deleted file mode 100644
index 60d5403af35..00000000000
--- a/www/wwwoffle/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.7 2002/05/14 15:37:20 fredb Exp $
-
---- src/headbody.c.orig Sat Apr 13 09:45:24 2002
-+++ src/headbody.c
-@@ -205,7 +205,7 @@
- {
- /* Append text to the last header line */
-
-- if(!head->key[head->n-1])
-+ if(head->n==0 || !head->key[head->n-1])
- return; /* weird: there must be a last header... */
-
- head->size+=strlen(val);