« Return to Thread: doxia book and pdf generation
Lukas Theussl-3 wrote:There were several issues in the book module that are fixed in the
(unpublished) beta-1 version of doxia, see eg [1,2,3]. I suspect at
least some of those are responsible for what you see but it's hard to be
sure with the info that you provide. You can attach a complete test
project to jira if you want someone to check.
HTH,
-Lukas
[1] http://jira.codehaus.org/browse/DOXIA-157
[2] http://jira.codehaus.org/browse/DOXIA-160
[3] http://jira.codehaus.org/browse/DOXIA-166
sandraB wrote:
> Hi,
>
> I'm trying to use doxia plugins to generate a pdf book and a xdoc files to
> generate the site, but I've got several errors :
> - The doxia:render-books generate xdoc files with a end-tag </document> at
> the end of the files but without any start-tag <document> ==> I've got a
> parser exception in the next step
> - When I generate the site (site:site and site:run), the
> http://localhost:8080 show website without any styles and img.
> - The pdf files is not formated correctly. The sections, subsections, <ul>
> tags, <li> tags, ... have disappeared.
>
> Could you please help me to resolve these issues ?
>
> Thanks in advance
> Sandra
>
> Here is my pom.xml :
>
> <plugin>
> <artifactId>maven-site-plugin</artifactId>
> <version>2.0-beta-6</version>
> <dependencies>
> <dependency>
> <groupId>org.apache.maven.doxia</groupId>
> <artifactId>doxia-module-docbook-simple</artifactId>
> <version>1.0-alpha-11</version>
> </dependency>
> </dependencies>
> </plugin>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-compiler-plugin</artifactId>
> <version>2.0</version>
> <configuration>
> <source>1.4</source>
> <target>1.4</target>
> </configuration>
> </plugin>
> <plugin>
> <groupId>org.apache.maven.doxia</groupId>
> <artifactId>doxia-maven-plugin</artifactId>
> <version>1.0-alpha-11</version>
> <executions>
> <execution>
> <phase>pre-site</phase>
> <goals>
> <goal>render-books</goal>
> </goals>
> </execution>
> </executions>
> <configuration>
> <books>
> <book>
> <directory>src/books</directory>
> <descriptor>src/books/test.xml</descriptor>
> <formats>
> <format>
> <id>xdoc</id>
> </format>
> <format>
> <id>pdf</id>
> </format>
> </formats>
> </book>
> </books>
> </configuration>
> </plugin>
>
>
« Return to Thread: doxia book and pdf generation
| Free embeddable forum powered by Nabble | Forum Help |