directories are empty, and may get pruned by "cvs [checkout|update]
-P" - check for a category Makefile to work out whether a directory
houses a category, or is some other part of the infrastructure.
COMMENTs are now a variable in the Makefile instead of a pkg/COMMENT
file. The COMMENT var should be in the maintainer block after the
homepage.
Modify bsd.pkg.mk, pkglint, url2pkg, and port2pkg (last one untested)
for the new behaviour. Document new state in Packages.txt.
This should save lots of inodes, and lots of time when untarring/updating.
Idea by Alistair Crooks.
For the time being, accept pkg/COMMENT instead of a COMMENT var to avoid
a flag day.
Patch supplied by martti.kuparinen@iki.fi in PR pkg/12222
Changes in 4.33
* NNTP authentication causes crash
* Attachment viewing broken
* Display-Filters and Url-Viewers with quoted arguments in config
broken
* Reverse sorting doesn't work correctly with filters
* Some combinations of non-ascii characters in subject cause crash
* Add version information to PC-Pine
* Top line in news index was painted incorrectly at times
* Crash caused by debugging when > 1K config lines are present
* PC-Pine LDAP crash caused by using incorrect memory free routine
* Save size check was disabled in multi append
Changes in 4.32
* File attaching broken (double filename) in PC-Pine
* Postponing loses second reply-to address
* Obscure crash when sorting by Threads
* Temporary file vulnerabilities
* Crash when NNTP authentication aborted
* Make /secure work again (broken in 4.30)
* Setup printer list problems with $PRINTER
* Recognize Re[arbitrary stuff]: reply syntax
* Allow for attaching files on a Windows network drive
Changes in 4.31
* Crashes when sorting by Threads
* Text of last message could be invisible with header larger than 4096
bytes
* Fixed a few buffer overflow possibilities
* Many problems if compiled without -DDEBUG
* Eliminated length restriction on address book comments
* Couldn't expand collections when selecting if combined-folder-display
set
* List options set only in fixed config didn't work
* Filtering based solely on scores didn't work
* Filtering to non-existent folder didn't ask to create the folder
* Save to default folder didn't work if the folder didn't already exist
* Crash when using WhereIs in Setup/Kolor with color turned off
* News collections would sometimes show up doubled until restarting
* Crash when accepting default in shuffle folder list command
* PC-Pine didn't always save window position
* Last-folder-used rule didn't always save the name of first saved
folder
* Rule editor address selector should allow multiple addresses
* Added Replicate command for Rules
* News validation doesn't validate against multiple news servers
* Reply to some text/html messages with attachments incorrectly set
content-type to text/html
* mail-directory setting in pine.conf doesn't work
The 5.42 maintance release fixes more bugs and cleans up the redistribution
conditions:
- removal of unreduce.c and amiga/timelib.c code to get rid of the last
distribution restrictions beyond the BSD-like Info-ZIP LICENSE
- new generic timelib replacement (currently used by AMIGA port)
- more reasonable mapping rules of UNIX "leading-dot" filenames to the
DOS 8.3 name convention
- repaired screensize detection in MORE paging code
(was broken for DOS/OS2/WIN32 in 5.41)
Changes since 1.09
The $u->query_form method will now escape spaces in
form keys or values as '+' (instead of '%20'). This also
affect the $mailto_uri->header() method. This is actually
the wrong thing to do, but this practise is now even
documented in official places like
http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1
so we might as well follow the stream.
URI::Heuristic did not work for domain-names with dashes '-'
in them. Fixed.
Documented that $uri->xxx($1) might not work.
Closes pkg/11990
Changes since 1.62:
- Require LWP 5.50. A bug fix was introduced in LWP 5.49 which
solves problems with relative Location: headers for Checkbot.
- Create a defaults --match argument based on all the start URLs,
not just the first one.
- Remove .bak files when the new files are written correctly.
- Create correct URLs when --file argument also contains directories.
- Deal with redirects without a Location: header.
- Don't exclude checkbot's own pages automagically.
- Always ask server about file type for HTTP requests when uncertain.
- Make output well-formed HTML.
- Several typo's and other output fixes.
patch-aa incorporated into main dist.
Changes since 5.48:
Release 5.50
Fix for test cases that failed because of URI-1.10 now encode
space as '+' instead of '%20. Patch by Christian Gilmore
<cgilmore@tivoli.com>.
Makefile.PL: Require URI-1.10.
HTTP::Daemon now accepts any non-space character as method name
on the request line. It used to fail on methods like "M-POST"
because it only allowed \w-chars.
HTTP::Date now allow fractional seconds in ISO date formats.
Based on patch from Mark D. Anderson <mda@discerning.com>
HTTP::Request::Common will now calculate Content-length
even if $DYNAMIC_FILE_UPLOAD is set. Patch provided by
Lindley, Lee T <Lee.Lindley@viasystems.com>.
2000-12-31 Gisle Aas <gisle@ActiveState.com>
Release 5.49
HTML::Form: Use croak() instead of die. Implement
$f->possible_values. Avoid use of undef value warnings.
HTTP::Cookies: fix epath issue. Make it work for URI::http
as the uri-attribute of HTTP::Request object
HTTP::Date: Allow ignored timezone info in parenthesis. Patch
by Sander van Zoest <sander@covalent.net>.
Fix calculation of non-GMT timezones (wrong sign). Patch by
KONISHI Katsuhiro <konishi@din.or.jp>.
HTTP::Response: Let $res->base() absolutize the URI. Based on
bug report from Hans de Graaff <hans@degraaff.org>.
Fixed minor doc typos in HTTP::Headers::Util and LWP::UserAgent.
HTTP::Request::Common: Support boundary spec from client.
LWP::Simple: Avoid trivial_http_get when @ appears in authority
part of URI
LWP::Authen::Digest: Need to have query in URI param.
Spotted by <ronald@innovation.ch>.
LWP::Protocol::http: unescape username/password if they are
specified in the URI.
Added LWP::Protocol::GHTTP. This allow LWP to use the HTTP::GHTTP
module as the low level HTTP driver.