diff options
author | Not Zed <NotZed@Ximian.com> | 2005-08-31 13:00:49 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-08-31 13:00:49 +0800 |
commit | 9b249e6568b86180e210525ba10600f6805a3dc1 (patch) | |
tree | db1997af19d4b02789e3d7230d06e5a0b4b6ba99 /doc/devel/build-eplugin-manual.pl | |
parent | 3d53787d8ecdd9d39b0adaa47adc412b88290d50 (diff) | |
download | gsoc2013-evolution-9b249e6568b86180e210525ba10600f6805a3dc1.tar.gz gsoc2013-evolution-9b249e6568b86180e210525ba10600f6805a3dc1.tar.zst gsoc2013-evolution-9b249e6568b86180e210525ba10600f6805a3dc1.zip |
fix e-import.c not to be included twice & added invocation of xsltproc to
2005-08-31 Not Zed <NotZed@Ximian.com>
* build-eplugin-manual.pl: fix e-import.c not to be included twice
& added invocation of xsltproc to build the html.
* evolution-plugin-manual.xml: fixed some syntax errors.
svn path=/trunk/; revision=30297
Diffstat (limited to 'doc/devel/build-eplugin-manual.pl')
-rwxr-xr-x | doc/devel/build-eplugin-manual.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/devel/build-eplugin-manual.pl b/doc/devel/build-eplugin-manual.pl index 1ddcb795d9..3a99e90223 100755 --- a/doc/devel/build-eplugin-manual.pl +++ b/doc/devel/build-eplugin-manual.pl @@ -25,7 +25,7 @@ 'module' => 'e-util' }, 'e-import.xml' => - { 'files' => [ 'e-import.c', 'e-import.c' ], + { 'files' => [ 'e-import.h', 'e-import.c' ], 'module' => 'e-util' }, 'em-popup.xml' => @@ -268,4 +268,5 @@ foreach $out (keys %hooks) { &buildxml($data{'type'}, $out, \%data); } - +# this works on my system; you need the docbook-xsl-stylesheets package and xsltproc +system("xsltproc /usr/share/xml/docbook/stylesheet/nwalsh/current/html/tldp-sections.xsl evolution-plugin-manual.xml"); |