Ian Rowlands <[EMAIL PROTECTED]> writes: Hello Ian, > > Any suggestions? Is there any other information that I can provide which > would help diagnosis? >
Did you try adding a site.xml descriptor inside the src/site directory ? I think this is mandatory for multi-modules projects (FIXME). Here is some very simple example: In the parent: <?xml version="1.0" encoding="ISO-8859-1"?> <project name="Patchwork"> <body> <menu name="Modules" ref="modules" /> <menu name="Reports" ref="reports" /> </body> </project> In the modules: <?xml version="1.0" encoding="ISO-8859-1"?> <project name="Patchwork Bytes"> <body> <menu name="Patchwork" ref="parent" /> <menu name="Build reports" ref="reports" /> </body> </project> Of course, you could add a custom index.xxx file, for example src/site/apt/index.apt or src/site/xdoc/index.xdoc. HTH -- OQube < software engineering \ génie logiciel > Arnaud Bailly, Dr. \web> http://www.oqube.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
