Helck, Christopher wrote:

I have an XDOC document that I've places into the ./xdocs directory. When I
run maven it processes my file and puts the resulting HTML into ./docs, but
it does not create any links to my document. What do I have to do?

Thanks,
Christopher Helck


You need to put the links in yourself. For example you could create an navigation.xml that looks like:

<project name="MyProject">

 <title>MyProject</title>

 <body>

     <menu name="Overview">
         <item name="My Document 1" href="/document1.html"/>
     <item name="Document 2" href="/document2.html"/>
     </menu>
 </body>

</project>

This would add menu items to the left of the website with links to your documents.

Or you create index.xml that has more description then you put in the project.xml <description> tag. Check out the maven sources for more ideas.


--
Erik Husby
Team Lead for Software Quality Automation
Broad Institute of MIT and Harvard Rm. 2192 320 Charles St
Cambridge, MA 02141-2023
mobile: 781.354.6669, office: 617.258.9227, [EMAIL PROTECTED]



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



Reply via email to