You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2010/05/06 16:39:30 UTC

svn commit: r941757 - in /uima/uima-as/branches/mavenAlign/uima-as-docbooks: ./ src/docbook/

Author: schor
Date: Thu May  6 14:39:29 2010
New Revision: 941757

URL: http://svn.apache.org/viewvc?rev=941757&view=rev
Log:
[UIMA-1757] restructuring for docbkx

Added:
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/pom.xml
Modified:
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.camel.driver.xml
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.errorhandling.xml
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.monitoring.and.tuning.xml
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.overview.xml
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.api.xml
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.deployment.xml
    uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/uima_async_scaleout.xml

Added: uima/uima-as/branches/mavenAlign/uima-as-docbooks/pom.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/pom.xml?rev=941757&view=auto
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/pom.xml (added)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/pom.xml Thu May  6 14:39:29 2010
@@ -0,0 +1,65 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+
+<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/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+  
+  <parent>
+    <groupId>org.apache.uima</groupId>
+    <artifactId>parent-pom-docbook</artifactId>
+    <version>1-SNAPSHOT</version>
+    <relativePath/>
+  </parent>
+  
+	<artifactId>uima-as-docbooks</artifactId>
+	<packaging>pom</packaging>
+	<version>2.3.1-SNAPSHOT</version>
+	<name>Apache UIMA-AS Documentation</name>	
+  <url>${uimaWebsiteUrl}</url>
+ 
+   <!-- Special inheritance note
+       even though the <scm> element that follows is exactly the 
+       same as those in super poms, it cannot be inherited because 
+       there is some special code that computes the connection elements
+       from the chain of parent poms, if this is omitted. 
+       
+       Keeping this a bit factored allows cutting/pasting the <scm>
+       element, and just changing the following two properties -->  
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/uima/${uimaScmRoot}/trunk/${uimaScmProject}
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/uima/${uimaScmRoot}/trunk/${uimaScmProject}
+    </developerConnection>
+    <url>
+      http://svn.apache.org/viewvc/uima/${uimaScmRoot}/trunk/${uimaScmProject}
+    </url>
+  </scm>
+  
+  <properties>
+    <uimaScmRoot>uima-as</uimaScmRoot>
+    <uimaScmProject>${project.artifactId}</uimaScmProject>
+    <!-- next property is the name of the top file under src/docbook without trailing .xml -->
+    <bookNameRoot>uima_async_scaleout</bookNameRoot>
+  </properties>
+ 	
+</project>
\ No newline at end of file

Modified: uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.camel.driver.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.camel.driver.xml?rev=941757&r1=941756&r2=941757&view=diff
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.camel.driver.xml (original)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.camel.driver.xml Thu May  6 14:39:29 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % uimaents SYSTEM "../entities.ent" >
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
+<!ENTITY % uimaents SYSTEM "../../target/docbook-shared/entities.ent" >
   %uimaents;
   ]>
 <!--

Modified: uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.errorhandling.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.errorhandling.xml?rev=941757&r1=941756&r2=941757&view=diff
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.errorhandling.xml (original)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.errorhandling.xml Thu May  6 14:39:29 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-       "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY imgroot "../images/uima_async_scaleout/async.errorhandling/" >
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+       "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
+<!ENTITY imgroot "images/uima_async_scaleout/async.errorhandling/" >
 ]>
 <!--
 Licensed to the Apache Software Foundation (ASF) under one

Modified: uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.monitoring.and.tuning.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.monitoring.and.tuning.xml?rev=941757&r1=941756&r2=941757&view=diff
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.monitoring.and.tuning.xml (original)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.monitoring.and.tuning.xml Thu May  6 14:39:29 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-       "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
-<!ENTITY % uimaents SYSTEM "../entities.ent">  
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+       "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"[
+<!ENTITY % uimaents SYSTEM "../../target/docbook-shared/entities.ent">  
 ]>
 <!--
 Licensed to the Apache Software Foundation (ASF) under one

Modified: uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.overview.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.overview.xml?rev=941757&r1=941756&r2=941757&view=diff
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.overview.xml (original)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/async.overview.xml Thu May  6 14:39:29 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-       "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
-<!ENTITY % uimaents SYSTEM "../entities.ent">  
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+       "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"[
+<!ENTITY % uimaents SYSTEM "../../target/docbook-shared/entities.ent">  
 ]>
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
@@ -499,11 +499,11 @@ under the License.
         <mediaobject>
           <imageobject role="html">
             <imagedata width="279px" format="PNG"
-              fileref="../images/uima_async_scaleout/async.overview/wrapAE.png"></imagedata>
+              fileref="images/uima_async_scaleout/async.overview/wrapAE.png"></imagedata>
           </imageobject>
           <imageobject role="fo">
             <imagedata width="2.7in" format="PNG"
-              fileref="../images/uima_async_scaleout/async.overview/wrapAE.png"></imagedata>
+              fileref="images/uima_async_scaleout/async.overview/wrapAE.png"></imagedata>
           </imageobject>
           <textobject> <phrase>AS Primitive Wrapper</phrase></textobject></mediaobject></figure>
       <para>As shown in the next figure, when the component being wrapped is an AS Aggregate, the container will use
@@ -515,11 +515,11 @@ under the License.
         <mediaobject>
           <imageobject role="html">
             <imagedata width="590px" format="PNG"
-              fileref="../images/uima_async_scaleout/async.overview/wrapAAE.png"></imagedata>
+              fileref="images/uima_async_scaleout/async.overview/wrapAAE.png"></imagedata>
           </imageobject>
           <imageobject role="fo">
             <imagedata width="5.5in" format="PNG"
-              fileref="../images/uima_async_scaleout/async.overview/wrapAAE.png"></imagedata>
+              fileref="images/uima_async_scaleout/async.overview/wrapAAE.png"></imagedata>
           </imageobject>
           <textobject> <phrase>AS Aggregate Container wrapping an Aggregate Analysis Engine</phrase>
           </textobject></mediaobject></figure>

Modified: uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.api.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.api.xml?rev=941757&r1=941756&r2=941757&view=diff
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.api.xml (original)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.api.xml Thu May  6 14:39:29 2010
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY imgroot "../images/uima_async_scaleout/async.overview/" >
-<!ENTITY % uimaents SYSTEM "../entities.ent" >
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
+<!ENTITY imgroot "images/uima_async_scaleout/async.overview/" >
+<!ENTITY % uimaents SYSTEM "../../target/docbook-shared/entities.ent" >
   %uimaents;
   ]>
 <!--

Modified: uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.deployment.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.deployment.xml?rev=941757&r1=941756&r2=941757&view=diff
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.deployment.xml (original)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/ref.async.deployment.xml Thu May  6 14:39:29 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % uimaents SYSTEM "../entities.ent" >
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
+<!ENTITY % uimaents SYSTEM "../../target/docbook-shared/entities.ent" >
   %uimaents;
   ]>
 <!--

Modified: uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/uima_async_scaleout.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/uima_async_scaleout.xml?rev=941757&r1=941756&r2=941757&view=diff
==============================================================================
--- uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/uima_async_scaleout.xml (original)
+++ uima/uima-as/branches/mavenAlign/uima-as-docbooks/src/docbook/uima_async_scaleout.xml Thu May  6 14:39:29 2010
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY sisterProject "../../../../uima-docbooks/src/docbook/">
-<!ENTITY % xinclude SYSTEM "../../../../uima-docbook-tool/xinclude.mod">
-  %xinclude;
-  ]>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -26,7 +22,7 @@ under the License.
 <book lang="en">
   <title>UIMA Asynchronous Scaleout</title>
   
-  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../common_book_info.xml"/>
+  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../../target/docbook-shared/common_book_info.xml"/>
 
   <toc/>