debian/0000755000000000000000000000000011771114361007170 5ustar debian/plucker.manpages0000644000000000000000000000022611030241113012332 0ustar debian/plucker.1 debian/plucker-prc-install.1 docs/pluck-comics.1 docs/plucker-build.1 docs/plucker-decode.1 docs/plucker-dump.1 docs/plucker-setup.1 debian/docs0000644000000000000000000000003311030241113010017 0ustar FAQ NEWS README README.OS2 debian/copyright0000644000000000000000000000215211030241113011103 0ustar This package was debianized by Mikael Hedin on Mon, 11 Dec 2000 21:14:48 +0100. It was downloaded from http://www.plkr.org/dl/ Authors: Mark Lillywhite et al Copyright Holder: Mark Lillywhite, 1998. See the AUTHORS file Copyright: This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/watch0000644000000000000000000000015011771113555010221 0ustar # Compulsory line, this is a version 3 file version=3 http://sf.net/plucker/plucker_src-(.*)\.tar\.bz2 debian/README.Debian0000644000000000000000000000206611030241113011215 0ustar plucker for Debian ------------------ To install plucker run plucker-setup(1) and optionally plucker-prc-install. Plucker consists of three parts: the parser, the conduit, and the viewer. The conduit takes the converted HTML files from a directory or from your computer's system memory (RAM; using the python parser) and places them in a database on your Palm device, or directs them to a file (which is the same as the database) on your desktop, which you can sync to your emulator or your "real" Palm device at a later time. For example you could use: $ plucker-build > dumb.pdb #reads home.html $ pilot-xfer -i dumb.pdb For further information and a primer walkthrough for newbie users, please check "The Plucker Tour" available online at http://www2.parc.com/isl/members/janssen/pubs/plucker-tour/ A couple of sample e-books can be obtained from http://www2.parc.com/istl/members/janssen/pubs/plucker-tour/plucker10.zip There is also a Plucker User Guide at http://code.plkr.org/docs/ -- Amaya Rodrigo Sastre Thu, 14 Oct 2004 02:12:35 +0200 debian/plucker.install0000644000000000000000000000034111030241113012203 0ustar etc/pluckerrc usr/bin/pluck-comics usr/bin/plucker usr/bin/plucker-build usr/bin/plucker-decode usr/bin/plucker-dump usr/bin/plucker-prc-install usr/bin/plucker-setup usr/lib usr/share/plucker/comics usr/share/plucker/config debian/plucker-prc-install0000644000000000000000000000657111030241113012777 0ustar #!/bin/sh # plucker-prc-install: fetch and install plucker viewer .prc on the Palm # Copyright (c) 2006, Ludovic Rousseau # Copyright (c) 2005, Alex Malinovich # Based on plucker-prc-install v1.1 by Ludovic Rousseau # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA set -e NONEN=_translations VERS=1.8 #NOTE: FILE is made of $FILE_PREFIX + $LORES + $NONEN + $FILE_SUFFIX FILE_PREFIX=plucker_viewer FILE_SUFFIX=-$VERS.tar.bz2 #directory within tar file containing necessary files TAR_DIR=plucker-$VERS URL=http://downloads.plkr.org/$VERS TMP=/tmp/plucker-prc-install.$$ PRCS="PluckerUserGuide.pdb SysZLib.prc" if [ "x$PILOTPORT" = "x" ] then if [ -e /dev/pilot ] then PILOTPORT=/dev/pilot else PILOTPORT=usb: fi fi bad=0 if [ ! -x /usr/bin/wget ] then echo "Error: You must install wget (wget package) to use this script!" bad=1 fi if [ -x /usr/bin/gpilot-install-file ] then SYNC_CMD=gpilot-install-file elif [ -x /usr/bin/pilot-xfer ] then SYNC_CMD="pilot-xfer -i -p $PILOTPORT" else echo "Error: You must install pilot-xfer (pilot-link package) to use this script!" bad=1 fi if [ $bad -ne 0 ] then exit fi # remove temporary files in case of premature exit (Ctrl-C) clean_exit() { echo rm -rf $TMP } trap clean_exit INT case "$1" in "-v"|"--version") echo "plucker-prc-install: fetch and install plucker viewer .prc on the Palm" echo "Version 1.3, September 2006" echo "Copyright (c) 2006, Ludovic Rousseau " echo "Copyright (c) 2005, Alex Malinovich " echo "Based on plucker-prc-install v1.1 by Ludovic Rousseau " echo "This program is protected by the GNU GPL version 2 of later" exit ;; "--nohires") LORES=_nonhires ;; ?*) echo "Usage: $0 [--nohires] [-h|--help] [-v] [--version]" echo " --nohires: install non-hires version" echo " instead of default hires version" exit ;; esac echo "Will synchronize using port: $PILOTPORT" PRC_LANG=$(echo $LANG | cut -c 1-2) mkdir $TMP cd $TMP FILE=$FILE_PREFIX$LORES$FILE_SUFFIX echo -n "Downloading $URL/$FILE ... " wget -q $URL/$FILE echo "done!" tar xjf $FILE if [ $PRC_LANG != "en" ] then FILE=$FILE_PREFIX$LORES$NONEN$FILE_SUFFIX echo -n "Downloading $URL/$FILE ... " wget -q $URL/$FILE echo "done!" tar xjf $FILE fi cd $TAR_DIR if [ ! -f viewer_$PRC_LANG.prc ] then echo "Viewer for language $PRC_LANG does not exist, using English (en) instead" PRC_LANG=en else echo "Using viewer language: $PRC_LANG" fi PRCS="$PRCS viewer_$PRC_LANG.prc" echo "Will install: " $PRCS $SYNC_CMD $PRCS rm -rf $TMP debian/plucker.10000644000000000000000000000310211030241113010673 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH plucker 1 "Jun 3, 2006" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME plucker \- graphical tool to read a .pdb file generated by plucker-build .SH SYNOPSIS .B plucker .RI [ --unicode "] [" --dpi=N "] [" --verbose "] [" --scale=SCALE "] [" DOCUMENT-FILE ] .SH DESCRIPTION This manual page documents briefly the .B plucker command. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBplucker\fP is a program that is the equivalent to the viewer of the PDA but runs on the host. .PP .SH OPTIONS .TP .B \-\-unicode Use unicode. .TP .B \-\-help Show summary of options. .TP .B \-\-dpi=N Set DPI (Dot Per Inch) value .TP .B \-\-verbose Verbose mode. .TP .B \-\-scale=SCALE Rescale images. .SH SEE ALSO .BR plucker-build (1), .SH AUTHOR This manual page was written by Ludovic Rousseau , for the Debian GNU/Linux system (but may be used by others). debian/plucker-doc.docs0000644000000000000000000000001011030241113012221 0ustar #DOCS# debian/control0000644000000000000000000000150211771110416010566 0ustar Source: plucker Section: otherosfs Priority: optional Maintainer: Ludovic Rousseau Build-Depends: debhelper (>= 9), autoconf, python (>= 2.6.6-3), libjpeg-dev, zlib1g-dev, libgtk2.0-dev Standards-Version: 3.9.1 Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/plucker/trunk Vcs-Browser: http://svn.debian.org/viewsvn/collab-maint/deb-maint/plucker/trunk/ Homepage: http://www.plkr.org/ Package: plucker Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-imaging Suggests: imagemagick, libjpeg-progs, pilot-link Description: Pluck stuff from the web and read it on your PalmOS device Plucks stuff from the web (or any URL), and encodes them appropriately for viewing on a PalmOS device. Very flexible in the way sites are plucked, e.g. link depth, images etc. debian/plucker.links0000644000000000000000000000037611030243064011674 0ustar usr/share/pyshared/PyPlucker/pluck-comics.py usr/bin/pluck-comics usr/share/pyshared/PyPlucker/Decode.py usr/bin/plucker-dump usr/share/pyshared/PyPlucker/PluckerDocs.py usr/bin/plucker-decode usr/share/pyshared/PyPlucker/Spider.py usr/bin/plucker-build debian/plucker-prc-install.10000644000000000000000000000564511030241113013137 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH plucker-prc-install 1 "August 22, 2005" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME plucker-prc-install \- fetch and install Plucker viewer application on a Palm pilot .SH SYNOPSIS .B plucker-prc-install .RI [ options ] .SH DESCRIPTION This manual page documents briefly the .B plucker-prc-install command. This manual page was written for the Debian distribution because this program was created for the Debian package. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBplucker-prc-install\fP is a program that fetches and installs the Plucker viewer application. .PP The program uses .B wget to get the .tar.bz2 archive from the Web. You need to be connected to the Internet and have .B wget working correctly in order to use this program. You may have to configure the environment variable http_proxy. You can take a look at the .B lynx command manpage to get information about http_proxy. .PP The program tries to use the correct language version of the viewer according to the environment variable LANG. .PP The program then uses either .B gpilot-install-file or .B pilot-xfer to transfer the three .prc files to the Palm pilot. .PP With pilot-link 0.12.x it is mandatory to provide a port to use. \fBplucker-prc-install\fP first use the value of the PILOTPORT environment variable. If PILOTPORT is not defined it uses \fI/dev/pilot\fP. If the file \fI/dev/pilot\fP does not exist it uses \fIusb:\fP. .SH OPTIONS This program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. .TP .B \-\-nohires installs the low-resolution version of the Plucker viewer. If you are using a Palm with a 160x160 screen (Palm m500-series and earlier) you can save approximately 90 KB by installing the low-resolution version of the viewer. Note that the hires version will still work on older Palms, but will just take up unnecessary space. .TP .B \-h, \-\-help Show summary of options. .TP .B \-v, \-\-version Show version of program. .SH SEE ALSO .BR pilot-xfer (1), .BR wget (1), .BR gpilot-install-file (1), .BR lynx (1). .SH AUTHOR This manual page was written by Ludovic Rousseau , for the Debian GNU/Linux system (but may be used by others). debian/compat0000644000000000000000000000000211771110352010362 0ustar 9 debian/rules0000755000000000000000000000642111771114105010247 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # # Modified to make a template file for a multi-binary package with separated # build-arch and build-indep targets by Bill Allombert 2001 # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) MAKEFLAGS += -j$(NUMJOBS) endif CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif #Architecture build: build-arch build-indep build-indep: build-stamp build-arch: build-stamp build-stamp: dh_testdir # Add here commands to configure the package. cp configure configure.orig CFLAGS=`dpkg-buildflags --get CFLAGS` \ CXXFLAGS=`dpkg-buildflags --get CXXFLAGS` \ CPPFLAGS=`dpkg-buildflags --get CPPFLAGS` \ LDFLAGS=`dpkg-buildflags --get LDFLAGS` \ ./autogen.sh \ --host=$(DEB_HOST_GNU_TYPE) \ --build=$(DEB_BUILD_GNU_TYPE) \ --prefix=/usr \ --sysconfdir=/etc \ --with-pluckerdir=/usr/share/plucker \ --with-docdir=/usr/share/doc/plucker \ --with-comicslistdir=/usr/share/plucker/pluck-comics \ --disable-palmosbuild \ --disable-java-distiller \ --disable-docbuild \ --disable-desktopbuild # make plucker-decode executable #509943 chmod +x parser/python/PyPlucker/PluckerDocs.py # Add here commands to compile the arch part of the package. MAKEFLAGS="-j1" $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp #CONFIGURE-STAMP# # Add here commands to clean up after the build process. [ ! -f Makefile ] || $(MAKE) distclean -rm -f viewer/config.log -rm -f docs/Makefile -[ -e configure.orig ] && mv configure.orig configure dh_clean install: install-arch install-arch: build-stamp dh_testdir dh_testroot dh_clean dh_installdirs # Add here commands to install the arch part of the package $(MAKE) install-pluck_comics install-manual \ install-data \ install-pyplucker \ install-gtkviewer \ DESTDIR=$(CURDIR)/debian/plucker \ BUILD_MANUAL=no # copy the Debian plucker-prc-install cp debian/plucker-prc-install debian/plucker/usr/bin # copy the Debian pluckerrc file cp debian/pluckerrc debian/plucker/etc rm debian/plucker/usr/share/doc/plucker/COPYING rmdir debian/plucker/usr/share/plucker/palm binary-arch: install-arch dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs dh_installexamples dh_installmenu dh_installman dh_link dh_strip dh_compress -X.pdb dh_fixperms dh_python2 dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-indep: binary: binary-arch .PHONY: build clean binary-arch binary-indep binary install install-arch debian/plucker.examples0000644000000000000000000000007411030241113012356 0ustar parser/defaults/exclusionlist.txt parser/defaults/home.html debian/plucker.docs0000644000000000000000000000010111030241113011457 0ustar AUTHORS BUGREPORT ChangeLog CREDITS FAQ NEWS README REQUIREMENTS debian/changelog0000644000000000000000000004646111771114163011055 0ustar plucker (1.8-34) unstable; urgency=low * Fix "AttributeError: 'module' object has no attribute 'uses_fragment'" debian/patches/88_plucker-build (Closes: #678080) * debian/compat: 8 -> 9 * debian/rules: add hardening support * debian/watch: remove template in comments to fix lintian warning I: plucker source: debian-watch-contains-dh_make-template * debian/rules: add build-indep rule. lintian warning: W: plucker source: debian-rules-missing-recommended-target build-indep -- Ludovic Rousseau Thu, 10 Mar 2011 21:32:52 +0100 plucker (1.8-33) unstable; urgency=low * Fix "deprecation of dh_pycentral, please use dh_python2" by using dh_python2 (Closes: #616943) * debian/compat: update from 5 to 8 * debian/control: Standards-Version: 3.8.4 -> 3.9.1. No change needed. -- Ludovic Rousseau Thu, 10 Mar 2011 21:14:56 +0100 plucker (1.8-32) unstable; urgency=low * debian/patches/86_assert: remove parenthesis in "assert(a)" by "assert a" and "assert(a, b)" by "assert a, b" Closes: #583636 "Make this package ready for python 2.6" * debian/patches/87_hyphen-used-as-minus-sign: fix a lintian warning: I: plucker: hyphen-used-as-minus-sign usr/share/man/man1/plucker-build.1.gz:251 * Use DEP-3 compliant headers for patches. Fix lintian warning: I: plucker source: quilt-patch-missing-description -- Ludovic Rousseau Sun, 20 Jun 2010 12:49:51 +0000 plucker (1.8-31) unstable; urgency=low * debian/control: use libjpeg-dev instead of libjpeg62-dev http://lists.debian.org/debian-devel-announce/2010/02/msg00006.html * move to source package format "3.0 (quilt)" * debian/control: Standards-Version: 3.7.3 -> 3.8.4 add support of parallel= in DEB_BUILD_OPTIONS -- Ludovic Rousseau Sun, 21 Feb 2010 15:04:40 +0100 plucker (1.8-30) unstable; urgency=low * debian/patches/85_Retriever: Closes: #498522: "Plucker uses bad User-agent HTTP header" * plucker-decode not executable (Closes: #509943) -- Ludovic Rousseau Sun, 15 Feb 2009 17:15:06 +0100 plucker (1.8-29) unstable; urgency=low * debian/control: - add Vcs-Svn: and Vcs-Browser: fields - add Homepage: field -- Ludovic Rousseau Sun, 17 Aug 2008 16:26:46 +0200 plucker (1.8-28) unstable; urgency=low * debian/patches/84_strip_px: Closes: #494613 "ValueError: invalid literal for int() with base 10: '1px'" -- Ludovic Rousseau Sun, 17 Aug 2008 16:01:07 +0200 plucker (1.8-27) unstable; urgency=low * debian/plucker.links: correct a typo that made usr/bin/pluck-comics link to a wrong destination Closes: #487778 "cruft and broken symlinks" -- Ludovic Rousseau Tue, 24 Jun 2008 17:04:55 +0200 plucker (1.8-26) unstable; urgency=low * debian/patches/83_filter.patch: allow the use of --filter=<> argment Patch from Ubuntu LP: #52882 "plucker-build : --filter option not working" -- Ludovic Rousseau Wed, 18 Jun 2008 13:30:32 +0200 plucker (1.8-25) unstable; urgency=low * use dh_link to create the links and use correct links patch adapted from Ubuntu (LP: #236035) * use quilt instead of dpatch -- Ludovic Rousseau Sat, 14 Jun 2008 21:02:43 +0200 plucker (1.8-24) unstable; urgency=low * debian/patches/80_remove_quiet.dpatch: Patch from Ubuntu Closes: #182361 "broken pipe errors from ImageParser.py" also closes Ubuntu: #54377 -- Ludovic Rousseau Sat, 16 Feb 2008 17:24:16 +0100 plucker (1.8-23) unstable; urgency=low * debian/plucker.install: add usr/lib Closes: Bug#465516: "plucker-build: command not found" -- Ludovic Rousseau Wed, 13 Feb 2008 20:31:54 +0100 plucker (1.8-22) unstable; urgency=low * debian/plucker-prc-install: use = instead of == Closes: #465015: "plucker: bashism in /bin/sh script" * debian/rules: correct debian-rules-ignores-make-clean-error lintian warning * debian/control: Standards-Version: 3.7.2 -> 3.7.3. No change needed * plucker.preinst: file removed. It was used to fix #386211 and can be removed in lenny (etch+1) * debian/copyright: add a Copyright Holder: line -- Ludovic Rousseau Sun, 10 Feb 2008 15:53:00 +0000 plucker (1.8-21) unstable; urgency=low * the plucker-desktop package can't be built anymore, drop it. A patch is available at http://bugs.jpilot.org/1784 and is applied upstream in CVS but version 1.9 is still not available * debian/pluckerrc: default image_parser is now pil2 instdead of netpbm2 * debian/control: plucker depends on python-imaging instead of netpbm since the default image_parser is now PIL (Python Imaging Library) -- Ludovic Rousseau Tue, 08 May 2007 21:21:29 +0200 plucker (1.8-20) unstable; urgency=low * debian/rules: use /usr/share/pycentral/plucker instdead of /usr/lib/python2.4. Closes: #391338 "plucker-build: command not found" -- Ludovic Rousseau Tue, 10 Oct 2006 22:51:04 +0200 plucker (1.8-19) unstable; urgency=low * debian/rules: add --sysconfdir=/etc to ./configure line to use /etc/pluckerrc instead of /usr/etc/pluckerrc Closes: #385910 "plucker: Plucker for Python2.4 will not parse images" -- Ludovic Rousseau Sat, 23 Sep 2006 16:23:35 +0200 plucker (1.8-18) unstable; urgency=low * remove /usr/lib/python2.3/site-packages/PyPlucker/ in plucker.preinst Closes: #386211 "plucker: Fails to remove byte compiled files from previous version" -- Ludovic Rousseau Fri, 8 Sep 2006 14:27:39 +0200 plucker (1.8-17) unstable; urgency=low * Closes: #385244 "plucker-build inaccessible, aliased to python2.3 but package ships for python2.4" * debian/pycompat: contains 2 to support the current Python policy * debian/plucker-prc-install: update to provide a port to use with -p. -- Ludovic Rousseau Tue, 5 Sep 2006 21:50:07 +0200 plucker (1.8-16+b1) unstable; urgency=low * Binary-only non-maintainer upload for i386; no source changes. * Rebuild against python 2.4 -- Debian/i386 Build Daemon Tue, 22 Aug 2006 02:55:37 -0700 plucker (1.8-16) unstable; urgency=low * debian/rules: use --with-pluckerdir= and --with-docdir=. Closes: #381527 "plucker-setup fails to find configdir" * debian/patches/71_non_ascii.dpatch: convert some latin1 characters in ASCII to avoid some warnings reported in #381343 -- Ludovic Rousseau Mon, 7 Aug 2006 01:03:15 +0200 plucker (1.8-15) unstable; urgency=low * debian/control: add Build-Depends: zlib1g-dev, libgtk2.0-dev. Closes: #374050: "plucker - FTBFS: cp: cannot stat `debian/tmp//usr/bin/plucker': No such file or directory" -- Ludovic Rousseau Sat, 17 Jun 2006 12:23:42 +0200 plucker (1.8-14) unstable; urgency=low * add /usr/bin/plucker in the package. Closes: #304621 "plucker: Include GTK viewer" -- Ludovic Rousseau Sat, 3 Jun 2006 18:40:36 +0200 plucker (1.8-13) unstable; urgency=low * New maintainer * debian/README.Debian: update. - Closes: #289223 "plucker/README.Debian: say what to do" - Closes: #289933 "plucker/README.Debian: how to run on Debian" * parser/defaults/home.html: update Plucker homepage URL - Closes: #289936 "home.html: paged moved" * debian/control: add Suggests: plucker-desktop for plucker - Closes: #339112 "plucker: Suggest plucker-desktop" * debian/plucker-prc-install.1: revert to a correct version - Closes: #328748 "whatis parse error in plucker-prc-install manpage" - Closes: #339651 "plucker-prc-install.1.gz: not a man page" -- Ludovic Rousseau Thu, 1 Jun 2006 22:51:04 +0200 plucker (1.8-12) unstable; urgency=low * Upload as part of the GCC 4.1 transition. * Remove extra qualification from C++ header file (Closes: #356370). * Orphan as per the maintainer's request. -- Martin Michlmayr Sat, 27 May 2006 13:40:24 +0200 plucker (1.8-11) unstable; urgency=low * Install the comics in /usr/share/plucker/comics for real, and get rid of /usr/share/plucker/pluk-comics/ (Closes: #325608). -- Amaya Rodrigo Sastre Wed, 31 Aug 2005 16:43:00 +0200 plucker (1.8-10) unstable; urgency=low * Apply patch from Reynaldo H. Verdejo Pinochet that fixes a syntax error when using pilot-xfer as transfer agent (Closes: #325275). -- Amaya Rodrigo Sastre Sat, 27 Aug 2005 17:31:26 +0200 plucker (1.8-9) unstable; urgency=low * The "Patches fix karma" release. * Thanks to Alex Malinovich for the patch fixing plucker-prc-install manpage (Closes: #289219). * Thanks to Alex Malinovich for the patch fixing the plucker-prc-install script so that it installs the current version and include a number of variables to make future updates to the script much easier (Closes: #324489) -- Amaya Rodrigo Sastre Tue, 23 Aug 2005 16:57:25 +0200 plucker (1.8-8) unstable; urgency=low * Hack the install target so that we get the comics right (Closes: #261332). * Authentication is documented in the FAQ 3.6. (Closes: #150198). In short: use sitescooper with plucker, as upstream will not fix this. -- Amaya Rodrigo Sastre Fri, 12 Aug 2005 13:25:44 +0200 plucker (1.8-7) unstable; urgency=low * Get FAQ from CVS fixing broken URLS (Closes: #190648). * Remove bashism in plucker-prc-install (Closes: #279668). * Get docs/plucker-build.1 from CVS (Closes: #289226). * Fix email address hyphenation in docs/plucker-build (Closes: #305251). -- Amaya Rodrigo Sastre Thu, 11 Aug 2005 13:56:54 +0200 plucker (1.8-6) unstable; urgency=low * Corrected Dependencies on libwxgtk2.4-1 (Closes: #321554). * "Jens, you will be very dearly missed". -- Amaya Rodrigo Sastre Thu, 11 Aug 2005 10:09:50 +0200 plucker (1.8-5) unstable; urgency=low * Get rid of config.log in debian/rules clean target (Closes: #304432). * Include a new version of TextParser.py, patch provided by Corey Wright (Closes: #302725). * FTBFS: I suck and create temp files during the config target, making "dpkg-buildpackage -uc -us -B -rsudo", and thus, autobuilder, fail. Patch provided by Regis Boudin (Closes: #304432). -- Amaya Rodrigo Sastre Fri, 5 Aug 2005 14:25:35 +0200 plucker (1.8-4) unstable; urgency=low * Really fix the arch: any issue (Closes: #283379). -- Amaya Rodrigo Sastre Mon, 20 Dec 2004 22:27:46 +0100 plucker (1.8-3) unstable; urgency=low Andree Leidenfrost: * Recompile to get rid of libstdc++6 dependency. (Closes: #279272.) * Added menu entry with icon. * Added overrides file for lintian to eliminate the following warnings: * configure-generated-file-in-source config.log * configure-generated-file-in-source config.status * Added build dependebcy on libjgpeg62-dev to get around distclean failure because explode Makefile is not created. * Fixed dpkg-source warning about unknown information fields by removing the 'Author:' and 'Homepage:' lines from the description in the control file - they are in the copyright file anyway. Amaya Rodrigo: * Arch: any (Closes: #283379). * Remove Ian Murdock from the Uploadres field. * Recompile to get rid of the segfault (Closes: #279275). -- Amaya Rodrigo Sastre Sat, 18 Dec 2004 23:35:38 +0100 plucker (1.8-2) unstable; urgency=low * Changed Build-Depends-Indep to Build-Depends. Hopes this Closes: #278055 * Uncommented make con debian/rules. Now we must compile the package to have a plucker-desktop binary (Closes: #278637) * Modified plucker description on control file: we don't ship the package with the plucker viewer. * I think this bug was already solved on #225751 (Closes: #226219) -- Pablo S. Torralba Fri, 29 Oct 2004 14:18:07 +0200 plucker (1.8-1) unstable; urgency=low * New upstream release (Closes: #262670). * Used patch from Christophe Nowicki , to enable the plucker-desktop build (Closes: #268849). * Use dh_installman instead of dh_installmanpages, which is depeciated * Updated README.Debian with useful likns for newbies and developers (Closes: #235160). * Added Author and Homepage in debian/control. * This is the "Geeks should not be forced to face Real Life" release. -- Amaya Rodrigo Sastre Thu, 14 Oct 2004 02:12:35 +0200 plucker (1.6.1-3) unstable; urgency=low * New Maintainer (Closes: #275176). * Depend on pyton >= 2.3 (Closes: #227666). * Added Ian Murdock and Pablo S. Torralba and Ian Murdock to Uploaders field. * Improved descriptions. * Added path to map files in pluckerrc. Fixed path issue in plucker-build manpage (Closes: #225751). * Updated debian/rules to deal with not found exxample files (Closes: #228725). * Proudly added Erinn's patch for pilot-xfer to work (Closes: #232504). * Get rid of all the .pyc and scaped all '-' in manpages to make lintian happy. * And that's all for now, folks! -- Amaya Rodrigo Sastre Wed, 13 Oct 2004 22:18:15 +0200 plucker (1.6.1-2) unstable; urgency=low * Removed doc-base as no manual is installed (closes: #223919) -- Pablo S. Torralba Sun, 14 Dec 2003 05:35:19 +0100 plucker (1.6.1-1) unstable; urgency=low * New upstream release (closes: #203833) * Updated to python version 2.3 (closes: #205826) * Removed repeated changelog file on package (closes: #193975) * Changed maintainer email -- Pablo S. Torralba Sat, 13 Dec 2003 04:15:33 +0100 plucker (1.2-4.1) unstable; urgency=high * Non Maintainer Upload * urgency=high since it corrects two RC bugs * Avoid a inifinite loop at compilation. Closes: #184285 * Do not distribute the Palm .prc application and provide an installation script plucker-prc-install instead. Closes: #217445 -- Ludovic Rousseau Fri, 5 Dec 2003 13:56:07 +0100 plucker (1.2-4) unstable; urgency=low * New Mantainer (closes: #160472). * Fixed "'deprecated' is not defined" error (closes: #168802). * Sponsored upload by Amaya Rodrigo Sastre -- Pablo S. Torralba Sun, 1 Dec 2002 14:18:27 +0100 plucker (1.2-3) unstable; urgency=low * Revert to python2.1, some strange problem occured with 2.2, suggestions for the actual problem welcome (closes: #168125). * Remove debian/conffiles, handled by debhelper. -- Mikael Hedin Fri, 8 Nov 2002 16:56:17 +0100 plucker (1.2-2) unstable; urgency=low * A lot of python2.2 got lost in the last version, fixed now. -- Mikael Hedin Wed, 6 Nov 2002 18:43:45 +0100 plucker (1.2-1) unstable; urgency=low * New upstream release (closes: 166871). * B-d and depend on the python version we use (python2.2 now) (closes: #16282). -- Mikael Hedin Wed, 6 Nov 2002 14:57:33 +0100 plucker (1.1.14-4) unstable; urgency=medium * Added .iso, .raw, .deb, .rpm to exclusionlist (closes: #143421) * Keep medium urgency to get the last fix into woody. -- Mikael Hedin Thu, 25 Apr 2002 23:12:08 +0200 plucker (1.1.14-3) unstable; urgency=medium * Fix for error message (closes: #144364). * Medium urgency, as this shows up as cryptic backtraces for unknown arguments. -- Mikael Hedin Thu, 25 Apr 2002 17:17:56 +0200 plucker (1.1.14-2) unstable; urgency=low * Ok, stupid me, the Profiling module must be there (closes: #131936) -- Mikael Hedin Sun, 3 Feb 2002 21:26:10 +0100 plucker (1.1.14-1) unstable; urgency=low * New upstream version. * Add source for the viewer app (closes: #130626). * Description spelling fix (closes: #125255). * Updated copyright file (closes: #131119). -- Mikael Hedin Fri, 1 Feb 2002 19:00:49 +0100 plucker (1.1.13-2) unstable; urgency=low * Using the new policy. * viewer/Makefile.in: Removed clean rule that made make stop. * Depend on python2.1, and build with it. Changed all references from 1.5 to 2.1. * Use #!/usr/bin/python2.1 (closes: #115937). * unix/setup.py.in: fixed to read the language choise (closes: #116270). * debian/pluckerrc: Changed location of mapfiles (closes: #116229). -- Mikael Hedin Wed, 31 Oct 2001 11:40:51 +0100 plucker (1.1.13-1) unstable; urgency=low * New upstream version. * Build-Depends -> Build-Depends-Indep and use the binary-indep target. * Remove the python-base dependency, as lintian says it's evil to have two. It probably will be done in a different way anyway, when we have a python policy. * Removed my manpages, upstream now has their own. -- Mikael Hedin Sun, 14 Oct 2001 13:54:31 +0200 plucker (1.1.12-1) unstable; urgency=low * New upstream version. * New standards-version (no changes). * Add version to python depend. -- Mikael Hedin Wed, 5 Sep 2001 11:37:10 +0200 plucker (1.1.5-3) unstable; urgency=low * A few lines more from micke@sslug.dk to keep quiet (c.f. bug #105252). -- Mikael Hedin Wed, 18 Jul 2001 09:19:57 +0200 plucker (1.1.5-2) unstable; urgency=low * Suppress information message if --quiet (closes: #105252). -- Mikael Hedin Tue, 17 Jul 2001 13:12:12 +0200 plucker (1.1.5-1) unstable; urgency=low * New upstream version. * Added pluck-comics to install. -- Mikael Hedin Tue, 3 Jul 2001 13:45:46 +0200 plucker (1.1-2) unstable; urgency=low * Added conffile /etc/pluckerrc to make use of pnmtopalm by default. * Recommend netpbm instead of pnmtotbmp, wich becomes obsolete now. -- Mikael Hedin Mon, 9 Apr 2001 23:40:19 +0200 plucker (1.1-1) unstable; urgency=low * New upstream version. * One more file to chmod -x. -- Mikael Hedin Mon, 9 Apr 2001 18:42:33 +0200 plucker (1.0-6) unstable; urgency=low * Fixed typo in prerm script. -- Mikael Hedin Thu, 5 Apr 2001 22:29:05 +0200 plucker (1.0-5) unstable; urgency=low * Added --sysconfdir=/etc, where plucker will look for pluckerrc created by sysadm (we don'y provide any). * Removed some autogenerated files (e.g. Makefile). * Removed call to compileall.py during make install, we do that in postinst instead, this way we have architecture: all instead. You should really read the docs etc... -- Mikael Hedin Thu, 5 Apr 2001 21:42:29 +0200 plucker (1.0-4) unstable; urgency=low * New email. * Removed autogenerated files from cvs, they should not go into .diff.gz. * djpeg is in libjpeg-progs, changed suggests:. -- Mikael Hedin Sat, 17 Mar 2001 18:36:00 +0100 plucker (1.0-3) unstable; urgency=low * Don't install INSTALL -- Mikael Hedin Mon, 5 Mar 2001 22:30:56 +0100 plucker (1.0-2) unstable; urgency=low * UserGuide.prc was erroneously gzipped. Added -X.pdb to dh_compress to fix. -- Mikael Hedin Mon, 18 Dec 2000 15:35:10 +0100 plucker (1.0-1) unstable; urgency=low * Initial Release. -- Mikael Hedin Mon, 11 Dec 2000 21:14:48 +0100 debian/plucker.dirs0000644000000000000000000000001411030241113011473 0ustar etc usr/bin debian/plucker-doc.install0000644000000000000000000000001011030241113012737 0ustar #DOCS# debian/patches/0000755000000000000000000000000011771114361010617 5ustar debian/patches/70_proxy_wizardpage.h.patch0000644000000000000000000000117111407407253015773 0ustar Author: Ludovic Rousseau Subject: Fix a C++ warning diff -urNad plucker~/plucker_desktop/proxy_wizardpage.h plucker/plucker_desktop/proxy_wizardpage.h --- plucker~/plucker_desktop/proxy_wizardpage.h 2006-06-16 18:27:26.000000000 +0200 +++ plucker/plucker_desktop/proxy_wizardpage.h 2006-06-16 18:50:23.000000000 +0200 @@ -71,7 +71,7 @@ /*! \return TRUE if proxy is valid. */ - bool proxy_wizardpage::is_proxy_valid(); + bool is_proxy_valid(); //! Writes the proxy settings collected. into their configuration file keys. void write_configuration(); debian/patches/20_manpages.patch0000644000000000000000000010763311407407253013747 0ustar Author: Ludovic Rousseau Subject: fix a lintian warning: I: plucker: hyphen-used-as-minus-sign --- a/docs/pluck-comics.1 +++ b/docs/pluck-comics.1 @@ -4,25 +4,25 @@ pluck-comics \- gathers selected comics for Plucker .SH SYNOPSIS \fBpluck-comics\fR -[-a] [-d] [-h] [-i] [-l \fIlocation\fR] comic ... +[\-a] [\-d] [\-h] [\-i] [\-l \fIlocation\fR] comic ... .SH DESCRIPTION .B pluck-comics gathers comics from selected websites for Plucker. Run the tool with no options to get a list of all available comics. .SH OPTIONS .TP -\fB-a\fR +\fB\-a\fR collect all known comics .TP -\fB-d\fR +\fB\-d\fR Delete \fBall\fR files in \fIlocation\fR before gathering new ones .TP -\fB-h\fR +\fB\-h\fR create a home page in \fIlocation\fR for the comics .TP -\fB-i\fR +\fB\-i\fR put icons on home page .TP -\fB-l\fR \fIlocation\fR +\fB\-l\fR \fIlocation\fR the location to store the comics .SH "AUTHOR" Christopher R. Hawks (man page by Michael Nordstrom, ) --- a/docs/plucker-build.1 +++ b/docs/plucker-build.1 @@ -1,7 +1,7 @@ '\" t .\" $Id: plucker-build.1,v 1.22 2002/10/16 01:57:57 janssen Exp $ .\" -.\" man page for plucker-build -- an HTML-to-Plucker converter +.\" man page for plucker-build \-\- an HTML-to-Plucker converter .\" Copyright 2002 (c) Bill Janssen, .\" .\" This man page is free software; you can redistribute it and/or @@ -24,179 +24,179 @@ plucker-build \- generate a document (e-book) in Plucker format .SH SYNOPSIS \fBplucker-build\fR -[--alt-maxheight=\fIpixel-height\fR] -[--alt-maxwidth=\fIpixel-width\fR] -[--author=\fIstring\fR] -[--backup] -[--beamable] -[--bpp=\fIimage-depth\fR] -[--category=\fIdefault-category-name\fR] -[--charset=\fIcharset-indicator\fR] -[--compression=\fIcompression-type\fR] -[--depth-first] -[--doc-file=\fIname-prefix\fR] -[--doc-name=\fIdocument-name\fR] -[--doc-compression] -[--exclusion-list=\fIfilename\fR] -[--extra-section=\fIsection-name\fR] -[--help] -[--home-url=\fIbase-URL\fR] -[--icon=\fIimage-filename\fR] -[--launchable] -[--maxdepth=\fIdepth\fR] -[--maxheight=\fIpixel-height\fR] -[--maxwidth=\fIpixel-width\fR] -[--no-backup] -[--noimages] -[--not-beamable] -[--not-launchable] -[--no-urlinfo] -[--owner-id=\fIname\fR] -[--pluckerdir=\fIoutput-directory\fR] -[--pluckerhome=\fIplucker-home-directory\fR] -[--quiet] -[--referrer=\fIstring\fR] -[--status-file=\fIfilename\fR] -[--staybelow=\fIurl-prefix\fR] -[--stayonhost] -[--title=\fIstring\fR] -[--update-cache] -[--url-pattern=\fIpattern\fR] -[--user-agent=\fIstring\fR] -[--verbosity=\fIverbosity-level\fR] -[--zlib-compression] +[\-\-alt-maxheight=\fIpixel-height\fR] +[\-\-alt-maxwidth=\fIpixel-width\fR] +[\-\-author=\fIstring\fR] +[\-\-backup] +[\-\-beamable] +[\-\-bpp=\fIimage-depth\fR] +[\-\-category=\fIdefault-category-name\fR] +[\-\-charset=\fIcharset-indicator\fR] +[\-\-compression=\fIcompression-type\fR] +[\-\-depth-first] +[\-\-doc-file=\fIname-prefix\fR] +[\-\-doc-name=\fIdocument-name\fR] +[\-\-doc-compression] +[\-\-exclusion-list=\fIfilename\fR] +[\-\-extra-section=\fIsection-name\fR] +[\-\-help] +[\-\-home-url=\fIbase-URL\fR] +[\-\-icon=\fIimage-filename\fR] +[\-\-launchable] +[\-\-maxdepth=\fIdepth\fR] +[\-\-maxheight=\fIpixel-height\fR] +[\-\-maxwidth=\fIpixel-width\fR] +[\-\-no-backup] +[\-\-noimages] +[\-\-not-beamable] +[\-\-not-launchable] +[\-\-no-urlinfo] +[\-\-owner-id=\fIname\fR] +[\-\-pluckerdir=\fIoutput-directory\fR] +[\-\-pluckerhome=\fIplucker-home-directory\fR] +[\-\-quiet] +[\-\-referrer=\fIstring\fR] +[\-\-status-file=\fIfilename\fR] +[\-\-staybelow=\fIurl-prefix\fR] +[\-\-stayonhost] +[\-\-title=\fIstring\fR] +[\-\-update-cache] +[\-\-url-pattern=\fIpattern\fR] +[\-\-user-agent=\fIstring\fR] +[\-\-verbosity=\fIverbosity-level\fR] +[\-\-zlib-compression] [HOME-URL] .SH DESCRIPTION .B plucker-build -creates a Plucker binary document, which is a kind of e-book, from a URL. This document is formatted for the Plucker viewer program, which currently runs on Palm devices. The normal mode of operation is to take a \fIhome URL\fR and 'pluck' it to produce a Plucker document, either to stdout, or to a file if \fI--doc-file\fR is specified. Alternatively, specifying the option \fI--update-cache\fR will update a cache of Plucker records (though it's not clear what this is good for). The Plucker document format is specified at \fChttp://www.plkr.org/index.pl/cvs/docs/DBFormat.html?rev=HEAD\fR. +creates a Plucker binary document, which is a kind of e-book, from a URL. This document is formatted for the Plucker viewer program, which currently runs on Palm devices. The normal mode of operation is to take a \fIhome URL\fR and 'pluck' it to produce a Plucker document, either to stdout, or to a file if \fI\-\-doc-file\fR is specified. Alternatively, specifying the option \fI\-\-update-cache\fR will update a cache of Plucker records (though it's not clear what this is good for). The Plucker document format is specified at \fChttp://www.plkr.org/index.pl/cvs/docs/DBFormat.html?rev=HEAD\fR. .SH OPTIONS Many options are also available as parameters in the configuration file \fC$HOME/.pluckerrc\fR, or in the default configuration file. Where applicable, the name of the configuration file parameter is shown after the documentation on the option. An option given on the command line will override any configuration file parameter. For more on configuration files, see below. .TP -\fB--alt-maxheight=\fIpixel-height\fR +\fB\-\-alt-maxheight=\fIpixel-height\fR Specifies the maximum height, in pixels, of the \fIalternate rendition\fR of an image. (When inline images are too large to be included full-size, they are converted into smaller versions, with sizes governed by the MAXHEIGHT and MAXWIDTH parameters, and are linked to larger renditions of the images, called the \fIalternate rendition\fR.) [\fCalt_maxheight\fR] .TP -\fB--alt-maxwidth=\fIpixel-width\fR +\fB\-\-alt-maxwidth=\fIpixel-width\fR Specifies the maximum width, in pixels, of the \fIalternate rendition\fR of an image. (When inline images are too large to be included full-size, they are converted into smaller versions, with sizes governed by the MAXHEIGHT and MAXWIDTH parameters, and are linked to larger renditions of the images, called the \fIalternate rendition\fR.) [\fCalt_maxwidth\fR] .TP -\fB--author=\fIstring\fR -Sets the author of the document to \fIstring\fR, which is assumed to be in the charset of the document (see \fB--charset\fR), or ASCII if no charset is specified. [\fCauthor_md\fR] +\fB\-\-author=\fIstring\fR +Sets the author of the document to \fIstring\fR, which is assumed to be in the charset of the document (see \fB\-\-charset\fR), or ASCII if no charset is specified. [\fCauthor_md\fR] .TP -\fB--backup\fR +\fB\-\-backup\fR Sets the bit in the output file that causes the document to be backed up on Palm HotSync. By default, the document is backed up. [\fCbackup_bit\fR] .TP -\fB--beamable\fR +\fB\-\-beamable\fR Sets the bit in the output file that allows the document to be beamed. By default, the document is beamable. [\fCcopyprevention_bit\fR] .TP -\fB--bpp=\fIimage-depth\fR -Specifies the number of bits-per-pixel to be used for images. Valid values as of Plucker 1.1 are 0, 1 (the default), 2, 4, or 8. If 0 is specified, no images will be included in the document. See also \fB--noimages\fR. [\fCbpp\fR] +\fB\-\-bpp=\fIimage-depth\fR +Specifies the number of bits-per-pixel to be used for images. Valid values as of Plucker 1.1 are 0, 1 (the default), 2, 4, or 8. If 0 is specified, no images will be included in the document. See also \fB\-\-noimages\fR. [\fCbpp\fR] .TP -\fB--category=\fIdefault-category-name\fR +\fB\-\-category=\fIdefault-category-name\fR Specifies a default Plucker category or categories to include in the document. If more than one category is specified, the category names should be separated by semicolons. [\fCcategory\fR] .TP -\fB--charset=\fIcharset-indicator\fR +\fB\-\-charset=\fIcharset-indicator\fR Specifies the default character set encoding used in the text of the documents being plucked. \fIcharset-indicator\fR is either a charset name (from a small list; see \fCsrc/parser/python/PyPlucker/__init__.py.in\fR for a list of valid names), or a decimal integer indicating the charset's MIBenum value, as shown in the table at \fChttp://www.iana.org/assignments/character-sets\fR. [\fCdefault_charset\fR] .TP -\fB--compression=\fIcompression-type\fR -Specifies the type of compression to use in the document. There are two possible values for \fIcompression-type\fR: \fCdoc\fR or \fCzlib\fR. The default is \fCdoc\fR, which is the same compression system used in Palm DOC-format documents. \fCzlib\fR compression usually results in smaller documents. See also \fB--zlib-compression\fR and \fB--doc-compression\fR. [\fCcompression\fR] +\fB\-\-compression=\fIcompression-type\fR +Specifies the type of compression to use in the document. There are two possible values for \fIcompression-type\fR: \fCdoc\fR or \fCzlib\fR. The default is \fCdoc\fR, which is the same compression system used in Palm DOC-format documents. \fCzlib\fR compression usually results in smaller documents. See also \fB\-\-zlib-compression\fR and \fB\-\-doc-compression\fR. [\fCcompression\fR] .TP -\fB--depth-first\fR +\fB\-\-depth-first\fR Specifies a depth-first traversal of the web graph, rather than the default breadth-first traversal. This often works better on bushy acyclic graph structures than the breadth-first traversal. [\fCdepth_first\fR] .TP -\fB--doc-file=\fIname-prefix\fR (or \fB-f \fIname-prefix\fR) -also as \fB-f \fIname-prefix\fR. Specifies the name of the document output file, without the directory (specified with --pluckerdir) or extension (always .pdb). If not specified, and if stdout is not a tty, the document will be written to stdout. [\fCdoc_file\fR] +\fB\-\-doc-file=\fIname-prefix\fR (or \fB-f \fIname-prefix\fR) +also as \fB-f \fIname-prefix\fR. Specifies the name of the document output file, without the directory (specified with \-\-pluckerdir) or extension (always .pdb). If not specified, and if stdout is not a tty, the document will be written to stdout. [\fCdoc_file\fR] .TP -\fB--doc-name=\fIdocument-name\fR (or \fB-N \fIdocument-name\fR) -Specifies the short name by which the document will be identified in the viewer. Defaults to value of \fI--doc-file\fR. If \fI--doc-file\fR is not specified, the document name defaults to the home URL. This name should be limited to 26 characters. [\fCdoc_name\fR] +\fB\-\-doc-name=\fIdocument-name\fR (or \fB-N \fIdocument-name\fR) +Specifies the short name by which the document will be identified in the viewer. Defaults to value of \fI\-\-doc-file\fR. If \fI\-\-doc-file\fR is not specified, the document name defaults to the home URL. This name should be limited to 26 characters. [\fCdoc_name\fR] .TP -\fB--doc-compression\fR -Specifies that Doc compression, the compression scheme developed for the Palm DOC format, should be used for the parts of this document. This is the default. See also \fB--zlib-compression\fR and \fB--compression\fR. +\fB\-\-doc-compression\fR +Specifies that Doc compression, the compression scheme developed for the Palm DOC format, should be used for the parts of this document. This is the default. See also \fB\-\-zlib-compression\fR and \fB\-\-compression\fR. .TP -\fB--exclusion-list=\fIfilename\fR (or \fB-E \fIfilename\fR) +\fB\-\-exclusion-list=\fIfilename\fR (or \fB-E \fIfilename\fR) Used to add additional files to the the \fIexclusion list\fR, a list of files containing information on URLs to exclude from the document. See the User's Guide for more information on exclusion lists. [\fCexclusion_lists\fR] .TP -\fB--extra-section=\fIsection-name\fR (or \fB-s \fIsection-name\fR) +\fB\-\-extra-section=\fIsection-name\fR (or \fB-s \fIsection-name\fR) Used to add additional sections to the list to searched sections in the configuration files. A section is a named set of configuration information. By default, the \fBDEFAULT\fR section will be searched, then any operating-system-specific sections, then any sections specified on the command line. .TP -\fB--help\fR (or \fB-h\fR) +\fB\-\-help\fR (or \fB-h\fR) Outputs help on command-line parameters. .TP -\fB--home-url=\fIbase-url\fR (or \fB-H \fIbase-URL\fR) +\fB\-\-home-url=\fIbase-url\fR (or \fB-H \fIbase-URL\fR) Specifies the URL from which the document is to be constructed. This may also be specified as a single argument on the command line. If a home URL is not specified, it will default to file:/$HOME/.plucker/home.html. This default may be changed in your .pluckerrc file. Note that this value must be a valid absolute URL. A special URL scheme is supported, \fBplucker:\fR. This specifies files on the Plucker search path, which consists of \fIPluckerDir\fR (the Plucker current working directory) followed by \fIPluckerHome\fR (the Plucker home directory). [\fChome_url\fR] .TP -\fB--icon=\fIimage-filename\fR -If the output file is launchable, this switch can be used to specify the large icon shown in the launcher for the document. If not specified, a default icon is used. If the output file is not launchable, this switch has no effect. See also \fB--launchable\fR. [\fCbig_icon\fR] +\fB\-\-icon=\fIimage-filename\fR +If the output file is launchable, this switch can be used to specify the large icon shown in the launcher for the document. If not specified, a default icon is used. If the output file is not launchable, this switch has no effect. See also \fB\-\-launchable\fR. [\fCbig_icon\fR] .TP -\fB--launchable\fR +\fB\-\-launchable\fR Specifies that the output document should be shown as an icon in the system launcher. Clicking on the icon will start Plucker and select this document. By default, documents are not launchable. [\fClaunchable_bit\fR] .TP -\fB--maxdepth=\fIdepth\fR (or \fB-M \fIdepth\fR) +\fB\-\-maxdepth=\fIdepth\fR (or \fB-M \fIdepth\fR) This specifies the number of levels of links the parser will traverse when converting the input. It is best to keep this value small, or the size of your document can get very large. If you want just a page, but none of the pages pointed to by that page, use a value of 1. [\fChome_maxdepth\fR] .TP -\fB--maxheight=\fIpixel-height\fR +\fB\-\-maxheight=\fIpixel-height\fR Specifies the maximum height, in pixels, for an inline image. Overrides the MAXHEIGHT parameter in the configuration file, but is in turn overridden by any height specification in the image link itself. [\fCmaxheight\fR] .TP -\fB--maxwidth=\fIpixel-width\fR +\fB\-\-maxwidth=\fIpixel-width\fR Specifies the maximum width, in pixels, for an inline image. Overrides the MAXWIDTH parameter in the configuration file, but is in turn overridden by any width specification in the image link itself. [\fCmaxwidth\fR] .TP -\fB--no-backup\fR +\fB\-\-no-backup\fR Clears the bit in the output file that causes the document to be backed up on Palm HotSync. By default, the document is backed up. [\fCbackup_bit\fR] .TP -\fB--noimages\fR -Specifies that no images will be included. Identical to --bpp=0. See also \fB--bpp\fR. +\fB\-\-noimages\fR +Specifies that no images will be included. Identical to \-\-bpp=0. See also \fB\-\-bpp\fR. .TP -\fB--not-beamable\fR +\fB\-\-not-beamable\fR Sets the bit in the output file that prevents the document from being beamed. By default, the document is beamable. [\fCcopyprevention_bit\fR] .TP -\fB--not-launchable\fR +\fB\-\-not-launchable\fR Specifies that the output document should not be shown as an icon in the system launcher. By default, documents are not launchable. [\fClaunchable_bit\fR] .TP -\fB--no-urlinfo\fR +\fB\-\-no-urlinfo\fR Specifies that no URL information will be included in the document. When links are included in documents, the information about the actual URL is included by default. This is often handy for external references (links to documents not included in the document). Use of this option may result in a slightly smaller document. [\fCno_urlinfo\fR] .TP -\fB--owner-id=\fIname\fR +\fB\-\-owner-id=\fIname\fR Specifies an owner-id for the document. This causes the document to be lightly encrypted in such a way that it will only open on a device with a matching owner-id. With the PalmOS viewer, the HotSync UserName is used as the owner-id. [\fCowner_id_build\fR] .TP -\fB--pluckerhome=\fIplucker-home-directory\fR (or \fB-P \fIplucker-home-directory\fR) -Overrides the default value for \fIPluckerHome\fR, which is $HOME/.plucker/. Can also be specified by setting the environment variable PLUCKERHOME. An explicit value for \fB--pluckerhome\fR overrides any setting of PLUCKERHOME. [\fCPLUCKERHOME\fR] +\fB\-\-pluckerhome=\fIplucker-home-directory\fR (or \fB-P \fIplucker-home-directory\fR) +Overrides the default value for \fIPluckerHome\fR, which is $HOME/.plucker/. Can also be specified by setting the environment variable PLUCKERHOME. An explicit value for \fB\-\-pluckerhome\fR overrides any setting of PLUCKERHOME. [\fCPLUCKERHOME\fR] .TP -\fB--pluckerdir=\fIoutput-directory\fR (or \fB-p \fIoutput-directory\fR) -Overrides the default value for \fIPluckerDir\fR, which defaults to \fIPluckerHome\fR (see \fB--pluckerhome\fR). \fIPluckerDir\fR is the default directory to which output documents will be written, and which will be searched for input files if the \fBplucker:\fR URL scheme is used. [\fCpluckerdir\fR] +\fB\-\-pluckerdir=\fIoutput-directory\fR (or \fB-p \fIoutput-directory\fR) +Overrides the default value for \fIPluckerDir\fR, which defaults to \fIPluckerHome\fR (see \fB\-\-pluckerhome\fR). \fIPluckerDir\fR is the default directory to which output documents will be written, and which will be searched for input files if the \fBplucker:\fR URL scheme is used. [\fCpluckerdir\fR] .TP -\fB--quiet\fR (or \fB-q\fR) -Same as --verbosity=0. +\fB\-\-quiet\fR (or \fB-q\fR) +Same as \-\-verbosity=0. .TP -\fB--referrer=\fIstring\fR +\fB\-\-referrer=\fIstring\fR When using HTTP to gather input, send \fIstring\fR as the value of the Referrer HTTP header. Default is to send no referrer header. [\fCreferrer\fR] .TP -\fB--status-file=\fIfilename\fR +\fB\-\-status-file=\fIfilename\fR Gives the name of a file to read to get an estimate for the total number of pages that have to be processed, and to continually write with a single line giving the number of pages collected so far, the number of links still to process, and the estimated number of total pages that will be gathered (or zero if this is not known). The three values are written as space-separated ASCII numbers. The status line in the file is continually over-written as the pluck progresses, so the file will always contain only a single line. [\fCstatus_file\fR] .TP -\fB--staybelow=\fIurl-prefix\fR +\fB\-\-staybelow=\fIurl-prefix\fR Automatically excludes all URLs that do not start with \fIurl-prefix\fR. A handy way to process a subtree. [\fChome_staybelow\fR] .TP -\fB--stayondomain\fR +\fB\-\-stayondomain\fR Specifies that no web hosts other than those in the same domain as the original base URL will be visited for parts of the document. [\fChome_stayondomain\fR] .TP -\fB--stayonhost\fR +\fB\-\-stayonhost\fR Specifies that no web hosts other than that named in the original base URL will be visited for parts of the document. [\fChome_stayonhost\fR] .TP -\fB--title=\fIstring\fR -Sets the title of the document to \fIstring\fR. This is different from the name of the document (see \fB--doc-name=\fR) in that it may be relatively long. The \fIstring\fR is assumed to be in the charset of the document (see \fB--charset\fR), or ASCII if no charset is specified. [\fCtitle_md\fR] +\fB\-\-title=\fIstring\fR +Sets the title of the document to \fIstring\fR. This is different from the name of the document (see \fB\-\-doc-name=\fR) in that it may be relatively long. The \fIstring\fR is assumed to be in the charset of the document (see \fB\-\-charset\fR), or ASCII if no charset is specified. [\fCtitle_md\fR] .TP -\fB--update-cache\fR (or \fB-c\fR) +\fB\-\-update-cache\fR (or \fB-c\fR) Update the Plucker cache of records, rather than build a document. [\fCuse_cache\fR] .TP -\fB--url-pattern=\fIpattern\fR +\fB\-\-url-pattern=\fIpattern\fR Automatically excludes all URLs that do not match the regular expression \fIpattern\fR. The regular expression language used is that of the Python 're' module, as specified in \fChttp://www.python.org/doc/current/lib/re-syntax.html\fR. [\fChome_url_pattern\fR] .TP -\fB--user-agent=\fIstring\fR +\fB\-\-user-agent=\fIstring\fR When using HTTP to gather input, send \fIstring\fR as the value of the User-Agent HTTP header. Default is to send "Plucker/Py-\fIXX\fR", where \fIXX\fR is the Plucker version. [\fCuser_agent\fR] .TP -\fB--verbosity=\fIverbosity-level\fR (or \fB-V \fIverbosity-level\fR) -Sets the level of status information output to the value specified by \fIverbosity-level\fR. Appropriate values are 0, for total silence, 1, for standard progress status (the default value), and 2, for lots of output about gathering and parsing the input (usually reserved for debugging). Values larger than 2 will also work, but tend to give profuse output that's only useful to developers. See also \fB--quiet\fR. [\fCverbosity\fR] +\fB\-\-verbosity=\fIverbosity-level\fR (or \fB-V \fIverbosity-level\fR) +Sets the level of status information output to the value specified by \fIverbosity-level\fR. Appropriate values are 0, for total silence, 1, for standard progress status (the default value), and 2, for lots of output about gathering and parsing the input (usually reserved for debugging). Values larger than 2 will also work, but tend to give profuse output that's only useful to developers. See also \fB\-\-quiet\fR. [\fCverbosity\fR] .TP -\fB--zlib-compression\fR -Specifies that Zlib compression should be used for the parts of this document. This is considerably more efficient than the default compression format, Doc compression. See also \fB--doc-compression\fR and \fB--compression\fR. +\fB\-\-zlib-compression\fR +Specifies that Zlib compression should be used for the parts of this document. This is considerably more efficient than the default compression format, Doc compression. See also \fB\-\-doc-compression\fR and \fB\-\-compression\fR. .SH EXAMPLES To build a pocket version of the weekly cafeteria menu at the foo.com cafeteria, available on the Web at http://www.foo.com/ops/cafe/weeklymenu.html, without following any links, and without including any images, and naming the document "Cafeteria Menu", and putting the document in a file named /tmp/Menu.pdb, one would say: .sp @@ -204,21 +204,21 @@ .sp Or alternatively, .sp -\fC% plucker-build --pluckerdir=/tmp \\ +\fC% plucker-build \-\-pluckerdir=/tmp \\ .br - --doc-name="Cafeteria Menu" \\ + \-\-doc-name="Cafeteria Menu" \\ .br - --doc-file=Menu \\ + \-\-doc-file=Menu \\ .br - --home-url="http://www.foo.com/cafe/weeklymenu.html" \\ + \-\-home-url="http://www.foo.com/cafe/weeklymenu.html" \\ .br - --maxdepth=1 \\ + \-\-maxdepth=1 \\ .br - --bpp=0 + \-\-bpp=0 .br Pluckerdir is '/tmp'... .br ----- 0 collected, 1 to do ---- +\-\-\-\- 0 collected, 1 to do \-\-\-\- .br Processing http://www.foo.com/cafe/weeklymenu.html... .br @@ -226,7 +226,7 @@ .br Parsed ok. .br ----- all pages retrieved and parsed ---- +\-\-\-\- all pages retrieved and parsed \-\-\-\- .sp Writing out collected data... .br @@ -246,9 +246,9 @@ .br Done! .br -% ls -l /tmp/Menu.pdb +% ls \-l /tmp/Menu.pdb .br --rw-rw-r-- 1 user somegroup 2646 Nov 2 21:19 /tmp/Menu.pdb +-rw-rw-r\-\- 1 user somegroup 2646 Nov 2 21:19 /tmp/Menu.pdb .br % \fR .sp @@ -261,12 +261,12 @@ If set, will be used to retrieve URLs with the \fChttp\fR URL scheme. .TP PLUCKERHOME -Specifies value for \fIPluckerHome\fR. See the option \fI--pluckerhome\fR for more details. +Specifies value for \fIPluckerHome\fR. See the option \fI\-\-pluckerhome\fR for more details. .TP PLUCKERDIR -Specifies value for \fIPluckerDir\fR. See the option \fI--pluckerdir\fR for more details. +Specifies value for \fIPluckerDir\fR. See the option \fI\-\-pluckerdir\fR for more details. .SH "CONFIGURATION FILES" -Two configuration files are examined for customized settings of the various \fIplucker-build\fR parameters. The first is a system-wide configuration file, by default \fC/usr/local/etc/pluckerrc\fR. Any settings in this may be overridden with a personal configuration file, \fC$HOME/.pluckerrc\fR. Both files contain any number of \fIsections\fR, each of which may contain any number of configuration parameter settings. Each section has a name, which is enclosed in square brackets, followed by parameter settings. Normally, only the section called "default" will be examined. Extra sections may be specified with the \fI--extra-section\fR option to plucker-build; settings in these sections will override values in the default section. +Two configuration files are examined for customized settings of the various \fIplucker-build\fR parameters. The first is a system-wide configuration file, by default \fC/usr/local/etc/pluckerrc\fR, or /etc/pluckerrc in your Debian system. Any settings in this may be overridden with a personal configuration file, \fC$HOME/.pluckerrc\fR. Both files contain any number of \fIsections\fR, each of which may contain any number of configuration parameter settings. Each section has a name, which is enclosed in square brackets, followed by parameter settings. Normally, only the section called "default" will be examined. Extra sections may be specified with the \fI\-\-extra-section\fR option to plucker-build; settings in these sections will override values in the default section. .PP Parameter settings have the form form \fIname = value\fR, where name is the name of a plucker-build parameter, and value is a string, integer, floating-point, or boolean value. A colon character (:) may be used instead of the equals sign to separate name and value. Comments may be expressed by starting any line with the characters "rem", or with the character "#", or with the character ";". Boolean values of True may be expressed with "TRUE", "true", "True", "on", or "1". Boolean values of False may be expressed with "FALSE", "false", "False", "off", or "0". .PP @@ -275,28 +275,28 @@ The following parameters are understood: .TP \fBPLUCKERHOME\fR -See option \fI--pluckerhome\fR. +See option \fI\-\-pluckerhome\fR. .TP \fBalt_maxheight\fR -See option \fI--alt-maxheight\fR. +See option \fI\-\-alt-maxheight\fR. .TP \fBalt_maxwidth\fR -See option \fI--alt-maxwidth\fR. +See option \fI\-\-alt-maxwidth\fR. .TP \fBanchor_color\fR A color to draw all links in, expressed as one of the 16 standard Web color names, or in the Web standard RGB color notation. See the HTTP 4.0.1 specification for more details on allowed color names and RGB notation. .TP \fBauthor_md\fR -See option \fI--author\fR. +See option \fI\-\-author\fR. .TP \fBauto_scale_images\fR A boolean; if true, \fCplucker-build\fR will automatically attempt to convert images which are too large to include in the document, to a smaller form which will fit in the document. Defaults to false. .TP \fBbackup_bit\fR -See option \fI--backup\fR. +See option \fI\-\-backup\fR. .TP \fBbig_icon\fR -See option \fI--icon\fR. +See option \fI\-\-icon\fR. .TP \fBbmp_to_tbmp\fR Name of the bmp2tbmp program in Windows. Defaults to \fCBmp2Tbmp.exe\fR. @@ -305,19 +305,19 @@ Parameter for the bmp2tbmp program in the Windows ImageMagick image parser. .TP \fBbpp\fR -See option \fI--bpp\fR. +See option \fI\-\-bpp\fR. .TP \fBcache_dir_name\fR Specify the subdirectory of \fIPluckerDir\fR to use for cache storage. The default is \fC"cache"\fR. .TP \fBcategory\fR -See option \fI--category\fR. +See option \fI\-\-category\fR. .TP \fBcolor_paragraphs\fR Boolean; if set, will insert a specific foreground color at beginning of every paragraph. Shouldn't be necessary, and defaults to off. .TP \fBcompression\fR -See option \fI--compression\fR. +See option \fI\-\-compression\fR. .TP \fBconvert_program\fR If using the deprecated imagemagick image parser, the name of the \fCconvert\fR program. Defaults to \fCconvert\fR (\fCconvert.exe\fR for Windows). @@ -326,7 +326,7 @@ Parameter for the Windows ImageMagick image parser's use of \fCconvert\fR. .TP \fBcopyprevention_bit\fR -See option \fI--beamable\fR. +See option \fI\-\-beamable\fR. .TP \fBdb_file\fR Deprecated alternative to \fIdoc_file\fR. May disappear in any release. @@ -335,22 +335,22 @@ Deprecated alternative to \fIdoc_name\fR. May disappear in any release. .TP \fBdefault_charset\fR -See option \fI--charset\fR. +See option \fI\-\-charset\fR. .TP \fBdepth_first\fR -See option \fI--depth-first\fR. +See option \fI\-\-depth-first\fR. .TP \fBdjpeg_program\fR Name of the \fCdjpeg\fR program. Defaults to \fCdjpeg\fR. Used by the netpbm2 image parser. .TP \fBdoc_file\fR -See option \fI--doc-file\fR. +See option \fI\-\-doc-file\fR. .TP \fBdoc_name\fR -See option \fI--doc-name\fR. +See option \fI\-\-doc-name\fR. .TP \fBexclusion_lists\fR -See option \fI--exclusion-list\fR. If multiple files are specified here, they should be separated by the appropriate separator character for your operating system (a colon on Unix platforms, a semicolon on Windows platforms). +See option \fI\-\-exclusion-list\fR. If multiple files are specified here, they should be separated by the appropriate separator character for your operating system (a colon on Unix platforms, a semicolon on Windows platforms). .TP \fBfilename_extension\fR Extension to use for the filename. Defaults to \fCpdb\fR. Another possibility is \fCplkr\fR. @@ -362,22 +362,22 @@ Boolean, defaults to on. Used by the Windows image parser. .TP \fBhome_maxdepth\fR -See option \fI--maxdepth\fR. +See option \fI\-\-maxdepth\fR. .TP \fBhome_staybelow\fR -See option \fI--staybelow\fR. +See option \fI\-\-staybelow\fR. .TP \fBhome_stayondomain\fR -See option \fI--stayondomain\fR. +See option \fI\-\-stayondomain\fR. .TP \fBhome_stayonhost\fR -See option \fI--stayonhost\fR. +See option \fI\-\-stayonhost\fR. .TP \fBhome_url\fR -See option \fI--home-url\fR. +See option \fI\-\-home-url\fR. .TP \fBhome_url_pattern\fR -See option \fI--url-pattern\fR. +See option \fI\-\-url-pattern\fR. .TP \fBhttp_proxy\fR String giving any HTTP proxy server to use. Sets the environment variable HTTP_PROXY to this value. @@ -401,25 +401,25 @@ Boolean which when set will cause paragraphs to have leading indentation, but no extra leading space. Defaults to off. .TP \fBlaunchable_bit\fR -See option \fI--launchable\fR. +See option \fI\-\-launchable\fR. .TP \fBmax_tbmp_size\fR Integer, maximum size for an image in the windows image parser. .TP \fBmaxheight\fR -See option \fI--maxheight\fR. +See option \fI\-\-maxheight\fR. .TP \fBmaxwidth\fR -See option \fI--maxwidth\fR. +See option \fI\-\-maxwidth\fR. .TP \fBno_dithering_in_java_image_quantization\fR Boolean, used in the Java \fCplucker-build\fR image parser to turn off dithering when an image is being quantized to the fixed set of colors used in Palm grayscale or eight-bit colormaps. Defaults to false. .TP \fBno_urlinfo\fR -See option \fI--no-urlinfo\fR. +See option \fI\-\-no-urlinfo\fR. .TP \fBowner_id_build\fR -See option \fI--owner-id\fR. +See option \fI\-\-owner-id\fR. .TP \fBpalm1bit_graymap_file\fR String, used by the netpbm2 and netpbm image parsers to get the location of the Palm colormap file. @@ -440,7 +440,7 @@ String, used by the netpbm2 image parser, giving the location of the pgmtopbm program. Defaults to \fCpgmtopbm\fR. .TP \fBpluckerdir\fR -See option \fI--pluckerdir\fR. +See option \fI\-\-pluckerdir\fR. .TP \fBpngtopnm_program\fR String, used by the netpbm2 image parser, giving the location of the pngtopnm program. Defaults to \fCpngtopnm\fR. @@ -467,7 +467,7 @@ String, used by the netpbm2 image parser, giving the location of the ppmtopgm program. Defaults to \fCppmtopgm\fR. .TP \fBreferrer\fR -See option \fI--referrer\fR. +See option \fI\-\-referrer\fR. .TP \fBretrieval_timeout\fR Integer, used to attempt to set a timeout in seconds on all retrievals. Will not affect timeouts on Java version of \fCplucker-build\fR. @@ -476,7 +476,7 @@ Filename of file containing a Palm icon to use as the small icon for the document, if the launchable bit is set. Defaults to a built-in icon. .TP \fBstatus_file\fR -See option \fI--status-file\fR. +See option \fI\-\-status-file\fR. .TP \fBstatus_line_length\fR Integer, specifying, in characters, the length of status lines output by the distiller. Defaults to 60. If a line is too long, some of the characters in the center are elided. @@ -488,7 +488,7 @@ Apparently also boolean, used by the windows image parser to indicate whether or not to use Palm compression on images. Defaults to true. The difference between this parameter and \fItbmp_compression\fR is not known. .TP \fBtitle_md\fR -See option \fI--title\fR. +See option \fI\-\-title\fR. .TP \fBtry_reduce_bpp\fR Boolean, controls whether the image parser will attempt to scale a large picture to fit by reducing the number of bits-per-pixel of the image. Only valid for netpbm2, imagemagick2, pil2, java, and windows image parsers. Defaults to off. \fItry_reduce_bpp\fR has precedence over \fItry_reduce_dimension\fR or \fIauto_scale_image\fR. @@ -497,19 +497,19 @@ Boolean, controls whether the image parser will attempt to scale a large picture to fit by reducing the size of the image. Only valid for netpbm2, imagemagick2, pil2, java, and windows parser. .TP \fBuse_cache\fR -See option \fI--update-cache\fR. Misleadingly named. +See option \fI\-\-update-cache\fR. Misleadingly named. .TP \fBuser_agent\fR -See option \fI--user-agent\fR. +See option \fI\-\-user-agent\fR. .TP \fBverbosity\fR -See option \fI--verbosity\fR. +See option \fI\-\-verbosity\fR. .TP \fBzlib_compression\fR Specifies that zlib compression should be used. Deprecated in favor of \fIcompression\fR. .SH "SEE ALSO" \fBThe Plucker User's Guide\fR, at \fChttp://plkr.org/docs/\fR. .SH "BUGS" -Report bugs to http://bugs.plkr.org/ or +Report bugs using Debian BTs and the reportbug tool, or directly upstream to http://bugs.plkr.org/ or .SH "AUTHORS" Holger Duerer, , and Bill Janssen, --- a/docs/plucker-decode.1 +++ b/docs/plucker-decode.1 @@ -4,30 +4,30 @@ plucker-decode \- parses the Plucker cache file(s) .SH SYNOPSIS \fBplucker-decode\fR -[-h] [-v] [-s] [-S] [-d] [-z] ... +[\-h] [\-v] [\-s] [\-S] [\-d] [\-z] ... .SH DESCRIPTION .B plucker-decode This tool disassembles files generated by the Plucker parser (or any other Plucker compatible parser) and collects statistics about the disassembled documents. -If you get a traceback with an assertion error, something is wrong in the data file or the data is compressed with ZLib and you forgot to specify the -z option. +If you get a traceback with an assertion error, something is wrong in the data file or the data is compressed with ZLib and you forgot to specify the \-z option. .SH OPTIONS .TP -\fB-h\fR +\fB\-h\fR display usage information and exit .TP -\fB-v\fR +\fB\-v\fR output version information and exit .TP -\fB-s\fR +\fB\-s\fR show statics for each document .TP -\fB-S\fR +\fB\-S\fR show summary statistics for all documents .TP -\fB-d\fR +\fB\-d\fR show disassembly information for each document .TP -\fB-z\fR +\fB\-z\fR use ZLib to uncompress the documents .SH "SEE ALSO" plucker-dump(1) --- a/docs/plucker-dump.1 +++ b/docs/plucker-dump.1 @@ -4,19 +4,19 @@ plucker-dump \- dumps a Plucker document .SH SYNOPSIS \fBplucker-dump\fR -[-h] [-v] [-c \fIcachedir\fR] dbfile +[\-h] [\-v] [\-c \fIcachedir\fR] dbfile .SH DESCRIPTION .B plucker-dump dumps a Plucker document back into the \fIcachedir\fR directory. \fBWARNING: THE CACHE DIRECTORY GETS ERASED !!!\fR You have been warned. .SH OPTIONS .TP -\fB-h\fR +\fB\-h\fR display usage information and exit .TP -\fB-v\fR +\fB\-v\fR output version information and exit .TP -\fB-c\fR \fIcachedir\fR +\fB\-c\fR \fIcachedir\fR use the specified \fIcachedir\fR instead of the default ($PLUCKERDIR/cache) .SH "SEE ALSO" plucker-decode(1) debian/patches/71_non_ascii.patch0000644000000000000000000000362211407407253014115 0ustar Author: Ludovic Rousseau Subject: do not use non-ASCII characters diff -urNad plucker-1.8~/parser/python/PyPlucker/helper/doc_compress.py plucker-1.8/parser/python/PyPlucker/helper/doc_compress.py --- plucker-1.8~/parser/python/PyPlucker/helper/doc_compress.py 2006-06-18 19:02:55.000000000 +0200 +++ plucker-1.8/parser/python/PyPlucker/helper/doc_compress.py 2006-08-07 01:02:18.000000000 +0200 @@ -20,7 +20,7 @@ # CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE! # -# One slight modification by Holger Dürer -- see comment below +# One slight modification by Holger Durer -- see comment below # """Doc compression in pure Python. """ @@ -141,7 +141,7 @@ x = x + 1 elif c < 128: # a regular ascii character o.append(c) - # The following line changed by Holger Dürer: (used to be c > 0xc0) + # The following line changed by Holger Durer: (used to be c > 0xc0) elif c >= 0xc0: # a regular ascii character with a space before it o.append(32) o.append(c & 0x7f) diff -urNad plucker-1.8~/parser/python/PyPlucker/helper/prc.py plucker-1.8/parser/python/PyPlucker/helper/prc.py --- plucker-1.8~/parser/python/PyPlucker/helper/prc.py 2006-06-18 19:02:55.000000000 +0200 +++ plucker-1.8/parser/python/PyPlucker/helper/prc.py 2006-08-07 01:01:45.000000000 +0200 @@ -17,7 +17,7 @@ # along with this program; if not, write the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. # -# Changes by Holger Dürer: (compared to the one from Pyrite-0.7.7) +# Changes by Holger Durer: (compared to the one from Pyrite-0.7.7) # - removed print statements # - added my own RCS-Id (I left a copy of the original) # debian/patches/83_filter.patch0000644000000000000000000000116611407407253013444 0ustar Author: starox Bug: https://bugs.launchpad.net/ubuntu/+source/plucker/+bug/52882 --- plucker-1.8.orig/parser/python/PyPlucker/Spider.py +++ plucker-1.8/parser/python/PyPlucker/Spider.py @@ -1396,6 +1396,7 @@ "tables", "depth-first", "http-proxy=", "http-proxy-user=", "http-proxy-pass=", "fragments=", "creator-id=", + "filter=", "bookmarks="]) if args: # usage ("Only options are allowed as arguments.") debian/patches/85_Retriever0000644000000000000000000000150011407407636013027 0ustar Author: Christoph Berg Subject: Plucker uses bad User-agent HTTP header Bug-Debian: http://bugs.debian.org/498522 --- a/parser/python/PyPlucker/Retriever.py +++ b/parser/python/PyPlucker/Retriever.py @@ -75,9 +75,9 @@ def __init__(self, alias_list=None, config=None, *args): apply(urllib.FancyURLopener.__init__, (self,) + args) self._alias_list = alias_list - self.remove_header ('User-agent') + self.remove_header ('User-Agent') user_agent = (config and config.get_string('user_agent', None)) or 'Plucker/Py-%s' % __version__ - self.addheader ('User-agent', user_agent) + self.addheader ('User-Agent', user_agent) referrer = config and config.get_string('referrer', None) if referrer: self.addheader('Referer', referrer) debian/patches/10_FAQ.patch0000644000000000000000000000174711407407253012561 0ustar Author: Ludovic Rousseau Subject: plucker: FAQ contains outdated links Bug-Debian: http://bugs.debian.org/190648 diff -urNad plucker~/FAQ plucker/FAQ --- plucker~/FAQ 2006-06-16 18:27:25.000000000 +0200 +++ plucker/FAQ 2006-06-16 18:44:53.000000000 +0200 @@ -476,7 +476,7 @@ Memoware has a growing collection of Plucker eBooks submitted by contributors and users of Plucker. - http://www.memoware.com/cgi-bin/mwsearch.cgi?Any=plucker + http://www.memoware.com/ You can also find several Plucker eBooks at Byron Collins' site @@ -488,13 +488,13 @@ Nick Vargish's Bandersnatch Unpress - http://melissa.nfr.net/~nav/unpress/ + http://unpress.bandersnatch.org/ The "Linux Documentation Project" (LDP) now releases all its HOWTOs and mini-HOWTOs in Plucker format. They are located under the 'Additional HOWTO-related items' at the following url:: - http://www.linuxdoc.org/docs.html#howto + http://www.tldp.org/docs.html#howto or debian/patches/87_hyphen-used-as-minus-sign0000644000000000000000000000066211407404317016004 0ustar Author: Ludovic Rousseau Subject: fix a lintian warning: I: plucker: hyphen-used-as-minus-sign usr/share/man/man1/plucker-build.1.gz:251 --- a/docs/plucker-build.1 +++ b/docs/plucker-build.1 @@ -248,7 +248,7 @@ .br % ls \-l /tmp/Menu.pdb .br --rw-rw-r\-\- 1 user somegroup 2646 Nov 2 21:19 /tmp/Menu.pdb +\-rw\-rw-r\-\- 1 user somegroup 2646 Nov 2 21:19 /tmp/Menu.pdb .br % \fR .sp debian/patches/50_home.html.patch0000644000000000000000000000102511407407253014036 0ustar Author: Ludovic Rousseau Subject: update the plucker sebsite URL diff -urNad plucker~/parser/defaults/home.html plucker/parser/defaults/home.html --- plucker~/parser/defaults/home.html 2006-06-16 18:27:25.000000000 +0200 +++ plucker/parser/defaults/home.html 2006-06-16 18:49:26.000000000 +0200 @@ -21,7 +21,7 @@

Plucker Information

-

Plucker home page

+

Plucker home page

Linux links

debian/patches/40_Makefile.in.patch0000644000000000000000000000124211407407253014265 0ustar Author: Ludovic Rousseau Subject: do not install the TODO file diff -urNad plucker~/Makefile.in plucker/Makefile.in --- plucker~/Makefile.in 2006-06-16 18:27:25.000000000 +0200 +++ plucker/Makefile.in 2006-06-16 18:47:46.000000000 +0200 @@ -94,7 +94,7 @@ $(MKINSTALLDIRS) $(BINDIR) cp $(UNIX_DIR)/setup.py $(BINDIR)/plucker-setup ; chmod 755 $(BINDIR)/plucker-setup $(MKINSTALLDIRS) $(DOCDIR) - cp AUTHORS BUGREPORT COPYING CREDITS ChangeLog FAQ NEWS README REQUIREMENTS TODO $(DOCDIR) + cp AUTHORS BUGREPORT COPYING CREDITS ChangeLog FAQ NEWS README REQUIREMENTS $(DOCDIR) cd $(PARSER_DIR) ; $(MAKE) $@ install-pyplucker: pyplucker debian/patches/30_pluck-comics.py.in.patch0000644000000000000000000000051411407407253015570 0ustar Author: Ludovic Rousseau Subject: do not limit to Python 2.2 only --- a/tools/pluck-comics/pluck-comics.py.in +++ b/tools/pluck-comics/pluck-comics.py.in @@ -1,4 +1,4 @@ -#!/usr/bin/python2.2 +#!/usr/bin/python """ pluck-comics.py $Id: pluck-comics.py.in,v 1.5 2003/08/03 14:07:02 nordstrom Exp $ debian/patches/88_plucker-build0000644000000000000000000000134111771107732013626 0ustar Description: fix the improper use of urllib.parse.uses_fragment Since Python >= 2.7.3, 3.2.3 the module urlparse/urllib.parse (python3) do not have a uses_fragment attribute. This patch tests if it exists before using it. Origin: upstream Bug: https://github.com/pypa/pip/issues/552 Bug-Debian: http://bugs.debian.org/678080 --- a/parser/python/PyPlucker/Url.py +++ b/parser/python/PyPlucker/Url.py @@ -19,7 +19,9 @@ #urlparse.uses_netloc.append ('plucker') #urlparse.uses_params.append ('plucker') #urlparse.uses_query.append ('plucker') -urlparse.uses_fragment.append ('plucker') +# Python >= 2.7.4, 3.3 doesn't have uses_fragment +if getattr(urlparse, 'uses_fragment', None): + urlparse.uses_fragment.append ('plucker') debian/patches/82_chmod.patch0000644000000000000000000000110711407407253013243 0ustar Author: Ludovic Rousseau Subject: do not make Python files executable --- plucker-1.8.orig/parser/python/PyPlucker/Makefile.in +++ plucker-1.8/parser/python/PyPlucker/Makefile.in @@ -23,8 +23,8 @@ install: $(MKINSTALLDIRS) $(MODULE_DIR)/helper - cp *.py $(MODULE_DIR) ; chmod 755 $(MODULE_DIR)/*.py - cp helper/*.py $(MODULE_DIR)/helper ; chmod 755 $(MODULE_DIR)/helper/*.py + cp *.py $(MODULE_DIR) + cp helper/*.py $(MODULE_DIR)/helper $(PYTHON) $(PYTHONDIR)/compileall.py $(MODULE_DIR) $(PYTHON) -O $(PYTHONDIR)/compileall.py $(MODULE_DIR) debian/patches/84_strip_px0000644000000000000000000000114211407407253012724 0ustar Author: Ludovic Rousseau Subject: ValueError: invalid literal for int() with base 10: '1px' Bug-Debian: http://bugs.debian.org/494613 --- plucker-1.8.orig/parser/python/PyPlucker/TextParser.py +++ plucker-1.8/parser/python/PyPlucker/TextParser.py @@ -1956,7 +1956,7 @@ attributes = _list_to_dict (attributes) if attributes.has_key ('size'): - height = int (attributes['size']) + height = int (attributes['size'].strip('px')) if attributes.has_key ('color'): rgb = string.lower (attributes['color']) else: debian/patches/series0000644000000000000000000000050511771071421012033 0ustar 88_plucker-build 85_Retriever 84_strip_px 83_filter.patch 10_FAQ.patch 20_manpages.patch 30_pluck-comics.py.in.patch 40_Makefile.in.patch 50_home.html.patch 60_TextParser.py.patch 70_proxy_wizardpage.h.patch 71_non_ascii.patch 72_configure.in.patch 80_remove_quiet.patch 82_chmod.patch 86_assert 87_hyphen-used-as-minus-sign debian/patches/80_remove_quiet.patch0000644000000000000000000000335511407407253014662 0ustar Author: Daniel T Chen Subject: Strip instances of 'quiet' from parser/python/PyPlucker/ImageParser.py, Bug: https://bugs.launchpad.net/ubuntu/+source/plucker/+bug/54377 Bug-Debian: http://bugs.debian.org/182361 --- plucker-1.8/parser/python/PyPlucker/ImageParser.py 2004-03-23 16:17:38.000000000 -0500 +++ plucker-1.8/parser/python/PyPlucker/ImageParser.py 2006-07-28 14:10:05.000000000 -0400 @@ -389,7 +389,7 @@ ppmtoTbmp = ppmtoTbmp + " -4bit" if self._verbose <= 1: - ppmtoTbmp = ppmtoTbmp + " -quiet" + ppmtoTbmp = ppmtoTbmp + " " outfile = tempfile.mktemp() @@ -678,8 +678,8 @@ ppmtoTbmp = ppmtoTbmp + " -4bit" if self._verbose <= 1: - ppmtoTbmp = ppmtoTbmp + " -quiet " - ppmquant = ppmquant + " -quiet " + ppmtoTbmp = ppmtoTbmp + " " + ppmquant = ppmquant + " " if not self.scale: command = ppmquant + tmpfile + "|" + ppmtoTbmp @@ -888,8 +888,8 @@ if self._verbose > 1: ppmtoTbmp = ppmtoTbmp + " -verbose " else: - ppmtoTbmp = ppmtoTbmp + " -quiet " - ppmquant = ppmquant + " -quiet " + ppmtoTbmp = ppmtoTbmp + " " + ppmquant = ppmquant + " " if not scale_cmd: command = ppmquant + ppmquant2 + "|" + ppmtoTbmp @@ -1023,8 +1023,8 @@ raise RuntimeError, "Can't handle depth of " + str(self._bpp) if self._verbose <= 1: - ppmtoTbmp = ppmtoTbmp + " -quiet " - ppmquant = ppmquant + " -quiet " + ppmtoTbmp = ppmtoTbmp + " " + ppmquant = ppmquant + " " command = "cat " + tmpfile + " | " + ppmquant + " |" + ppmtoTbmp debian/patches/60_TextParser.py.patch0000644000000000000000000000147211407407253014702 0ustar Author: Corey Wright Bug-Debian: http://bugs.debian.org/302725 Subject: plucker: "global name 'val' is not defined" in TextParser.py diff -urNad plucker~/parser/python/PyPlucker/TextParser.py plucker/parser/python/PyPlucker/TextParser.py --- plucker~/parser/python/PyPlucker/TextParser.py 2006-06-16 18:27:25.000000000 +0200 +++ plucker/parser/python/PyPlucker/TextParser.py 2006-06-16 18:50:03.000000000 +0200 @@ -353,7 +353,8 @@ else: #self._add_unicode_char(val, "&#%d;" % val) # Not in a "self", so can't add the unicode properly. - content="&#%d" % val + #content="&#%d" % val + content="&#%d" % n except ValueError: #content = "?" # might as well pass it through. no worse than a "?" debian/patches/72_configure.in.patch0000644000000000000000000000117111407407253014537 0ustar Author: Ludovic Rousseau Subject: test for CXX outside a test case diff -urNad plucker-1.8~/configure.in plucker-1.8/configure.in --- plucker-1.8~/configure.in 2006-06-16 18:27:25.000000000 +0200 +++ plucker-1.8/configure.in 2007-05-08 18:56:50.000000000 +0200 @@ -346,8 +346,8 @@ dnl ============================================== AC_ARG_ENABLE(desktopbuild, [ --disable-desktopbuild don't build the GUI desktop tool ], BUILD_DESKTOP=no) +AC_PROG_CXX if test "$BUILD_DESKTOP" = "yes"; then - AC_PROG_CXX OUTPUT_FILES="$OUTPUT_FILES plucker_desktop/Makefile" fi AC_SUBST(BUILD_DESKTOP) debian/patches/86_assert0000644000000000000000000000534111407407636012371 0ustar Author: Ludovic Rousseau Subject: Make this package ready for python 2.6 Bug-Debian: http://bugs.debian.org/583636 --- a/parser/python/PyPlucker/PluckerDocs.py +++ b/parser/python/PyPlucker/PluckerDocs.py @@ -508,7 +508,7 @@ def get_external_references (self): - assert(not self._refs_cleared) + assert not self._refs_cleared return (self._document_refs, self._image_refs) @@ -2266,7 +2266,7 @@ vlen = len(self._info[key]) nwords = (vlen + 1) / 2 dataval = self._info[key] + '\0' * (vlen % 2) - assert(len(dataval) == (nwords * 2), "Invalid length calculation in marshalling of PluckerMetadataDocument") + assert len(dataval) == (nwords * 2), "Invalid length calculation in marshalling of PluckerMetadataDocument" subrecords.append(struct.pack('>HH', self.TYPECODE_AUTHOR, nwords)) subrecords.append(dataval) count = count + 1 @@ -2275,7 +2275,7 @@ vlen = len(self._info[key]) nwords = (vlen + 1) / 2 dataval = self._info[key] + '\0' * (vlen % 2) - assert(len(dataval) == (nwords * 2), "Invalid length calculation in marshalling of PluckerMetadataDocument") + assert len(dataval) == (nwords * 2), "Invalid length calculation in marshalling of PluckerMetadataDocument" subrecords.append(struct.pack('>HH', self.TYPECODE_TITLE, nwords)) subrecords.append(dataval) count = count + 1 --- a/parser/python/PyPlucker/TextParser.py +++ b/parser/python/PyPlucker/TextParser.py @@ -2006,7 +2006,7 @@ if self._get_top_element () == "li": self._end_li () self._ul_list_depth = self._ul_list_depth - 1 - assert(self._ul_list_depth >= 0) + assert self._ul_list_depth >= 0 self._pop_element ("list") @@ -2019,7 +2019,7 @@ if self._get_top_element () == "li": self._end_li () self._ol_list_depth = self._ol_list_depth - 1 - assert(self._ol_list_depth >= 0) + assert self._ol_list_depth >= 0 self._pop_element ("list") --- a/plucker_desktop/installer/osx/application_bundle_files/Resources/parser/python/vm/PIL/TiffImagePlugin.py +++ b/plucker_desktop/installer/osx/application_bundle_files/Resources/parser/python/vm/PIL/TiffImagePlugin.py @@ -581,7 +581,7 @@ def _cvt_res(value): # convert value to TIFF rational number -- (numerator, denominator) if type(value) in (type([]), type(())): - assert(len(value) % 2 == 0) + assert len(value) % 2 == 0 return value if type(value) == type(1): return (value, 1) debian/source/0000755000000000000000000000000011771114361010470 5ustar debian/source/format0000644000000000000000000000001411340236512011671 0ustar 3.0 (quilt) debian/pycompat0000644000000000000000000000000211030241113010717 0ustar 2 debian/pluckerrc0000644000000000000000000002470711030241113011077 0ustar ;; ;; This is a sample config file. ;; ;; Under OS/2 and Windows this should be called 'plucker.ini'. ;; For Windows, put this in the pluckerhome directory or in the ;; pluckerdir directory. ;; ;; Under unix, this should be called 'pluckerrc' if it is the system ;; wide config file and '.pluckerrc' if it is a user config file. ;; This should have been installed in the correct place. ;; ;; ;; Entries are key = value pairs ordered into section. A section is ;; named and begins with a line in square bracket, where the brackets ;; contain the section name. ;; ;; General entries can go into the [DEFAULT] section. ;; ;; Under Windows, the [WINDOWS] section is also searched. ;; Under OS/2 the [OS2] and [POSIX] sections are searched ;; Everywhere else [POSIX] is searched. ;; ;; -------------------------------------------------------------------- [DEFAULT] ;; ;; In the general section you can set the following items: ;; ;; ;; Verbosity level: ;; ;; 0 - silent except for errors ;; 1 - progress status ;; 2 - debugging ;; verbosity = 1 ;; ;; Path to the plucker dir. ;; ;;pluckerdir = ;; ;; Name of the directory where cache files will be stored ;; (relative to pluckerdir) ;; ;;cache_dir_name = cache ;; ;; Document name ;; ;;doc_name = ;; ;; Filename for the document ;; ;;doc_file = ;; ;; Compression type ;; ;; doc - use the DOC compression (works on all supported versions) ;; zlib - use ZLib compression (doesn't work on 2.x devices) ;; ;; Zlib compression is typically much better than DOC compression. ;; ;;compression = doc ;; ;; Default category for the created document (you can assign several ;; categories separated by ';') ;; ;;category = Unfiled ;; ;; Document attributes ;; ;; If the copy prevention attribute is set it will not be ;; possible to beam a copy of the document to another device. ;; The backup attribute will indicate that the document should ;; be backed up (requires a desktop tool that checks this ;; attribute) and the launchable attribute will make the ;; document visible so that the user can tap on it to launch ;; the viewer with the selected document. ;; ;;copyprevention_bit = false ;;backup_bit = false ;;launchable_bit = false ;; ;; The URL to the document and the max depth to ;; spider this document. It is also possible to specify ;; that the spider should only follow links on the same ;; host (site) and/or fetch pages below the home URL ;; whose URLs starts with the given STAYBELOW value. ;; ;;home_url = plucker:/home.html ;;home_maxdepth = 2 ;;home_stayonhost = false ;;home_staybelow = ;; ;; Bits per pixel for images (0 to means 'no images') ;; ;;bpp = 1 ;; ;; Max width and height for the images. Alternative maximum width ;; and height can also be specified. These values are used for 'big' ;; versions of inlined images that had to be scaled down in size to ;; obey the maxwidth and maxheight parameters. ;; ;;maxwidth = 150 ;;maxheight = 250 ;;alt_maxwidth = ;;alt_maxheight = ;; ;; If an image is smaller or equal to the given limit (in bytes) ;; the image will not be compressed. ;; ;;image_compression_limit = 300 ;; Specify which parser to use to convert images. Defaults to ;; whatever the system determines to be the default parser. ;; ;; imagemagick - ImageMagick image parser ;; netpbm2 - NetPbm image parser ;; pil2 - PIL image parser ;; windows - Windows image parser ;; image_parser = pil2 ;; ;; A string specifying a command to be executed before spidering. ;; ;;before_command = ;;before_command1 = ;; : ;;before_command9 = ;; ;; A string specifying a command to be executed after spidering. ;; ;;after_command = ;;after_command1 = ;; : ;;after_command9 = ;; ;; Store an icon in AppInfo block. If no big or small icons ;; are specified default icons will be used. ;; ;;icon = false ;;big_icon = ;;small_icon = ;; ;; Specify proxy (http://proxy:port) and username and password for ;; basic proxy authentication if that is used. The environment variables ;; HTTP_PROXY, HTTP_PROXY_USER and HTTP_PROXY_PASS will be used as ;; default values. ;; ;;http_proxy = ;;http_proxy_user = ;;http_proxy_pass = ;; ;; Specify a conversion program to convert Word Documents to HTML. ;; They will automagically be handled as HTML by the parser. ;; So far only wvWare is supported. ;; worddoc_converter = ;; ----------------------------------------------------------------- [POSIX] ;; In the POSIX section you can set the following items: ;; ;; Name (and maybe path) for the image tools: ;; ppmquant_program = /usr/bin/ppmquant ppmtoTbmp_program = /usr/bin/pnmtopalm pnmscale_program = /usr/bin/pnmscale pnmfile_program = /usr/bin/pnmfile giftopnm_program = /usr/bin/giftopnm djpeg_program = /usr/bin/djpeg pngtopnm_program = /usr/bin/pngtopnm convert_program = /usr/bin/convert ;; ;; Name (and maybe path) for the color maps used by ;; ppmquant: ;; palm1bit_graymap_file = /usr/share/netpbm/palmgray1.map palm2bit_graymap_file = /usr/share/netpbm/palmgray2.map palm4bit_graymap_file = /usr/share/netpbm/palmgray4.map palm8bit_stdcolormap_file = /usr/share/netpbm/palmcolor8.map ;; ;; List of filename specifying exclusion lists to be ;; inspected. Names are separated by colons. ;; ;;exclusion_lists = ;; ------------------------------------------------------------------- [OS2] ;; For OS/2, you can also set the following items: ;; ;; List of filename specifying exclusion lists to be ;; inspected. Names are separated by semicolons. ;; ;;exclusion_lists = ;; -------------------------------------------------------------------- [WINDOWS] ;; For Windows, you can also set the following items: ;; ;; List of filename specifying exclusion lists to be ;; inspected. Names are separated by semicolons. ;; ;;exclusion_lists = ;; ;; Name (and maybe path) for the ImageMagick convert tool ;; and the command line parameters. ;; ;;convert_program = convert.exe ;;convert_program_parameter = "%input% bmp:%output%" ;; ;; Name (and maybe path) for the Bmp2Tbmp tool and the ;; command line parameters. ;; ;;bmp_to_tbmp = Bmp2Tbmp.exe ;;bmp_to_tbmp_parameter = "-i=%input% -o=%output% -maxwidth=%maxwidth% -maxheight=%maxheight% -compress=%compress% -bpp=%colors%" ;; ;; Specify the value for the %compress% parameter. ;; ;;tbmp_compression_type = yes ;; ;; The following parameters can be specified for 'convert_program' and ;; 'bmp_to_tbmp': ;; ;; %compress% = will be equal to the 'tbmp_compression_type' key if ;; compression is used, otherwise 'no' ;; %colors% = '1', '2', '4' or '8' ;; %maxwidth% = maxwidth value ;; %maxheight% = maxheight value ;; %input% = the input filename ;; %output% = the output filename ;; ;; These keys control the way that the images are converted to the Palm Tbmp ;; format. ;; ;; The maximum size of an Tbmp bitmap is 60,000 bytes (before Plucker's ;; document compression); you can set the max_tbmp_size key to an lower ;; value to save memory on your device. ;; ;; The tbmp_compression key controls the internal Tbmp compression (not ;; related to Plucker's document compression); if set to true, the Tbmp's ;; are smaller, and you can use pictures that normally exceed the maximum ;; size (as set by max_tbmp_size). However, this will not work on all OS ;; versions; if your OS does not support this, the viewer will display a ;; warning message and not show the pictures. ;; ;; If a bitmap exceeds the maximum size, and try_reduce_bpp is set to ;; true, the parser will try to reduce the BPP (bits/pixel) until the ;; size is OK; if it's still too big with bpp=1, the dimension of the ;; bitmap will be reduced in 10% steps if the try_reduce_dimension key ;; is set. ;; ;; How big a Tbmp will be after a bpp or dimensions reduce are calculated, ;; but this won't work if you use tbmp compression. To still get the ;; maximum quality (highest possible bpp and size), set the guess_tbmp_size ;; to false. In this case the bitmap will be converted in every step ;; to get the resulting size. This could need some more time. ;; ;;max_tbmp_size = 60000 ;;tbmp_compression = no ;;try_reduce_bpp = true ;;try_reduce_dimension = true ;;guess_tbmp_size = true ;; ;; The following items are currently only used if the Installer is ;; used to setup the desktop tools: ;; ;; HotSync user name: ;; ;;user = ;; ;; Name (and maybe path) for the Python executable. ;; ;;python_program = ;; ;; Set close_on_exit to true to close the terminal window when PyPlucker ;; is finished. Set close_on_error to true to close the terminal windows ;; if the parser exit with an error. ;; ;;close_on_exit = false ;;close_on_error = false ;; ;; Specify if the conduit.exe should be use to build the PDB or ;; if PyPlucker should be used instead (only for debugging) ;; ;;use_conduit = true ;; ;; Play a sound when the spider finish building the document. ;; ;; Valid parameters: ;; ;; - Drive:\Path\Filename.wav : A filename (with full path) for a ;; WAV file. ;; ;; - *MELODY: : Playing a list of notes using the ;; computer speaker ;; ;; Format of : ;; ;; ||... ;; ;; : One of [C;C#;D;D#;E;F;F#;G;G#;A;A#;H] or 'P' for Pause ;; : 2, 3, 4 or 5 ;; : A space char (' ') ;; : The duration in 1/100 seconds ;; ;; - *BEEP : Standard beep using the computer speaker ;; ;; - *ICONASTERISK : System sound "SystemAsterisk" ;; ;; - *ICONEXCLAMATION : System sound "SystemExclamation" ;; ;; - *ICONHAND : System sound "SystemHand" ;; ;; - *ICONQUESTION : System sound "SystemQuestion" ;; ;; - *OK : System sound "SystemDefault" ;; ;; Example: ready_sound = "*MELODY:C5 18|A4 18|P 37|C5 18|A5 18|P 37|C5 18" ;; ;;ready_sound = ;; ;; Editor to use for HTML files. ;; ;;html_editor = "Notepad.exe %s" ;; ;; Editor to use for INI files. ;; ;;ini_editor = "Notepad.exe %s" ;; ;; Editor to use for text files. ;; ;;text_editor = "Notepad.exe %s" ;; ;; Program to use for HTML files stored on the web. (%s is ;; the placeholder for the path and filename for the file) ;; ;;url_editor = "%s" ;; ;; Program used to view HTML files (local and web). (%s is ;; the placeholder for the path and filename for the file) ;; ;;html_viewer = "%s" ;; ;; These items are only available in the 'MAIN' config file: ;; ;; Path to the Plucker Program Group. ;; ;;group_path =