[jboss-svn-commits] JBL Code SVN: r18744 - in labs/jbossrules/branches/irooskov_docs/drools-docs: drools-docs-referenceguide and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Mar 6 21:46:03 EST 2008


Author: irooskov at redhat.com
Date: 2008-03-06 21:46:03 -0500 (Thu, 06 Mar 2008)
New Revision: 18744

Added:
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml~
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/index.html
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/master.xml
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/pom.xml
Removed:
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-userguide/en/Chapter-Release_Notes/
Modified:
   labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-userguide/en/master.xml
   labs/jbossrules/branches/irooskov_docs/drools-docs/pom.xml
Log:
split chapters into 3 books, user guide, reference guide and release notes


Added: labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml
===================================================================
--- labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml	                        (rev 0)
+++ labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml	2008-03-07 02:46:03 UTC (rev 18744)
@@ -0,0 +1,106 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ 
+    <modelVersion>4.0.0</modelVersion>
+ 
+  <parent>
+    <artifactId>drools-docs</artifactId>
+    <groupId>org.drools</groupId>
+    <version>5.0.0.SNAPSHOT</version>
+  </parent>  
+  
+    <artifactId>drools-docs-referenceguide</artifactId>
+    <packaging>jdocbook</packaging>
+    <name>Drools User Guide</name>
+    <description>User Guide</description>
+ 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jdocbook-plugin</artifactId>
+                <version>2.0.0</version>
+                <extensions>true</extensions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-docbook-xslt</artifactId>
+                        <version>1.0.0</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-jdocbook-style</artifactId>
+                        <version>1.0.0</version>
+                        <type>jdocbook-style</type>
+                    </dependency>
+                </dependencies>
+                
+                <configuration>
+                    <sourceDocumentName>master.xml</sourceDocumentName>
+                    <sourceDirectory>${pom.basedir}/en</sourceDirectory>
+                    <imageResource>
+                        <directory>${pom.basedir}/en</directory>
+                        <excludes>
+                          <exclude>**/*.xml</exclude>
+                        </excludes>
+                    </imageResource>
+                    
+                    <!--<cssResource>
+                        <directory>src/main/css</directory>
+                    </cssResource>-->
+                    
+                    <formats>
+                        <!--<format>
+                            <formatName>pdf</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-pdf.xsl</stylesheetResource>
+                            <finalName>${pom.name}.pdf</finalName>
+                        </format>-->
+                        <format>
+                            <formatName>html</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                        <format>
+                            <formatName>html_single</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/nochunk-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>                              
+                        </format>
+                        <format>
+                            <formatName>eclipse</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-eclipse.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                    </formats>
+                    
+                    <options>
+                        <xincludeSupported>true</xincludeSupported>
+                        <xmlTransformerType>saxon</xmlTransformerType>
+                        <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+                        <!--     could also locate the docbook dependency and inspect its version... -->
+                        <docbookVersion>1.72.0</docbookVersion>
+                    </options>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+ 
+    <distributionManagement>
+        <repository>
+            <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+            <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+            <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+            <id>repository.jboss.org</id>
+            <url>file://${maven.repository.root}</url>
+        </repository>
+        <snapshotRepository>
+            <id>snapshots.jboss.org</id>
+            <name>JBoss Snapshot Repository</name>
+            <url>dav:https://snapshots.jboss.org/maven2</url>
+        </snapshotRepository>
+    </distributionManagement>
+ 
+    <properties>
+        <translation>en-US</translation>
+    </properties> 
+</project>

Added: labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml~
===================================================================
--- labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml~	                        (rev 0)
+++ labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-referenceguide/pom.xml~	2008-03-07 02:46:03 UTC (rev 18744)
@@ -0,0 +1,106 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ 
+    <modelVersion>4.0.0</modelVersion>
+ 
+  <parent>
+    <artifactId>drools-docs</artifactId>
+    <groupId>org.drools</groupId>
+    <version>5.0.0.SNAPSHOT</version>
+  </parent>  
+  
+    <artifactId>drools-docs-userguide</artifactId>
+    <packaging>jdocbook</packaging>
+    <name>Drools User Guide</name>
+    <description>User Guide</description>
+ 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jdocbook-plugin</artifactId>
+                <version>2.0.0</version>
+                <extensions>true</extensions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-docbook-xslt</artifactId>
+                        <version>1.0.0</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-jdocbook-style</artifactId>
+                        <version>1.0.0</version>
+                        <type>jdocbook-style</type>
+                    </dependency>
+                </dependencies>
+                
+                <configuration>
+                    <sourceDocumentName>master.xml</sourceDocumentName>
+                    <sourceDirectory>${pom.basedir}/en</sourceDirectory>
+                    <imageResource>
+                        <directory>${pom.basedir}/en</directory>
+                        <excludes>
+                          <exclude>**/*.xml</exclude>
+                        </excludes>
+                    </imageResource>
+                    
+                    <!--<cssResource>
+                        <directory>src/main/css</directory>
+                    </cssResource>-->
+                    
+                    <formats>
+                        <!--<format>
+                            <formatName>pdf</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-pdf.xsl</stylesheetResource>
+                            <finalName>${pom.name}.pdf</finalName>
+                        </format>-->
+                        <format>
+                            <formatName>html</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                        <format>
+                            <formatName>html_single</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/nochunk-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>                              
+                        </format>
+                        <format>
+                            <formatName>eclipse</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-eclipse.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                    </formats>
+                    
+                    <options>
+                        <xincludeSupported>true</xincludeSupported>
+                        <xmlTransformerType>saxon</xmlTransformerType>
+                        <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+                        <!--     could also locate the docbook dependency and inspect its version... -->
+                        <docbookVersion>1.72.0</docbookVersion>
+                    </options>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+ 
+    <distributionManagement>
+        <repository>
+            <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+            <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+            <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+            <id>repository.jboss.org</id>
+            <url>file://${maven.repository.root}</url>
+        </repository>
+        <snapshotRepository>
+            <id>snapshots.jboss.org</id>
+            <name>JBoss Snapshot Repository</name>
+            <url>dav:https://snapshots.jboss.org/maven2</url>
+        </snapshotRepository>
+    </distributionManagement>
+ 
+    <properties>
+        <translation>en-US</translation>
+    </properties> 
+</project>
\ No newline at end of file

Added: labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/index.html
===================================================================
--- labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/index.html	                        (rev 0)
+++ labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/index.html	2008-03-07 02:46:03 UTC (rev 18744)
@@ -0,0 +1,9 @@
+<html>
+<head>
+  <title>Drools</title>
+</head>
+<frameset cols="25%,*">
+ <frame src="bk01-toc.html" name="list">
+ <frame src="title.html" name="body">
+</frameset>
+</html>
\ No newline at end of file

Added: labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/master.xml
===================================================================
--- labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/master.xml	                        (rev 0)
+++ labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/en/master.xml	2008-03-07 02:46:03 UTC (rev 18744)
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<book xmlns:xi="http://www.w3.org/2001/XInclude">
+  <bookinfo>
+    <title>Drools Release Notes</title>
+
+    <releaseinfo>5.0.0.SNAPSHOT</releaseinfo>
+
+    <author>
+      <firstname>Mark</firstname>
+      <surname>Proctor</surname>
+    </author>
+  
+
+    <author>
+      <firstname>Michael</firstname>
+      <surname>Neale</surname>
+    </author>
+
+</bookinfo>
+
+
+<!--
+  <preface id="preface" revision="2">
+    <title>Preface</title>
+
+    <mediaobject>
+      <imageobject>
+        <imagedata fileref="drools_logo.png" />
+      </imageobject>
+    </mediaobject>
+
+    <para />
+  </preface>
+-->
+ 
+    
+      <chapter>
+        <title>Drools Release Notes</title>
+
+        <xi:include href="Chapter-Release_Notes/Section-What_is_new.xml" />
+
+        <xi:include href="Chapter-Release_Notes/Section-Upgrade_tips.xml" />
+        
+      </chapter>
+
+  <index/>
+</book>

Added: labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/pom.xml
===================================================================
--- labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/pom.xml	                        (rev 0)
+++ labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-release_notes/pom.xml	2008-03-07 02:46:03 UTC (rev 18744)
@@ -0,0 +1,106 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ 
+    <modelVersion>4.0.0</modelVersion>
+ 
+  <parent>
+    <artifactId>drools-docs</artifactId>
+    <groupId>org.drools</groupId>
+    <version>5.0.0.SNAPSHOT</version>
+  </parent>  
+  
+    <artifactId>drools-docs-brms</artifactId>
+    <packaging>jdocbook</packaging>
+    <name>Drools Release Notes</name>
+    <description>Drools Release Notes</description>
+ 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jdocbook-plugin</artifactId>
+                <version>2.0.0</version>
+                <extensions>true</extensions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-docbook-xslt</artifactId>
+                        <version>1.0.0</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-jdocbook-style</artifactId>
+                        <version>1.0.0</version>
+                        <type>jdocbook-style</type>
+                    </dependency>
+                </dependencies>
+                
+                <configuration>
+                    <sourceDocumentName>master.xml</sourceDocumentName>
+                    <sourceDirectory>${pom.basedir}/en</sourceDirectory>
+                    <imageResource>
+                        <directory>${pom.basedir}/en</directory>
+                        <excludes>
+                          <exclude>**/*.xml</exclude>
+                        </excludes>
+                    </imageResource>
+                    
+                    <!--<cssResource>
+                        <directory>src/main/css</directory>
+                    </cssResource>-->
+                    
+                    <formats>
+                        <!--<format>
+                            <formatName>pdf</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-pdf.xsl</stylesheetResource>
+                            <finalName>${pom.name}.pdf</finalName>
+                        </format>-->
+                        <format>
+                            <formatName>html</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                        <format>
+                            <formatName>html_single</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/nochunk-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>                              
+                        </format>
+                        <!--format>
+                            <formatName>eclipse</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-eclipse.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format-->
+                    </formats>
+                    
+                    <options>
+                        <xincludeSupported>true</xincludeSupported>
+                        <xmlTransformerType>saxon</xmlTransformerType>
+                        <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+                        <!--     could also locate the docbook dependency and inspect its version... -->
+                        <docbookVersion>1.72.0</docbookVersion>
+                    </options>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+ 
+    <distributionManagement>
+        <repository>
+            <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+            <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+            <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+            <id>repository.jboss.org</id>
+            <url>file://${maven.repository.root}</url>
+        </repository>
+        <snapshotRepository>
+            <id>snapshots.jboss.org</id>
+            <name>JBoss Snapshot Repository</name>
+            <url>dav:https://snapshots.jboss.org/maven2</url>
+        </snapshotRepository>
+    </distributionManagement>
+ 
+    <properties>
+        <translation>en-US</translation>
+    </properties> 
+</project>

Modified: labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-userguide/en/master.xml
===================================================================
--- labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-userguide/en/master.xml	2008-03-06 22:50:11 UTC (rev 18743)
+++ labs/jbossrules/branches/irooskov_docs/drools-docs/drools-docs-userguide/en/master.xml	2008-03-07 02:46:03 UTC (rev 18744)
@@ -41,7 +41,8 @@
   </preface>
 -->
  
-    
+<!-- The Release Notes Chapter has been placed on its own, seperate from all 	  other books
+   
     <chapter>
       <title>Drools 4.0 Release Notes</title>
 
@@ -49,12 +50,12 @@
 
       <xi:include href="Chapter-Release_Notes/Section-Upgrade_tips.xml" />
     </chapter>
-
+-->
     <chapter>
 	    <title>Installation and Setup (Core and IDE)</title>
 	    
 	    <xi:include href="Chapter-Install/Section-Install.xml" />
-<!--
+
 	    <xi:include href="Chapter-Install/Section-Setup.xml" />
 	    
 	    <xi:include href="Chapter-Install/Section-Checkout.xml" />
@@ -62,14 +63,15 @@
 	    <xi:include href="Chapter-Install/Section-Maven_build.xml" />
 	    
 	    <xi:include href="Chapter-Install/Section-Eclipse.xml" />
--->
+
     </chapter>
-    
+ 
     <chapter>
-      <title>The Rule Engine</title>
+      <title>The Drools Rule Engine</title>
+ <!-- these sections has been moved to the Reference Guide book  -->
+<!--
+      <xi:include href="Chapter-Rule_Engine/Section-What_is_a_Rule_Engine.xml" />
 
-      <xi:include href="Chapter-Rule_Engine/Section-What_is_a_Rule_Engine.xml" />
-<!--
       <xi:include href="Chapter-Rule_Engine/Section-Why_use_a_Rule_Engine.xml" />
 
       <xi:include href="Chapter-Rule_Engine/Section-Rules.xml" />
@@ -77,16 +79,20 @@
       <xi:include href="Chapter-Rule_Engine/Section-Rete_Algorithm.xml" />
 -->
       <xi:include href="Chapter-Rule_Engine/Section-The_Drools_Rule_Engine.xml" />
+<!--
+      <xi:include href="Chapter-Rule_Engine/Section-Rule_Base.xml" />
 
-      <!--xi:include href="Chapter-Rule_Engine/Section-Rule_Base.xml" />
-
       <xi:include href="Chapter-Rule_Engine/Section-Working_Memory.xml" />
 
       <xi:include href="Chapter-Rule_Engine/Section-Agenda.xml" />
 
-      <xi:include href="Chapter-Rule_Engine/Section-Event_Model.xml" /-->
+      <xi:include href="Chapter-Rule_Engine/Section-Event_Model.xml" />
+-->
     </chapter>
-    
+
+
+<!-- This chapter has been moved to the Reference Guide book
+   
     <chapter>
 	    <title>The Rule Language</title>
 	    
@@ -108,7 +114,7 @@
 	    
 	    <xi:include href="Chapter-Rule_Language/Section-XML.xml" />
     </chapter>
-
+-->
     <chapter>
 	    <title>Deployment and Testing</title>
 	    
@@ -116,33 +122,50 @@
 	    
 	    <xi:include href="Chapter-Deployment/Section-Testing.xml" />
     </chapter>
+<!-- This chapter has been moved to the Reference Guide book
 
     <chapter>
       <title>Decision Tables</title>
 
       <xi:include href="Chapter-Decision_Tables/Section-Spreadsheet.xml" />
     </chapter>
-
+-->
     <chapter>
       <title>The (Eclipse based) Rule IDE</title>
 
       <xi:include href="Chapter-IDE/Section-QuickStart.xml" />
     </chapter>
+
+     <chapter>
+        <title>The BRMS (Business Rule Management System)</title>
 
+        <xi:include href="Chapter-BRMS/Section-Introduction.xml" />
+
+        <xi:include href="Chapter-BRMS/Section-AdminGuide.xml" />
+
+<!-- this section has been moved to the Reference Guide book
+        <xi:include href="Chapter-BRMS/Section-Architecture.xml" />
+-->
+        <xi:include href="Chapter-BRMS/Section-UserGuide.xml" />
+
+        
+      </chapter>
+<!-- this chapter has been moved to the Reference Guide book
+
       <chapter>
         <title>The Java Rule Engine API</title>
 
         <xi:include href="Chapter-JSR94/Section-Introduction.xml" />
-
+-->
         <!-- Removed till it can be completed -->
 
         <!-- include href="Chapter-JSR94/Section-Specification.xml" /-->
-
+<!--
         <xi:include href="Chapter-JSR94/Section-How_To_Use.xml" />
 
         <xi:include href="Chapter-JSR94/Section-References.xml" />
       </chapter>
-      
+-->      
 
 <index/>
 </book>

Modified: labs/jbossrules/branches/irooskov_docs/drools-docs/pom.xml
===================================================================
--- labs/jbossrules/branches/irooskov_docs/drools-docs/pom.xml	2008-03-06 22:50:11 UTC (rev 18743)
+++ labs/jbossrules/branches/irooskov_docs/drools-docs/pom.xml	2008-03-07 02:46:03 UTC (rev 18744)
@@ -47,6 +47,8 @@
   
   <modules>
       <module>drools-docs-userguide</module>
+      <module>drools-docs-referenceguide</module>
+      <module>drools-docs-release_notes</module>
       <module>drools-docs-brms</module>
       <module>drools-docs-solver</module>
       <module>drools-docs-examples</module>
@@ -59,6 +61,19 @@
             <artifactId>drools-docs-userguide</artifactId>
             <version>${project.version}</version>  
          </dependency>
+
+	<dependency>
+            <groupId>org.drools</groupId>
+            <artifactId>drools-docs-referenceguide</artifactId>
+            <version>${project.version}</version>  
+         </dependency>
+
+
+	<dependency>
+            <groupId>org.drools</groupId>
+            <artifactId>drools-docs-release_notes</artifactId>
+            <version>${project.version}</version>  
+         </dependency>
          
          <dependency>
             <groupId>org.drools</groupId>




More information about the jboss-svn-commits mailing list