Commit graph

50323 commits

Author SHA1 Message Date
epg
cb5169903b import p5-SVN-Web-0.30pre0.40.
SVN::Web is a repository browser for Subversion, similar to cvsweb
and ViewCVS.

This is a snapshot from the SVN::Web Subversion repository; it is
*NOT* a stable release.
2003-12-03 16:13:28 +00:00
epg
936f0a36ca import p5-Text-Diff-0.35.
This module provides a high-level interface to the diff algorithm
in the p5-ALgorithm-Diff package.
2003-12-03 16:11:50 +00:00
epg
e2ded55ca5 import p5-Algorithm-Merge-0.04.
This module provides diff3(1)-like functionality (three-way merge).
2003-12-03 16:07:56 +00:00
epg
6d4a499ee3 import p5-Algorithm-Annotate-0.10.
Represent a series of changes in annotate form; like cvs annotate.
2003-12-03 16:04:15 +00:00
epg
ae69ff088b import p5-Algorithm-Diff-1.15.
This is a module for computing the difference between two files,
two strings, or any other two lists of things.  It uses an
intelligent algorithm similar to (or identical to) the one used by
the Unix `diff' program.   It is guaranteed to find the *smallest
possible* set of differences.
2003-12-03 15:58:53 +00:00
adam
b4116be8f3 Updated gperf to 3.0.1 2003-12-03 15:57:47 +00:00
epg
f843636dfd import YAML-0.35
This is an implementation of YAML (YAML Ain't Markup Language,
http://www.yaml.org/) for Perl.
2003-12-03 15:56:20 +00:00
adam
ce13bf5848 New in 3.0.1:
* Bug fix.

New in 3.0:
* Added option --output that allows to specify the output file name.
* Some options have been renamed:
    --hash-fn-name=NAME     -->   --hash-function-name=NAME
    --lookup-fn-name=NAME   -->   --lookup-function-name=NAME
    --compare-strlen        -->   --compare-lengths
    --global                -->   --global-table
  The older variants are still supported for backward compatibility.
* New options can now be specified inside the input file: --> see "NEWS"
* When the option -k is not given, the default key positions are now
  computed depending on the set of keywords.
* If the input file is given by name, the output file will now contain
  #line directives referring to the input file.
* Some keyword sets containing permutations, like { "xy", "yx", "xz", "zx" }
  or { "abc", "acb", "bca", "cab" }, are now handled by gperf without
  requiring the option -D.
* The generated table is usually much smaller than it was with earlier
  versions of gperf.
* Added option -m/--multiple-iterations that allows to further reduce the
  size of the generated table.
* When the search for a good hash function is not immediately successful,
  the table's size will grow as needed. Earlier versions of gperf bailed
  out with an "Internal error, duplicate hash code value".
* The options -f/--fast and -o/--occurrence-sort have no effect any more.
* Added options -P/--pic and --null-strings that optimize the generated code
  for use in shared libraries. -P/--pic does a perfect optimization but may
  require some small code changes (see the documentation for details), whereas
  --null-strings does only a half-hearted optimization but works without
  needing any change to surrounding code.
* Added option --ignore-case that produces a case independent lookup function.
* Bug fixes
2003-12-03 15:56:16 +00:00
epg
0b0661d357 Note PKGREVISION bumps of apr, apache2, ap2-perl, ap2-ruby, and
ap2-subversion.
2003-12-03 15:51:39 +00:00
epg
9d865de65c Require apache 2.0.48. 2003-12-03 15:43:35 +00:00
epg
cd9583f81d Require apr 0.9.5 (thanks Bang Jun-Young). 2003-12-03 15:43:09 +00:00
epg
d29f3171fc ap2-subversion had a PKGREVISION bump. 2003-12-03 15:42:10 +00:00
epg
3f7007b8ca PKGREVISION bumps due to apr bump (thanks Thomas Klausner). 2003-12-03 15:40:02 +00:00
epg
0ac81ca665 Bump PKGREVISION (thanks Thomas Klausner). 2003-12-03 15:30:26 +00:00
epg
c2b0c20808 Add swig-perl and p5-subversion.
Note subversion update.
2003-12-03 15:25:47 +00:00
epg
38da85a24c Update to 0.33.1.
Add p5-subversion package.

Upstream change log:

Version 0.33.1 (released 17 November 2003, revision r7782)
http://svn.collab.net/repos/svn/tags/0.33.1

    NOTICE: This is a bugfix release.  The bug is fixed if *either*
            the client or server uses the new code.

User-visible changes:
* major performance fix for updates

Version 0.33.0 (released 13 November 2003, revision r7737)
http://svn.collab.net/repos/svn/tags/0.33.0

                              NOTICES:

    1. This client may be incompatible with ra_dav servers <= 0.31.

    2. In order to make commits more responsive, repository
       deltification is no longer automatic.  However, you may want
       to run deltification as a background process in your repository
       post-commit hook.  For example, the new post-commit.tmpl file
       recommends 'nice -2 svnadmin deltify "$REPOS" -r "$REV" &'.

 User-visible changes:
 * now require APR/APU 0.9.5 (ships in Apache 2.0.48)
 * lose automatic deltification, but recommend it in post-commit (r7695, #1573)
 * new configuration and authn/authz support in ra_svn (r7604, r7601)
 * much faster checkouts and updates, over both svn:// and http:// (#1429)
 * new partial-authz feature: checkouts/updates just skip unauthorized items
 * new 'use-commit-times = yes' config option to use commit-time timestamps
 * new 'svnadmin hotcopy' command, like hot-backup.py (#1567)
 * fix Win32 "access denied" error in renames (r7598, #1576)
 * unnecessary working copy tree locks now avoided, to save time (#1245)
 * Compatibility changes:
    - lose ra_dav compatibility with servers 0.31 and earlier
    - lose support for working copy format "1" (not created for over a year)
 * 'svn diff' and other read-only actions now work in read-only working copies
 * 'svn blame -rX' now does the intuitive thing
 * 'svn log' output headers now say "rXXXX | " instead of "rev XXXX:  "
 * 'svnversion' no longer stymied by svn:externals
 * new 'svn pd' alias for 'svn propdel'
 * '-rCOMMITTED' keyword now works on more commands
 * minor changes to output of 'svn ls -v' and 'svn st -v' (r7530)
 * 'svn log --xml' now obeys the '-q' flag (r7555)
 * cvs2svn.py bugfixes, especially issue #1440
 * book and documentation updates
 * removed server config options ssl-ignore-invalid-date and
   ssl-override-cert-hostname (r7644)
 * many other enhancements, minor features, and bugfixes not listed here

 Developer-visible changes:
 * repair text- and prop-time in .svn/entries if spuriously wrong (r7565)
 * speed up keyword translation (r7502)
 * two new editor functions, absent_file() and absent_directory()
 * ra_dav checkouts/updates no longer do O(n) number of GET, PROPFIND requests
 * new svn_io_temp_dir function, will morph to apr_temp_dir_get soon
 * new svn_io_file_close wrapper for apr_file_close
 * tools/test-scripts/svntest/ scripts now support ra_dav and ramdisk
 * many other changes not listed here
2003-12-03 15:20:44 +00:00
epg
f32f6b6f98 import p5-subversion-0.33.1 (the rest of subversion 0.33.1 to follow).
This package contains the Perl bindings to the Subversion libraries.
2003-12-03 15:13:58 +00:00
epg
d26572ef2a import swig-perl-1.3.19
This is the runtime for Perl bindings written with SWIG 1.3.19.
2003-12-03 15:11:23 +00:00
epg
785609cf5f Add missing file. 2003-12-03 14:57:18 +00:00
epg
3da06317a5 Link to db4. 2003-12-03 14:57:05 +00:00
jmmv
607a5119e3 Initial import of xmms-musepack, version 0.94:
xmms-musepack is an audio output plugin for the XMMS multimedia player.
Andree Buschmann's en-/decoder is a great improvement of lossy audio
compression compared to MPEG-III.
2003-12-03 13:30:15 +00:00
jmmv
4cd8959773 Update of gaim to 0.74 done. 2003-12-03 13:24:14 +00:00
jmmv
517600ea72 Update to 0.74, provided by Matthew Luckie. Together with the update, add a
patch to allow gaim connect to MSN using OpenSSL, instead of gnutls.

version 0.74 (11/25/2003):
	* Sort-by-size log sorting fix
	* Log directory umask fix for users of gaim-remote
	* Fix Jabber room creation on MUC servers.
	* Vietnamese translation added (T.M.Thanh,M.D.)

version 0.73 (11/21/2003):
	* New Logging format and code:
		* fixes i18n issues with logs
		* compatible with old logs
		* hopefully fixes segfault in viewing logs
	* New disconnected account dialog (Thanks, Daniel Atallah)
	* Fixes several Jabber bugs
	* Fixes the bug where some dialogs would crash when spell checking was
	  enabled. Closes #827930.
	* Fixed unblocking of users in MSN (Robert Mibus)
	* Fixes outgoing mobile pages on MSN.
	* The border on the close buttons on inactive tabs are no longer shown,
	  thanks to a fix used by Galeon.
	* Compatible with autoconf 2.58.
	* Cleaned up gtkspell-related code (Robert McQueen)
	* Changed the parameters for the received-chat-msg signal.
	* Added a Release Notification plugin
	* Chinese (Simplified) translation updated (Funda Wang)
	* Chinese (Traditional) translation updated (Ambrose C. Li)
	* Danish translation updated (Morten Brix Pedersen (mbrix))
	* Finnish translation updated (Arto Alakulju)
	* French translation updated (Eric Boumaour)
	* German translation updated (Bjoern Voigt)
	* Hindi trnaslation updated (Ravi (raviratlami))
	* Italian translation updated (Claudio Satriano)
	* Norwegian translation updated (Petter Johan Olsen)
	* Polish translation updated (Emil Nowak)
	* Serbian Latin translation updated (Danilo Segan)
	* Swedish translation updated (Tore Lundqvist (luntor))

version 0.72 (10/31/2003):
	* Added a search feature to conversations.
	* Added an option to remove the formatting toolbar, both globally and
	  on a per-window basis (Nathan Fredrickson)
	* Added a drop shadow to the buddy list tooltip
	* Smileys are copyable
	* Fixed the ICQ login crash
	* Fixed a crash in the Add Chat dialog when selecting an
	  account that doesn't support chats. Closes bug #821606.
	* Fixed a bug where new MSN accounts without buddies added wouldn't
	  connect.
	* Fixed a crash when deleting an account that has IMs or chats open.
	  Closes bug #821630.
	* Smileys have background colors
	* If SSL is not enabled, MSN will load, but error on connect.
	* Disable Jabber SASL auth until the standard stabilizes
	* Chinese (Simplified) translation updated (Funda Wang)
	* Chinese (Traditional) translation updated (Ambrose C. Li)
	* Czech translation updated (Stanislav Brabec, Miloslav Trmac)
	* Danish translation updated (Morten Brix Pedersen (mbrix))
	* Dutch translation updated (Vincent van Adrighem)
	* Finnish translation updated (Arto Alakulju)
	* French translation updated (Eric Boumaour)
	* German translation updated (Bjoern Voigt)
	* Italian translation updated (Claudio Satriano)
	* Korean translation updated (Kyung-uk)
	* Portuguese (Portugal) updated (Duarte Henriques)
	* Romanian translation updated (Misu Moldovan)
	* Russian translation updated (Alexandre Prokoudine)
	* Serbian translation updated (Danilo Segan)
	* Serbian Latin translation updated (Danilo Segan)
	* Spanish translation updated (Javier Fernandez-Sanguino Pena)
	* Swedish translation updated (Tore Lundqvist (luntor))
2003-12-03 13:23:28 +00:00
jmmv
9f0b02084e Note addition of xmms-musepack, version 0.94. 2003-12-03 13:17:35 +00:00
jmmv
a19dcbecca Add and enable xmms-musepack. 2003-12-03 13:15:52 +00:00
jmmv
7bafb1681f fastdep update to 0.16 done. 2003-12-03 13:12:24 +00:00
jmmv
c01dbbfacf Update to 0.16:
Implement boolean operators in #if [Pete Gonzalez]
Adds support for  Windows MinGW GCC and MS VisualC++.NET [Jack T. Goral]
Adds Jamfile for compilation with Jam [Jack T. Goral]
Make gcc style predefined symbols defined as in -DPARAMETER=3 [Pierric Descamps]
Fix unportable configure sh for NetBSD [Julio M. Merino Vidal]
Set object filename extension through a command line [Arne Varholm]
Man page [Zenaan Harkness]
Compilation fixes + makefile for MS VC6 [Alexander Bartolich]
2003-12-03 13:11:18 +00:00
jmmv
56a586eb48 xmule update to 1.7.1 done. 2003-12-03 13:05:13 +00:00
jmmv
020f7b1ddf Update to 1.7.1. IIUC, this is the unstable branch, but AFAIK it is far more
stable than the last 1.6.1 version, and connects to a lot more servers, so here
is the update.

Version 1.7.1
-------------
Un-Thesis' Contributions:
   * FIXED: A bug that would cause approx 5% download sources to be deleted
     unnecessarily.
   * FIXED: aMule 1.1.2 bug in their ZLib implementation (look for "FIXME" in
     their code heh).
   * FIXED: Removed the undefined VoidList warning in mfc.cpp.
   * Added ZLIB support to xMule, based on aMule 1.1.1, which is based on eMule
     0.30c.
   * Changed target minimum speed for each upload from 3000 bytes/sec to
     2KB/sec.
   * Implemented nearly 100% of aMule-1,1,2's network modifications that worked.
   * Client now masquerades as eMule v0.34 heh.
   * Download list now refreshes in *real* time.  No more seconds delay.
   * Less waiting for downloads!  Fixed a broken if statement that was tossing
     out some of the early download connections.
DongCheon Park's contributions:
   * Updated the Korean translation files for new features in 1.7.x.

Version 1.7.0
-------------
Highlights:
   * There are no known exploits in this version.
   * Lots of fixed memleaks and cpuleaks.
   * Extended support for more eMule v3x protocol changes.
   * Enhanced transfer controls.
   * Supports every eDonkey server.
malware's contributions:
   * FIXED: endless loop in sending UDP packets.
   * FIXED: a possibly exploitable bug as noticed by S. Esser from e-matters
     (#3 "Servername Format String Vulnerabilities").
   * FIXED: new downloads assigned to random category.
   * FIXED: Bug rehashing a part file.
   * FIXED: Various minor problems found by malloc debuggers.
   * FIXED: Bug using MFC CMap.
   * Speed up the initial sharing by making KnowFileList a hash map.
   * Remove the assign to category context menu entry only if it was
     already there.
   * Reimplemented hashing thread.
   * Removed unused locks. As the NetBSD team pointed out they are
     causing problems on their system because it does core dump on
     unlocking a mutex that was not locked.
   * Made the title for systray the same as for the main dialog.
   * Never share a file twice.
   * Check size of OP_SERVERSTATUS packet more strictly.
   * Do not display the unit for file size twice in shared file list web page.
   * Make xmule not to send the MOD_VERSION information. This does avoid a
     problem with the LSD mod and other xmules.
   * Added check for libm to configure.in.
   * Avoid accepting an unrequested hashset.
   * Removed memory leak from hashing thread.
   * Implemented rescaling of the graph of currently active connections.
   * Remove invalid gap information entries which might be caused by
     incomplete part.met files.
   * Removed all font specifications from the XML resources.
   * Do not start a search after adding an ED2K-Link.
   * Enable clipping in download list control.
   * Possible fix for some problems while ending the program.
   * Keep the requested file in sync with the part status in CUpDownClient.
   * Imported from eMule:
       - Source exchange v2
       - Do not swap a source to a stopped file.
       - Up-/download auto-priority
       - Request of shared files by directory.
       - "Obtained Parts" bar in the shared files list
Un-Thesis' contributions:
   * FIXED: Bug that kept auto-backtrace from occuring in Linux.
   * FIXED: Rare crash occuring in Preferences->Directories.
   * FIXED: Optimization and compilation warnings using -O2 with GCC 3.3.x.
   * FIXED: Two memleaks in ClientCreditList.cpp.
   * FIXED: Several GCC 3.4 problems.
   * FIXED: Several Intel C++ problems.
   * Added more support for Solaris, thanks to wimms.
   * Corrected various Linux-specific #ifdefs.
   * Now masquerades as eMule v0.31 in order to use hostile eMule servers.
   * Added initial support for GCC 3.2+ AthlonXP optimizations.
   * Added initial support for wxGTK 2.5.1.
   * Two tweaks to make SuSE builds less CPU-intensive.
   * New build system, easier to maintain and automake free. Yay!
   * Streamlined included images: now only necessary ones are there.
   * Added initial support for JusSx's ed2k+ daemon.
   * Added initial support for Hetfield's systray daemon.
   * Added initial support for my telnet/ssh/www daemon.
NetBSD team's contributions:
   * FIXED: bug with the mutex protecting calls to gethostbyname.
   * Try to increase some resource limitation to the permitted maximum.
sepahewe's contributions:
   * Fix images in transfer list web page.
Justinas' contributions:
   * Fixed the mfc.h warnings at lines 418, 423,
2003-12-03 13:04:30 +00:00
jmmv
cd00eed9c8 Note addition of tsocks-1.7. 2003-12-03 12:59:12 +00:00
jmmv
a63f17df49 Add and enable tsocks. 2003-12-03 12:58:21 +00:00
jmmv
7a21537448 Initial import of tsocks, version 1.7:
tsocks allows non SOCKS aware applications (e.g telnet, ssh, ftp etc) to use
SOCKS without any modification.  It does this by intercepting the calls that
applications make to establish network connections and negotating them through
a SOCKS server as necessary.

tsocks is based on the 'shared library interceptor' concept.  Through use of
the LD_PRELOAD environment variable, tsocks is automatically loaded into the
process space of every executed program.
2003-12-03 12:57:20 +00:00
jmmv
5dcda61168 xbindkeys{,-tk} updated to 1.6.5. 2003-12-03 12:54:18 +00:00
jmmv
f6eac3daf8 Update xbindkeys{,-tk} to 1.6.5:
1.6.5: Add a --disable-tk option to prevent xbindkeys_show install. So no
tcl/tk dependency is needed.
Add a NOTE in xbindkeys man page to say that xbindkeys can reread its config
file with a -HUP signal (killall -HUP xbindkeys).
Add two verbose tests (forgotten in other versions).

1.6.4: Add an option at compile time to launch programs with a system call
instead of a fork+exec call (see ./configure --help).
Remove an umask(022) in the daemonize function which cause troubles.

1.6.3: Change to switch to autoconf2.5X and automake >= 1.6.
Xbindkeys doesn't move anymore to /tmp after the daemonize function.

1.6.2: Minor change in the configure.in to prevent rebuild of Makefile when
doing a make.

1.6.1: Minor bugfix: use strtol instead of atoi for hexadecimal modifier.

1.6.0: Add a 'Release' modifier to catch release events of keys or mouse
buttons instead of press events.
Xbindkeys doesn't use pthreads+system any more to start commands, it use
fork+exec instead.
Some modifications to make the code 'cleaner'.
2003-12-03 12:52:59 +00:00
cube
b785a02c4b Note update of mp3blaster to version 3.2.0. 2003-12-03 12:33:33 +00:00
cube
b6c92f8952 Update to version 3.2.0.
V3.2.0 2003/11/28
=================
-Updated source to compile with recent gcc compilers
-Pausing mp3/wav/ogg playback releases the sound device
-Better mp3 integrity checks. Songs that didn't previously play (or only
 partly), should now play fine (as in, the bits that are valid)
-Fixed a bug that would hang mp3blaster if you'd be in a dir that was deleted
 meanwhile.
-bugfix that could crash mp3blaster after a request to quit (..)
-bugfix that failed to redraw screen correctly after operations that
 required input (such as convert to wav, enter group name, ..)
-fixed a bug that could crash mp3blaster on opening oggs when sound device
 was busy.
-Check if the playlist directory actually exists before trying to write
 a playlist
-Added '--repeat/-R' command line option
-Applied LIRC support patch from Olgierd Pieczul .
 Thanks a lot!
2003-12-03 12:31:36 +00:00
darcy
291b036e4d Revert previous change. I was trying to get pkglint to keep quiet but
Marc Recht pointed out that install is not the install command here but
rather an argument to the Python setup program.
2003-12-03 12:26:35 +00:00
markd
2bd020b72d Note R update to 1.8.1 2003-12-03 12:08:02 +00:00
markd
6ea261acc7 Update R to 1.8.1.
Changes since 1.6.2

Many new features.
Language changes.
Additional standard package 'mle'.
Some old features deprecated or defunct.
Many many bug fixes.

Update to 1.8.0 from Ray Brownrigg in private communication, cleaned up
and updated to 1.8.1 by me.
2003-12-03 12:05:18 +00:00
darcy
b4b58bfb37 Change hard coded call of install to use INSTALL environment variable. 2003-12-03 12:00:09 +00:00
drochner
dfe4f86754 update to gcc-3.3.2 (bugfix release) 2003-12-03 11:28:55 +00:00
markd
6b2ce1be48 Fix to build with gcc3. 2003-12-03 11:18:05 +00:00
chris
ac63a8bfa2 Note update of p5-Time-HiRes to 1.52. 2003-12-03 10:55:59 +00:00
chris
c91b12b6e2 Update to 1.52, changes include:
1.52
        - In AIX (v?) with perl 5.6.1 the HiRes.t can hang after
          the subtest 18.  No known analysis nor fix, but added
          an alarm (that requires fork() and alarm()) to the test.

1.51
        - doc tweaks from mjd (perl change #20456)
        - NCR MP-RAS hints file added (svr4.pl) (perl change #21249)
2003-12-03 10:52:27 +00:00
kleink
653b950061 Update koffice-devel to 1.2.94 (a/k/a 1.3rc1), resolving PR pkg/23412.
Changes since 1.2.93 are outlined as:

     KOffice Libraries

     * Restart autosave timer when saving
     * Fixes for remote documents (authentication dialog not on top,
       error handling)
     * Restore ability to detect documents without extension (was
       broken by KDE-3.2-alpha's KZip)
     * Many stability fixes in spell checking

       KoText library features (shared between KWord and KPresenter):

     * Fixed missed hit during search-replace backwards with a single
       paragraph

     KWord

     * Fix for frames extending beyond the page getting the wrong size
       in 'preview mode'
     * Fixed wrong layouting of inline frames (e.g. pictures)
     * Don't select inline frame after pasting text containing it
       (only select non-inline frames)
     * Improved "create style from selection": use format at cursor if
       no selection, allow to type the name of an existing style to
       update it, and select the style for the current paragraph after
       creating it.

     KPresenter

     * Resizing a frame it does not snap to the grid (#63032)
     * Fixed when after resize/undo size of object is not the same
     * Fixed when after move/undo position of object is not the same
     * Fixed resizing of poly line objects
     * Fixed after reload of some objects moved up a little bit
     * Fixed moving with key left used y grid
     * Fixed header/footer moved in undo

     KSpread

     * kspread problem with calculating dates (#64794)
     * cell border does not work with merged cells (#61570)

     Kivio

     * Fixed copying text in other codecs then latin1
     * Fixed the size of the stencilbar when loading stencils at start
       up

     Filters

   KWord's MSWord import filter (requiring wv2-0.1.9):

     * Support for Word 6 and Word 7 (aka Word 95) files added
     * Fixed the list handling for weird corner cases
     * wv2 isn't so noisy anymore, when compiled with --disable-debug.
       Packagers are highly encouraged to use that flag.

   KWord RTF export filter:

     * new: headers and lists (fixes a regression from KOffice 1.2.x.)
     * declare fonts better (especially not Western European ones.)
     * fix table generation (better compatibility to RTF
       specification)
     * better date and time fields (except locale dates/times.)
     * fix word-by-word underline.

   KWord's RTF import filter:

     * make a better and faster fix for Qt 3.2
     * speed up importing files with many Unicode characters.
     * support for the field-like keywords for date, time and page
       number.

   KSpread HTML export filter:

     * fixed RTL problems with sheet and cell direction
2003-12-03 10:25:15 +00:00
darcy
99afea3af3 As discussed in the mailing list:
Moved to latest version 2.7.8.

Added patch that fixed flags when sending location header.

Added patch to cgihandler to append local directory so that relative URLs
would work.

Added patch to cgihandler to handle SystemExit so that pages would not
ISE when sys.exit(0) was used to exit from the script.

Added patch to break HTTP headers off from page correctly when CRLF and LF
is used inconsistently in a page.
2003-12-03 09:44:10 +00:00
salo
c4307def41 Note textproc/ispell-slovak update. 2003-12-03 09:33:17 +00:00
salo
48b6e0c06c Update to version 0.2.1.
Changes:
- update HOMEPAGE and MASTER_SITES

0.2.1:
======
- Added country names.
- New words.
- Renumbering of the database of words.
2003-12-03 09:32:12 +00:00
wiz
dfa47a2ed3 Bump date for previous. Fix typo. 2003-12-03 09:31:01 +00:00
salo
cc06a28c68 Note net/lftp update. 2003-12-03 09:08:07 +00:00