[3605] in linux-announce channel archive

home help back first fref pref prev next nref lref last post

Linux-Announce Digest #896

daemon@ATHENA.MIT.EDU (Digestifier)
Mon Dec 18 18:13:12 2000

Message-ID: <20001218231305.18569.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:     Mon, 18 Dec 00 18:13:03 EST

Linux-Announce Digest #896, Volume #3            Mon, 18 Dec 00 18:13:03 EST

Contents:
  autoproject 0.10 ("James R. Van Zandt")
  WWW: Issue #22 of Georg's Brave GNU World, the monthly GNU forum has been released. ("Georg C. F. Greve")
  rp-pppoe 2.5 -- Robust PPPoE client for Linux, NetBSD, Solaris and Mac ("David F. Skoll")
  MIMEDefang 0.6 -- flexible mail scanner for virus/trojan protection ("David F. Skoll")
  Linux SW Infrastructure for CompactPCI Hot Swap: GO-HotSwap v.4.42 released (Limor Shmerling)
  LOCAL: Kalamazoo, MI; KLUG; Helix Gnome; 19-Dec-2000 (Chris Gidman)
  COMMERCIAL: Accelerated-X Laptop support for the IBM Thinkpad T21 (Debbie Kreuser)
  CONFERENCE: SLC 2001: Call for Papres (Sanjeev Gupta)

----------------------------------------------------------------------------

From: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Subject: autoproject 0.10
Date: Mon, 18 Dec 2000 23:00:35 GMT

=====BEGIN PGP SIGNED MESSAGE=====


I'm releasing a new version of autoproject.  

autoproject now supports argp, the command line parser in the GNU C
Library.  (Thanks to Kalle Olavi Niemitalo <kon@iki.fi>)

Generated projects that use an internal parser now include getopt_long
in the sources, so the projects build even without the GNU C Library.
(Thanks to Matthew Whitworth <matthew@okcomputer.org>)

Here are the recent entries in the changelog:

2000-12-10  James R. Van Zandt  <jrv@vanzandt.mv.com>

        * configure.in: version 0.10.  argp support, courtesy of Kalle
        Olavi Niemitalo <kon@iki.fi>:
        * README: Document argp support.
        * autoproject.1: Ditto, and fixed autogen -> autoproject.
        * autoproject.in <STDPARSERS>: Added argp.
        <optionsub>: Anchor ends of regexps too.
        * lib/cli/all/argp/program.1: New file, adapted from
        lib/cli/all/none/program.1.  Added equal signs between long
        options and their parameters.  In lists of equivalent options,
        print the commas and spaces in Roman font.  Describe --usage.
        * lib/cli/all/argp/program.texinfo: New file, adapted from
        lib/cli/all/none/program.texinfo.  Changed every @code{#NAME#} to
        @command{#NAME#}.
        (Sample): Copied the --help example from the real output and
        conditionalized it to show only selected options.
        (Invoking #NAME#) <--output, --directory, --cd>: Added equal signs
        between long options and their parameters.  Use @var for
        parameters.
        <--silent>: Use @itemx, not @item.
        <--verbose>: This is -v, not -V.
        <--version>: This is -V, not -v.
        <--help>: This is -?, not -h.
        <--usage>: New option.
        (Problems): Use @email.
        * lib/cli/c/argp/Makefile.am: New file, copied from
        lib/cli/c/none/Makefile.am.
        * lib/cli/c/argp/configure.in: New file, copied from
        lib/cli/c/none/configure.in.  Fail if argp.h is not found.
        * lib/cli/c/argp/program.c: New file, adapted from
        lib/cli/c/none/program.c.
        * lib/cli/c/argp/xmalloc.c: New file, copied from
        lib/cli/c/none/xmalloc.c.
        * TODO: argp support is ready, so added some more tasks :-)
        * autoproject: -L argument may use relative path.
        * lib/cli/c/none/getopt.c: include getopt.c, getopt1.c, getopt.h
        in project code unless an external parser is used (in case build
        machine does not use the GNU C Library). (Fix courtesy of Matthew
        Whitworth <matthew@okcomputer.org>)

2000-11-03  James R. Van Zandt  <jrv@vanzandt.mv.com>

        * README: update autoopts pointers.

2000-10-11  James R. Van Zandt  <jrv@vanzandt.mv.com>

        * configure.in: version 0.9.2
        
        * README: autoproject output files may be used without restriction.

2000-09-30  James R. Van Zandt  <jrv@vanzandt.mv.com>

        * configure.in: version 0.9.1

        * lib/cli/c/none/program.c (decode_switches): generate code for
        --verbose (thanks to "Chris F.A. Johnson" <c.f.a.johnson@home.com>).
        Use an enum instead of magic numbers for getopt_long return codes.

2000-09-20  James R. Van Zandt  <jrv@vanzandt.mv.com>

        * configure.in: version 0.9

        * lib/cli/all/none/program.texinfo, lib/cli/all/none/program.1:
        the long option --version corresponds to short option -V rather
        than -v, and long option --verbose corresponds to short option -v
        (thanks to Ulrik Haugen <qha@lysator.liu.se>)

        * lib/cli/c/none/Makefile.am (EXTRA_DIST): `#NAME' should be
        `#NAME#' (thanks to Ulrik Haugen <qha@lysator.liu.se>)

2000-07-27  James R. Van Zandt  <jrv@vanzandt.mv.com>

        * autoproject.in (STDPARSERS): -L requires an argument when using
        getopts.

2000-07-25  James R. Van Zandt  <jrv@vanzandt.mv.com>

        * autoproject.1: document use of GNU getopt.

        * autoproject.in: help text is now a here document instead of a
        collection of echo statements.
        If GNU getopt is not detected, use getopts instead.


autoproject may be downloaded from here:
        http://www.mv.com/ipusers/vanzandt/
        ftp://metalab.unc.edu/pub/Linux/devel


from README:

        autoproject - create a skeleton source package for a new program

autoproject interviews the user, then creates a source package for a
new program which follows the GNU programming standards.  The new
package uses autoconf to configure itself, and automake to create the
Makefile.  `make distcheck' succeeds.

The idea is that you execute autoproject just once when you start a
new project.  It will ask a few questions, then create a new directory
and populate it with standard files, customized for the new project.

The version number for the new program is initialized as 0.1.0, and is
set in configure.in.  It is available in C programs as the macro
VERSION, and in the Makefile as $(VERSION).

Optionally, the new package will use an external command line parser
or a parser generator.  Currently, autoproject supports:

        argp by Miles Bader, included in GNU C Library 2.1
        clig by Harald Kirsch <kir@iitb.fhg.de> 
                (see http://wsd.iitb.fhg.de/~kir/clighome/)
        autogen by Bruce Korb <bkorb@gnu.org>
                (see http://AutoGen.SourceForge.net/autoopts/)

I would like to support graphical user interface (GUI) as well as
command line interface (CLI) programs, but I have very little
experience with them.  Contributions would be welcome.

For the latest version, check here:
        http://www.mv.com/ipusers/vanzandt/
        ftp://metalab.unc.edu/pub/Linux/devel

autoproject itself is distributed under the GNU General Public License.
As a special exception to the GNU General Public License, you may
use the files generated by autoproject without any restriction.


        - James R. Van Zandt <jrv@vanzandt.mv.com>



- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6XE1rUI/eHXJZ5AQGBPgP8C65/QvoIPipNwbb3dwOhlWT/z687FGDL
z8WLiHGQnPR5IKqke3Dsh9LlJphoHW8AQ2WySRktTQIx2gx1rwvEksga4aqfT4eX
kbX82pjiRNpISbwm+I28wa4zdFGWEb/C2GLl4Ruzw2Z7uCa/B1fJyctpQ2fHqXgF
R/Zrm65Su0A=
=zpgn
=====END PGP SIGNATURE=====

------------------------------

From: "Georg C. F. Greve" <greve@gnu.org>
Subject: WWW: Issue #22 of Georg's Brave GNU World, the monthly GNU forum has been released.
Date: Mon, 18 Dec 2000 23:02:00 GMT

=====BEGIN PGP SIGNED MESSAGE=====


[Please repost and forward this article widely, wherever it
is appropriate.]


                Issue #22 of Georg's Brave GNU World, 
                the monthly GNU forum has been released.
                                                -- Georg Greve



Hi !

Issue #22 of the column is now online and it can - as usual - be found
on the GNU Webpage and its mirrors. Otherwise just follow the links at
the end of this posting.

Georg's Brave GNU World is a monthly column which is being released
simultaneously in five languages (English, German, French, Japanese
and Spanish) on the web and printed in the German "Linux-Magazin" as
well as the "Linux Magazine" U.K. and the "Linux Magazine France."
This makes it the monthly column with the widest distribution
worldwide (afaik).

If you would like to receive mail about new issues directly, you can
subscribe to the "Brave GNU World" announcement mailinglist. Just
send mail to <brave-gnu-world-request@gnu.org> with "subscribe" in
the *body*. The mailinglist is only for announcements that are related 
to the "Brave GNU World" and is of very low volume (between 1 and 2
mails a month).

The 22nd issue covers the following topics:

 * CGIBurn              ( comfortable CD-writing in a multi-user
                                environment ) 

 * Multiple             ( finding & deleting duplicate files )

 * diff2html & dv       ( nicer diff usage )

 * GNU GRUB             ( the king of boot loaders )

 * Free Software Foundation Europe
                        ( building a stronghold for Free Software in
                                Europe )

 * GNU Business Network ( interfacing the GNU Project and businesses )


This column intends to provide a forum for all GNU maintainers,
friends and associates and I am always open to suggestions. So if  
you 

 * have questions about the GNU Project that might be of general
   interest 

 * have a GNU Project and would like to improve its profile

 * would like to start a GNU Project you are looking for people to
   start it with 

 * think something doesn't get the publicity it deserves

 * would like to see something made public

send mail to:

        "Brave GNU World <column@gnu.org>"


This column is for everyone with an interest in Free Software,
so donīt hesitate to contact me if your project is under the
GPL/LGPL and youīd like to see it introduced here.

The 22th issue can be found at

  http://www.gnu.org/brave-gnu-world/issue-22.en.html
  [ English version ]

  http://www.gnu.org/brave-gnu-world/issue-22.fr.html
  [ French version ]

  http://www.gnu.org/brave-gnu-world/issue-22.de.html
  [ German version ]

  http://www.gnu.org/brave-gnu-world/issue-22.ja.html
  [ Japanese version ]

  http://www.gnu.org/brave-gnu-world/issue-22.es.html
  [ Spanish version ]

or via the "Brave GNU World" homepage

  http://www.gnu.org/brave-gnu-world/brave-gnu-world.en.html
  [ English version ]

  http://www.gnu.org/brave-gnu-world/brave-gnu-world.fr.html
  [ French version ]

  http://www.gnu.org/brave-gnu-world/brave-gnu-world.de.html
  [ German version ]

  http://www.gnu.org/brave-gnu-world/brave-gnu-world.ja.html
  [ Japanese version ]

  http://www.gnu.org/brave-gnu-world/brave-gnu-world.es.html
  [ Spanish version ]


Thatīs it for now...

Regards,

                Georg Greve


- -- 
Georg C. F. Greve                                       <greve@gnu.org>
Free Software Foundation Europe              (http://www.fsfeurope.org)
Brave GNU World                            (http://brave-gnu-world.org)




- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6XaFrUI/eHXJZ5AQFKEwP9ETQkZGnmxyo2WNDCY+IUsxQExSyRpUY8
iYtoulxBJbQLha4sA7o9hxVvp/EnQz1e/n5QPHLnN8xkeHhC2Gx9IfRD4ycwBdUu
+wrU9013iV1H0VR57ZjCWlfvC00ytCEgUKqU5T1j3znfG73FmEeXL7pEbBnZ/Qbb
B1/fncP2tHM=
=P6nx
=====END PGP SIGNATURE=====

------------------------------

From: "David F. Skoll" <dfs@roaringpenguin.com>
Subject: rp-pppoe 2.5 -- Robust PPPoE client for Linux, NetBSD, Solaris and Mac
Date: Mon, 18 Dec 2000 23:01:09 GMT

=====BEGIN PGP SIGNED MESSAGE=====


Version 2.5 of rp-pppoe has been released.  Users of earlier versions
are strongly recommended to upgrade; see the CHANGES section.  This
release fixes a denial-of-service vulnerability in earlier versions, and
tightens the security of the adsl-setup script.

rp-pppoe is a user-mode client and server for the Point-to-Point
Protocol over Ethernet, a protocol used by many ADSL service providers. 
It runs on standard Linux kernels (2.0 or 2.2; no kernel modification
required), NetBSD and Solaris.  rp-pppoe is released under the GNU
General Public License, and can be obtained from:

        http://www.roaringpenguin.com/pppoe/

Changes from version 2.4:

Tested for zero-length TCP option-length field, and for reverse-packing
of type/code bitfields.  Thanks to Robert Schlabbach (of RASPPPOE fame)
for pointing out these problems.

Set umask to 077 in adsl-setup.in to protect created files like
/etc/ppp/pap-secrets.

David F. Skoll
Roaring Penguin Software Inc. | http://www.roaringpenguin.com
GPG fingerprint: 50B4 FA66 CE95 E456 CD8F  96C9 E64D 185C 6646 68E0
GPG public key:  http://www.roaringpenguin.com/dskoll-key.txt



- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6XNVrUI/eHXJZ5AQEnqAQAwu6+EZu+5yNVq6wV8dE8cvuEsJV0Uw87
Aq+RDBbg1J4rUr9xjsktF/IR4jUJTSf6DiBa/f57n+3XrsUI6juyAlMUQRMxOOBI
HAubTLWHpy4455jGlevaPcAhHqyR6ubZvBS3ZnRhs53A5ISVF+JeJhF1uMFBBbnH
H5dyf8aw4xQ=
=nfSd
=====END PGP SIGNATURE=====

------------------------------

From: "David F. Skoll" <dfs@roaringpenguin.com>
Subject: MIMEDefang 0.6 -- flexible mail scanner for virus/trojan protection
Date: Mon, 18 Dec 2000 23:01:41 GMT

=====BEGIN PGP SIGNED MESSAGE=====


MIMEDefang is a MIME mail scanner designed to run on Linux or UNIX
systems, and intended mainly to protect Windows e-mail clients from
mail-borne viruses.  It requires Sendmail 8.11.

MIMEDefang is available from:

        http://www.roaringpenguin.com/mimedefang

and is released under the GNU General Public License.

I would like to thank Robert A. Levene for spending a lot of time testing
pre-release versions of MIMEDefang and shaking out many problems.

Changes since 0.5:

o Built-in re_match functions are case-insensitive.  If you use these
  functions, you should upgrade ASAP unless you have written your regular
  expressions to be case-insensitive.

o Better handling of weird cases which used to cause problems with MS Outlook.

o Correct handling of single-part MIME messages.

o Integration with H+BEDV anti-virus scanner.

o Additional filter options and actions.


- --
David F. Skoll
Roaring Penguin Software Inc. | http://www.roaringpenguin.com
GPG fingerprint: 50B4 FA66 CE95 E456 CD8F  96C9 E64D 185C 6646 68E0
GPG public key:  http://www.roaringpenguin.com/dskoll-key.txt



- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6XVVrUI/eHXJZ5AQFOLQP/S4pOY7COIaFvFARIzeaezSZBnnrOyXxj
T1b9u4VTbrAUUZ9XPoPgDqlaAuv/zUFyoDbkrBdyYDFf+udp75APUlW9YuLexOaS
sQ3p+R9hHiRcM0p9K9YyZG6+XKJcFFFO8eZUikMMNsxx+/c7fZTbEh6VYxKD4GoZ
FG7/3QBZvCc=
=1fBM
=====END PGP SIGNATURE=====

------------------------------

From: limors@jungo.com (Limor Shmerling)
Subject: Linux SW Infrastructure for CompactPCI Hot Swap: GO-HotSwap v.4.42 released
Date: Mon, 18 Dec 2000 22:58:53 GMT
Reply-To: limors@jungo.com

=====BEGIN PGP SIGNED MESSAGE=====


Jungo Ltd. (www.jungo.com) announces release of GO-HotSwap Version
4.42 for Linux / Embedded Linux / Windows 9x / 2000 / NT / NT embedded
(also available from Jungo, v.4.41 for Solaris and v4.40 for VxWorks).


GO-HotSwap v4.42 features:

·       Improved Kernel Mode Engine
This improvement was primarily fixing known bugs and imperfections
from version 4.41, 
Providing a better mechanism for managing and administrating the
CompactPCI bus - resources management and allocation, enumeration,
event dispatching, and PCI device registers initialization. 

·       Improved User Mode Manager 
Enabling better implementation of Hot Swap capabilities with legacy
PCI drivers.

·       New utilities library
Enabling dynamic loading or unloading of PnP style drivers that were
written for Windows 2000 without originally supporting Hot Swap. Now
GO-HotSwap supports legacy PCI drivers for all supported operating
systems, as well as legacy PnP style drivers for Windows 2000.

·       Jungo's new version release of driver development tools -
WinDriver v.4.33
Together with GO-HotSwap it enables easy development of Hot Swappable
drivers from scratch. 

For more info: limors@jungo.com




- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6WsFrUI/eHXJZ5AQE1nQP/QmbHir2ngRllMgTHXC0mXs+umxI1VqwA
e1mbOoi9ftLnR421VoVuHm8j3VAoQDK6tKEbobIsAhqEfzSqEMCIB1Fv1NN149kB
TLqRugg6t0lK/lvcufSm+xJ0P8CcCFMXR1c/uGqkiyiRD+8pbrK2EIEcKYF1qwmW
7h/Pvr69BlM=
=uBPO
=====END PGP SIGNATURE=====

------------------------------

From: Chris Gidman <cjgidman@yahoo.com>
Subject: LOCAL: Kalamazoo, MI; KLUG; Helix Gnome; 19-Dec-2000
Date: Mon, 18 Dec 2000 23:03:03 GMT

=====BEGIN PGP SIGNED MESSAGE=====


Date        : 19-Dec-2000
Presentation: Helix Gnome
Presenter   : Brian Ritz

We've heard it said very often that GNOME is "more than a window
manager," but what is GNOME really? What does Helix GNOME offer over the
stock GNOME shipping on some current Linux distributions?  We'll answer
most of those basic questions about GNOME along with how to "upgrade
your GNOME" to Helix, and how to keep it current.  Brian will also show
you why this is worth the effort.  Join us as we cover some of the GNOME
components such as: GNOME-print, Bonobo, CORBA and GNOME-db.  One charge
leveled against Linux has always been that there is a lack of
applications, although many feel this is no longer true.  With this
component technology, it will be easier for software developers to
create complex, reliable, and consistent well-integrated applications.
Then watch out world, here comes Linux! 

Brian Ritz is currently the Intranet Content Manager for Morrison
Industries and has been working with Linux almost exclusively as a user
of the Whitemice.Org network. He is pursuing a degree in Finance from
Grand Valley State University and a UNIX System Administration
Certificate from Grand Rapids Community College.

We meet weekly, each Tuesday at 7:00 PM. Our meeting site is Room 4202
of Dunbar Hall on the campus of Western Michigan University.


For more information about the Kalamazoo Linux Users Group please visit
our website:

    http://www.kalamazoolinux.org

For a complete list of upcoming meetings, go directly to:

    http://www.kalamazoolinux.org/meetings/schedule.php3

For detailed directions to the KLUG meeting site, visit:

    http://www.kalamazoolinux.org/meetings/maps.html

To find out how to obtain a copy of BS-Ware, visit

    http://klug.kalamazoolinux.org/bsware/



- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6Xp1rUI/eHXJZ5AQEWagP9E7KhnRg4pMRhjgZT1CSRrAkiunRYrnyY
lRJgxL747vDVT+roo0yBgVSn3UJloCyJg5aHtCZJB9avH+LYQd228n8YASBcLYzv
TP9Zdr8RJxtboXVnc1/mEiqhe3RvOQfiOZSum90cVqBhgQ5ZL9fAGxMHFXk8uHvz
Yysyp3fzKMY=
=4961
=====END PGP SIGNATURE=====

------------------------------

From: Debbie Kreuser <deb@xig.com>
Subject: COMMERCIAL: Accelerated-X Laptop support for the IBM Thinkpad T21
Date: Mon, 18 Dec 2000 23:04:13 GMT
Reply-To: deb@xig.com

=====BEGIN PGP SIGNED MESSAGE=====


Xi Graphics is pleased to announce fully accelerated support for the IBM
Thinkpad T21 in the newly announced Accelerated-X Display Server,
version 6.  

This update provides fully accelerated support at 8, 16 and 24 bits per
pixel.  The T21 also supports DualView in SLS mode.  Please disable
screen blanking in the BIOS, since Accelerated-X takes care of screen
power management on its own.  If you want the highest performance from
your laptop, configure the power management options in the BIOS that
affect system speed.  This update was tested on the T21 with 8MB of
video memory.

Benchmarking was performed on the Thinkpad T21 with 8MB of video memory,
and, at 24-bit color depth, the results of the test for the
Accelerated-X server versus the corresponding XFree server and Metrolink
server are shown below along with the locations of the update and its
text file.

Xaccel: 18.5 Xmarks
XFree86: No support
XMetro: No support

ftp://ftp.xig.com/pub/updates/accelx/laptop/6.0/L6000.001.tar.gz
ftp://ftp.xig.com/pub/updates/accelx/laptop/6.0/L6000.001.tar.Z
ftp://ftp.xig.com/pub/updates/accelx/laptop/6.0/L6000.001.txt

More information, including installation instructions, can be found in
the .txt file.

This driver update can be applied against Laptop Accelerated-X v6.0 or
the demo version of Laptop Accelerated-X.




- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6X7VrUI/eHXJZ5AQEnXwP8CzjZTm3S0O4E8LrdNxWkSthEgStrH6W+
DbD/0Y9mjchzLkOTBiSLsKGGmCVmlDGXOxhRMXVFMS6bGr00Tzqgz14ZSbvyFz0+
Ly8a5S8+itb9wq9cQwDRlJr/d3GTOcSQOyC0sC8SvpD1mmkWZr3jG62VxMqO7GPl
ftYoK+a+gPo=
=odGl
=====END PGP SIGNATURE=====

------------------------------

From: Sanjeev Gupta <ghane@texas.dotxtra.com>
Subject: CONFERENCE: SLC 2001: Call for Papres
Date: Mon, 18 Dec 2000 23:03:11 GMT

=====BEGIN PGP SIGNED MESSAGE=====


                FIRST CALL FOR PAPERS
     Singapore Linux Conference / LinuxWorld 2001
             March 21-24 2001, Singapore

This annual conference and expo, started in 1999, aims to draw
world-renowned experts in the exciting field of Linux and
showcase the state-of-the-art in Linux and Computing in the IT
hub of South-East Asia, Singapore. In this third edition, we
plan a conference which will focus on the growth of Linux as a 
broadly available and used platform.


CONFERENCE

Papers are invited for presentation during the Conference, which will
be held on Thursday, 22nd, and Friday, 23rd March.  Following last
year's success, there will be two tracks, "Business" and "Technical".
The topics below are meant to indicate the possible variety of areas,
they should not be regarded as exhaustive.

        * Productivity Tools and Suites
 
        * Multimedia enhancements
 
        * Internationalization and Localization

        * Distributed Computing

        * Life Sciences
 
        * Embedded Linux
        * Linux PDAs
 
        * IPv6, and "personal" IP addresses
 
        * Security: DoS attacks using innocent third parties
        * Security in General
        * Network Trust
 
        * Open Standards: What value to the user?
 
        * Linux in Education
 
        * The Linux Community
        * LUGs' Experiences            

        * Software Licencing
        * The Open Source Movement

Prospective authors are requested to submit full papers for
review. Electronic submissions are strongly encouraged through email.
Hard-copy submissions are also permitted, and three copies of the
manuscript should be sent to the address below.

You may like to take a note of the following dates -

          Submission of full paper - 5th January, 2001

Papers will be rigorously reviewed by the Technical Program
Committee, and reviewers' comments will be relayed to the authors
on request in the interest of transparency.

TUTORIALS

Tutorial Sessions will be held on Wednesday, 21st March.  Tutorials have a strong
technical bias, and are intended for a more mature audience, in terms of
Computing and Programming exposure.

Prospective tutorial speakers are invited to submit proposals to
the Conference Secretariat. Each proposal should include: 

         * a summary
         * a course outline and
         * a brief biography of the speaker.

Proposals complete with the required documents should be sent
to the address below.


CORRESPONDENCE ADDRESS

        Sanjeev Gupta
        40 Kaki Bukit Place
        Singapore 416218

email: ghane@dotxtra.com
Tel: +65 9855 1208
Fax: +65 7494434

All correspondence will be acknowledged.



- --
Sanjeev "ghane" Gupta                    Mob: +65 98551208
dotXtra Pte Ltd                          Fax: +65 2275776
Singapore                                email: ghane@dotxtra.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



- -- 
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html

=====BEGIN PGP SIGNATURE=====
Version: 2.6.3ia
Charset: latin1

iQCVAgUBOj6Xr1rUI/eHXJZ5AQG0aQQAu9LmPSYWlc2quHf+C4JOlBhHuNwAaBoG
dcXQQ03hysqh5Zuy6n/fsM/Oy2821hfyOky2dnqGdFsNUdkAioJC+1B/HfdveDLC
H36sPbUZ2G3I4O6yu75SDPdRl4p1gNOazIyN68oaI4qUiD103V1VEHrvMfv7ph0n
ipQyIh3druE=
=a7Us
=====END PGP SIGNATURE=====

------------------------------


** 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
******************************

home help back first fref pref prev next nref lref last post