[3747] in linux-announce channel archive
Linux-Announce Digest #39
daemon@ATHENA.MIT.EDU (Digestifier)
Thu Nov 15 08:13:07 2001
Message-ID: <20011115131303.27910.qmail@senator-bedfellow.mit.edu>
From: Digestifier <Linux-Announce-Request@senator-bedfellow.mit.edu>
To: Linux-Announce@senator-bedfellow.mit.edu
Reply-To: Linux-Announce@senator-bedfellow.mit.edu
Date: Thu, 15 Nov 2001 08:13:02 EST
Linux-Announce Digest #39, Volume #4 Thu, 15 Nov 2001 08:13:02 EST
Contents:
[SHAREWARE] XNotesPlus V3.4.0 Makes Debut! ("Michael J. Hammel")
GNU Scientific Library 1.0 released (Brian Gough)
hdparm-4.3 : get/set IDE disk parameters (Mark Lord)
Linux Portal (Rob)
[ADMIN] comp.os.linux.announce report for Mon Nov 12 00:05:02 CST 2001 (cola-admin@stump.algebra.com)
Suncoast LUG Meeting Announcement (Ed Centanni)
SHAREWARE: jpg2pdf 2.3 (SANFACE Software)
eFone Corporate Server released (Murray Hobbs)
Delta and Linux
Security Quickstart HOWTO Release (Hal Burgiss)
[ANNOUNCE] Karma v1.7 is released (Richard Gooch)
----------------------------------------------------------------------------
Date: Thu, 15 Nov 2001 06:29:06 CST
From: "Michael J. Hammel" <mjhammel@graphics-muse.org>
Subject: [SHAREWARE] XNotesPlus V3.4.0 Makes Debut!
XNotesPlus V3.4.0 makes debut
More than 2 years after the last major release, the Graphics Muse is
pleased to announce a new version of XNotesPlus, a personal information
manager (PIM) for Linux and Unix systems with full featured support for the
Palm Pilot.
Houston, Texas (Nov 12, 2001) -- Michael J. Hammel, the Graphics Muse, is
pleased to announce the release of version 3.4.0 of XNotesPlus, a Personal
Information Manager for the Linux and Unix desktop.
XNotesPlus includes support for all major features on the Palm Pilot,
including Memos, Todo Lists, the Address Book and Calendaring. All
data from each feature can be downloaded from the Pilot, edited within
XNotesPlus and uploaded back to the Pilot. Additionally, backups and
restores of a Pilot PDA can be managed from within XNotesPlus.
XNotesPlus full featured note system includes audio alarms, color coded
projects, date and calendar inserts, text search / export / import, and
integration with the XNotesPlus Address Manager to email notes to other
users.
The Address Manager also includes an integrated envelope printer for
various sized envelopes.
The release of XNotesPlus includes numerous bug fixes, many of which were
serious problems in earlier releases. Users of older versions are highly
encouraged to upgrade.
XNotesPlus is available in both
<a href="http://www.graphics-muse.org/source/XNotesPlus/XNotesPlus-v3.4.0.tar.gz">source</a>
and
<a href="http://www.graphics-muse.org/source/XNotesPlus/XNotesPlus-v3.4.0-Linux-gtk.tar.gz">Red Hat Linux 7.0</a>
dynamically built binary distributions.
Because of the addition of complete Pilot integration and vast stability
improvements, XNotesPlus has reached a new phase in development. As of
this release, XNotesPlus is now considered Shareware. Users are encouraged
to pay $10 or more if they find the program useful in order to continue
development of the application. Payments can be made
via the <a href="http://www.graphics-muse.org/xnots/xnotes.html#payments">Web
site</a> using PayPal.
--
Michael J. Hammel | I hope that after I die people will say of me:
The Graphics Muse | "That guy sure owed me a lot of money."
mjhammel@graphics-muse.org | Deep Thoughts by Jack Handey
http://www.graphics-muse.com
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:29:13 CST
From: Brian Gough <bjg3534@network-theory.co.uk>
Subject: GNU Scientific Library 1.0 released
The first major release of the GNU Scientific Library is now available
for general use.
The GNU Scientific Library (GSL) is a free numerical library for C
programmers. The routines have been written from scratch by the GSL
team in ANSI C. They present a modern API, allowing wrappers to be
written for very high level languages. The library includes a
450-page reference manual and is distributed under the GNU General
Public License.
The source code can be downloaded from ftp.gnu.org in the directory
/gnu/gsl/ or from any mirror site (see http://www.gnu.org/order/ftp.html)
Please consider making a donation to the Free Software Foundation if
you obtain the file from their servers.
The project home page is at http://sources.redhat.com/gsl/
Thanks to everyone who contributed code and bug reports, and to Red
Hat for generously providing hosting services for the project.
The library covers the following areas,
* Complex Numbers
* Roots of Polynomials
* Special Functions
* Vectors and Matrices
* Permutations
* Sorting
* BLAS Support
* Linear Algebra
* Eigensystems
* Fast Fourier Transforms
* Quadrature
* Random Numbers
* Quasi-Random Sequences
* Random Distributions
* Statistics
* Histograms
* N-Tuples
* Monte Carlo Integration
* Simulated Annealing
* Differential Equations
* Interpolation
* Numerical Differentiation
* Chebyshev Approximations
* Series Acceleration
* Discrete Hankel Transforms
* Root-Finding
* Minimization
* Least-Squares Fitting
* Physical Constants
* IEEE Floating-Point
Further information can be found in the GSL Reference Manual and on
the project homepage.
--
Brian Gough
======================================================================
Network Theory Ltd Phone: +44 (0)117 3179309
15 Royal Park WWW: http://www.network-theory.co.uk/
Clifton Email: bjg at network-theory dot co dot uk
Bristol BS8 3AL
======================================================================
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:29:14 CST
From: Mark Lord <mlord@pobox.com>
Subject: hdparm-4.3 : get/set IDE disk parameters
The latest version 4.3 of "hdparm" has been uploaded to
http://www.ibiblio.org/pub/Linux/system/hardware/hdparm-4.3.tar.gz
hdparm is a Linux utility for viewing/manipulating various
IDE drive and driver parameters. Most systems can benefit
from improved performance using a command sequence similar to this:
#!/bin/sh
for d in /proc/ide/hd* ; do
if [ `cat $d/media` = 'disk' ]; then
hdparm -qm8 -qu1 -qc1 -qd1 -qW1 /dev/${d##*/}
elif [ `cat $d/media` = 'cdrom' ]; then
hdparm -qu1 -qd1 /dev/${d##*/}
fi
done
This latest version includes minor fixes for newer kernels/compilers,
and a completely rewritten "-I" (Identify Drive) option, with tons more
information output than previous versions.
--
Mark Lord
Real-Time Remedies Inc.
mlord@pobox.com
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:29:21 CST
From: Rob <hardcorepush@subdimension.com>
Subject: Linux Portal
I hae put togther a little linux portal with some nice resources. Check
it out at
http://otrobert.tripod.com/homepage.html.
no funds are generated by the page. email comments to
hardcorepush@subdimension.com
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:29:14 CST
Subject: [ADMIN] comp.os.linux.announce report for Mon Nov 12 00:05:02 CST 2001
From: cola-admin@stump.algebra.com
Reply-To: cola-admin@stump.algebra.com
=====BEGIN PGP SIGNED MESSAGE=====
Subject: comp.os.linux.announce report for Mon Nov 12 00:05:02 CST 2001
Newsgroups: comp.os.linux.announce
Date: Mon Nov 12 00:05:02 CST 2001
This is an automated report about activity of our newsgroup
comp.os.linux.announce. It covers period between the
previous report and the current one, ending
on Mon Nov 12 00:05:02 CST 2001.
Note that we do not report the number of articles cancelled
after they got approved, because the cancellations are done
manually. Typically messages get cancelled by requests of
posters themselves.
Lastly, the statistics below are skewed towards higher numbers because
there are always some test messages from moderators themselves who
approve and reject them to make sure that our robomoderator functions
properly.
Approved: 525 messages
Rejected: 1094 messages
=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: noconv
iQBVAwUBO+9mlCFvAtx2nXvNAQH4vgH+OdgKDy/sjAeYysO5NrIaDVEGgFEG6Fqc
QAXKuJwRe/x97i7NmEx+02TTY0nTB4MuD6DvkYzMaBI8YoF+mYeZtQ==
=nHbu
=====END PGP SIGNATURE=====
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:29:21 CST
From: Ed Centanni <ecentan1@tampabay.rr.com>
Subject: Suncoast LUG Meeting Announcement
WHEN AND WHERE:
15 November 19:00-21:00 Brandon II
(third Thursday of each month)
Computer Advantage Store
217 Brandon Town Center Drive
Brandon, FL
Across the street from Barnes & Noble, next to Target and Honey
Baked Hams. See the SLUG website
(www.suncoastlug.org/meetings.html) for directions.
27 November 19:00-21:00 Sarasota
(fourth Tuesday of each month)
Certification, Inc.
2033 Wood Street Suite 220
Sarasota, FL 34237
See the SLUG website (www.suncoastlug.org/meetings.html) for
directions.
24 November 09:30-12:00 Dunedin
(fourth Saturday of each month)
Dunedin Public Library,
223 Douglas Ave.,
Community Room A.
Dunedin
1 December 13:00-15:00 New Port Richey
(first Saturday of each month)
New Port Richey Public Library
(second level meeting rooms)
5939 Main St.
New Port Richey
6 December 20:00-22:00 Brandon
(first Thursday of each month)
Brandon Barnes & Noble
Brandon Town Center Brandon, FL
Take I-4 East to I-75 South. Go south on 75 to the second exit
(Hwy 60, Exit 53). Head left (east) under the overpass, and
make sure you're in the right lane. When you go to the
entrance for Brandon Town Center, you'll see Barnes & Noble
on your immediate right.
12 December 19:00-21:00 Tampa
(second Wednesday of each month)
PricewaterhouseCoopers -- Room 684
3109 W. Dr. Martin Luther King Jr, Blvd
Lakepointe I Building
Tampa, FL 33607
See the SLUG website (www.suncoastlug.org/meetings.html) for
directions.
ACTIVITIES:
Meetings include:
1) Presentations: to be announced
2) Question & Answer Session.
3) Raffle and free stuff!
Bring your boxes, questions, problems, and plenty of good cheer!
(And don't forget to start your installs early!)
FOLLOWING MEETINGS:
20 December 19:00-21:00 Brandon II
(third Thursday of each month)
22 December 09:30-12:00 Dunedin
(fourth Saturday of each month)
3 January 20:00-22:00 Brandon
(first Thursday of each month)
5 January 13:00-15:00 New Port Richey
(first Saturday of each month)
9 January 19:00-21:00 Tampa
(second Wednesday of each month)
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:29:41 CST
From: sanface@sanface.com (SANFACE Software)
Subject: SHAREWARE: jpg2pdf 2.3
What is jpg2pdf?
jpg2pdf is a very flexible and powerful PERL5 program. It can convert
a collection of jpeg images into a PDF album.
You can use jpg2pdf like a module inside your applications (cgis,
...).
Why do you need jpg2pdf?
jpg2pdf is a PERL5 tool, so you can use it in every OS supported by
PERL5
we distribute also these executable versions: Windows, Solaris, HP-UX,
Linux, AIX
jpg2pdf is a native converter, you don't need to pass through
PostScript format
jpg2pdf is specific to put your jpeg images inside a PDF, so
you can create (batch) a unique PDF file from your JPEG archive (using
* and ? metachars: e.g. a*.jpg or recursively)
you can add to your PDF collection of jpeg images transition effects
you can set PDF full-screen mode e.g. to show to your friend your
digital photos made by your digital camera
you can create your personalize background and foreground layer
What's new:
Windows self extracting distribution with uninstaller
New image examples
Minor fix
Test jpg2pdf 2.3!
You can find it at http://www.sanface.com/jpg2pdf.html
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:29:41 CST
From: Murray Hobbs <murray@efone.com>
Subject: eFone Corporate Server released
eFone International Pty Ltd today anounced the release of a version of
it's high volume email to Short Message gateway suite targeted at the
corporate user and corporate integrator markets.
5 user licences are offered free and all configurations are available
for trialing.
The eFone suite runs on Redhat Linux ad SUN Solaris operating systems.
Further details available at http://www.efone.com
eFone Team
ps - aplogies for cross or miss post of this announcement
replies to info@efoneA-DOT-HEREcom
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:30:07 CST
From: <jataka@sbcglobal.net>
Subject: Delta and Linux
Did you know that Delta airlines uses Linux to do their inflight
entertainment systems? Perhaps there's some market there to push Linux
further ...
Ciao,
- V -
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:30:07 CST
From: Hal Burgiss <hburgiss@bellsouth.net>
Subject: Security Quickstart HOWTO Release
Reply-To: Hal Burgiss <hal@foobox.net>
This document is a an overview of the basic steps required to secure a
Linux installation from intrusion. It is intended to be an
introduction, and is targeted at those new to Linux.
http://linuxdoc.org/HOWTO/Security-Quickstart-HOWTO/index.html
A Red Hat specific version:
http://linuxdoc.org/HOWTO/Security-Quickstart-Redhat-HOWTO/index.html
--
Hal Burgiss
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Thu, 15 Nov 2001 06:30:15 CST
From: Richard Gooch <rgooch@ras.ucalgary.ca>
Subject: [ANNOUNCE] Karma v1.7 is released
Version 1.7 of the Karma library is now available for ftp. The Karma
library is a general purpose programmers toolkit (see below).
Karma is available for anonymous ftp from: ftp.atnf.csiro.au
under the pub/software/karma directory. Both the source code and binary
distributions are kept here. The source code is available free of charge.
There is also a WWW page for the library:
http://www.atnf.csiro.au/karma/
Notable changes since 1.6:
1) New User and Programming manuals and complete Unix manual pages
for all library packages and functions
2) New tool <kview> which allows you to load 2 datasets and switch
between them in various ways
3) Improved axis labelling
4) Support for automatic uncompression of Karma and FITS files
5) Support DRAO, AIPS, AIPS++ and IRAF data formats
6) Many more features and new tools
7) Various bugfixes.
See the release notes for more details. Below are README extracts:
Regards,
Richard....
Permanent: rgooch@atnf.csiro.au
Current: rgooch@ras.ucalgary.ca
===============================================================================
Karma
A powerful programmers toolkit
Introduction
============
Karma is a toolkit for interprocess communications, authentication,
encryption, graphics display, user interface and manipulating the
Karma network data structure. It contains KarmaLib (the structured
libraries and API) and a large number of modules (applications) to
perform many standard tasks.
A wide range of visualisation applications have been developed with
Karma.
Overfile of file layout
=======================
When files and directories are referred to, they are given relative to
the root Karma directory (environment variable KARMABASE if
defined). This is usually /usr/local/karma
Please see the file INSTALL for instructions on how to install Karma.
The update policy for Karma is in the file doc/update-policy
The README.lib file contains documentation for the Karma libraries.
The doc/modules directory contains documentation for the various
Karma modules. This directory may be a little sparse...
The doc/howto directory contains information on how to make good use
of some of the more interesting packages in KarmaLib.
The doc/widgets directory contains information on the Karma Widgets
library. This directory may be a little sparse...
Mailing lists
=============
Please mail any bug reports to: karma-bugs@atnf.csiro.au
No warranty, express or implied should be inferred by this mailing
address.
If you want to be added to the mailing list (to find out what's
changed with Karma), please mail the request to:
karma-request@atnf.csiro.au
This mailing list is VERY important: as bugs are fixed and
enhancements made to Karma, this is your only way of finding out about
these changes. This mailing list only contains announcements of public
releases (i.e. full releases with source code), which occur once or
twice a year. If you want to receive announcements of beta releases
(binary-only distributions), which occur once or twice a month, please
mail the request to:
karma-beta-request@atnf.csiro.au
If you have any suggestions for Karma, please mail them to:
karma-suggestions@atnf.csiro.au
FTP and WWW site
================
Karma is available for anonymous ftp from:
ftp://ftp.atnf.csiro.au/pub/software/karma/
Both the source code and binary distributions are kept here. The
source code is available free of charge. There is also a WWW page for
the library:
http://www.atnf.csiro.au/karma/
The Karma World Wide Web page is: http://www.atnf.csiro.au/karma/
This provides online access to the documentation and ftp site.
You are urged to get the binary distribution if possible, as this will
save you the effort of building from source.
When connecting to the ftp server, check the modification dates on the
source distribution and the binary distribution. If the source
distribution is much newer than the binary distribution you want, this
means that the binary distribution is out of date. Please send an
Email request to:
karma-suggestions@atnf.csiro.au
for a rebuilt version to be made available. I don't have local access
to many machines, so I don't rebuild automatically for every
platform.
Copyleft
========
Karma modules use the GNU General Public License, version 2 or later.
For the complete text of this license, please see the file:
doc/COPYING
These programmes are free software; you can redistribute them and/or modify
them under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
These programmes are distributed in the hope that they will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this software; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
KarmaLib uses the GNU Library General Public License, version 2 or later.
For the complete text of this license, please see the file:
doc/COPYING.LIB
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
===============================================================================
KarmaLib
A Structured Library for Signal and Image Processing and Visualisation
Karma is a package for signal and image processing applications. It
contains KarmaLib (the structured library and API) and a large number of
modules (applications) to perform many standard tasks.
KarmaLib provides routines to simplify the interface to the operating system.
This includes process management and a powerful connection package. Using a
Connection Management tool, the applications developer can launch and
connect a number of modules (processes) on a network with ease. The
communications support in KarmaLib forms one of the major components to the
library. Full authentication and encyption support is included, making the
development of secure, network-aware applications trivial.
It also provides a highly extensible, recursive, heirarchical data structure
with extensive library support. This data structure may be accessed in a very
portable, generic fashion by applications and may also be accessed directly
when speed is critical. By supplying powerful library routines, data
structures may be accessed in an abstract way, removing the need for the
applications programmer to write code to deal with complex data structures
while also allowing users to pass increasingly complex data structures to
modules without the need for recompiliation.
The applications programmer is left to concentrate on processing simple
sub-structures (typically 1, 2 or 3 dimensional arrays) without incurring
any processing overhead. Tiling of multi dimensional arrays is supported
transparently, and, using special indexing techniques (also transparent to
the application), incur no performance overhead.
The library also supplies routines to allow the programmer to transfer data
structures as objects to and from named objects (disc files and network
connections) without requiring the programmer to pay any attention to data
formats, byte swapping machines, word sizes, etc. All data transfers are
highly optimised to take advantage of the features of any particular platform
and operating system.
In addition, data structures may be automatically memory mapped from disc
into the process address space, yielding enormous peformance increases when
reading large data structures from disc, and also saving swap space.
Another major component of KarmaLib is the display support. The display
system both provides an abstract interface to the underlying graphics system
(ie. the X window system), and also provides much higher level functionality
than many graphics libraries. As well as supporting simple geometric
primitives and text display, a powerful and flexible image display system is
included. This allows the direct mapping of application data structures
(ie. 2-D and 3-D arrays) to display windows (canvases). These images may be
animated at high speed (such as in a movie tool). The complex machinery
required to handle window resize and refresh events, as well as other events
(ie. mouse events) is built into the display system.
Other facilities such as graphics overlay lists (which are easily networked
and shared amongst processes), image editing (a simple painting mechanism,
also newtork shareable) and axes display are also supplied.
KarmaLib is structured into many "packages", which are collections of
routines. All the routines in each package have a designated prefix.
For example, the data structure manipulation routines all have the prefix:
ds_
The include file needed for each package is based on the common prefix.
For example: karma_ds.h
The packages are also layered. Level 1 packages are the lowest level, and
depend directly on the operating system. Higher level packages are
dependent on one or more packages at lower levels. A package at one level is
not dependent on any other package at the same or higher level.
The number of letters in a package's prefix indicates the level of the
package. So, for example, the data structure manipulation routines are a
level 2 package.
In many cases, certain functionality is provided in packages at various
levels. With few exceptions, the highest level packages are recommended for
use, as these provide the greatest flexibility, ease of use and are also more
highly optimised.
The library is divided into a number of individual libraries. The "core"
library is linked with -lkarma . This library depends on the Operating
System, standard C, math and termcap(3) libraries.
For normal Unix systems, link with (using cc as your linker):
-lkarma -ltermcap -lm
For the VX/MVX, link with:
-lkarma -ltask -lm
The X11 interface to Karma must be linked with: -lkarmaX11 -lXext -lX11
The XView interface to Karma must be linked with:
-lkarmaxview -lxview -lolgx -lX11
The Xt interface to Karma must be linked with:
-lkarmaXt -lXt -lX11
The Karma graphics library must be linked with zero or more other libraries,
depending on the platform.
For X11 based graphics, compile with:
-DX11
and link with:
-lkarmagraphics -lXext -lX11
For VX based graphics, link with:
-lkarmagraphics -lkarmavx -lwm
The Karma Widgets library is a collection of Xt widgets in alpha development:
the normal structure of Karma is not followed here: not sure how to
structure it yet. The documentation is in the source files :-)
Below is a brief table of all the packages and the routines which they
are comprised of. For the complete API for a package, see the manual pages
or the Karma WWW page (http://www.atnf.csiro.au/karma/).
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: Linux-Announce-Request@NEWS-DIGESTS.MIT.EDU
You can submit announcements to be moderated via:
Internet: linux-announce@NEWS.ORNL.GOV
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Announce Digest
******************************