>>>>> 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]

Reply via email to