debian/0000755000000000000000000000000012231036572007167 5ustar debian/watch0000644000000000000000000000012610441064614010216 0ustar version=3 http://www.clearsilver.net/downloads/clearsilver-(.*).tar.gz debian uupdate debian/README.source0000644000000000000000000000036211363152634011352 0ustar This package uses quilt to manage all modifications to the upstream source. Changes are stored in the source package as diffs in debian/patches and applied during the build. See /usr/share/doc/quilt/README.source for a detailed explanation. debian/pycompat0000644000000000000000000000000210446706077010750 0ustar 2 debian/README.debian0000644000000000000000000000056510441064614011275 0ustar clearsilver for Debian ---------------------- Clearsilver is a template system. It is used by trac to create dynamic web content. This package was put together by Jonas Borgstrom on Sat, 22 May 2004 20:49:22 +0200 It is maintained for Debian by Jesus Climent with the great help of Otavio Salvador debian/libclearsilver-perl.install0000644000000000000000000000003110473055362014517 0ustar debian/tmp/usr/lib/perl5 debian/rules0000755000000000000000000000235611547657772010301 0ustar #!/usr/bin/make -f DEB_PYTHON_SYSTEM=pysupport include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/class/python-module.mk include /usr/share/cdbs/1/rules/patchsys-quilt.mk include /usr/share/python/python.mk DEB_CONFIGURE_EXTRA_FLAGS := --enable-python \ --with-perl=/usr/bin/perl \ --disable-ruby \ --disable-csharp \ --disable-apache \ --enable-gettext CFLAGS += -fPIC # retrieve supported python versions (2.3 and 2.4 as of June 02006) PYVERS=$(shell pyversions -vr debian/control) DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/tmp DEB_SHLIBDEPS_INCLUDE_libclearsilver-perl := debian/libclearsilver-perl/usr/lib/perl5 DEB_SHLIBDEPS_INCLUDE_python-clearsilver := $(patsubst %,debian/python-clearsilver/usr/lib/python-%/$(call py_sitename, %),$(PYVERS)) build/python-clearsilver:: $(PYVERS:%=build-python-%) build-python-%: install -d debian/tmp/usr/lib/python$*/$(call py_sitename, $*) make -C $(DEB_BUILDDIR)/python distclean make -C $(DEB_BUILDDIR)/python \ PYTHON=/usr/bin/python$* PYTHON_INC=-I/usr/include/python$* install -m644 $(DEB_BUILDDIR)/python/neo_cgi.so \ debian/tmp/usr/lib/python$*/$(call py_sitename, $*)/neo_cgi.so debian/copyright0000644000000000000000000000531610441064614011126 0ustar This package was debianized by jonas@edgewall.com on Sat, 22 May 2004 20:49:22 +0200. It is maintained for Debian by Jesus Climent It was downloaded from http://www.clearsilver.net Copyright: Neotonic ClearSilver Software License Version 1.0 Copyright (c) 2001 Brandon Long and Neotonic Software Corporation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: "This product includes software developed by the Neotonic Software Corporation. (http://www.neotonic.com/)." Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. 4. The names "Neotonic" and "Neotonic ClearSilver" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact clearsilver@neotonic.com. 5. Products derived from this software may not be called "ClearSilver", nor may "ClearSilver" appear in their name, without prior written permission of Neotonic Software Corporation. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL NEOTONIC, INC., OR ITS CLEARSILVER CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of Neotonic Software Corporation. For more information on Neotonic Software Corporation, please see . Some of the concepts of this software are based on previous software developed by Scott Shambarger, Paul Clegg, and John Cwikla. The current authors wish to thank them for their efforts. debian/source/0000755000000000000000000000000011366171203010466 5ustar debian/source/format0000644000000000000000000000001411363152634011700 0ustar 3.0 (quilt) debian/clearsilver-dev.manpages0000644000000000000000000000003110442105251013756 0ustar debian/manpages/cstest.1 debian/patches/0000755000000000000000000000000011677152040010620 5ustar debian/patches/fix_64bit_crc_test.diff0000644000000000000000000000124711366164426015150 0ustar The CRC tests fail on 64bit systems. A patch for this failure was published by Thomas Regner: http://tech.groups.yahoo.com/group/ClearSilver/message/1177 Clearsilver's main developer (Brandon Long) appreciated the patch but did not commit it to the code repository, yet: http://tech.groups.yahoo.com/group/ClearSilver/message/1178 --- a/cs/csparse.c +++ b/cs/csparse.c @@ -3717,7 +3717,7 @@ if (val.op_type & (CS_TYPE_VAR | CS_TYPE_STRING)) { char *s = arg_eval(parse, &val); - if (s) result->n = ne_crc((unsigned char *)s, strlen(s)); + if (s) result->n = (INT32) ne_crc((unsigned char *)s, strlen(s)); } if (val.alloc) free(val.s); return STATUS_OK; debian/patches/CVE-2011-4357.diff0000644000000000000000000000035611677152017013060 0ustar --- a/python/neo_cgi.c +++ b/python/neo_cgi.c @@ -178,7 +178,7 @@ if (!PyArg_ParseTuple(args, "s:error(str)", &s)) return NULL; - cgi_error (cgi, s); + cgi_error (cgi, "%s", s); rv = Py_None; Py_INCREF(rv); return rv; debian/patches/man_fixes.diff0000644000000000000000000001122411363152634013424 0ustar --- b/man/man3/hdf_get_valuef.3.orig 2008-03-27 07:42:19.000000000 +0100 +++ a/man/man3/hdf_get_valuef.3 2008-03-27 07:42:26.000000000 +0100 @@ -27,7 +27,7 @@ .br namefmt -> the printf-style format string .br -... -> arguments to fill out namefmt +\&... -> arguments to fill out namefmt .SH DESCRIPTION hdf_get_valuef walks the data set pointed to by hdf via diff -ruN man.orig/man3/hdf_set_copy.3 man/man3/hdf_set_copy.3 --- b/man.orig/man3/hdf_set_copy.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/hdf_set_copy.3 2008-03-27 07:56:23.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -hdf_set_copy -> Copy a value from one location in the +hdf_set_copy \- Copy a value from one location in the dataset to another .SH SYNOPSIS .Ss diff -ruN man.orig/man3/nerr_error_string.3 man/man3/nerr_error_string.3 --- b/man.orig/man3/nerr_error_string.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_error_string.3 2008-03-27 07:51:01.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_error_string +nerr_error_string \- return the string associated with a clearsilver error .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_error_traceback.3 man/man3/nerr_error_traceback.3 --- b/man.orig/man3/nerr_error_traceback.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_error_traceback.3 2008-03-27 07:52:51.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_error_traceback +nerr_error_traceback \- return the full traceback of a clearsilver error chain .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_handle.3 man/man3/nerr_handle.3 --- b/man.orig/man3/nerr_handle.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_handle.3 2008-03-27 07:57:05.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_handle +nerr_handle \- walk the NEOERR chain for a matching error (clearsilver) .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_ignore.3 man/man3/nerr_ignore.3 --- b/man.orig/man3/nerr_ignore.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_ignore.3 2008-03-27 07:55:46.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_ignore +nerr_ignore \- free the clearsilver error chain .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_init.3 man/man3/nerr_init.3 --- b/man.orig/man3/nerr_init.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_init.3 2008-03-27 07:56:51.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_init +nerr_init \- initialize clearsilver error chain .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_log_error.3 man/man3/nerr_log_error.3 --- b/man.orig/man3/nerr_log_error.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_log_error.3 2008-03-27 07:57:30.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_log_error +nerr_log_error \- print the error to stderr .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_match.3 man/man3/nerr_match.3 --- b/man.orig/man3/nerr_match.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_match.3 2008-03-27 07:58:09.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_match +nerr_match \- walk the NEOERR chain for a matching error (clearsilver) .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_pass.3 man/man3/nerr_pass.3 --- b/man.orig/man3/nerr_pass.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_pass.3 2008-03-27 07:59:31.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_pass +nerr_pass \- pass a clearsilver error up a level in the call chain .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_pass_ctx.3 man/man3/nerr_pass_ctx.3 --- b/man.orig/man3/nerr_pass_ctx.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_pass_ctx.3 2008-03-27 07:59:35.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_pass_ctx +nerr_pass_ctx \- pass a clearsilver error up a level in the call chain .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/nerr_register.3 man/man3/nerr_register.3 --- b/man.orig/man3/nerr_register.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/nerr_register.3 2008-03-27 07:59:51.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -nerr_register +nerr_register \- register a clearsilver error type .SH SYNOPSIS .Ss #include diff -ruN man.orig/man3/wdb_keys.3 man/man3/wdb_keys.3 --- b/man.orig/man3/wdb_keys.3 2007-07-12 22:08:32.000000000 +0200 +++ a/man/man3/wdb_keys.3 2008-03-27 08:00:25.000000000 +0100 @@ -11,7 +11,7 @@ .sp .. .SH NAME -wdb_keys +wdb_keys \- return the key and column for the current database (clearsilver) .SH SYNOPSIS .Ss #include debian/patches/perl_installdir.diff0000644000000000000000000000151511363152634014644 0ustar --- b/Makefile.orig 2006-03-13 00:42:06.000000000 +0100 +++ a/Makefile 2006-03-20 06:17:50.000000000 +0100 @@ -29,7 +29,7 @@ @for mdir in $(SUBDIRS); do \ if test -d $$mdir; then \ if test -f $$mdir/Makefile.PL -a ! -f $$mdir/Makefile; then \ - cd $$mdir; $(PERL) Makefile.PL PREFIX=$(prefix); cd ..; \ + cd $$mdir; $(PERL) Makefile.PL PREFIX=$(prefix) INSTALLDIRS=vendor; cd ..; \ fi; \ $(MAKE) -C $$mdir PREFIX=$(prefix); \ fi; \ @@ -46,7 +46,7 @@ @for mdir in $(SUBDIRS); do \ if test -d $$mdir; then \ if test -f $$mdir/Makefile.PL -a ! -f $$mdir/Makefile; then \ - cd $$mdir; $(PERL) Makefile.PL PREFIX=$(prefix); cd ..; \ + cd $$mdir; $(PERL) Makefile.PL PREFIX=$(prefix) INSTALLDIRS=vendor; cd ..; \ fi; \ $(MAKE) -C $$mdir PREFIX=$(prefix) install; \ fi; \ debian/patches/series0000644000000000000000000000011711677152040012034 0ustar perl_installdir.diff man_fixes.diff fix_64bit_crc_test.diff CVE-2011-4357.diff debian/compat0000644000000000000000000000000210441064614010364 0ustar 5 debian/control0000644000000000000000000000362711547663314010613 0ustar Source: clearsilver Section: devel Priority: optional Build-Depends: python-all-dev (>= 2.5.4-1~), debhelper (>= 5.0.37.2), cdbs (>= 0.4.41), zlib1g-dev, autotools-dev, quilt, python-support XS-Python-Version: all Maintainer: Jesus Climent Uploaders: Otavio Salvador , Lars Kruse Standards-Version: 3.8.4 Homepage: http://www.clearsilver.net/ Package: clearsilver-dev Architecture: any Section: python Depends: libc6-dev, ${misc:Depends} Conflicts: libcgi-dev Description: headers and static library for clearsilver Clearsilver is a fast, powerful, and language-neutral HTML template system. In both static content sites and dynamic HTML applications, it provides a separation between presentation code and application logic which makes working with your project easier. Package: python-clearsilver Architecture: any Section: python Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends} Replaces: python2.3-clearsilver (<= 0.10.3-1) Conflicts: python2.3-clearsilver (<= 0.10.3-1) XB-Python-Version: ${python:Versions} Description: Python bindings for clearsilver Clearsilver is a fast, powerful, and language-neutral HTML template system. In both static content sites and dynamic HTML applications, it provides a separation between presentation code and application logic which makes working with your project easier. Package: libclearsilver-perl Architecture: any Section: perl Priority: optional Replaces: perl-clearsilver (<= 0.10.3-3) Conflicts: perl-clearsilver (<= 0.10.3-3) Depends: perl, ${shlibs:Depends}, ${perl:Depends}, ${misc:Depends} Description: Perl bindings for clearsilver Clearsilver is a fast, powerful, and language-neutral HTML template system. In both static content sites and dynamic HTML applications, it provides a separation between presentation code and application logic which makes working with your project easier. debian/changelog0000644000000000000000000001541012231036572011042 0ustar clearsilver (0.10.5-1.3build1) devel; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Sun, 20 Oct 2013 21:30:50 +0100 clearsilver (0.10.5-1.3) unstable; urgency=high * Non-maintainer upload. * Fix format string vulnerability CVE-2011-4357 (Closes: #649322). -- Luk Claes Thu, 29 Dec 2011 21:57:11 +0100 clearsilver (0.10.5-1.2) unstable; urgency=low * Non-maintainer upload. * Drop wrong debian-changes-0.10.5-1 patch (Closes: #643474). -- Didier Raboud Tue, 15 Nov 2011 16:24:49 +0100 clearsilver (0.10.5-1.1) unstable; urgency=low * Non-maintainer upload. * Use python-support (closes: #620271). + Add build-dependency on python-support. + In debian/rules: - set DEB_PYTHON_SYSTEM to pysupport; - include class/python-module.mk. -- Jakub Wilk Fri, 08 Apr 2011 21:49:37 +0200 clearsilver (0.10.5-1) unstable; urgency=low * New upstream release (Closes: #497008) * Fix manpage format errors * Remove obsolete patch for document.py (upstream fixed it) * fix FTBFS bug by removing DEB_MAKE_CHECK_TARGET (Closes: #577320) * remove obsolete "clean" target for "autotools" (update config.{guess|sub}) * Patched failing CRC test for 64bit systems * see: http://tech.groups.yahoo.com/group/ClearSilver/message/1178 * Update to Standards-Version 3.8.4: * add "Homepage" field to control file * remove versioned dependency on on perl >= 5.6 * switche to new source package format "3.0 (quilt)" * Deny orphaning request (Closes: #543735) -- Lars Kruse Thu, 29 Apr 2010 03:52:15 +0200 clearsilver (0.10.4-1.4) unstable; urgency=low * Non-maintainer upload. * Python 2.6 transition (Closes: #557794): + debian/control: - Build-depend on python-all-dev (>= 2.5.4-1~). + debian/rules: - Include /usr/share/python/python.mk. - Use py_sitename to determine correcy installation directory. -- Luca Falavigna Tue, 08 Dec 2009 19:13:14 +0100 clearsilver (0.10.4-1.3) unstable; urgency=low * Non-maintainer upload. * debian/rules: + Fix bashism (Closes: #477253). -- Marco Rodrigues Mon, 16 Jun 2008 12:19:37 +0100 clearsilver (0.10.4-1.2) unstable; urgency=low * Non-maintainer upload. * debian/rules: Build python bindings for each python version (instead of using the same binary for all python versions). Patch by Chris Lamb. (Closes: #452612) -- Ana Beatriz Guerrero Lopez Thu, 24 Apr 2008 11:11:37 +0200 clearsilver (0.10.4-1.1) unstable; urgency=low * Non-maintainer upload. * Add missing substvars in debian/control (Closes: 463094). * Bump Standards-Version to 3.7.3. -- Pierre Habouzit Tue, 01 Apr 2008 20:55:25 +0000 clearsilver (0.10.4-1) unstable; urgency=low * New upstream release -- Lars Kruse Sat, 16 Jun 2007 22:46:26 +0200 clearsilver (0.10.3-4.1) unstable; urgency=high * Non-maintainer upload. * Add conflict to libcgi-dev to clearsilver-dev because of filename conflict. Closes: #403996 -- Andreas Barth Tue, 26 Dec 2006 11:04:03 +0000 clearsilver (0.10.3-4) unstable; urgency=low * Renamed perl-clearsilver to libclearsilver-perl according to debian policy (Closes: #384158) -- Lars Kruse Wed, 23 Aug 2006 14:29:26 +0200 clearsilver (0.10.3-3) unstable; urgency=low * Updated config.guess and config.sub for mips/mipsel (Closes: #378595) * Improved makefile to remove root-owned files after "make clean" -- Lars Kruse Sat, 29 Jul 2006 16:48:43 +0200 clearsilver (0.10.3-2) unstable; urgency=low [ Otavio Salvador ] * Move package maintainence to Collaborative Maintainence Project. * Disable C# building since it's broken in current release with current MCS compiler. * Update Standards-Version to 3.7.2 (no changes) [ Lars Kruse ] * perl-clearsilver: wrong installation directory in original makefile and broken debian/rules fixed (Closes: #357908) * Add header files, manpages and libraries to the clearsilver-dev package (Closes: #293888, #346438) * Fix dependency of clearsilver-dev (Closes: #372759) * Replace python2.3-clearsilver package with python-clearsilver package for python 2.3 and 2.4 (Closes: #370669, #337838) * Switch to new python policy (Closes: #373314) [ Jesus Climent ] * Upload to unstable. -- Jesus Climent Sun, 25 Jun 2006 00:05:36 +0300 clearsilver (0.10.3-1) unstable; urgency=low * New upstream release * Ack previous NMUs (Closes: #310073, #310231); * Leave CDBS set the debhelper compatibility level; * Add watch file to be easier to update it next time; * Add zlib1g-dev as build-depends (Closes: #357278); * Simplified python-clearsilver dependencies; * Use ${python:Depends} in python2.3-clearsilver; * Update Standards-Version. No changes needed; * Include autotools-dev since it uses autoconf and it makes this package more portable; -- Otavio Salvador Sat, 8 Apr 2006 07:51:10 -0300 clearsilver (0.10.2-1) unstable; urgency=low * New upstream release. * Added perl bindings. -- Jesus Climent Sun, 8 Jan 2006 15:45:00 +0000 clearsilver (0.9.14-1) unstable; urgency=low * New upstream release -- Jesus Climent Wed, 15 Jun 2005 08:35:36 +0000 clearsilver (0.9.13-2) unstable; urgency=medium * Correct clearsilver-dev dependency on clearsilver1 (Closes: #293574) -- Jesus Climent Fri, 4 Feb 2005 14:04:38 +0000 clearsilver (0.9.13-1) unstable; urgency=low * Welcome Otavio as a co-maintainer. * This release should clean the RC bugs we have (Closes: #269555), allowing PIC in shared libs. -- Jesus Climent Sun, 16 Jan 2005 16:59:45 +0200 clearsilver (0.9.13-0+1) unstable; urgency=low * New upstream release * Add myself as co-maintainer * Remove capital letter from description synopsis -- Otavio Salvador Wed, 5 Jan 2005 20:20:50 -0200 clearsilver (0.9.8-3) unstable; urgency=low * debian/control: added build-dependency on python (Closes: #268649) * debian/rules: added -fPIC for building. Should help to build in hppa and amd64. Supposedly (Closes: #273656). -- Jesus Climent Mon, 27 Sep 2004 20:52:32 +0000 clearsilver (0.9.8-2) unstable; urgency=low * debian/control: s/depends/Depends/ (Closes: #268649) -- Jesus Climent Sat, 28 Aug 2004 17:47:06 +0300 clearsilver (0.9.8-1) unstable; urgency=low * First upload. -- Jesus Climent Mon, 2 Aug 2004 11:27:43 +0000 debian/clearsilver-dev.install0000644000000000000000000000015210441413743013644 0ustar debian/tmp/usr/include debian/tmp/usr/share/man/man3/*.3 debian/tmp/usr/bin/cstest debian/tmp/usr/lib/*.a debian/python-clearsilver.install0000644000000000000000000000003310447006277014413 0ustar debian/tmp/usr/lib/python* debian/manpages/0000755000000000000000000000000011366171203010761 5ustar debian/manpages/cstest.10000644000000000000000000000133110442105251012340 0ustar .TH cstest 1 "May 02006" "clearsilver.net" "developer tools" .SH NAME cstest \- render a clearsilver template combined with a dataset .SH SYNOPSIS .B cstest [-v] \fIdataset.hdf\fR \fItemplate.cs\fR .SH DESCRIPTION .PP Use cstest to check the validity and the output of a clearsilver template combined with a hdf dataset. .PP This little program may help you in developing clearsilver templates. But it is usually not suitable for complex templates (e.g. using macros or functions). .PP .SH "REPORTING BUGS" Report potential bugs of this program to the clearsilver mailing list: http://www.clearsilver.net/discussion.hdf Sent hints regarding this manpage to . .SH "SEE ALSO" http://www.clearsilver.net/docs/