Your message dated Mon, 28 Jan 2008 16:47:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#416217: fixed in xml-resume-library 1.5.1-8
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: xml-resume-library
Version: 1.5.1-6
Severity: wishlist
Tags: patch
Hi,
I was wondering, Why use online stylesheet by default, when they're packaged.
Furthermore when they're bugged (the french ones are not updated).
I fixed the exemple makefile, see the file attached :
http://rzr.online.fr/docs/contribs/patches/xml-resume-library-1.5.1-6-rzr.diff
Now I can generate my own output easly without editing it :
make -f ..../Makefile resume=xmlresume-fr country=fr papersize=a4
Hope it helps
-- System Information:
Debian Release: 4.0
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.20-k7-amiloa-rt
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Versions of packages xml-resume-library depends on:
ii sgml-data 2.0.3 common SGML and XML data
Versions of packages xml-resume-library recommends:
ii fop 1:0.20.5-8 XML to PDF Translator
pn xmlto <none> (no description available)
ii xsltproc 1.1.19-1 XSLT command line processor
-- no debconf information
diff -BurN xml-resume-library-1.5.1-6/examples/Makefile
xml-resume-library-1.5.1-6-rzr/examples/Makefile
--- xml-resume-library-1.5.1-6/examples/Makefile 2002-11-28
03:38:35.000000000 +0100
+++ xml-resume-library-1.5.1-6-rzr/examples/Makefile 2007-03-25
22:37:33.000000000 +0200
@@ -48,41 +48,47 @@
# Basename (filename minus .xml extension) of resume to process
# For example, put "myresume" here to process "myresume.xml".
#------------------------------------------------------------------------------
-resume = resume
+resume?=resume
#------------------------------------------------------------------------------
# Stylesheets
#------------------------------------------------------------------------------
# Options: br de fr it nl uk us es
-country = us
+country?=us
# Options: letter for country=us, a4 for others
-papersize = letter
+papersize?=letter
-xsl_base = http://xmlresume.sourceforge.net/xsl
-#xsl_base = ../xsl
-#xsl_base = ../src/www/xsl
-
-html_style = $(xsl_base)/output/$(country)-html.xsl
-text_style = $(xsl_base)/output/$(country)-text.xsl
-fo_style = $(xsl_base)/output/$(country)-$(papersize).xsl
-upgrade_13x_140_style = $(xsl_base)/misc/13x-140.xsl
+xsl_base?=/usr/share/sgml/xml-resume-library/xsl
+#xsl_base?=http://xmlresume.sourceforge.net/xsl
+#xsl_base?=../xsl
+#xsl_base?=../src/www/xsl
+
+html_style?=$(xsl_base)/output/$(country)-html.xsl
+text_style?=$(xsl_base)/output/$(country)-text.xsl
+fo_style?=$(xsl_base)/output/$(country)-$(papersize).xsl
+upgrade_13x_140_style?=$(xsl_base)/misc/13x-140.xsl
#------------------------------------------------------------------------------
# Processing software
#------------------------------------------------------------------------------
-make = gmake
+make?=gmake
-xsl_proc = java org.apache.xalan.xslt.Process $(xsl_flags) -in $(in) -xsl
$(xsl) -out $(out)
-#xsl_proc = java com.icl.saxon.StyleSheet $(xsl_flags) -o $(out) $(in) $(xsl)
$(xsl_params)
+CLASSPATH?=\
+/usr/share/java/xalan2.jar:\
+/usr/share/java/fop-0.20.5.jar:\
+/usr/share/java/avalon-framework-4.2.0.jar
-pdf_proc = java org.apache.fop.apps.Fop -fo $(fo_flags) $(in) -pdf $(out)
-#pdf_proc = ~/bin/xep/run.sh $(fo_flags) $(in) $(out)
+xsl_proc?=java org.apache.xalan.xslt.Process $(xsl_flags) -in $(in) -xsl
$(xsl) -out $(out)
+#xsl_proc?=java com.icl.saxon.StyleSheet $(xsl_flags) -o $(out) $(in) $(xsl)
$(xsl_params)
+
+pdf_proc?=java org.apache.fop.apps.Fop -fo $(fo_flags) $(in) -pdf $(out)
+#pdf_proc?=~/bin/xep/run.sh $(fo_flags) $(in) $(out)
# RTF generation currently requires you download a separate, closed source jar
# file and add it to your java classpath:
# http://www.xmlmind.com/foconverter/downloadperso.shtml
-rtf_proc = java com.xmlmind.fo.converter.Driver $(in) $(out)
-#rtf_proc = java ch.codeconsult.jfor.main.CmdLineConverter $(in) $(out)
+rtf_proc?=java com.xmlmind.fo.converter.Driver $(in) $(out)
+#rtf_proc?=java ch.codeconsult.jfor.main.CmdLineConverter $(in) $(out)
# Element filtering allows you to create targeted resumes.
# You can create your own targets; just specify them in your resume.xml
@@ -92,8 +98,8 @@
# "targets" attribute) are always included.
# Take a look at example2.xml and try changing the filter targets to get a
# feel for how the filter works.
-filter_targets = foodservice carpentry
-filter_proc = java net.sourceforge.xmlresume.filter.Filter -in $(in) -out
$(out) $(filter_targets)
+filter_targets?=foodservice carpentry
+filter_proc?=java net.sourceforge.xmlresume.filter.Filter -in $(in) -out
$(out) $(filter_targets)
#------------------------------------------------------------------------------
# End configurable parameters
@@ -111,17 +117,17 @@
filter: $(resume)-filtered.xml
clean:
- rm -f $(resume).html
- rm -f $(resume).txt
- rm -f $(resume).fo
- rm -f $(resume).pdf
- rm -f $(resume).rtf
- rm -f $(resume)-filtered.xml
- rm -f $(resume)-filtered.html
- rm -f $(resume)-filtered.txt
- rm -f $(resume)-filtered.pdf
- rm -f $(resume)-filtered.fo
- rm -f $(resume)-filtered.rtf
+ [EMAIL PROTECTED] -f $(resume).html
+ [EMAIL PROTECTED] -f $(resume).txt
+ [EMAIL PROTECTED] -f $(resume).fo
+ [EMAIL PROTECTED] -f $(resume).pdf
+ [EMAIL PROTECTED] -f $(resume).rtf
+ [EMAIL PROTECTED] -f $(resume)-filtered.xml
+ [EMAIL PROTECTED] -f $(resume)-filtered.html
+ [EMAIL PROTECTED] -f $(resume)-filtered.txt
+ [EMAIL PROTECTED] -f $(resume)-filtered.pdf
+ [EMAIL PROTECTED] -f $(resume)-filtered.fo
+ [EMAIL PROTECTED] -f $(resume)-filtered.rtf
$(resume).html: in = $(resume).xml
$(resume).html: out = $(resume).html
@@ -162,3 +168,5 @@
$(resume)-filtered.xml: $(resume).xml
$(filter_proc)
$(make) all resume=$(resume)-filtered
+
+#eof "xmlresume.mk -- fixed for french processing"
--- End Message ---
--- Begin Message ---
Source: xml-resume-library
Source-Version: 1.5.1-8
We believe that the bug you reported is fixed in the latest version of
xml-resume-library, which is due to be installed in the Debian FTP archive:
xml-resume-library_1.5.1-8.diff.gz
to pool/main/x/xml-resume-library/xml-resume-library_1.5.1-8.diff.gz
xml-resume-library_1.5.1-8.dsc
to pool/main/x/xml-resume-library/xml-resume-library_1.5.1-8.dsc
xml-resume-library_1.5.1-8_all.deb
to pool/main/x/xml-resume-library/xml-resume-library_1.5.1-8_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sandro Tosi <[EMAIL PROTECTED]> (supplier of updated xml-resume-library package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sat, 26 Jan 2008 17:58:15 +0100
Source: xml-resume-library
Binary: xml-resume-library
Architecture: source all
Version: 1.5.1-8
Distribution: unstable
Urgency: low
Maintainer: Sandro Tosi <[EMAIL PROTECTED]>
Changed-By: Sandro Tosi <[EMAIL PROTECTED]>
Description:
xml-resume-library - A set of tools for writing a resume in XML
Closes: 416217 459939
Changes:
xml-resume-library (1.5.1-8) unstable; urgency=low
.
* debian/patches/bts-213563.patch
- added to avoid direct upstream code modification (introduced in Steve's
NMU)
* debian/xml-resume-library.install
- removed installation of debian/overrides
* debian/overrides
- removed
* debian/xml-resume-library.doc-base
- removed new lines in Abstract field
* debian/control
- Recommends all on one line
- bump build dep on debhelper to >=5
* debian/compat
- bump to 5
* debian/copyright
- separation of copyright and license
- upstream author, copyright and license indented with 4 spaces
* debian/patches/bts-179476_fr_xsl_comment.patch
- added, restoring and renaming debian/patches/fr-xsl-comment.patch;
regression introduced in Steve's NMU, patch deleted (Closes: #459939)
* debian/patches/bts-416217_fix_examples_makefile.patch
- examples makefile uses local xsl template; thanks to Philippe Coval for
the patch (Closes: #416217)
Files:
1e09e21930049d26e8a1ccf16d20ed28 692 text optional
xml-resume-library_1.5.1-8.dsc
0427c719512cacef9e741bb1b9ab770d 14644 text optional
xml-resume-library_1.5.1-8.diff.gz
213e9a1274a5a7a578b6d9897106b4d9 323260 text optional
xml-resume-library_1.5.1-8_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHngPxpdwBkPlyvgMRAmfyAJ9TxyndjqpE93mpoCDKpABcysSjWgCggfeT
ZQeBnJ2gYJZBVL9NlQz0ByI=
=wmA9
-----END PGP SIGNATURE-----
--- End Message ---