Author: artdaw
Date: 2009-01-19 10:40:20 -0500 (Mon, 19 Jan 2009)
New Revision: 12338
Added:
trunk/docs/common-resources/en/src/main/xslt/xhtml-single-faq.xsl
Modified:
trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl
trunk/docs/faq/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-5437 - necessary xsl file was added
Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl 2009-01-19 15:38:50 UTC
(rev 12337)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl 2009-01-19 15:40:20 UTC
(rev 12338)
@@ -9,8 +9,10 @@
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:date="http://exslt.org/dates-and-times"
exclude-result-prefixes="date">
<xsl:import href="collapsing-navigation.xsl"/>
- <xsl:param name="generate.toc" select="'book
toc'"/>
- <xsl:param name="toc.section.depth" select="5"/>
+ <!--xsl:param name="generate.toc" select="'book
toc'"/-->
+ <xsl:param name="toc.section.depth" select="5"/>
+
+
<!--
From: xhtml/docbook.xsl
Reason: Remove inline style for draft mode
Added: trunk/docs/common-resources/en/src/main/xslt/xhtml-single-faq.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-single-faq.xsl
(rev 0)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-single-faq.xsl 2009-01-19 15:40:20
UTC (rev 12338)
@@ -0,0 +1,13 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2008 JBoss, a division of Red Hat
+ License: LGPL
+ Author: Mark Newton <mark.newton(a)jboss.org>
+-->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
+<xsl:import href="xhtml-single.xsl"/>
+<xsl:param name="generate.toc" select="'book toc'"/>
+
+</xsl:stylesheet>
Property changes on: trunk/docs/common-resources/en/src/main/xslt/xhtml-single-faq.xsl
___________________________________________________________________
Name: svn:executable
+ *
Modified: trunk/docs/faq/pom.xml
===================================================================
--- trunk/docs/faq/pom.xml 2009-01-19 15:38:50 UTC (rev 12337)
+++ trunk/docs/faq/pom.xml 2009-01-19 15:40:20 UTC (rev 12338)
@@ -28,7 +28,44 @@
</pluginRepositories>
<build>
<pluginManagement>
- <plugins>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-spellChecker-plugin</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <id>spellChecker:check</id>
+ <phase>package</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>spellChecker:validate</id>
+ <phase>package</phase>
+ <goals>
+ <goal>validate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <outputDir>${project.build.directory}/log</outputDir>
+ <reportFileName>log.txt</reportFileName>
+ <dirForScan>${basedir}</dirForScan>
+ <fileForValidation>${basedir}/en/src/main/docbook/master.xml</fileForValidation>
+ <wellformdnessOnly>false</wellformdnessOnly>
+ <
xmlSchema>http://www.docbook.org/xsd/4.3/docbook.xsd</xmlSchema>
+ <!--dictionaryFile>/media/WIndows_C/workspace_test/english.dic</dictionaryFile-->
+ <excludes>
+ <exclude>**/*.svn</exclude>
+ </excludes>
+ <includes>
+ <include>**/*.xml</include>
+ <include>**/*.html</include>
+ </includes>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
@@ -162,7 +199,7 @@
<format>
<formatName>html_single</formatName>
<stylesheetResource>
- ${xsl_html_single}
+ classpath:/common-resources/xslt/xhtml-single-faq.xsl
</stylesheetResource>
<imageCopyingRequired>
true
@@ -222,4 +259,4 @@
<module>en</module>
</modules>
-</project>
\ No newline at end of file
+</project>