Check-in Number:
|
2961 | |
Date: |
2002-Dec-16 15:33:26 (local)
2002-Dec-16 14:33:26 (UTC) |
User: | rse |
Branch: | |
Comment: |
more source tree polishing |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/al/.cvsignore -> 1.1
*** /dev/null Tue Nov 26 15:07:19 2024
--- - Tue Nov 26 15:07:29 2024
***************
*** 0 ****
--- 1,11 ----
+ Makefile
+ al-config
+ al_test
+ config.guess
+ config.h
+ config.h.in
+ config.sub
+ configure
+ libtool.m4
+ ltmain.sh
+ shtool
|
|
ossp-pkg/al/README 1.2 -> 1.3
--- README 2002/12/16 14:02:45 1.2
+++ README 2002/12/16 14:33:26 1.3
@@ -5,11 +5,17 @@
|_|_|_| \___/|____/____/|_| \__,_|_|
OSSP al - Assembly Line
- Version
+ Version 0.9.0 (16-Dec-2002)
ABSTRACT
- ...FIXME...
+ OSSP al defines an abstract data type of a data buffer that can
+ assemble, move and truncate chunks of data in a stream but avoids
+ actual copying. It was built to deal efficiently with communication
+ streams between software modules. It especially provides flexible
+ semantical data attribution through by-chunk labeling. It also
+ has convenient chunk traversal methods and optional OSSP ex based
+ exception handling.
COPYRIGHT AND LICENSE
@@ -18,7 +24,7 @@
Copyright (c) 2002 Cable & Wireless Deutschland <http://www.cw.com/de/>
Copyright (c) 2002 Michael van Elst <mlelstv@dev.de.cw.net>
- This file is part of OSSP al, an abstract datatype of a data buffer
+ This file is part of OSSP al, an abstract data type of a data buffer
that can assemble, move and truncate data but avoids actual copying.
Permission to use, copy, modify, and distribute this software for
|
|
ossp-pkg/al/al.pod 1.2 -> 1.3
--- al.pod 2002/12/16 14:02:45 1.2
+++ al.pod 2002/12/16 14:33:26 1.3
@@ -95,16 +95,13 @@
=head1 DESCRIPTION
-B<OSSP al> defines an abstract type of a data buffer that can
-assemble, move and truncate data but avoids actual copying.
-
-...FIXME....
-
-It provides the following key features:
-
-=over 4
-
-=back
+B<OSSP al> defines an abstract data type of a data buffer that can
+assemble, move and truncate chunks of data in a stream but avoids
+actual copying. It was built to deal efficiently with communication
+streams between software modules. It especially provides flexible
+semantical data attribution through by-chunk labeling. It also
+has convenient chunk traversal methods and optional OSSP ex based
+exception handling.
=head1 DATA TYPES
|
|
ossp-pkg/al/devtool.conf 1.3 -> 1.4
--- devtool.conf 2002/12/16 14:02:45 1.3
+++ devtool.conf 2002/12/16 14:33:26 1.4
@@ -22,7 +22,7 @@
%version
./shtool version -l txt -n "OSSP al" -e VERSION
V=`./shtool version -l txt -d long VERSION`
- sed -e "s/Version .*(.*)/Version $V/g" <README >README.n
+ sed -e "s/Version .*/Version $V/g" <README >README.n
mv README.n README
%dist
|
|