Thanks Pete!

What about if I wanted to create PDF documents also - pdf plugin uses that
navigation.xml too? Does my HTML files generated by word2html plugin show up
in generated PDF files - or are they just links in document (I *could* test
this myself but I'm off duty from now 'till wednesday)? Maybe there ought to
be some word2xml plugin in order to include Word documents --> xml --> PDF?
We are customed to write documents with Word so they should be included in
project web site (preferably in html-format also) and it would be quite
excellent if we could produce one single PDF document including all
(important) documentation in web site: UML diagrams (gif/jpeg images),
javadocs, Word-docs, JUnit test reports and so on.
Can it be done with Maven + pdf-plugin + word2html-plugin?


--teemu


----- Original Message -----
From: "Pete Kazmier" <[EMAIL PROTECTED]>
To: "Turbine Maven Users List" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 5:06 PM
Subject: Re: word2html


> >>>>> On Fri, 14 Mar 2003 10:49:15 +0200, "Teemu Hiltunen" said:
>
> Teemu> - How can I get my Word documents to show up in generated site?
> Teemu>   There are created ok by word2html plugin but there is no link
> Teemu>   to them anywhere in generated site(?)
>
> You have to add the links to the navbar yourself.  Use the
> navigation.xml file located in the xdocs directory.  Here is
> a snippet of the one we use to generate the Maven site:
>
> <menu name="Overview">
>   <item name="Goals"               href="/goals.html"/>
>   <item name="Features"            href="/features.html"/>
>   <item name="Download"            href="/start/download.html"/>
>   <item name="News and Status"     href="/status.html"/>
>   <item name="Getting Started"     href="/start/index.html"
collapse="true">
>     <item name="Download"          href="/start/download.html"/>
>     <item name="Install"           href="/start/install.html"/>
>     <item name="Integrate"         href="/start/integrate.html"/>
>     <item name="Use"               href="/start/use.html"/>
>     <item name="Build"             href="/start/bootstrap.html"/>
>     <item name="Anakia Users"      href="/start/anakia.html"/>
>   </item>
>   ...
> </menu>
>
> Basically, if you have a word document called 'word.doc', you'll want
> to add an <item> such as to your xdocs/navigation.xml file:
>
>   <item name="Word Doc"            href="/word.html"/>
>
> Thanks,
> Pete
>
> ps The example above from Maven's navigation.xml file uses the
>    'collapse' feature, which was recently added and I don't
>    think it made it into b8.  You'll have to use HEAD if you
>    want that feature (or do it the old way which is create a
>    navigation.xml file in a subdir with all the docs that should
>    be expanded for that particular level).
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail:
[EMAIL PROTECTED]
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to