Check-in Number:
|
2321 | |
Date: |
2002-Jul-19 15:28:02 (local)
2002-Jul-19 13:28:02 (UTC) |
User: | rse |
Branch: | |
Comment: |
add OSSP fsl |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-web/SHARE/ossp_navbar.wml 1.6 -> 1.7
--- ossp_navbar.wml 2002/07/07 18:11:24 1.6
+++ ossp_navbar.wml 2002/07/19 13:28:02 1.7
@@ -247,15 +247,16 @@
# Packages, Libraries
<navbar:button txt="GNU pth" url=pkg/lib/pth/ id=pkg:lib:pth>
<navbar:button txt="OSSP str" url=pkg/lib/str/ id=pkg:lib:str>
+ <navbar:button txt="OSSP mm" url=pkg/lib/mm/ id=pkg:lib:mm>
<navbar:button txt="OSSP sa" url=pkg/lib/sa/ id=pkg:lib:sa>
<navbar:button txt="OSSP ex" url=pkg/lib/ex/ id=pkg:lib:ex>
<navbar:button txt="OSSP l2" url=pkg/lib/l2/ id=pkg:lib:l2>
<navbar:button txt="OSSP var" url=pkg/lib/var/ id=pkg:lib:var>
<navbar:button txt="OSSP val" url=pkg/lib/val/ id=pkg:lib:val>
+ <navbar:button txt="OSSP xds" url=pkg/lib/xds/ id=pkg:lib:xds>
+ <navbar:button txt="OSSP cfg" url=pkg/lib/cfg/ id=pkg:lib:cfg>
<navbar:button txt="OSSP act" url=pkg/lib/act/ id=pkg:lib:act>
<navbar:button txt="OSSP cache" url=pkg/lib/cache/ id=pkg:lib:cache>
- <navbar:button txt="OSSP mm" url=pkg/lib/mm/ id=pkg:lib:mm>
- <navbar:button txt="OSSP xds" url=pkg/lib/xds/ id=pkg:lib:xds>
<navbar:button txt="OSSP path" url=pkg/lib/path/ id=pkg:lib:path>
<navbar:button txt="OSSP proc" url=pkg/lib/proc/ id=pkg:lib:proc>
<navbar:button txt="OSSP pcre" url=pkg/lib/pcre/ id=pkg:lib:pcre>
@@ -264,9 +265,10 @@
<navbar:button txt="OSSP sio" url=pkg/lib/sio/ id=pkg:lib:sio>
<navbar:button txt="OSSP res" url=pkg/lib/res/ id=pkg:lib:res>
<navbar:button txt="OSSP hook" url=pkg/lib/hook/ id=pkg:lib:hook>
- <navbar:button txt="OSSP cfg" url=pkg/lib/cfg/ id=pkg:lib:cfg>
<navbar:button txt="OSSP adns" url=pkg/lib/adns/ id=pkg:lib:adns>
<navbar:button txt="OSSP mux" url=pkg/lib/mux/ id=pkg:lib:mux>
+ <navbar:button txt="OSSP err" url=pkg/lib/err/ id=pkg:lib:err>
+ <navbar:button txt="OSSP fsl" url=pkg/lib/fsl/ id=pkg:lib:fsl>
</nb:stage3>
# render the navigation bar
|
|
ossp-web/SHARE/ossp_pkg.wml 1.4 -> 1.5
--- ossp_pkg.wml 2002/03/30 19:15:47 1.4
+++ ossp_pkg.wml 2002/07/19 13:28:02 1.5
@@ -41,7 +41,7 @@
.files0U,.files1U,A.files0U,A.files1U { color: #ffffff; }
<<..
<define-tag pkg_files>
-<preserve url directory files stable unstable>
+<preserve cvs url directory files stable unstable>
<set-var %attributes>
<:
my $url = "<get-var url>";
@@ -54,7 +54,12 @@
<table width=100% cellspacing=1 cellpadding=0 border=0>
<tr>
<td colspan=3>
- <b>Location:</b> <a href="<get-var url>" class=plain><get-var url></a>
+ <b>Repository:</b> <a href="<get-var cvs>" class=plain><get-var cvs></a>
+ </td>
+</tr>
+<tr>
+ <td colspan=3>
+ <b>Distribution:</b> <a href="<get-var url>" class=plain><get-var url></a>
</td>
</tr>
<tr>
@@ -97,7 +102,7 @@
print $O;
:>
</table>
-<restore url directory files stable unstable>
+<restore cvs url directory files stable unstable>
</define-tag>
# define a package summary list
|
|
ossp-web/pkg/lib/fsl/.cvsignore -> 1.1
*** /dev/null Fri Apr 4 00:04:43 2025
--- - Fri Apr 4 00:05:18 2025
***************
*** 0 ****
--- 1 ----
+ *.html
|
|
ossp-web/pkg/lib/fsl/index.wml -> 1.1
*** /dev/null Fri Apr 4 00:04:43 2025
--- - Fri Apr 4 00:05:18 2025
***************
*** 0 ****
--- 1,49 ----
+
+ #use wml::ossp area=pkg:lib subarea=fsl
+
+ <title>OSSP fsl</title>
+
+ <h1>Faked/Flexible Syslog</h1>
+
+ <h2>Abstract</h2>
+
+ OSSP fsl offers the syslog(3) API otherwise provided by the Standard C Library
+ (libc). Instead of writing to the syslogd(8) process, it uses the powerful <a
+ href="../l2/">OSSP l2</a> logging capabilities. It is a drop-in link-time
+ replacement which enables any syslog(3) consumer to take advantage of <a
+ href="../l2/">OSSP l2</a> by just linking this library in before libc. The
+ source code of the program remains unchanged. The only requirement for each
+ program is companion <a href="../cfg/">OSSP cfg</a> based configuration
+ snippet which maps the openlog(3) program indentification to an <a
+ href="../l2/">OSSP l2</a> channel tree specification.
+
+ <p>
+ This library is a small wrapper around <a href="../l2/">OSSP l2</a> and <a
+ href="../cfg/">OSSP cfg</a> and was originally invested to allow third-party
+ (non <a href="/">OSSP</a>) programs to leverage from the logging flexibility
+ provided by <a href="../l2/">OSSP l2</a>. Its development was prompted by the
+ <a href="http://www.openpkg.org/">OpenPKG</a> project where no program is
+ allowed to directly use the original syslog(3) facility in order to allow
+ multiple installation instances.
+
+ <h2>Authors</h2>
+
+ <pkg_author name="Ralf S. Engelschall" mail="rse@engelschall.com">
+ <pkg_author name="Thomas Lotterer" mail="thl@dev.de.cw.net">
+
+ <h2>Status</h2>
+
+ <pkg_status
+ stable="none" stable_date="none"
+ unstable="none" unstable_date="none"
+ done=95>
+
+ <h2>Source</h2>
+
+ <pkg_files
+ cvs=$(CVS_ROOT_URL)/pkg/lib/fsl/
+ url=$(FTP_ROOT_URL)/pkg/lib/fsl/
+ directory=$(FTP_ROOT_DIR)/pkg/lib/fsl/
+ files="fsl-*.tar.gz"
+ stable="none" unstable="none">
+
|
|
ossp-web/pkg/lib/index.wml 1.14 -> 1.15
--- index.wml 2002/07/13 20:09:21 1.14
+++ index.wml 2002/07/19 13:28:03 1.15
@@ -80,5 +80,8 @@
<pkg_item name="err" longname="OSSP err" type="lib"
desc="Error Stacks"
done=15 stable=none unstable=none>
+ <pkg_item name="fsl" longname="OSSP fsl" type="lib"
+ desc="Faked/Flexible Syslog"
+ done=95 stable=none unstable=none>
</pkg_list>
|
|