From eenge at common-lisp.net Thu Nov 13 18:32:45 2003 From: eenge at common-lisp.net (Erik Enge) Date: Thu, 13 Nov 2003 13:32:45 -0500 Subject: [cl-syslog-cvs] CVS update: Module improted: cl-syslog Message-ID: Update of /project/cl-syslog/cvsroot/cl-syslog In directory common-lisp.net:/tmp/cvs-serv13065 Log Message: inital import Status: Vendor Tag: eenge Release Tags: init N cl-syslog/LICENSE N cl-syslog/CREDITS N cl-syslog/package.lisp N cl-syslog/cl-syslog.asd N cl-syslog/cl-syslog.lisp N cl-syslog/variable.lisp N cl-syslog/Makefile N cl-syslog/README No conflicts created by this import Date: Thu Nov 13 13:32:45 2003 Author: eenge New module cl-syslog added From eenge at common-lisp.net Thu Nov 13 18:33:02 2003 From: eenge at common-lisp.net (Erik Enge) Date: Thu, 13 Nov 2003 13:33:02 -0500 Subject: [cl-syslog-cvs] CVS update: Module improted: public_html Message-ID: Update of /project/cl-syslog/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv13146 Log Message: inital import Status: Vendor Tag: eenge Release Tags: init N public_html/style.css N public_html/index.html No conflicts created by this import Date: Thu Nov 13 13:33:02 2003 Author: eenge New module public_html added From eenge at common-lisp.net Thu Nov 13 18:35:17 2003 From: eenge at common-lisp.net (Erik Enge) Date: Thu, 13 Nov 2003 13:35:17 -0500 Subject: [cl-syslog-cvs] CVS update: public_html/index.html Message-ID: Update of /project/cl-syslog/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv14865 Modified Files: index.html Log Message: proper link to licens Date: Thu Nov 13 13:35:17 2003 Author: eenge Index: public_html/index.html diff -u public_html/index.html:1.1.1.1 public_html/index.html:1.2 --- public_html/index.html:1.1.1.1 Thu Nov 13 13:33:02 2003 +++ public_html/index.html Thu Nov 13 13:35:17 2003 @@ -19,7 +19,7 @@ href="http://cmucl.cons.org/cmucl/">CMUCL-specific FFI code.

The code is released under an BSD + href="http://common-lisp.net/cgi-bin/viewcvs.cgi/cl-syslog/LICENSE?rev=HEAD&cvsroot=cl-syslog&content-type=text/vnd.viewcvs-markup">BSD license.

Features

From eenge at common-lisp.net Sat Nov 22 23:32:54 2003 From: eenge at common-lisp.net (Erik Enge) Date: Sat, 22 Nov 2003 18:32:54 -0500 Subject: [cl-syslog-cvs] CVS update: cl-syslog/cl-syslog.asd Message-ID: Update of /project/cl-syslog/cvsroot/cl-syslog In directory common-lisp.net:/tmp/cvs-serv13037 Modified Files: cl-syslog.asd Log Message: fixing typos Date: Sat Nov 22 18:32:54 2003 Author: eenge Index: cl-syslog/cl-syslog.asd diff -u cl-syslog/cl-syslog.asd:1.1.1.1 cl-syslog/cl-syslog.asd:1.2 --- cl-syslog/cl-syslog.asd:1.1.1.1 Thu Nov 13 13:32:45 2003 +++ cl-syslog/cl-syslog.asd Sat Nov 22 18:32:54 2003 @@ -1,4 +1,4 @@ -;;;; $Id: cl-syslog.asd,v 1.1.1.1 2003/11/13 18:32:45 eenge Exp $ +;;;; $Id: cl-syslog.asd,v 1.2 2003/11/22 23:32:54 eenge Exp $ ;;;; $Source: /project/cl-syslog/cvsroot/cl-syslog/cl-syslog.asd,v $ ;;;; See the LICENSE file for licensing information. @@ -10,7 +10,7 @@ (:documentation "Package to create the ASDF system for the cl-syslog package")) -(in-package #:syslog-system) +(in-package #:cl-syslog-system) (defsystem cl-syslog :name "cl-syslog" @@ -20,7 +20,7 @@ :description "Common Lisp syslog interface" :depends-on (:uffi) :properties ((#:author-email . "erik at nittin.net") - (#:date . "$Date: 2003/11/13 18:32:45 $") + (#:date . "$Date: 2003/11/22 23:32:54 $") ((#:albert #:output-dir) . "doc/api-doc/") ((#:albert #:formats) . ("docbook")) ((#:albert #:docbook #:template) . "book") @@ -29,6 +29,6 @@ :components ((:file "package") (:file "variable" :depends-on ("package")) - (:file "syslog" + (:file "cl-syslog" :depends-on ("variable")))) From eenge at common-lisp.net Sat Nov 22 23:34:52 2003 From: eenge at common-lisp.net (Erik Enge) Date: Sat, 22 Nov 2003 18:34:52 -0500 Subject: [cl-syslog-cvs] CVS update: cl-syslog/cl-syslog.lisp Message-ID: Update of /project/cl-syslog/cvsroot/cl-syslog In directory common-lisp.net:/tmp/cvs-serv14290 Modified Files: cl-syslog.lisp Log Message: adding some better docstrings Date: Sat Nov 22 18:34:52 2003 Author: eenge Index: cl-syslog/cl-syslog.lisp diff -u cl-syslog/cl-syslog.lisp:1.1.1.1 cl-syslog/cl-syslog.lisp:1.2 --- cl-syslog/cl-syslog.lisp:1.1.1.1 Thu Nov 13 13:32:45 2003 +++ cl-syslog/cl-syslog.lisp Sat Nov 22 18:34:52 2003 @@ -1,4 +1,4 @@ -;;;; $Id: cl-syslog.lisp,v 1.1.1.1 2003/11/13 18:32:45 eenge Exp $ +;;;; $Id: cl-syslog.lisp,v 1.2 2003/11/22 23:34:52 eenge Exp $ ;;;; $Source: /project/cl-syslog/cvsroot/cl-syslog/cl-syslog.lisp,v $ ;;;; See the LICENSE file for licensing information. @@ -47,11 +47,15 @@ ;; (defun get-facility (facility-name) + "Return facility number given the facility's name. If there is no +such facility, signal `invalid-facility' error." (ash (or (cdr (assoc facility-name *facilities*)) (error (make-condition 'invalid-facility :facility facility-name))) 3)) (defun get-priority (priority-name) + "Return priority number given the priority's name. If there is no +such priority, signal `invalid-priority' error." (or (cdr (assoc priority-name *priorities*)) (error (make-condition 'invalid-priority :priority priority-name)))) From eenge at common-lisp.net Sat Nov 22 23:35:33 2003 From: eenge at common-lisp.net (Erik Enge) Date: Sat, 22 Nov 2003 18:35:33 -0500 Subject: [cl-syslog-cvs] CVS update: Directory change: cl-syslog/doc Message-ID: Update of /project/cl-syslog/cvsroot/cl-syslog/doc In directory common-lisp.net:/tmp/cvs-serv14654/doc Log Message: Directory /project/cl-syslog/cvsroot/cl-syslog/doc added to the repository Date: Sat Nov 22 18:35:33 2003 Author: eenge New directory cl-syslog/doc added From eenge at common-lisp.net Sat Nov 22 23:35:43 2003 From: eenge at common-lisp.net (Erik Enge) Date: Sat, 22 Nov 2003 18:35:43 -0500 Subject: [cl-syslog-cvs] CVS update: Directory change: cl-syslog/doc/api-doc Message-ID: Update of /project/cl-syslog/cvsroot/cl-syslog/doc/api-doc In directory common-lisp.net:/tmp/cvs-serv14684/api-doc Log Message: Directory /project/cl-syslog/cvsroot/cl-syslog/doc/api-doc added to the repository Date: Sat Nov 22 18:35:43 2003 Author: eenge New directory cl-syslog/doc/api-doc added From eenge at common-lisp.net Sat Nov 22 23:35:59 2003 From: eenge at common-lisp.net (Erik Enge) Date: Sat, 22 Nov 2003 18:35:59 -0500 Subject: [cl-syslog-cvs] CVS update: cl-syslog/cl-syslog.asd Message-ID: Update of /project/cl-syslog/cvsroot/cl-syslog In directory common-lisp.net:/tmp/cvs-serv14740 Modified Files: cl-syslog.asd Log Message: correcting author-email for albert property Date: Sat Nov 22 18:35:59 2003 Author: eenge Index: cl-syslog/cl-syslog.asd diff -u cl-syslog/cl-syslog.asd:1.2 cl-syslog/cl-syslog.asd:1.3 --- cl-syslog/cl-syslog.asd:1.2 Sat Nov 22 18:32:54 2003 +++ cl-syslog/cl-syslog.asd Sat Nov 22 18:35:59 2003 @@ -1,4 +1,4 @@ -;;;; $Id: cl-syslog.asd,v 1.2 2003/11/22 23:32:54 eenge Exp $ +;;;; $Id: cl-syslog.asd,v 1.3 2003/11/22 23:35:59 eenge Exp $ ;;;; $Source: /project/cl-syslog/cvsroot/cl-syslog/cl-syslog.asd,v $ ;;;; See the LICENSE file for licensing information. @@ -19,8 +19,8 @@ :licence "MIT" :description "Common Lisp syslog interface" :depends-on (:uffi) - :properties ((#:author-email . "erik at nittin.net") - (#:date . "$Date: 2003/11/22 23:32:54 $") + :properties ((#:author-email . "cl-syslog-devel at common-lisp.net") + (#:date . "$Date: 2003/11/22 23:35:59 $") ((#:albert #:output-dir) . "doc/api-doc/") ((#:albert #:formats) . ("docbook")) ((#:albert #:docbook #:template) . "book") From eenge at common-lisp.net Sun Nov 23 00:12:59 2003 From: eenge at common-lisp.net (Erik Enge) Date: Sat, 22 Nov 2003 19:12:59 -0500 Subject: [cl-syslog-cvs] CVS update: public_html/index.html Message-ID: Update of /project/cl-syslog/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv29406 Modified Files: index.html Log Message: updating HTML for new release Date: Sat Nov 22 19:12:59 2003 Author: eenge Index: public_html/index.html diff -u public_html/index.html:1.2 public_html/index.html:1.3 --- public_html/index.html:1.2 Thu Nov 13 13:35:17 2003 +++ public_html/index.html Sat Nov 22 19:12:59 2003 @@ -5,7 +5,7 @@
-

cl-syslog 0.9.0

+

cl-syslog 0.9.1

@@ -21,6 +21,11 @@

The code is released under an BSD license.

+ +

News

+
+
  • Version 0.9.1 released (small bugfix)
  • +

    Features

    From eenge at common-lisp.net Sun Nov 23 00:17:33 2003 From: eenge at common-lisp.net (Erik Enge) Date: Sat, 22 Nov 2003 19:17:33 -0500 Subject: [cl-syslog-cvs] CVS update: public_html/index.html Message-ID: Update of /project/cl-syslog/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv31411 Modified Files: index.html Log Message: an -> a Date: Sat Nov 22 19:17:33 2003 Author: eenge Index: public_html/index.html diff -u public_html/index.html:1.3 public_html/index.html:1.4 --- public_html/index.html:1.3 Sat Nov 22 19:12:59 2003 +++ public_html/index.html Sat Nov 22 19:17:33 2003 @@ -18,7 +18,7 @@ href="http://uffi.b9.com/">UFFI instead of CMUCL-specific FFI code. -

    The code is released under an The code is released under a BSD license.

    From eenge at common-lisp.net Mon Nov 24 23:30:19 2003 From: eenge at common-lisp.net (Erik Enge) Date: Mon, 24 Nov 2003 18:30:19 -0500 Subject: [cl-syslog-cvs] CVS update: public_html/index.html Message-ID: Update of /project/cl-syslog/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv7595 Modified Files: index.html Log Message: andreas fuchs tested under freesbsd and found to work Date: Mon Nov 24 18:30:18 2003 Author: eenge Index: public_html/index.html diff -u public_html/index.html:1.4 public_html/index.html:1.5 --- public_html/index.html:1.4 Sat Nov 22 19:17:33 2003 +++ public_html/index.html Mon Nov 24 18:30:18 2003 @@ -10,9 +10,8 @@

    cl-syslog is a Common Lisp library that provides access to - the syslog logging facility under Unix. It has currently only - been tested under Linux. The code was taken from OnShore's ODCL and has + the syslog logging facility under Unix. The code was taken from + OnShore's ODCL and has been enhanced to include an ASDF system, conditions, options to openlog(3) and it now uses UFFI instead of Version 0.9.1 released (small bugfix)

    +

    Platforms

    + +

    The code has been tested under the following platforms but it + expected to work on others with little or no changes. Reports + on other Unices where it works is greatly appreciated.

    + +
    +
  • Linux 2.4.x
  • +
  • FreeBSD 5.1
  • +
    + +

    Features