* Thu Oct 07 2010 Jeff Fearn <jfearn@redhat.com> 2.3-0
- Prepend product name to product/version splash pages. - Fix bash completion for --brand and --type. - Use --nocolours in spec files. - Update tocs when home/product/version pages are updated. BZ #612027 - Scroll to current entry in navigation menu. - Highlight current book in navigation menu. - Fix single quote in abstract/subtitle breaking RPM install. BZ #642088 - Fix RPM website not installing cleanly. - Fix splash page icon wrap. BZ #642109 - Moved titles before: example, equation, table. BZ #638787 - Change html and PDF style for verbatim & example. BZ #638787 - Change html and PDF style for admonitions. BZ #638787 - Fix HTML footer style and layout. - Add bump action Tech Preview. - Fix indexterm merge missing nested nodes. BZ #643275 - Add phrase to translatable tag list. BZ #643287 - Fix POT files breaking when using HTML::Tree 4.0. - Fix translated label missing from manually installed book. BZ #643781 - Add icon.svg to Create Book. BZ #644105 - Add XML dump options for site config. - Fix histroy typo - Stop max_image_width overriding XML width settings. - Decrease white space at top and bottom of PDF. - Fix toc links to refentry in chunked HTML. BZ #645602
This commit is contained in:
parent
f1fdee1f8d
commit
fe2a7be2ec
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
Publican-2.1.tar.gz
|
||||
/Publican-2.2.tar.gz
|
||||
/Publican-2.3.tar.gz
|
||||
|
@ -12,7 +12,6 @@
|
||||
%endif
|
||||
|
||||
# who doesn't have xdg-open?
|
||||
#%define HTMLVIEW %(test %{RHEL5} == 1 && echo 1 || echo 0)
|
||||
%define HTMLVIEW %{RHEL5}
|
||||
|
||||
# required for desktop file install
|
||||
@ -21,7 +20,7 @@
|
||||
%define TESTS 0
|
||||
|
||||
Name: publican
|
||||
Version: 2.2
|
||||
Version: 2.3
|
||||
Release: 0%{?dist}
|
||||
Summary: Common files and scripts for publishing with DocBook XML
|
||||
# For a breakdown of the licensing, refer to LICENSE
|
||||
@ -80,6 +79,7 @@ BuildRequires: perl(Test::Pod)
|
||||
BuildRequires: perl(version)
|
||||
BuildRequires: perl(XML::LibXML) >= 1.67
|
||||
BuildRequires: perl(XML::LibXSLT) >= 1.67
|
||||
BuildRequires: perl(XML::Simple)
|
||||
BuildRequires: perl(XML::TreeBuilder) >= 3.09-15
|
||||
BuildRequires: fop >= 0.95
|
||||
BuildRequires: batik
|
||||
@ -165,9 +165,9 @@ solely on using the publican tools.
|
||||
%{__perl} Build.PL installdirs=vendor
|
||||
./Build
|
||||
dir=`pwd` && cd Users_Guide && perl -I $dir/blib/lib $dir/blib/script/publican build \
|
||||
--formats=html-desktop --publish --langs=all \
|
||||
--common_config="$dir/blib/datadir" \
|
||||
--common_content="$dir/blib/datadir/Common_Content"
|
||||
--formats=html-desktop --publish --langs=all \
|
||||
--common_config="$dir/blib/datadir" \
|
||||
--common_content="$dir/blib/datadir/Common_Content"
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
@ -189,9 +189,9 @@ sed -i -e 's|xdg-open|htmlview|' %{name}.desktop
|
||||
desktop-file-install --vendor="%{my_vendor}" --dir=$RPM_BUILD_ROOT%{_datadir}/applications %{name}.desktop
|
||||
|
||||
for file in po/*.po; do
|
||||
lang=`echo "$file" | sed -e 's/po\/\(.*\)\.po/\1/'`;
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/locale/$lang/LC_MESSAGES;
|
||||
msgfmt $file -o $RPM_BUILD_ROOT%{_datadir}/locale/$lang/LC_MESSAGES/%{name}.mo;
|
||||
lang=`echo "$file" | sed -e 's/po\/\(.*\)\.po/\1/'`;
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/locale/$lang/LC_MESSAGES;
|
||||
msgfmt $file -o $RPM_BUILD_ROOT%{_datadir}/locale/$lang/LC_MESSAGES/%{name}.mo;
|
||||
done
|
||||
|
||||
%find_lang %{name}
|
||||
@ -200,6 +200,7 @@ done
|
||||
%if %{TESTS}
|
||||
./Build test
|
||||
%endif
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
@ -212,8 +213,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_mandir}/man1/*
|
||||
%{_bindir}/publican
|
||||
%{_datadir}/publican
|
||||
%config(noreplace) %{_datadir}/publican/default.db
|
||||
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/publican-website.cfg
|
||||
%{_sysconfdir}/bash_completion.d/_publican
|
||||
%config(noreplace) %{_sysconfdir}/bash_completion.d/_publican
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
@ -222,6 +224,32 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%doc fdl.txt
|
||||
|
||||
%changelog
|
||||
* Tue Oct 26 2010 Jeff Fearn <jfearn@redhat.com> 2.3-0
|
||||
- Prepend product name to product/version splash pages.
|
||||
- Fix bash completion for --brand and --type.
|
||||
- Use --nocolours in spec files.
|
||||
- Update tocs when home/product/version pages are updated. BZ #612027
|
||||
- Scroll to current entry in navigation menu.
|
||||
- Highlight current book in navigation menu.
|
||||
- Fix single quote in abstract/subtitle breaking RPM install. BZ #642088
|
||||
- Fix RPM website not installing cleanly.
|
||||
- Fix splash page icon wrap. BZ #642109
|
||||
- Moved titles before: example, equation, table. BZ #638787
|
||||
- Change html and PDF style for verbatim & example. BZ #638787
|
||||
- Change html and PDF style for admonitions. BZ #638787
|
||||
- Fix HTML footer style and layout.
|
||||
- Add bump action Tech Preview.
|
||||
- Fix indexterm merge missing nested nodes. BZ #643275
|
||||
- Add phrase to translatable tag list. BZ #643287
|
||||
- Fix POT files breaking when using HTML::Tree 4.0.
|
||||
- Fix translated label missing from manually installed book. BZ #643781
|
||||
- Add icon.svg to Create Book. BZ #644105
|
||||
- Add XML dump options for site config.
|
||||
- Fix histroy typo
|
||||
- Stop max_image_width overriding XML width settings.
|
||||
- Decrease white space at top and bottom of PDF.
|
||||
- Fix toc links to refentry in chunked HTML. BZ #645602
|
||||
|
||||
* Wed Oct 06 2010 Jeff Fearn <jfearn@redhat.com> 2.2-0
|
||||
- Extend callout graphics to 40; adjust colour and font BZ #629804 <r.landmann@redhat.com>
|
||||
- Make keycombo example consistent with RHEL6 behaviour. BZ #618735 <r.landmann@redhat.com>
|
||||
@ -1027,7 +1055,3 @@ rm -rf $RPM_BUILD_ROOT
|
||||
* Wed Feb 07 2007 Jeff Fearn <jfearn@redhat.com> 0.0
|
||||
- Initial creation
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user