summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2001-04-20Move to sha1 digests, and add distfile sizes.skrll86-197/+290
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc225-497/+474
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-16The module Apache::Resource depends on BSD::Resource so add a dependencejtb1-1/+2
on p5-BSD-Resource. Addresses PR #12633 by Nathan Ahlstrom <nrahlstr@winternet.com>.
2001-04-15Initial import of hiawatha-0.1, a barebones HTTP server with XML/XSLTjwise9-0/+343
support. From pkg/DESCR: Hiawatha is a standalone webserver with build-in support for XML, XSL, XSLScript, HTTP, and CGI (GET and POST). Hiawatha is written in Java and it is Open Source ( and 100% free ).
2001-04-15Add and enable hiawatha.jwise1-1/+2
2001-04-14Change MAINTAINER section to packages@netbsd.orgjtb1-2/+2
2001-04-14Fix MASTER_SITESkim2-5/+5
2001-04-14Use APACHE_SYSCONFDIR to set sysconfdir (the location of config files).kim9-25/+50
2001-04-14Update "squid" package to version 2.4STABLE1. Changes since 2.3STABLE4:tron10-131/+92
- Fixed a bug in and cleaned up class 2/3 delay pools incrementing. - Fixed a coredump bug when using external dnsservers that become overloaded. - Fixed some NULL pointer bugs for NULL storage system when reconfiguring. - Fixed a bug with useragent logging that caused Squid to think the logfile never got opened. - Fixed a compiling bug with --disable-unlinkd. - Changed src/squid.h to always use O_NONBLOCK on Solaris if it is defined. - Fixed a bug with signed/unsigned bitfield flag variables that caused problems on Solaris. - Fixed a bug in clientBuildReplyHeader() that could add an Age: header with a negative value, causing an assertion later. - Fixed an SNMP reporting bug. cacheCurrentResFileDescrCnt was returning the number of FDs in use, rather than the number of reserved FDs. - Added the 'pipeline_prefetch' configuration option. - cache_dir syntax changed to use options instead of many arguments. This means that the max_objsize argument now is an optional option, and that the syntax for how to specify the diskd magics is slightly different. - Various fixes for CYGWIN - Upgraded MSNT auth module to version 2.0. - Fixed potential problems with HTML by making sure all HTML output is properly encoded. - Fixed a memory initialization problem with resource records in lib/rfc1035.c. - Rewrote date parsing in lib/rfc1123.c and made it a little more lenient. - Added Cache-control: max-stale support. - Fixed 'range_offset_limit' again. The problem this time is that client_side.c wouldn't set the we_dont_do_ranges flag for normal cache misses. It was only being set for requests that might have been hits, but we decided to change to a miss. - Added the Authenticate-Info and Proxy-Authenticate-Info headers from RFC 2617. - HTTP header lines longer than 64K could cause an assertion. Now they get ignored. - Fixed an IP address scanning bug that caused "123.foo.com" to be interpreted as an IP address. - Converted many structure allocations to use mem pools. - Changed proxy authentication to strip leading whitespace from usernames after decoding. - Prevented NULL pointer access in aclMatchAcl(). Some ACL types require checklist->request_t, but it won't be available in some cases (like snmp_access). Warn the admin that the ACL can't be checked and that we're denying it. - Allow zero-size disk caches. - The actual filesystem blocksize is now used to account for space overheads when calculating on-disk cache size. - Made the maximum memory cache object size configurable. - Added 'minimum_direct_rtt' configuration option. - Added 'ie_refresh' configuration option, which is a hack to turn IMS requests into no-cache requests. - Added Linux netfilter support for intercepted connections. - Fixed a bug with clientAccessCheck() that allowed proxy requests in accel mode. - Fixed a bug with 301/302 replies from redirectors. Now we force them to be cache misses. - Accommodated changes to the IP-Filter ioctl() interface for intercepted connections. - Fixed handling of client lifetime timeouts. - Fixed a buffer overflow bug with internal DNS replies by truncating received packets to 512 bytes, as per RFC 1035. - Added "forward.log" support, but its work in progress. - Rewrote much of the IP and FQDN cache implementation. This change gets rid of pending hits. - Changed peerWouldBePinged() to return false if our ICP/HTCP port is zero (i.e. disabled). - Changed src/net_db.c to use src/logfile.c routines, rather than stdio, because of solaris stdio filedescriptor limits. - Made netdbReloadState() more robust in case of corrupted data. - Rewrote some freshness/staleness functions in src/refresh.c, partially inspired to support cache-control max-stale. - Fixed status code logging for SSL/CONNECT requests. - Added a hack to subtract cache digest network traffic from statistics so that byte hit ratio stays positive and more closely reflects what people expect it to be. - Fixed a bug with storeCheckTooSmall() that caused internal icons and cache digests to always be released. - Added statfs(2) support for displaying actual filesystem usage in the cache manager 'storedir' output. - Changed status reporting for storage rebuilding. Now it prints percentage complete instead of number of entries parsed. - Use mkstemp() rather than problem-prone tempnam(). - Changed urlParse() to condense multiple dots in hostnames. - Major rewrite of async-io (src/fs/aufs) to make it behave a bit more sane with substantially less overhead. Some tuning work still remains to make it perform optimal. See the start of store_asyncufs.h for all the knobs. - Fixed storage FS modules to use individual swap space high/low values rather than the global ones. - Fixed storage FS bugs with calling file_map_bit_reset() before checking the bit value. Calling with an invalid value caused memory corruption in random places. - Prevent NULL pointer access in store_repl_lru.c for entries that exist in the hash but not the LRU list. - Added --enable-auth-modules=... configure option - Improved ICP dead peer detection to also work when the workload is low - Improved TCP dead peer detection and recovery - Squid is now a bit more persistent in trying to find a alive parent when never_direct is used. - nonhierarchical_direct squid.conf directive to make non-ICP peer selection behave a bit more like ICP selection with respect to hierarchy. - Bugfix where netdb selection could override never_direct - ICP timeout selection now prefers to use parents only when calculating the dynamic timeout to compensate for common RTT differences between parents and siblings. - No longer starts to swap out objects which are known to be above the maximum allowed size. - allow-miss cache_peer option disabling the use of "only-if-cached". Meant to be used in conjunction with icp_hit_stale. - Delay pools tuned to allow large initial pool values - cachemgr filesystem space information changed to show useable space rather than raw space, and platform support somewhat extended. - Logs destination IP in the hierarchy log tag when going direct. (can be disabled by turning log_ip_on_direct off) - Async-IO on linux now makes proper use of mutexes. This fixes some odd pthread segfaults on SMP Linux machines, at a slight performance penalty. - %s can now be used in cache_swap_log and will be substituded with the last path component of cache_dir. - no_cache is now a full ACL check without, allowing most ACL types to be used. - The CONNECT method now obeys miss_access requirements - proxy_auth_regex and ident_regex ACL types - Fixed a StoreEntry memory leak during "dirty" rebuild - Helper processes no longer hold unrelated filedescriptors open - Helpers are now restarted when the logs are rotated - Negatively cached DNS entries are now purged on "reload". - PURGE now also purges the DNS cache - HEAD on FTP objects no longer retreives the whole object - More cleanups of the dstdomain ACL type - Squid no longer tries to do Range internally if it is not supported by the origin server. Doing so could cause bandwidth spikes and/or negative hit ratio. - httpd_accel_single_host squid.conf directive - "round-robin" cache_peer counters are reset every 5 minutes to compensate previously dead peers - DNS retransmit parameters - Show all FTP server messages - squid.conf.default now indicates if a directive isn't enabled in the installed binary, and what configure option to use for enabling it - Fixed a temporary memory leak on persistent POSTs - Fixed a temporary memory leak when the server response headers includes NULL characters - authenticate_ip_ttl_is_strict squid.conf option - req_mime_type ACL type - A reworked storage system that supports storage directories in a more modular fashion. The object replacement and IO is now responsibility of the storage directory, and not of the storage manager. - Fixed a bogous MD5 mismatch warning sometimes seen when using aufs or diskd stores - Added --enable-stacktraces configure option to set PRINT_STACK_TRACE, and extended support for this to Linux/GNU libc. - Disabled the "request timeout" error message sent if the user agent did not provide a request in a timely manner after opening the connection. Now the connection is silently closed. The error message was confusing user agents utilizing persistent connections. - Fixed configure --enable descriptions to match the arg names. - Eliminated compile warnings from auth_modules/MSNT code. - Require first character of hostnames to be alphanumeric. - Made ARP ACL work for Solaris. - Removed storeClientListSearch(). - Added counters to track diskd operation success and failures. - Fixed range_offset_limit. - Added code to retry ServFail replies for internal DNS lookups. - Added referer header logging (Jens-S. Voeckler). - Added "multi-domain-NTLM" authentication module, a Perl script from Thomas Jarosch. - Added configurable warning messages for high memory usage, high response time, and high page faults. - Made store dir selection algorithm configurable. - Added support for admin-definable extension methods, up to 20. - Added 'maximum_object_size_in_memory' as a configuration option - this defines the watermark where objects transit from being true hot objects to being in-transit objects in memory. It currently defaults to 8 KB. - Change to the fqdn code which changes how pending DNS requests are treated as private and only become public once they are completed. This can add extra load on DNS servers but prevents all the pending clients blocking if one of the queries got stuck. (Duane Wessels) - Converted more code to use MemPools, from Andres Kroonmaa. - Added more CYGWIN patches from Robert Collins. - Added Logfile module. - Added DISKD stats via cachemgr. - Added squid.conf options for DISKD magic constants.
2001-04-13upgrade to 2.6b + IPv6 patch.itojun5-51/+71
Version 2.6b of WWWOFFLE released : Sat Mar 24 14:30:00 2001 ------------------------------------------------------------ Bug Fixes: HTML parsing optimisations. HTML parser memory leak fixed. Fix stylesheet link parser. Stop cached pages containing trailing junk. Fixed wwwoffle manual page quote character bug. Fix problems parsing parameter strings in URLs. Fix ssl-allow-port config file parsing. Win32 Bug Fixes: Fixed the socket closing code. Documentation: Updated the README.win32 file. Updated FAQ to version 2.6. Updated French translated pages. Added a README.compress that describes the compression problems and solutions. New Features: Request data from servers is sent compressed, config option (see zlib note). Reply to client with compressed data if asked, config option (see zlib note). Compress the files in the cache when purging, based on age (see zlib note). Allow fetching in autodial mode as well as online mode. *NOTE* The use of zlib to enable compression should be considered a beta quality feature in this version. It requires the zlib library to compile it. *NOTE* If upgrading from a version < 2.6a then see the notes for version 2.6a.
2001-04-13Fix thinko in a message. Purely aesthetic.jwise1-2/+7
2001-04-12This pkg really screams for libghttp - make it depend on it.hubertf1-1/+2
2001-04-12Depend on {communicator,navigator}-* rather than {communicator,navigator}*abs1-3/+3
2001-04-11Update surfraw to 1.0.3. Changes from version 1.0.2:jlam7-33/+52
New elvi: amazon Add `scaleplus' elvi to elvi/Makefile.am Minor documentation bug fixes
2001-04-10Update to 2.0. Notable changes include:mjl2-10/+6
Name change from CGI_Lite to CGI::Lite. Added parse_new_form_data(), for use under persistant applications Removed $` and $' from the code, and "optimized" an important regexp. The set_file_type method now works as it should. Added the get_ordered_keys method Added a set of miscellaneous functions: browser_escape, url_encode, url_decode, is_dangerous, escape_dangerous_chars. Fields containing more than one value in multipart forms are now handled correctly. You can now parse/decode cookies in much the same manner as forms.
2001-04-09generate dir before copying file(s) to it. PR 12590.hubertf1-1/+2
2001-04-09Update to 4.3.2.drochner9-109/+78
See http://www.w3.org/Amaya/User/New.html for the changelog - it's too much to list here.
2001-04-09Fix checksum for Solaris 2.5.1 distribution file.tron1-2/+2
2001-04-09Since ${PREFIX} expansion in MESSAGE is automatic, remove outdatedwiz5-15/+10
comment.
2001-04-09Remove unneeded '-' before ${MKDIR} or ${INSTALL_DATA_DIR}wiz2-4/+4
2001-04-09fix depends path: p5-MLDBM lives in databases not devel.dmcmahill1-2/+2
2001-04-08use 2.0.16.itojun7-53/+28
Changes with Apache 2.0.16 *) Change the default installation directory to /usr/local/apache2, as now defined by the "Apache" layout in config.layout. [Marc Slemko] *) OS/2: Added support for building loadable modules as OS/2 DLLs. [Brian Havard] *) Get MaxRequestsPerChild working with the Windows MPM. [Bill Stoddard] *) Make generic hooks to work, with mod_generic_hook_import/export experimental modules. [Ben Laurie, Will Rowe] *) Fix segfaults for configuration file syntax errors such as "<Directory>" followed by "</Directory" and "<Directory>" followed by "</Directoryz>". [Jeff Trawick] *) Cleanup the --enable-layout option of configure. This makes us use a consistent location for the config.layout file, and it makes configure more portable. [jun-ichiro hagino <itojun@iijlab.net>] *) Changes to 'ab'; fixed int overrun's, added statistics, output in csv/gnuplot format, rudimentary ssl support and various other tweaks to make results more true to what is measured. The upshot of this it turns out that 'ab' has often underreported the true performance of apache. Often by a order of magnitude :-) See talk/paper of Sander Temme <sctemme@covalent.net> at April ApacheCon 2001 for details. [Dirk-Willem van Gulik] *) Clean up mod_cgid's temporary request pool. Besides fixing a storage leak this ensures that some unnecessary pipes are closed. [Jeff Trawick] *) Performance: Add quick_handler hook. This hook is called at the very beginning of the request processing before location_walk, translate_name, etc. This hook is useful for URI keyed content caches like Mike Abbott's Quick Shortcut Cache. [Bill Stoddard] *) top_module global variable renamed to ap_top_module [Perl] *) Move ap_set_last_modified to the core. This is a potentially controversial change, because this is kind of HTTP specific. However many protocols should be able to take advantage of this kind of information. I expect that headers will need one more layer of indirection for multi-protocol work, but this is a small step in the right direction. [Ryan Bloom] *) Enable mod_status by default. This matches what Apache 1.3 does. [Ed Korthof] *) Add a ScriptSock directive to the default config file. This is only enabled when mod_cgid is used. [Taketo Kabe <kabe@sra-tohoku.co.jp>]
2001-04-07Update "navigator" package to version 4.77. This version fixes bugs,tron2-11/+11
closes security problems and updates the certificate list.
2001-04-07Update "communicator" package to version 4.77. This version fixes bugs,tron1-4/+4
closes security problems and updates the certificate list.
2001-04-06Update gtkhtml to 0.8.3rh3-20/+24
Changes include: General: - Fixed X selections so that we no longer try to pass UTF-8 encoded text in STRING atoms. - Improved the table layout code so that now we render tables very close to the big name browsers, one or two small issues left - Added many missing attributes to the HTML export code so that at least we pass on the attributes we understand. - Support for sub sup and strike elements. - We now parse param elements before emitting the object requested signal so that we can make an informed choice about whether or not the object is supported. Editor: - We now hook to the gnome-spell component to do spelling. - Rename the idl and oafinfo to bring us in line with the new naming conventions - The editor control now exposes an interface for issuing editor commands Ebrowser: - New component to support simple browsing tasks.
2001-04-06upgrade to 7.7.1.itojun3-7/+9
Version 7.7.1 Daniel (3 April 2001) - Puneet Pawaia pointed out two serious problems. Libcurl would attempt to read bad memory during situations when an (ftp) connection attempt failed. Also, the lib/Makefile.vc6 was corrected. - More investigations in the Location: following code made me realize that it was not clean enough to work transparantly with persistant and non- persistant connections. I think I've fixed it now. Daniel (29 March 2001) - Georg Horn mailed me some corrections for the Curl::easy perl interface. - Experimental ftps:// support added. It is basically FTP over SSL for the control connection. It still makes all data transfers going over unencrypted connections. Rainer Weikusat's ftpd-ssl server hack supports this and I used that to verify the functionality. Daniel (27 March 2001) - Guenole Bescon discovered that if you set a CURLOPT_TIMEOUT and then tried to get a file from a site and it fails, the SIGALRM would still be sent after the timeout-time, quite inexpectedly! - I added an ftp transfer example to docs/examples/ and I also wrote a tiny example makefile that can be used as a start when building one of the examples. Version 7.7.1-beta1 Daniel (26 March 2001) - Mohamed Lrhazi reported problems with 7.6.1 and persistant HTTP/1.0 connections (when the server replied a Connection: Keep-Alive) and this problem was not properly dealt with in 7.7 either. A patch was posted to the curl-and-php mailing list. Daniel (24 March 2001) - Colin Watson reported about a problem and brought a patch that corrected it, which was about the man page and lines starting with a single quote (') in a way that gnroff doesn't like. Daniel (23 March 2001) - Peter Bray reported correctly that the root makefile used make instead of $(MAKE) for the test target. - Corrected the Curl::easy perl interface to use curl_easy_setopt() and not curl_setopt() which was removed in 7.7! - SM provided updates on three documents (MANUAL, INSTALL and FAQ). - When following a Location:, libcurl would sometimes write to the URL string in a way it shouldn't. As the pointer is passed-in to libcurl from an application, we can't be allowed to write to it. The particular bug report from 'nk' that brought this up was because he had a read-only URL that then caused a libcurl crash! - No longer reads HEAD responses longer than to the last header. Previously, curl would read the full reply if the connection was a "close" one. - libcurl did re-use connections way too much. Doing "curl http://www.{microsoft,ibm}.com" would make it re-use the connection which made the second request return very odd results. Daniel (22 March 2001) - Edin Kadribasic made me aware that curl should not re-send POST requests when following 302-redirects. I made 302 work like 303 which means curl uses GET in the following request(s). - libcurl now reset the "followed-location" counter on each invoke of curl_easy_perform() as it otherwise would sum up all redirects on the same connection and thus could reach the maxredirs counter wrongly. - Jim Drash suggested curl_escape() should not re-encode what already looks like an encoded sequence and I think that's a fair suggestion. Version 7.7 Daniel (22 March 2001) - The configure script now fails with an error message if gethostbyname_r() is detected but it couldn't figure out how to invoke it (what amount of arguments it is supposed to get). Reports from Andrés García made me aware of this need. - Talking with Jim Drash made me finally put the curl_escape and curl_unescape functions in the curl.h include file and write man pages for them. The escape function was modified to use the same interface as the unescape one had. - No bug reports at all on the latest betas. Release time coming up. Version 7.7-beta5 Daniel (19 March 2001) - Georg Ottinger reported problems with using -C together with -L in the sense that the -C info got lost when it was redirected. I could not repeat this problem on the 7.7 branch why I leave this for the moment. Test case 39 was added to do exactly this, and it seems to do right. - Christian Robottom Reis reported how his 7.7 beta didn't successfully do form posts as elegantly as 7.6.1 did. Indeed, this was a flaw in the header engine, as HTTP 1.1 has introduced a new 100 "transient" return code for PUT and POST operations that I need to add support for. Section 8.2.3 in RFC2616 has all the details. Seems to work now! Daniel (16 March 2001) - After having experienced another machine break-down, we're back. - Georg Horn's perl interface Curl::easy is now included in the curl release archive. The perl/ directory is now present. Please help me with docs, examples and updates you think fit. - Made a new php/ directory in the release archive and moved the PHP examples into a subdirectory in there. Not much PHP info yet, but I plan to. Please help me here as well! - Made libcurl return error if a transfer is aborted in the middle of a "chunk". It actually enables libcurl to discover premature transfer aborts even if the Content-Length: size is unknown. Daniel (15 March 2001) - Added --connect-timeout to curl, which sets the new CURLOPT_CONNECTTIMEOUT option in libcurl. It limits the time curl is allowed to spend in the connection phase. This differs from -m/--max-time that limits the entire file transfer operation. Requested by Larry Fahnoe and others. I also updated the curl.1 and curl_easy_setopt.3 man pages and removed the item from the TODO. Version 7.7-beta4 Daniel (14 March 2001) - Made curl grok IPv6 with HTTP proxies and got everything to compile nicely again when ENABLE_IPV6 is set. I need to remake things in the test suite. I can't test the FTP parts with curl built for IPv6 as it uses a different set of FTP commands then! - I fell onto a bug report on php.net (posted by Lars Torben Wilson) that was a report meant for our project. Anyway, it said the .netrc parsing didn't work as supposed, and as I agreed with Lars, I made the netrc parser use getpwuid() to figure out the home directory of the effective user and try that netrc. It still uses the environment variable HOME for those that don't have that function or if the user doesn't return valid pwd info. - Edin Kadribaic posted a bug report where he got a crash when a fetch with user+password in the URL followed a Location: to a second URL (absolute, without name+password). This bug has been around for a long while and crashes due to a read at address zero. Fixed now. Wrote test case 38, that tests this. - Modified the test suite's httpserver slightly to append all client request data to its log file so that the test script now better can verify a range of requests and not only the last one, as it did previously. - Updated the curl man page with --random-file and --egd-file details. Version 7.7-beta3 Daniel (14 March 2001) - Björn Stenberg provided similar fixes as Jörn did and some additional patches for non-SSL compiles. - I increased the interface number for libcurl as I've removed the low level functions from the interface. I also took this opportunity to rename the Curl_strequal function to curl_strequal and Curl_strnequal to curl_strnequal, as they're public libcurl functions (even if they're still undocumented). This will make older programs not capable of using the new libcurl with just a drop-in replacement. - Jörn Hartroth updated stuff for win32 compiles: o config-win32.h was fixed for socklen_t o lib/ssluse.c had a bad #endif placement o lib/file.c was made to compile on win32 again o lib/Makefile.m32 was updated with the new files o lib/libcurl.def matches the current interface state Daniel (13 March 2001) - It only took an hour or so before Jörn Hartroth found a problem in the chunked transfer-encoding. Given his fine example-site, I could easily spot the problem and when I re-read the spec (the part I have pasted in the top of the http_chunks.h file), I realized I had made my state-machine slightly wrong and didn't expect/handle the trailing CRLF that comes after the data in each chunk (and those extra two bytes sure feel wasted). Had to modify test case 34 to match this as well. Version 7.7-beta2 Daniel (13 March 2001) - Added the policy stuff to the curl_easy_setopt man page for the two supported policies. - Implemented some support for the CURLOPT_CLOSEPOLICY option. The policies CURLCLOSEPOLICY_LEAST_RECENTLY_USED and CURLCLOSEPOLICY_OLDEST are now supported, and the "least recently used" is used as default if no policy is chosen. Daniel (12 March 2001) - Added CURLOPT_RANDOM_FILE and CURLOPT_EGDSOCKET to libcurl for seeding the SSL random engine. The random seeding support was also brought to the curl client with the new options --random-file <file> and --egd-file <file>. I need some people to really test this to know they work as supposed. Remember that libcurl now informs (if verbose is on) if the random seed is considered weak (HTTPS connections). - Made the chunked transfer-encoding engine detected bad formatted data length and return error if so (we can't possibly extract sensible data if this is the case). Added a test case that detects this. Number 36. Now there are 60 test cases. - Added 5 new libcurl options to curl/curl.h that can be used to control the persistant connection support in libcurl. They're also documented (fairly thoroughly) in the curl_easy_setopt.3 man page. Three of them are now implemented, although not really tested at this point... Anyway, the new implemented options are named CURLOPT_MAXCONNECTS, CURLOPT_FRESH_CONNECT, CURLOPT_FORBID_REUSE. The ones still left to write code for are: CURLOPT_CLOSEPOLICY and its related option CURLOPT_CLOSEFUNCTION. - Made curl (the actual command line tool) use the new libcurl 7.7 persistant connection support by re-using the same curl handle for every specified file transfer and after some more test case tweaking we have 100% test case OK. I made some test cases return HTTP/1.0 now to make sure that works as well. - Had to add 'Connection: close' to the headers of a bunch of test cases so that curl behaves "old-style" since the test http server doesn't do multiple connections... Now I get 100% test case OK. - The curl.haxx.se site, the main curl mailing list and my personal email are all dead today due to power blackout in the area where the main servers are located. Horrible. - I've made persistance work over a squid HTTP proxy. I find it disturbing that it uses headers that aren't present in any HTTP standard though (Proxy-Connection:) and that makes me feel that I'm now on the edge of what the standard actually defines. I need to get this code excercised on a lot of different HTTP proxies before I feel safe. Now I'm facing the problem with my test suite servers (both FTP and HTTP) not supporting persistant connections and libcurl is doing them now. I have to fix the test servers to get all the test cases do OK. Daniel (8 March 2001) - Guenole Bescon reported that libcurl did output errors to stderr even if MUTE and NOPROGRESS was set. It turned out to be a bug and happens if there's an error and no ERRORBUFFER is set. This is now corrected. Version 7.7-beta1 Daniel (8 March 2001) - "Transfer-Encoding: chunked" is no longer any trouble for libcurl. I've added two source files and I've run some test downloads that look fine. - HTTP HEAD works too, even on 1.1 servers. Daniel (5 March 2001) - The current 57 test cases now pass OK. It would suggest that libcurl works using the old-style with one connection per handle. The test suite doesn't handle multiple connections yet so there are no test cases for this. - I patched the telnet.c heavily to not use any global variables anymore. It should make it a lot nicer library-wise. - The file:// support was modified slightly to use the internal connect-first- then-do approach. Daniel (4 March 2001) - More bugs erased. Version 7.7-alpha2 Daniel (4 March 2001) - Now, there's even a basic check that a re-used connection is still alive before it is assumed so. A few first tests have proven that libcurl will then re-connect instead of re-use the dead connection! Daniel (2 March 2001) - Now they work intermixed as well. Major coolness! - More fiddling around, my 'tiny' client I have for testing purposes now has proved to download both FTP and HTTP with persistant connections. They do not work intermixed yet though. Daniel (1 March 2001) - Wilfredo Sanchez pointed out a minor spelling mistake in a man page and that curl_slist_append() should take a const char * as second argument. It does now. Daniel (22 February 2001) - The persistant connections start to look good for HTTP. On a subsequent request, it seems that libcurl now can pick an already existing connection if a suitable one exists, or it opens a new one. - Douglas R. Horner mailed me corrections to the curl_formparse() man page that I applied. Daniel (20 February 2001) - Added the docs/examples/win32sockets.c file for our windows friends. - Linus Nielsen Feltzing provided brand new TELNET functionality and improvements: * Negotiation is now passive. Curl does not negotiate until the peer does. * Possibility to set negotiation options on the command line, currently only XDISPLOC, TTYPE and NEW_ENVIRON (called NEW_ENV). * Now sends the USER environment variable if the -u switch is used. * Use -t to set telnet options (Linus even updated the man page, awesome!) - Haven't done this big changes to curl for a while. Moved around a lot of struct fields and stuff to make multiple connections get connection specific data in separate structs so that they can co-exist in a nice way. See the mailing lists for discussions around how this is gonna be implemented. Docs and more will follow. Studied the HTTP RFC to find out better how persistant connections should work. Seems cool enough. Daniel (19 February 2001) - Bob Schader brought me two files that help set up a MS VC++ libcurl project easier. He also provided me with an up-to-date libcurl.def file. - I moved a bunch of prototypes from the public <curl/curl.h> file to the library private urldata.h. This is because of the upcoming changes. The low level interface is no longer being planned to become reality. Daniel (15 February 2001) - CURLOPT_POST is not required anymore. Just setting the POST string with CURLOPT_POSTFIELDS will switch on the HTTP POST. Most other things in libcurl already works this way, i.e they require only the parameter to switch on a feature so I think this works well with the rest. Setting a NULL string switches off the POST again. - Excellent suggestions from Rich Gray, Rick Jones, Johan Nilsson and Bjorn Reese helped me define a way how to incorporate persistant connections into libcurl in a very smooth way. If done right, no change may have to be made to older programs and they will just start using persistant connections when applicable! Daniel (13 February 2001) - Changed the word 'timeouted' to 'timed out' in two different error messages. Suggested by Larry Fahnoe. Version 7.6.1 Daniel (9 February 2001) - Frank Reid and Cain Hopwood provided information and research around a HTTPS PUT/upload problem we seem to have. No solution found yet. Daniel (8 February 2001) - An interesting discussion is how to specify an empty password without having curl ask for it interactively? The current implmentation takes an empty password as a request for a password prompt. However, I still want to support a blank user field. Thus, today if you enter "-u :" (without user and password) curl will prompt for the password. Tricky. How would you specify you want the prompt otherwise? - Made the netrc parse result possible to use for other protocols than FTP and HTTP (such as the upcoming TELNET fixes). - The previously mentioned "MSVC++ problems" turned out to be a non-issue. - Added a HTTP file upload code example in the docs/examples/ section on request. - Adjusted the FTP response fix slightly. Version 7.6.1-pre3 Daniel (7 February 2001) - SM found a flaw in the response reading function for FTP that could make libcurl not get out of the loop properly when it should, if libcurl got -1 returned when reading the socket. - I found a similar mistake in http.c when using a proxy and reading the results from the proxy connection. Daniel (6 February 2001) - A friendly person named "SM" (nntp at iname.com) pointed out that the VC makefile in src/ needed the libpath set for the debug build to work. - Daniel Gehriger stepped in to assist with the VC++ stuff Robert Weaver brought up yesterday. Daniel (5 February 2001) - Jun-ichiro itojun Hagino brought a big patch that brings IPv6-awareness to a bunch of different areas within libcurl. - Robert Weaver told me about the problems the MS VC++ 6.0 compiler has with the 'static' keyword on a number of libcurl functions. I might need to add a patch that redefines static when libcurl is compiled with that compiler. How do I know when VC++ compiles, anyone? Daniel (4 February 2001) - curl_getinfo() was extended with two new options: CURLINFO_CONTENT_LENGTH_DOWNLOAD and CURLINFO_CONTENT_LENGTH_UPLOAD. They return the full assumed content length of the transfer in the given direction. The CURLINFO_CONTENT_LENGTH_DOWNLOAD will be the Content-Length: size of a HTTP download. Added descriptions to the man page as well. This was done after discussions with Bob Schader. Daniel (3 February 2001) - Ingo Ralf Blum provided another fix that makes curl build under the more recent cygwin installations. It seems they've changed the preset defines to not include WIN32 anymore. Version 7.6.1-pre2 Daniel (31 January 2001) - Curl_read() and curl_read() now return a ssize_t for the size, as it had to be able to return -1. The telnet support crashed due to this and there was a possibility to weird behaviour all over. Linus Nielsen Feltzing helped me find this. - Added a configure.in check for a working getaddrinfo() if IPv6 is requested. I also made the configure script feature --enable-debug which sets a couple of compiler options when used. It assumes gcc. Daniel (30 January 2001) - I finally took a stab at the long-term FIXME item I've had on myself, and now libcurl will properly work when doing a HTTP range-request that follows a Location:. Previously that would make libcurl fail saying that the server doesn't seem to support range requests. Daniel (29 January 2001) - I added a test case for the HTTP PUT resume thing (test case 33). Version 7.6.1-pre1 Daniel (29 January 2001) - Yet another Content-Range change. Ok now? Bob Schader checks from his end and it works for him. Daniel (27 January 2001) - So the HTTP PUT resume fix wasn't good. There should appearantly be a Content-Range header when resuming a PUT. - I noticed I broke the download-check that verifies that a resumed HTTP download is actually resumed. It got broke because my new 'httpreq' field in the main curl struct. I should get slapped. I added a test case for this now, so I won't be able to ruin this again without noticing. - Added a test case for content-length verifying when downloading HTTP. - Made the progress meter title say if the transfer is being transfered. It makes the output slightly better for resumes. - When dealing with Location: and HTTP return codes, libcurl will not attempt to follow the spirit of RFC2616 better. It means that when POSTing to a URL that is being following to a second place, the standard will judge on what to do. All HTTP codes except 303 and 305 will cause curl to make a second POST operation. 303 will make a GET and 305 is not yet supported. I also wrote two test cases for this POST/GET/Location stuff.
2001-04-05Update MASTER_SITES and HOMEPAGEzuntum1-3/+3
2001-04-05Replace use of (removed) install-build-depends target with code to acheivejwise1-2/+3
the same result. Fix suggested by agc.
2001-04-05Make sure .orig files from patching don't get installed.jwise1-1/+3
2001-04-05Standardize patch file names.wiz4-15/+15
2001-04-04Update to version 20010403 - distfile disappeared again.simonb5-20/+17
No major changes - just more ad patterns.
2001-04-04Use a .ORIG suffix instead of .orig when sed'ing files so as not tosimonb1-3/+3
overwrite the .orig files created by patch.
2001-04-03Add comment on why DIST_SUBDIR is needed the way it is.wiz1-1/+2
2001-04-03RCS Id policewennmach3-3/+7
2001-04-03Remove dead german mirror from master site list.tron1-2/+1
2001-04-02Move BUILD_USES_MSGFMT in DEPENDS block, mostly by removing emptywiz3-6/+4
lines.
2001-04-02Add a `run' rc script command corresponding to the tomcat `run' startupjwise1-2/+2
directive -- run in the foreground for debugging purposes.
2001-04-02Disable optimizing for m68k.taya1-2/+7
2001-04-02update to 1.3p1. removes debugging clause (mistakenly avoids forking childs)itojun2-4/+4
2001-04-02Make it clear that this is version 2 of apache in the COMMENT.agc1-2/+2
2001-04-02use English message on external viewer setup.itojun2-1/+15
2001-04-01add & enable cronologzuntum1-1/+2
2001-04-01Initial import of cronolog-1.6.1zuntum6-0/+57
"cronolog" is a simple program that reads log messages from its input and writes them to a set of output files, the names of which are constructed using template and the current date and time. The template uses the same format specifiers as the Unix date command (which are the same as the standard C strftime library function). "cronolog" is intended to be used in conjunction with a Web server, such as Apache to split the access log into daily or monthly logs.
2001-03-31upgrade to 0.2.1.itojun10-201/+130
2001/3/23 ============================================================== From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01807] Re: w3m-0.2.0 * url.c doesn't compile when USE_NNTP or __EMX__ is defined. * patch for EWS4800 * when #define USE_SSL and #undef USE_SSL_VERIFY, rc.c and url.c doesn't compile. (problems about ssl_forbid_method) * when saveBufferDelNum and del==TRUE, patterns before ":" are deleted twice. * bugfix about saving history. From: TSUCHIYA Masatoshi <tsuchiya@pine.kuee.kyoto-u.ac.jp> Subject: [w3m-dev 01810] deflate (was: w3m-0.2.0) deflate patch in 0.2.0 doesn't work on http://cvs.m17n.org/~akr/diary/ . From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01808] Re: w3m-0.2.0 w3m doesn't compile on GNU/Linux and glibc2.2 because it lacks sin.ss_len. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev-en 00399] Re: w3m-0.2.0 >> From: Dan Fandrich <dan@coneharvesters.com> >> Version 0.2.0 still contains the following bugs which I fixed two months >> ago and sent patches for to this list, namely: >> - core dumps on startup if given a URL requiring a needsterminal mailcap >> handler >> - destroys most of an existing ~/.mailcap file without warning when editing >> - mailcap handling is still wrong as MIME type should be case insensitive >> - private mailcap extension has an illegal name From: SATO Seichi <seichi@as.airnet.ne.jp> Subject: w3m regex bugs w3m coredumps when passing $* as a search string. 2001/3/22 ============================================================== From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01664] Re: Patch for anonymizer.com Don't call cleanupName() when the URL is http://<host>/<scheme>: ... From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01670] Re: w3m-0.1.11-pre-kokb24-test1 strcpy/strncpy in Str.c are replaced with bcopy. From: TSUCHIYA Masatoshi <tsuchiya@pine.kuee.kyoto-u.ac.jp> Subject: [w3m-dev 01618] backend patch Subject: [w3m-dev 01671] backend patch for w3m-0.1.11-pre-kokb24-test1 A patch for w3m to work as a client. (-backend patch) From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01673] SEGV in append_frame_info() Improvement of illegal frame handling. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01674] image map w3m doesn't follow anchors from client-side image map when the URLs are like "#test". From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01675] goto label Changed w3m not to reload the document when following label-only URL like #label. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01676] Re: w3m-0.1.11-pre-kokb24-test1 Subject: [w3m-dev 01678] Re: w3m-0.1.11-pre-kokb24-test1 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01680] Re: w3m-0.1.11-pre-kokb24-test1 To remove the compiler warnings From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01684] Re: http://cvs.m17n.org/~akr/diary/ application/x-deflate support. From: Moritz Barsnick <barsnick@gmx.net> Subject: [w3m-dev-en 00318] Information about current page Subject: [w3m-dev-en 00320] Re: Information about current page Subject: [w3m-dev-en 00322] Re: Information about current page Subject: [w3m-dev-en 00323] Buglet (Was: Re: Information about current page) Changes 'URL of the current anchor' on the info page into 'full' URL. When the cursor is on a form element, `Method/type of current form' will be displayed. From: c603273@vus069.trl.telstra.com.au (Brian Keck) Subject: [w3m-dev-en 00343] patch for proxy user:passwd on command line Subject: [w3m-dev-en 00351] Re: patch for proxy user:passwd on command line This patch to w3m-0.1.11-pre-kokb23 adds the lynx-like option -pauth username:password so I don't have to retype username & password every time I run w3m, which is often. It's so simple I wonder whether it's against policy, but it would be nice for me & some others if it was in the official 0.1.11. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01772] Re: visited anchor Subject: [w3m-dev 01773] Re: visited anchor * visited anhor color support. * textlist based history implementation. * history URLs are stored in a hash table. * the implementation of rules are changed. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01786] Re: w3m-0.1.11-pre-hsaka24 Subject: [w3m-dev 01787] Re: w3m-0.1.11-pre-hsaka24 * Improvement of illegal frame handling. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01788] Re: w3m-0.1.11-pre-hsaka24 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01792] Re: w3m-0.1.11-pre-hsaka24 search algorithm in retrieveAnchor() is changed from linear search to binary search. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01793] <li type=".."> make type attribute of <li> tag effective not only for the <li> element but also for all <li> tags that follows the first type-specified <li> tag. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01801] some fixes. Bugfix of frame Subject: IPv6 support for w3m's ftp From: Hajimu UMEMOTO <ume@imasy.or.jp> IPv6 support for FTP. 2001/3/16 ============================================================= From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01711] Authorization * http://user:pass@hostname/ support. From: hsaka@mth.biglobe.ne.jp Subject: [w3m-dev 01724] buf->type when mailcap is used. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01726] anchor jump too slow by TAB-key on STDIN. * when moving from anchor to anchor by TAB on the document read from stdin, the movement is very slow because currentdir() is invoked on each TAB. From: sakane@d4.bsd.nes.nec.co.jp (Yoshinobu Sakane) Subject: [w3m-dev 01727] C-z when stdin From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> Subject: [w3m-dev 01729] ignore_null_img_alt * when ignore_null_img_alt is OFF, no img link is displayed when no ALT attribute is specified. From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> Subject: [w3m-dev 01730] Re: <hr> in a table Improvement of <hr>. From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> Subject: [w3m-dev 01731] completion list When completing a filename, the candidates of the completion will be displayed like this: ----- Completion list ----- X11R6/ compat/ include/ libdata/ local/ nfs/ ports/ share/ bin/ games/ lib/ libexec/ mdec/ obj/ sbin/ src/ (Load)Filename? /usr/ From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp> Subject: [w3m-dev 01733] A patch concerning SSL The following two improvements are done about SSL: 1. a new option ``ssl_forbid_method'' is added. 2. an error message is displayed when w3m fails to establish an SSL connection. From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp> Subject: [w3m-dev 01735] Re: A patch concerning SSL Subject: [w3m-dev 01737] Re: A patch concerning SSL 1. the data type of ssl_forbid_method is changed from P_STRING to P_SSLPATH. 2. Error message log function. From: kiwamu <kiwamu@debian.or.jp> Subject: [w3m-dev 01739] wheel mouse patch From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01742] w3mmee 0.1.11p16-6 segfault w3mmee 0.1.11p16-6 segfaults depending on the content of mime.types. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01752] SEGV in search_param() > >> * w3m -o 1 causes SEGV. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01753] empty <select> When <select>..</select> have no <option>, for example <form action=A> <select name=B></select> <input type=submit> </form> submit causes SEGV. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01754] A search does not stop. When reading a large file from stdin and wrap search option is ON, a search that doesn't hit will cause an infinite loop. From: WATANABE Katsuyuki <katsuyuki_1.watanabe@toppan.co.jp> Subject: [w3m-dev 01755] relative path with -bookmark option * when a bookmark file name is given by -bookmark as relative path, `add to bookmark'doesn't work. 2001/2/7 From: aito Subject: [w3m-dev 01722] <hr> in a table * the width of <hr> in a table exceeds the column width. 2001/2/6 From: aito * `Local cookie' mechanism is introduced to authorize local CGI. The behavior of CGI script using the local cookie is as follows: - w3m generates process-dependent `Local cookie' - on the local CGI invocation, w3m passes the script the local cookie through the environment variable LOCAL_COOKIE. - the sctipt embeds the local cookie into the form for the next local CGI invocation. - on the next CGI invocation, the CGI script compares two local CGIs which are passed through CGI parameter and environment variable. If they are different, the script prohibits dangerous operations, such as file creation and file deletion. * The local cookie mechanism is implemented on w3mbookmark and w3mhelperpanel. * On Linux, gcmain.c doesn't compile when the GC library is already installed in /usr/local/lib. 2001/1/25 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01667] Re: mailer %s 2001/1/24 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01661] Re: <head> security fix. 2001/1/23 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * check if ", <, > and &s are quoted within attribute values. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01663] replace addUniqHist with addHist in loadHistory() 2001/1/22 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01617] Re: first body with -m (Re: w3m-m17n-0.7) * terminal resize related fix. * info page ('=' command) fix for multi-layered frame page. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01621] NEXT_LINK and GOTO_LINE problem From: Yamate Keiichirou <yamate@ebina.hitachi.co.jp> Subject: [w3m-dev 01623] Re: (frame) http://www.securityfocus.com/ Subject: [w3m-dev 01632] Re: (frame) http://www.securityfocus.com/ frame fix. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01624] Re: first body with -m From: Hironori Sakamoto <h-saka@udlew10.uldev.lsi.nec.co.jp> Subject: [w3m-dev 01625] Re: first body with -m pgFore, pgBack behaviour fix. From: Hironori Sakamoto <h-saka@udlew10.uldev.lsi.nec.co.jp> Subject: [w3m-dev 01635] Directory list local.c directory list fix. From: Hironori Sakamoto <h-saka@udlew10.uldev.lsi.nec.co.jp> Subject: [w3m-dev 01643] buffername Subject: [w3m-dev 01650] Re: buffername buffername (title) related improvements. * when displayLink is ON, truncate buffername on showing long URL. * displayBuffer() cleanup. * remove trailing spaces from content of <title>..</title>. * [w3m-dev 01503], [w3m-dev 01504] From: Hironori Sakamoto <h-saka@udlew10.uldev.lsi.nec.co.jp> Subject: [w3m-dev 01646] putAnchor * putAnchor related improvement. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01647] Re: first body with -m * cursor position moves unexpectedly when reloading a URL with #label. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01651] display column position with LINE_INFO 2001/1/5 From: Ryoji Kato <ryoji.kato@nrj.ericsson.se> Subject: [w3m-dev 01582] rfc2732 patch literal IPv6 address treatment (bracketed by '[' and ']') according to RFC2732. From: Yamate Keiichirou <yamate@ebina.hitachi.co.jp> Subject: [w3m-dev 01594] first body with -m (Re: w3m-m17n-0.7) From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01602] Re: first body with -m (Re: w3m-m17n-0.7) 2001/1/1 From: Yamate Keiichirou <yamate@ebina.hitachi.co.jp> Subject: [w3m-dev 01584] Re: attribute replacing in frames. (Re: some fixes) 2000/12/27 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * remove trailing blank lines in a buffer. 2000/12/26 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01560] Re: long URL Multiple 'u' and 'c' scrolls long URL. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01570] Re: long URL From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01506] compile option of gc.a From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01509] Forward: Bug#79689: No way to view information on SSL certificates Now '=' shows info about SSL certificate. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01556] Re: ANSI color support (was Re: w3m-m17n-0.4) ANSI color support. From: Yamate Keiichirou <yamate@ebina.hitachi.co.jp> Subject: [w3m-dev 01535] how to check wait3 in configure. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01537] Re: how to check wait3 in configure. On BSD/OS 3.1, SunOS 4.1.3, configure can't detect wait3(). 2000/12/25 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> <plaintext> doesn't work. 2000/12/22 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01555] Re: some fixes for <select> w3m crashes by <select> without <option>. 2000/12/21 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * table related improvements (<xmp> inside table, etc) From: Yamate Keiichirou <yamate@ebina.hitachi.co.jp> Subject: [w3m-dev 01536] Re: <P> in <DL> Subject: [w3m-dev 01544] Re: <P> in <DL> * w3m crashes by an illegal HTML. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * treat unclosed <a>, <img_alt>, <b>, <u> 2000/12/20 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * bugfix on <dt> tag processing in feed_table_tag(). * w3m eventually crashed when a tag is not closed in a table. * ignore <p> just after <dt>. From: Yamate Keiichirou <yamate@ebina.hitachi.co.jp> Subject: [w3m-dev 01530] returned at a morment. * skip newline within "-enclosed attribute value. Subject: [w3m-dev 01531] coocie check in header from stdin. * w3m crashes by 'cat mail | w3m -m' 2000/12/17 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01513] Re: w3m-0.1.11-pre-kokb23 frame.c bugfix Subject: [w3m-dev 01515] some fixes for <select> Subject: [w3m-dev 01516] Re: some fixes for <select> Several improvements on <select>..<option> 2000/12/14 From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01501] Re: w3m-0.1.11-pre-kokb23 Compile error for 'no menu' model 2000/12/13 From: sekita-n@hera.im.uec.ac.jp (Nobutaka SEKITANI) Subject: [w3m-dev 01483] Patch to show image URL includes anchor Peek image URL by 'i' From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01500] fix risky code in url.c Vulnerble code in url.c fixed 2000/12/12 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01491] bug ? From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Search for a string that contains null character. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01498] Re: null character Infinite loop 2000/12/11 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * StrmyISgets doesn't recognize a '\r' as a newline character. * Null character support on pager mode. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01487] A string in <textarea> is broken after editing <textarea> related fix. Subject: [w3m-dev 01488] buffer overflow bugs * Buffer overflow fixes. 2000/12/9 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * maximum_table_width now considers width attribute in td and th tag. 2000/12/8 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01473] Re: internal tag and attribute check From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * hborder and border attribute handling. From: sakane@d4.bsd.nes.nec.co.jp (Yoshinobu Sakane) Subject: [w3m-dev 01478] Option Setting Panel * Improvement of the option setting panel view. 2000/12/7 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * parse_tag improvements. * don't parse tag within visible_length(). From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01456] linein.c * linein.c is rewritten based on calcPosition(). From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01457] cursor position on sumbit form * TAB key behaviour fix. 2000/12/3 From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp> Subject: [w3m-dev 01449] Re: Directory of private header of gc library. * w3m crashes when accessing a list after popping the last element by popText (rpopText). 2000/12/2 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * image map related fix. 2000/12/1 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: Security hole in w3m (<input_alt type=file>) * Prohibit using internal tags in HTML. Subject: [w3m-dev 01432] Re: w3m-0.1.11-pre-kokb22 patch Subject: [w3m-dev 01437] Re: w3m-0.1.11-pre-kokb22 patch * Image map related fix. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * a compile option which enables the removal of trailing blank lines in a burrer. (ENABLE_REMOVE_TRAILINGSPACES) From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev-en 00301] Re: "w3m -h" outputs to stderr * Destination of w3m -h output is changed from stderr to stdout. From: sakane@d4.bsd.nes.nec.co.jp (Yoshinobu Sakane) Subject: [w3m-dev 01430] Re: w3m-0.1.11-pre-kokb22 patch * EWS4800(/usr/abiccs/bin/cc) support. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * id attribute check in dummy_table tag. * fid attribute check in form_int tag. * table stack overflow check. 2000/11/29 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01422] bpcmp in anchor.c From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01423] Re: bpcmp in anchor.c * some improvements for speedup. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * CheckType() bugfix and speedup. 2000/11/28 From: Takenobu Sugiyama <sugiyama@ae.advantest.co.jp> Subject: patch for cygwin * enables ftp download for cygwin w3m 2000/11/27 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01401] Re: bugfix of display of control chars, merge of easy UTF-8 patch, etc. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * table rendering speed-up. 2000/11/25 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * table column width sometimes get narrower than specified width value. 2000/11/24 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * Progress bar display enhancement. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * command line option about proxy and cookie doesn't work. * 'Save to local file' overwrites the existing file. 2000/11/23 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * get_ctype is now macro. * menu.c type mismatch fix. 2000/11/22 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * fixes for speedup. From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01372] w3m sometimes uses the wrong mailcap entry http://bugs.debian.org/77679 2000/11/20 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * an empty table in another table makes the outer table funny. 2000/11/19 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> gc6 support. 2000/11/18 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * space characters in a buffer are mapped into 0x80-0x9f. * unprintable characters (0x80-0xa0) are displayed as \xxx. From: Tsutomu Okada ($B2,ED(B $BJY(B) <okada@furuno.co.jp> Subject: [w3m-dev 01354] minimize when #undef USE_GOPHER or USE_NNTP 2000/11/16 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> getescapechar() returns abnormal value for illegal entity. 2000/11/15 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * table-related fix. * DEL character is treated as `breakable space.' From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp> Subject: [w3m-dev 01338] Re: Lynx patch for character encoding in form Subject: [w3m-dev 01342] Re: Lynx patch for character encoding in form * support for accept-charset attribute in form tag. 2000/11/14 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * cleanup_str and htmlquote_str now returns the oritinal string itself when there's no need to (un)quote it. 2000/11/10 From: Katsuyuki Watanabe <katsuyuki_1.watanabe@toppan.co.jp> Subject: [w3m-dev 01336] patch for Cygwin 1.1.x Patch for Cygwin 1.1.x (1.1.3 and later) 2000/11/8 From: Jan Nieuwenhuizen <janneke@gnu.org> Subject: [w3m-dev-en 00189] [PATCH] w3m menu <select> search Enable to search within popup menu. 2000/11/7 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01331] Re: form TEXT: * Search string history and form input string history are merged. 2000/11/4 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * When a cell width exceeds the screen width, format contents in the cell to fit into the screen width. 2000/11/2 From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01313] Re: SCM_NNTP nntp: for MARL_URL 2000/10/31 From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp> Subject: [w3m-dev 01310] Re: option select (Re: w3mmee-0.1.11p10) Output error messages from gc library using disp_message_nsec. 2000/10/30 From: sakane@d4.bsd.nes.nec.co.jp (Yoshinobu Sakane) Subject: [w3m-dev 01294] mouse no effect on blank page. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01295] Re: mouse no effect on blank page. From: SASAKI Takeshi <sasaki@ct.sakura.ne.jp> Subject: [w3m-dev 01297] Re: backword search bug report From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01298] Re: backword search bug report bug fix of backword search Subject: [w3m-dev 01299] Re: backword search bug report bug fix of the handling of multi-byte regexp. 2000/10/29 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * LESSOPEN can be set via the option setting panel. (default: off) * speed-up of gunzip_stream(), save2tmp(), visible_length(). 2000/10/28 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * Emacs-like completion key support. (by #define EMACS_LIKE_LINEEDIT in config.h) From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01284] Re: improvement of filename input * in 'Goto URL' command, local file name will be completed after 'file:/'. From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp> Subject: [w3m-dev 01280] Stop to prepend rc_dir to full path. 2000/10/27 From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01269] Re: SCM_NNTP Subject: [w3m-dev 01273] Re: SCM_NNTP Prohibit gopher:, news: and nntp: scheme when USE_GOPHER and USE_NNTP macros are undefined. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01258] improvement of filename input * Completion lists are displayed by C-d. * in 'Goto URL' command, local file name will be completed after 'file:/', 'file:///' and 'file://localhost/'. * password part of URLs in the history list are removed. From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01277] Accept-Encoding: gzip (Re: some wishlists) Accept-Encoding: gzip, compress is appended in the request header. Subject: [w3m-dev 01275] Re: squeeze multiple blank lines option ( http://bugs.debian.org/75527 ) when #ifdef DEBIAN, 'squeeze multiple blank line' switch (default -S) is set to -s character-code specifier (-s/-e/-j) are removed. use '-o kanjicode={S,E,J}' instead. Subject: [w3m-dev 01274] Re: SCM_NNTP nntp: support. Subject: [w3m-dev 01276] URL in w3m -v when LANG=EN (or #undef JP_CHARSET), the URL displayed at w3m -v (visual startup mode) is incorrect. 2000/10/26 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> location of mailcap and mime.type can be specified in the Option Setting Panel. 2000/10/25 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01247] Re: buffer selection menu Menu related patches. ([w3m-dev 01227], [w3m-dev 01228],[w3m-dev 01229], [w3m-dev 01237], [w3m-dev 01238]) 2000/10/24 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * in the cookie-related setting, '.' is regarded as any domain. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01240] Re: w3m-0.1.11-pre-kokb17 patch 'incompatible pointer type' fix. 2000/10/23 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * "Domains from which should accept/reject cookies" setting in the option setting panel. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01211] Re: a small change to linein.c Subject: [w3m-dev 01214] Re: a small change to linein.c * When editing long string, a part of the string disappear. From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01216] error message for invalid keymap From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01220] Re: error message for invalid keymap * w3m will display an error-message against the illegal keymap file specification. From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01217] keymap.lynx example could be better. keymap.lynx update. 2000/10/20 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> cookie-related improvements. * version 1 cookie handling is now compliant to http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-state-man-mec-12.txt Cookie2 is added in the Netscape-style cookie request header. 2000/10/19 From: "Ambrose Li [EDP]" <acli@mingpaoxpress.com> Subject: [w3m-dev-en 00136] version 0 cookies and some odds and ends Subject: [w3m-dev-en 00191] sorry, the last patch was not made properly Subject: [w3m-dev-en 00190] w3m-0.1.10 patch (mostly version 0 cookie handling) I've hacked up a big mess (patch) against w3m-0.1.9 primarily involving version 0 cookies. To my dismay, it seems that most servers out there still want version 0 cookies and version 0 cookie handling behaviour, and w3m's cookie handling is too strict for version 0, causing some sites (notably my.yahoo.co.jp) not to work. 2000/10/18 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * pixel-per-character is now changable. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01208] '#', '?' in ftp:/.... * w3m fails to parse URL when ftp:/ URL contains '#'. From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp> Subject: [w3m-dev 01209] http_response_code and ``Location:'' header w3m now follows Location: header only when http_response_code is 301 - 303. 2000/10/17 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> local CGI makes zombie processes. 2000/10/16 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> w3m hangs when <textarea> is not closed in a table. From: maeda@tokyo.pm.org Subject: [w3m-dev 00990] auth password input From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01193] Re: frame bug? w3m eventually crashes when browsing frame pages. 2000/10/13 From: SASAKI Takeshi <sasaki@ct.sakura.ne.jp> Subject: [w3m-dev 00928] misdetection of IPv6 support on CYGWIN 1.1.2 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01170] Re: cursor position after RELOAD, EDIT * Bugfix: remove cache files * The following functions can take arguments in keymap. LOAD ... a file name EXTERN, EXTERN_LINK ... a name of the external browser (Can't be used from w3m-control: ) EXEC_SHELL, READ_SHELL, PIPE_SHELL ... shell command (Can't be used from w3m-control: ) SAVE, SAVE_IMAGE, SAVE_LINK, SAVE_SCREEN ... a filename (or command name) (Can't be used from w3m-control: ) 2000/10/11 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * the buffer name of an input taken from the stdin is now determined from MAN_PN. From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01156] Re: w3m-0.1.11-pre-kokb15 * mydirname bugfix. * SERVER_NAME can be configured. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01158] some bugs fix when RELOAD, EDIT Subject: [w3m-dev 01164] cursor position after RELOAD, EDIT * a file: called as local CGI can be edited. 2000/10/10 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01166] Re: cell width in table table-related bugfix. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01155] history of data for <input type=text> <input type=text> input will be put into history buffer. 2000/10/9 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01150] Some bug fixes Bugfixes of the problems reported in [w3m-dev 00956] unknown scheme in frame [w3m-dev 00975] goto link from frame page From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01145] buffer overflow in linein.c Fix of the buffer overrun problem in inputLineHist(linein.c) 2000/10/8 From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01136] function argument in keymap Subject: [w3m-dev 01139] Re: function argument in keymap Some functions specified in ~/.w3m/keymap can take an argument. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 01143] image map with popup menu image map can be treated as popup menu (#define MENU_MAP in config.h) From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 00971] Re: segmentation fault with http: Specifying 'http:' or 'http:/' as URLs will crash w3m. 2000/10/07 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01134] w3m in xterm horribly confused by Japanese in title (fr w3m-en will crash when browsing a page with Japanese title. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01127] SIGINT signal in ftp session (Re: my w3m support page) SIGINT will crash w3m when downloading via ftp. 2000/10/06 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * the maximum value of wmin in recalc_width() is changed to 0.05. * when deflating compressed data other than http file and local file, the file will be stored as a temporary file. * mailcap edit= attribute support. 2000/10/05 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * Improvements of -dump, -source_dump options. * Ignore <meta> tags in a frame. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 00930] HTML-quote in w3mbookmark.c * In 'Bookmark registration', URL and Title are not HTML-quoted. From: hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) Subject: [w3m-dev 00972] better display of progress bar ? * An improvement of progress bar. 2000/10/05 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> * Null pointer chech for textlist. From: Fumitoshi UKAI <ukai@debian.or.jp> Subject: [w3m-dev 01100] space in URL * http://bugs.debian.org/60825 and http://bugs.debian.org/67466 when submitting a form, name is not quoted (which should be) * http://bugs.debian.org/66887 Remove preceding and trailing spaces from URL input through 'U' command. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01113] bug fix (content charset) content charset bugfix 2000/10/02 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01112] Re: mailcap test= directive improvements of mailcap handling * In addition to %s, %t (content-type name) will be available. * nametemplate option is now valid. * If there is no %s in the entry, 'command < %s' is assumed. * If needsterminal is specified, spawn the command foreground. * If copiousoutput is specified, load the command output into buffer. * `htmloutput' option is added, which indicates that the output of the command is to be read by w3m as text/html. For example, application/excel; xlHtml %s | lv -Iu8 -Oej; htmloutput enables an Excel book to be displayed as an HTML document. * compressed file browsing support for ftp scheme. * Bug: compressed file isn't displayed properly for http: scheme. 2000/09/28 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01097] gunzip_stream problem * Fix of the behaviour against INT signal while reading compressed file. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01092] CONFIG_FILE * CONFIG_FILE in config.h was hard-coded. 2000/09/17 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01078] treatment of content type Improvements around document type handling. * precedence between lessopen_stream() and gunzip_stream() was changed in examineFile(). * lessopen_stream()ed file is treated as a plein text. * lessopen_stream() is applied only if document type is text/* or no external viewer is set. * all text/* data other than text/html are handled inside w3m. * The document type displayed by page_info_panel() is now the one before examineFile() processing. * When invoking an external viewer, ">/dev/null 2>&1 &" is appended to the command line. 2000/09/13 From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01053] Re: Location: in local cgi. * Do not interpret Location: header of the local file when invoking with -m flag, From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01065] map key '0' Improvement around keymap. * Now a single '0' can be mapped. Numbers other than 0, for example `10 j' are regarded as prefix arguments. From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 01066] 104japan * Code conversion fix for forms in frame. 2000/09/07 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01058] <dt>, <dd>, <blockquote> (Re: <ol> etc.) * insert blank lines before and after <blockquote>. * Don't ignore <p> tag just after <dt> and <dd>. 2000/09/04 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01052] cellpadding, cellspacing, vspace, etc. Some changes about space character and blank lines: * <a name="..."></a> or <font> outside <tr> or <td> are pushed into the next cell. * cellspacing attribute in <table> tag is now handled correctly. * vspace attribute interpretation. * blank line detection criterion is changed. * </p> tag inserts a blank line. 2000/08/17 From: Tsutomu Okada <okada@furuno.co.jp> Subject: [w3m-dev 01018] sqrt DOMAIN error in table.c From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01019] Re: sqrt DOMAIN error in table.c * fix of DOMAIN error of sqrt(). 2000/08/15 From: satodai@dog.intcul.tohoku.ac.jp (Dai Sato) Subject: [w3m-dev 01017] value of input tag in option panel * Fix of the problem of the option setting panel: when specifying a value including a double quote, the value after " is not displayed on the next invocation of the option setting panel. 2000/08/06 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01016] Table geometry calculation * rounding algorithm of table geometry calculation is changed to minimize the difference of the column width and the `true' width. 2000/07/26 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01006] initialize PRNG of openssl 0.9.5 or later * when using openssl library after 0.9.5, enables SSL on the environment without the random device (/dev/urandom). 2000/07/21 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01004] unused socket is not closed. When interrupting file transfer using C-c, the socket sometimes stay unclosed. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01005] table caption problem Fix of the problem that w3m doesn't stop when there's no closing </caption>. 2000/07/19 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 00966] ssl and proxy authorization Fix of the authorization procedure of SSL tunneling via HTP proxy. From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 01003] Some bug fixes for table 2000/07/16 From: SASAKI Takeshi <sasaki@ct.sakura.ne.jp> Subject: [w3m-dev 00999] Re: bookmark * Sometimes a link can't be appended into the bookmark. 2000/06/18 From: Okabe Katsuya <okabek@guitar.ocn.ne.jp> Subject: [w3m-dev 00934] clear_buffer bug Bugfix: when clear_buffer is TRUE, selBuf() clears the screen. 2000/06/17 From: SASAKI Takeshi <sasaki@ct.sakura.ne.jp> Subject: [w3m-dev 00929] ftp.c patch Return code 230 against USER command is regarded as a successful login. 2000/06/16 From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 00923] some bug fixes * when #undef JP_CHARSET, file.c doesn't compile. * buffer.c bugfix ("=" should be "==") From: Kazuhiko Izawa <izawa@nucef.tokai.jaeri.go.jp> Subject: [w3m-dev 00924] Re: w3m-0.1.11pre From: Hironori Sakamoto <h-saka@lsi.nec.co.jp> Subject: [w3m-dev 00925] Re: w3m-0.1.11pre Accessing URL like file://localhost/foo causes abnormal termination. 2000.6.6 From: aito * [w3m-dev 00826] * Bugfix: When a header by CGI POST method gives Location: header, the redirect can't be reloaded. * white spaces in URL are removed.
2001-03-30let it conflict with ap-* (apache1 modules)itojun1-2/+2
2001-03-30visit www/apache-currentitojun1-1/+2
2001-03-30ve USE_INET6 for webpageitojun1-1/+4
2001-03-30apache 2.0.15-alpha, new major release of famous web serveritojun12-0/+755
2001-03-30Update to mozilla 0.8.1taya27-1700/+186
See the release notes for detail: http://www.mozilla.org/releases/mozilla0.8.1/ Currently only tested(and worked) on -current/i386. Tested on 1.5.1_ALPHA/mac68k, but did not work(still investigating).
2001-03-30Add and enable ap-jk.jwise1-1/+2