f44acd
Name: docbook-style-xsl
f44acd
Version: 1.79.2
781c32
Release: 9%{?dist}
f44acd
Group: Applications/Text
f44acd
f44acd
Summary: Norman Walsh's XSL stylesheets for DocBook XML
f44acd
f44acd
License: DMIT
f44acd
URL: https://github.com/docbook/xslt10-stylesheets
f44acd
f44acd
Provides: docbook-xsl = %{version}
f44acd
Requires: docbook-dtd-xml
f44acd
# xml-common was using /usr/share/xml until 0.6.3-8.
f44acd
Requires: xml-common >= 0.6.3-8
f44acd
# libxml2 required because of usage of /usr/bin/xmlcatalog
f44acd
Requires(post): libxml2 >= 2.4.8
f44acd
Requires(postun): libxml2 >= 2.4.8
f44acd
# PassiveTeX before 1.21 can't handle the newer stylesheets.
f44acd
Conflicts: passivetex < 1.21
f44acd
f44acd
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
f44acd
f44acd
BuildArch: noarch
f44acd
Source0: https://github.com/docbook/xslt10-stylesheets/releases/download/release%2F{%version}/docbook-xsl-nons-%{version}.tar.bz2
f44acd
Source1: %{name}.Makefile
f44acd
Source2:  https://github.com/docbook/xslt10-stylesheets/releases/download/release%2F{%version}/docbook-xsl-doc-%{version}.tar.bz2
f44acd
f44acd
f44acd
#Avoid proportional-column-width for passivetex (bug #176766).
f44acd
Patch1: docbook-xsl-pagesetup.patch
f44acd
#Hard-code the margin-left work around to expect passivetex (bug #113456).
f44acd
Patch2: docbook-xsl-marginleft.patch
f44acd
#fix of #161619 - adjustColumnWidths now available
f44acd
Patch3: docbook-xsl-newmethods.patch
f44acd
#change a few non-constant expressions to constant - needed for passivetex(#366441)
f44acd
Patch4: docbook-xsl-non-constant-expressions.patch
f44acd
#added fixes for passivetex extension and list-item-body(#161371)
f44acd
Patch5: docbook-xsl-list-item-body.patch
f44acd
#workaround missing mandir section problem (#727251)
f44acd
Patch6: docbook-xsl-mandir.patch
f44acd
#Non-recursive string.subst that doesn't kill smb.conf.5 generation
f44acd
Patch7: docbook-style-xsl-non-recursive-string-subst.patch
781c32
#Fix generate consistent IDs so it doesn't cause multilib conflicts (#1761964)
781c32
Patch8: docbook-style-xsl-1.79.2-fix-gtk-doc-multilib.patch
f44acd
f44acd
%description
f44acd
These XSL stylesheets allow you to transform any DocBook XML document to
f44acd
other formats, such as HTML, FO, and XHMTL.  They are highly customizable.
f44acd
f44acd
f44acd
%prep
f44acd
%setup -c -T -n docbook-xsl-%{version}
f44acd
tar jxf %{SOURCE0}
f44acd
mv docbook-xsl-nons-%{version}/* .
f44acd
pushd ..
f44acd
tar jxf %{SOURCE2}
f44acd
popd
f44acd
%patch1 -p1 -b .pagesetup
f44acd
%patch2 -p1 -b .marginleft
f44acd
%patch3 -p1 -b .newmethods
f44acd
%patch4 -p1 -b .nonconstant
f44acd
%patch5 -p1 -b .listitembody
f44acd
%patch6 -p1 -b .mandir
f44acd
%patch7 -p2 -b .non-recursive-subst
781c32
%patch8 -p1 -b .genconstids
f44acd
f44acd
cp -p %{SOURCE1} Makefile
f44acd
f44acd
# fix of non UTF-8 files rpmlint warnings
f44acd
for fhtml in $(find ./doc -name '*.html' -type f)
f44acd
do
f44acd
  iconv -f ISO-8859-1 -t UTF-8 "$fhtml" -o "$fhtml".tmp
f44acd
  mv -f "$fhtml".tmp "$fhtml"
f44acd
  sed -i 's/charset=ISO-8859-1/charset=UTF-8/' "$fhtml"
f44acd
done
f44acd
f44acd
for f in $(find -name "*'*")
f44acd
do
f44acd
  mv -v "$f" $(echo "$f" | tr -d "'")
f44acd
done
f44acd
f44acd
f44acd
%build
f44acd
f44acd
f44acd
%install
f44acd
DESTDIR=$RPM_BUILD_ROOT
f44acd
rm -rf $RPM_BUILD_ROOT
f44acd
make install BINDIR=$DESTDIR%{_bindir} DESTDIR=$DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}
f44acd
cp -a VERSION.xsl $DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}/VERSION.xsl
f44acd
ln -s xsl-stylesheets-%{version} \
f44acd
	$DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets
f44acd
f44acd
# Don't ship the extensions (bug #177256).
f44acd
rm -rf $DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets/extensions/*
f44acd
f44acd
f44acd
%clean
f44acd
DESTDIR=$RPM_BUILD_ROOT
f44acd
rm -rf $RPM_BUILD_ROOT
f44acd
f44acd
%files
f44acd
%defattr (-,root,root,-)
f44acd
%doc BUGS
f44acd
%doc README
f44acd
%doc TODO
f44acd
%doc doc
f44acd
%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}
f44acd
%{_datadir}/sgml/docbook/xsl-stylesheets
f44acd
f44acd
f44acd
%post
f44acd
CATALOG=%{_sysconfdir}/xml/catalog
f44acd
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
f44acd
 "http://cdn.docbook.org/release/xsl-nons/%{version}" \
f44acd
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
f44acd
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
f44acd
 "http://cdn.docbook.org/release/xsl-nons/%{version}" \
f44acd
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
f44acd
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
f44acd
 "http://cdn.docbook.org/release/xsl-nons/current/" \
f44acd
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
f44acd
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
f44acd
 "http://cdn.docbook.org/release/xsl-nons/current/" \
f44acd
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
f44acd
#keep the old one sourceforge URIs at least temporarily
f44acd
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
f44acd
 "http://docbook.sourceforge.net/release/xsl/current" \
f44acd
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
f44acd
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
f44acd
 "http://docbook.sourceforge.net/release/xsl/current" \
f44acd
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
f44acd
f44acd
f44acd
f44acd
%postun
f44acd
# remove entries only on removal of package
f44acd
if [ "$1" = 0 ]; then
f44acd
  CATALOG=%{_sysconfdir}/xml/catalog
f44acd
  %{_bindir}/xmlcatalog --noout --del \
f44acd
   "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
f44acd
fi
f44acd
f44acd
%changelog
781c32
* Wed Jan 20 2021 Ondrej Vasik <ovasik@redhat.com> - 1.79.2-9
781c32
- fix generate consistent IDs issue (#1761964)
781c32
f44acd
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-7
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f44acd
f44acd
* Wed Sep 13 2017 Alexander Bokovoy <abokovoy@redhat.com> - 1.79.2-6
f44acd
- Use non-recursive string.subst to allow building large documents like smb.conf.5
f44acd
f44acd
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-5
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f44acd
f44acd
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-4
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f44acd
f44acd
* Tue Jan 03 2017 Ondrej Vasik <ovasik@redhat.com> - 1.79.2-3
f44acd
- keep old sourceforge entries at least temporarily (#1409587)
f44acd
f44acd
* Mon Jan 02 2017 Ondrej Vasik <ovasik@redhat.com> - 1.79.2-2
f44acd
- update xmlcatalog entries to docbook.org cdn
f44acd
f44acd
* Mon Jan 02 2017 Ondrej Vasik <ovasik@redhat.com> - 1.79.2-1
f44acd
- new upstream release 1.79.2
f44acd
- upstream moved to github
f44acd
f44acd
* Fri Jul 08 2016 Ondrej Vasik <ovasik@redhat.com> - 1.79.1-1
f44acd
- new upstream release 1.79.1
f44acd
f44acd
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.78.1-5
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f44acd
f44acd
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.78.1-4
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f44acd
f44acd
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.78.1-3
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f44acd
f44acd
* Mon Jul 29 2013 Ondrej Vasik <ovasik@redhat.com> 1.78.1-2
f44acd
- use DMIT (modified MIT) as a license for the
f44acd
  stylesheets (#988715)
f44acd
f44acd
* Mon Mar 18 2013 Ondrej Vasik <ovasik@redhat.com> 1.78.1-1
f44acd
- new upstream release 1.78.1
f44acd
f44acd
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.78.0-2
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f44acd
f44acd
* Thu Dec 20 2012 Ondrej Vasik <ovasik@redhat.com> 1.78.0-1
f44acd
- new upstream release 1.78.0
f44acd
f44acd
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.77.1-3
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f44acd
f44acd
* Tue Jun  5 2012 Ondrej Vasik <ovasik@redhat.com> 1.77.1-2
f44acd
- ship VERSION.xsl file (#829014)
f44acd
f44acd
* Tue Jun  5 2012 Ondrej Vasik <ovasik@redhat.com> 1.77.1-1
f44acd
- new stable upstream release 1.77.1
f44acd
- defuzz patches
f44acd
f44acd
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.76.1-5
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f44acd
f44acd
* Tue Sep  6 2011 Ondrej Vasik <ovasik@redhat.com> 1.76.1-4
f44acd
- revert previous change, workaround the mandir links issue
f44acd
  in buildroot (#727251)
f44acd
f44acd
* Mon Aug 29 2011 Ondrej Vasik <ovasik@redhat.com> 1.76.1-3
f44acd
- make man.output.in.separate.dir "on" by default (#727251)
f44acd
f44acd
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.76.1-2
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f44acd
f44acd
* Tue Nov 02 2010 Ondrej Vasik <ovasik@redhat.com> 1.76.1-1
f44acd
- new upstream release 1.76.1
f44acd
f44acd
* Mon Sep 06 2010 Ondrej Vasik <ovasik@redhat.com> 1.76.0-1
f44acd
- new upstream release 1.76.0
f44acd
f44acd
* Tue May 04 2010 Ondrej Vasik <ovasik@redhat.com> 1.75.2-6
f44acd
- ship eclipse help stylesheets(#588613)
f44acd
f44acd
* Fri Dec 18 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-5
f44acd
- comment patches purpose
f44acd
- License Copyright only
f44acd
f44acd
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.75.2-4
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f44acd
f44acd
* Thu Jul 23 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-3
f44acd
- upstream changed changed doc tarball after release
f44acd
  (empty reference pdf file in old tarball)
f44acd
f44acd
* Wed Jul 22 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-2
f44acd
- upstream changed tarballs after release
f44acd
f44acd
* Tue Jul 21 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-1
f44acd
- New upstream release 1.75.2
f44acd
f44acd
* Thu May 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.1-1
f44acd
- New upstream release 1.75.1
f44acd
f44acd
* Mon May 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.0-1
f44acd
- New upstream release 1.75.0
f44acd
- update marginleft patch
f44acd
f44acd
* Wed Mar 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.3-1
f44acd
- New upstream release 1.74.3
f44acd
f44acd
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.74.2-3
f44acd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f44acd
f44acd
* Mon Feb 23 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.2-2
f44acd
- updated Makefile: do ship .svg images(#486849), xsl
f44acd
  stylesheets for website, xhtml-1_1, docbook -> epub
f44acd
  convertor
f44acd
f44acd
* Fri Feb 20 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.2-1
f44acd
- New upstream release 1.74.2
f44acd
f44acd
* Wed Feb 18 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.1-1
f44acd
- New upstream release, removed included patches
f44acd
f44acd
* Wed Feb 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-7
f44acd
- fix broken varlistentry (#479683)
f44acd
f44acd
* Mon Feb 02 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-6
f44acd
- fix improper localization for rtl languages, thanks
f44acd
  Muayyad Alsadi(#475077)
f44acd
f44acd
* Wed Jan 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-5
f44acd
- fix xsl stylesheets for rtl languages(#475077)
f44acd
f44acd
* Fri Dec 12 2008 Ondrej Vasik <ovasik@redhat.com> 1.74.0-4
f44acd
- Author_Group "<orgname>" merged between "<surname>"
f44acd
  and "<surname>" (#473019)
f44acd
f44acd
* Wed Aug 06 2008 Kamil Dudka <kdudka@redhat.com> 1.74.0-3
f44acd
- Rediffed all patches to work with patch --fuzz=0
f44acd
f44acd
* Wed Aug 06 2008 Kamil Dudka <kdudka@redhat.com> 1.74.0-2
f44acd
- Tiny changes in docbook-xsl-newmethods.patch to work with xalan
f44acd
  (#452867)
f44acd
f44acd
* Tue Jun 03 2008 Ondrej Vasik <ovasik@redhat.com> 1.74.0-1
f44acd
- New upstream release 1.74.0, adapted patches
f44acd
f44acd
* Fri Dec 14 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-9
f44acd
- added fixes for passivetex extension and list-item-body
f44acd
  (#161371)
f44acd
f44acd
* Tue Dec 11 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-8
f44acd
- remove entries from xmlcatalog only on removal of package
f44acd
  (required because of the change with droping release
f44acd
   -caused drop of catalog entries during update)
f44acd
f44acd
* Tue Dec 04 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-7
f44acd
- change a few non-constant expressions to constant that
f44acd
  could now be handled by passivetex(#366441)
f44acd
f44acd
* Mon Dec 03 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-6
f44acd
- fixed docbook-xsl-pagesetup.patch to follow Norman Walsh's
f44acd
  documentation for nonpassivetex processing(#307001)
f44acd
f44acd
* Tue Nov 27 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-5
f44acd
- convert all html files in doc to UTF-8 in prep
f44acd
  (latest rpmlint gives warnings)
f44acd
- no longer using release in style-xsl dir(#389231)
f44acd
f44acd
* Tue Nov 06 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-4
f44acd
- Merge review(#225704)
f44acd
- spec file modified to follow guidelines
f44acd
f44acd
* Wed Oct 24 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-3
f44acd
- rpmlint check
f44acd
- fixed License Tag, Requires and some cosmetic issues 
f44acd
f44acd
* Fri Sep  7 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-2
f44acd
- Added PreReq of libxml2(#253962)
f44acd
f44acd
* Wed Sep  5 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-1
f44acd
- new upstream version
f44acd
f44acd
* Thu Aug 30 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.1-2
f44acd
- removed patch for #249294(included in new version other way)
f44acd
f44acd
* Wed Aug 29 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.1-1
f44acd
- new upstream version(fixing some bugs)
f44acd
- small new-methods patch change
f44acd
f44acd
* Mon Jul 23 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.0-2
f44acd
- fixed manpages/docbook.xsl failure(Tim Waugh,#249294)
f44acd
f44acd
* Mon Jul 23 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.0-1
f44acd
- update to latest upstream version
f44acd
- patch changes because of rejects
f44acd
f44acd
* Mon Jun 18 2007 Ondrej Vasik <ovasik@redhat.com> 1.72.0-3
f44acd
- patch fixing #161619 taken from upstream
f44acd
f44acd
* Wed Jan 24 2007 Tomas Mraz <tmraz@redhat.com> 1.72.0-2
f44acd
- Install missing *.ent from common.
f44acd
f44acd
* Tue Jan 23 2007 Tim Waugh <twaugh@redhat.com> 1.72.0-1
f44acd
- 1.72.0.
f44acd
f44acd
* Fri Jan 19 2007 Tomas Mraz <tmraz@redhat.com> 1.71.1-2
f44acd
- Add new wordml and especially highlighting (which is referenced
f44acd
  from html) subdirs to Makefile.
f44acd
f44acd
* Fri Jan 19 2007 Tim Waugh <twaugh@redhat.com> 1.71.1-1
f44acd
- 1.71.1.  No longer seem to need lists patch.  Removed out of date sp
f44acd
  patch.
f44acd
f44acd
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.69.1-5.1
f44acd
- rebuild
f44acd
f44acd
* Tue Jan 24 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-5
f44acd
- Don't ship docsrc/* (bug #177256).
f44acd
- Don't ship the extensions (bug #177256).
f44acd
f44acd
* Thu Jan 19 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-4
f44acd
- Better 'lists' patch (bug #161371).
f44acd
f44acd
* Thu Jan 19 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-3
f44acd
- Apply patch to fix simpara manpage output, which asciidoc tends to use
f44acd
  (bug #175592).
f44acd
f44acd
* Tue Jan  3 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-2
f44acd
- Patches from W. Michael Petullo:
f44acd
  - Fix lists blocking (bug #161371).
f44acd
  - Avoid proportional-column-width for passivetex (bug #176766).
f44acd
f44acd
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
f44acd
- rebuilt
f44acd
f44acd
* Fri Aug 12 2005 Tim Waugh <twaugh@redhat.com> 1.69.1-1
f44acd
- 1.69.1.
f44acd
f44acd
* Mon Jul 18 2005 Tim Waugh <twaugh@redhat.com> 1.69.0-1
f44acd
- 1.69.0.
f44acd
f44acd
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com> 1.68.1-1
f44acd
- 1.68.1.
f44acd
f44acd
* Wed Feb  9 2005 Tim Waugh <twaugh@redhat.com> 1.68.0-1
f44acd
- 1.68.0.
f44acd
f44acd
* Wed Dec  8 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-2
f44acd
- Prevent expressions in passivetex output from index.xsl (bug #142229).
f44acd
f44acd
* Thu Dec  2 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-1
f44acd
- 1.67.2.
f44acd
- No longer need nbsp or listblock patches.
f44acd
f44acd
* Mon Nov 22 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-3
f44acd
- Avoid non-ASCII in generated man pages.
f44acd
f44acd
* Wed Nov 10 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-1
f44acd
- 1.67.0.
f44acd
f44acd
* Tue Nov  2 2004 Tim Waugh <twaugh@redhat.com> 1.66.1-1
f44acd
- 1.66.1 (bug #133586).
f44acd
f44acd
* Fri Jun  4 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-2
f44acd
- Fix strange filenames (bug #125311).
f44acd
f44acd
* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-1
f44acd
- 1.65.1.
f44acd
f44acd
* Mon Mar  1 2004 Tim Waugh <twaugh@redhat.com> 1.65.0-1
f44acd
- 1.65.0.
f44acd
f44acd
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
f44acd
- rebuilt
f44acd
f44acd
* Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-6
f44acd
- Fix last margin-left fix (bug #113456).
f44acd
- Reduce instances of itemized/ordered lists having misalignments.
f44acd
f44acd
* Sun Jan 18 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-5
f44acd
- And another (bug #113456).
f44acd
f44acd
* Thu Jan 15 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-4
f44acd
- Fixed another instance of bug #113456 in lists layout.
f44acd
f44acd
* Wed Jan 14 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-3
f44acd
- Hard-code the margin-left work around to expect passivetex (bug #113456).
f44acd
f44acd
* Wed Dec 24 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-2
f44acd
- Another manpage fix.
f44acd
f44acd
* Fri Dec 19 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-1
f44acd
- 1.64.1.
f44acd
f44acd
* Thu Dec 18 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-2
f44acd
- Another manpage fix.
f44acd
f44acd
* Tue Dec 16 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-1
f44acd
- 1.64.0.
f44acd
f44acd
* Fri Dec 12 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-3
f44acd
- Use the fr.xml from 1.62.1 (bug #111989).
f44acd
f44acd
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-2
f44acd
- Manpages fixes.
f44acd
f44acd
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-1
f44acd
- 1.62.4.
f44acd
- No longer need hyphens patch.
f44acd
- Avoid expressions in margin-left attributes, since passivetex does not
f44acd
  understand them.
f44acd
f44acd
* Fri Jul  4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2.1
f44acd
- Rebuilt.
f44acd
f44acd
* Fri Jul  4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2
f44acd
- Rebuilt.
f44acd
f44acd
* Fri May 23 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-1
f44acd
- 1.61.2.
f44acd
f44acd
* Sun May 18 2003 Tim Waugh <twaugh@redhat.com> 1.61.1-1
f44acd
- 1.61.1.
f44acd
f44acd
* Fri May  9 2003 Tim Waugh <twaugh@redhat.com> 1.61.0-1
f44acd
- Prevent hyphenation-character confusing passivetex.
f44acd
- 1.61.0.
f44acd
f44acd
* Thu Mar  6 2003 Tim Waugh <twaugh@redhat.com> 1.60.1-1
f44acd
- 1.60.1.
f44acd
f44acd
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
f44acd
- rebuilt
f44acd
f44acd
* Mon Dec  2 2002 Tim Waugh <twaugh@redhat.com> 1.58.1-1
f44acd
- 1.58.1.
f44acd
- No longer need marker patch.
f44acd
f44acd
* Mon Nov  4 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-2
f44acd
- Ship profiling directory (bug #77191).
f44acd
f44acd
* Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-1
f44acd
- 1.57.0.
f44acd
f44acd
* Wed Oct 16 2002 Tim Waugh <twaugh@redhat.com> 1.56.1-1
f44acd
- 1.56.1.
f44acd
- Use value-of not copy-of for fo:marker content.
f44acd
- Conflict with passivetex < 1.21.
f44acd
f44acd
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
f44acd
- automated rebuild
f44acd
f44acd
* Thu May 23 2002 Tim Powers <timp@redhat.com>
f44acd
- automated rebuild
f44acd
f44acd
* Wed May  1 2002 Tim Waugh <twaugh@redhat.com> 1.50.0-1
f44acd
- 1.50.0.
f44acd
f44acd
* Thu Feb 21 2002 Tim Waugh <twaugh@redhat.com> 1.49-1
f44acd
- 1.49.
f44acd
- Rebuild in new environment.
f44acd
f44acd
* Fri Feb  1 2002 Tim Waugh <twaugh@redhat.com> 1.48-4
f44acd
- Put URIs instead of pathnames in the XML catalog.
f44acd
f44acd
* Thu Jan 17 2002 Tim Waugh <twaugh@redhat.com> 1.48-3
f44acd
- Back to /usr/share/sgml.
f44acd
f44acd
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.48-2
f44acd
- automated rebuild
f44acd
f44acd
* Mon Jan  7 2002 Tim Waugh <twaugh@redhat.com> 1.48-1
f44acd
- 1.48.
f44acd
f44acd
* Sat Dec  8 2001 Tim Waugh <twaugh@redhat.com> 1.47-2
f44acd
- Conflict with PassiveTeX before 1.11.
f44acd
f44acd
* Tue Oct 16 2001 Tim Waugh <twaugh@redhat.com> 1.47-1
f44acd
- 1.47-experimental.
f44acd
f44acd
* Tue Oct  9 2001 Tim Waugh <twaugh@redhat.com> 1.45-2
f44acd
- Fix unversioned symlink.
f44acd
f44acd
* Mon Oct  8 2001 Tim Waugh <twaugh@redhat.com> 1.45-1
f44acd
- XML Catalog entries.
f44acd
- Move files to /usr/share/xml.
f44acd
f44acd
* Mon Oct  1 2001 Tim Waugh <twaugh@redhat.com> 1.45-0.1
f44acd
- 1.45.
f44acd
- Built for Red Hat Linux.
f44acd
f44acd
* Tue Jun 26 2001 Chris Runge <crunge@pobox.com>
f44acd
- 1.40
f44acd
f44acd
* Fri Jun 09 2001 Chris Runge <crunge@pobox.com>
f44acd
- added extensions and additional doc
f44acd
- bin added to doc; the Perl files are for Win32 Perl and so need some
f44acd
  conversion first
f44acd
f44acd
* Fri Jun 08 2001 Chris Runge <crunge@pobox.com>
f44acd
- Initial RPM (based on docbook-style-dsssl RPM)
f44acd
- note: no catalog right now (I don't know how to do it; and not sure why
f44acd
  it is necessary)