Author: veithen
Date: Sat Sep 5 11:34:39 2015
New Revision: 1701373
URL: http://svn.apache.org/r1701373
Log:
Enable Maven sites for the three object model implementations we ship.
Added:
webservices/axiom/trunk/implementations/axiom-dom/src/site/
webservices/axiom/trunk/implementations/axiom-dom/src/site/markdown/
webservices/axiom/trunk/implementations/axiom-dom/src/site/markdown/index.md.vm
webservices/axiom/trunk/implementations/axiom-dom/src/site/site.xml (with
props)
webservices/axiom/trunk/implementations/axiom-impl/src/site/
webservices/axiom/trunk/implementations/axiom-impl/src/site/markdown/
webservices/axiom/trunk/implementations/axiom-impl/src/site/markdown/index.md.vm
webservices/axiom/trunk/implementations/axiom-impl/src/site/site.xml
(with props)
webservices/axiom/trunk/implementations/fom-impl/src/site/
webservices/axiom/trunk/implementations/fom-impl/src/site/markdown/
webservices/axiom/trunk/implementations/fom-impl/src/site/markdown/index.md.vm
webservices/axiom/trunk/implementations/fom-impl/src/site/site.xml (with
props)
webservices/axiom/trunk/implementations/src/
webservices/axiom/trunk/implementations/src/site/
webservices/axiom/trunk/implementations/src/site/site.xml (with props)
Modified:
webservices/axiom/trunk/implementations/axiom-dom/pom.xml
webservices/axiom/trunk/implementations/axiom-impl/pom.xml
webservices/axiom/trunk/implementations/fom-impl/pom.xml
webservices/axiom/trunk/implementations/pom.xml
webservices/axiom/trunk/src/site/site.xml
Modified: webservices/axiom/trunk/implementations/axiom-dom/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-dom/pom.xml?rev=1701373&r1=1701372&r2=1701373&view=diff
==============================================================================
--- webservices/axiom/trunk/implementations/axiom-dom/pom.xml (original)
+++ webservices/axiom/trunk/implementations/axiom-dom/pom.xml Sat Sep 5
11:34:39 2015
@@ -29,9 +29,8 @@
<artifactId>axiom-dom</artifactId>
<packaging>bundle</packaging>
- <name>Axiom DOM</name>
- <description>The Axiom DOM implementation.</description>
- <url>http://ws.apache.org/axiom/</url>
+ <name>DOOM</name>
+ <description>An implementation of the Axiom API that also implements
DOM.</description>
<dependencies>
<dependency>
@@ -140,4 +139,20 @@
</plugin>
</plugins>
</build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <inherited>false</inherited>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>index</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
Added:
webservices/axiom/trunk/implementations/axiom-dom/src/site/markdown/index.md.vm
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-dom/src/site/markdown/index.md.vm?rev=1701373&view=auto
==============================================================================
---
webservices/axiom/trunk/implementations/axiom-dom/src/site/markdown/index.md.vm
(added)
+++
webservices/axiom/trunk/implementations/axiom-dom/src/site/markdown/index.md.vm
Sat Sep 5 11:34:39 2015
@@ -0,0 +1,39 @@
+##
+## 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.
+##
+
+About
+-----
+
+DOOM (DOM over OM) implements both the Axiom API and the standard DOM API. To
use this implementation,
+add `axiom-dom` to your project and request an `OMMetaFactory` with the DOM
feature:
+
+ OMMetaFactory mf =
OMAbstractFactory.getMetaFactory(OMAbstractFactory.FEATURE_DOM);
+
+You can then get `OMFactory` and `SOAPFactory` instances from that
`OMMetaFactory`. All nodes
+created using these factories will implement both APIs; e.g. you can cast any
`OMElement` to an `org.w3c.dom.Element`.
+The exact semantics are documented [here][1].
+
+To parse an existing XML document with DOOM, make sure that you use one of the
methods in `OMXMLBuilderFactory` that
+take an `OMFactory` or `OMMetaFactory` argument.
+
+Finally, if you need to use JAXP/DOM APIs to create an object model, cast the
`OMMetaFactory` obtained by the
+instruction shown above to a `DOMMetaFactory`. That API then allows you to
create a `DocumentBuilderFactory` implemented
+by DOOM.
+
+[1]: ../../apidocs/org/apache/axiom/om/dom/DOMMetaFactory.html
Added: webservices/axiom/trunk/implementations/axiom-dom/src/site/site.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-dom/src/site/site.xml?rev=1701373&view=auto
==============================================================================
--- webservices/axiom/trunk/implementations/axiom-dom/src/site/site.xml (added)
+++ webservices/axiom/trunk/implementations/axiom-dom/src/site/site.xml Sat Sep
5 11:34:39 2015
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!--
+ ~ 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>
+ <body>
+ <menu ref="reports"/>
+ </body>
+</project>
Propchange: webservices/axiom/trunk/implementations/axiom-dom/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified: webservices/axiom/trunk/implementations/axiom-impl/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-impl/pom.xml?rev=1701373&r1=1701372&r2=1701373&view=diff
==============================================================================
--- webservices/axiom/trunk/implementations/axiom-impl/pom.xml (original)
+++ webservices/axiom/trunk/implementations/axiom-impl/pom.xml Sat Sep 5
11:34:39 2015
@@ -29,9 +29,8 @@
<artifactId>axiom-impl</artifactId>
<packaging>bundle</packaging>
- <name>Axiom Impl</name>
- <description>The Axiom default implementation.</description>
- <url>http://ws.apache.org/axiom/</url>
+ <name>LLOM</name>
+ <description>The default implementation of the Axiom API.</description>
<dependencies>
<dependency>
@@ -124,4 +123,20 @@
</plugin>
</plugins>
</build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <inherited>false</inherited>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>index</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
Added:
webservices/axiom/trunk/implementations/axiom-impl/src/site/markdown/index.md.vm
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-impl/src/site/markdown/index.md.vm?rev=1701373&view=auto
==============================================================================
---
webservices/axiom/trunk/implementations/axiom-impl/src/site/markdown/index.md.vm
(added)
+++
webservices/axiom/trunk/implementations/axiom-impl/src/site/markdown/index.md.vm
Sat Sep 5 11:34:39 2015
@@ -0,0 +1,25 @@
+##
+## 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.
+##
+
+About
+-----
+
+LLOM (Linked List Object Model) is the default implementation of the Axiom API.
+`OMAbstractFactory` and `OMXMLBuilderFactory` will use this implementation
unless
+a different `OMMetaFactory` is selected explicitly.
\ No newline at end of file
Added: webservices/axiom/trunk/implementations/axiom-impl/src/site/site.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-impl/src/site/site.xml?rev=1701373&view=auto
==============================================================================
--- webservices/axiom/trunk/implementations/axiom-impl/src/site/site.xml (added)
+++ webservices/axiom/trunk/implementations/axiom-impl/src/site/site.xml Sat
Sep 5 11:34:39 2015
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!--
+ ~ 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>
+ <body>
+ <menu ref="reports"/>
+ </body>
+</project>
Propchange: webservices/axiom/trunk/implementations/axiom-impl/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified: webservices/axiom/trunk/implementations/fom-impl/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/fom-impl/pom.xml?rev=1701373&r1=1701372&r2=1701373&view=diff
==============================================================================
--- webservices/axiom/trunk/implementations/fom-impl/pom.xml (original)
+++ webservices/axiom/trunk/implementations/fom-impl/pom.xml Sat Sep 5
11:34:39 2015
@@ -31,7 +31,6 @@
<name>Abdera Model (FOM) Implementation</name>
<description>Implementation of Abdera's Feed Object Model. Can be used as
a drop in replacement for the abdera-parser artifact.</description>
- <url>http://ws.apache.org/axiom/</url>
<dependencies>
<dependency>
@@ -116,4 +115,20 @@
</plugin>
</plugins>
</build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <inherited>false</inherited>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>index</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
Added:
webservices/axiom/trunk/implementations/fom-impl/src/site/markdown/index.md.vm
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/fom-impl/src/site/markdown/index.md.vm?rev=1701373&view=auto
==============================================================================
---
webservices/axiom/trunk/implementations/fom-impl/src/site/markdown/index.md.vm
(added)
+++
webservices/axiom/trunk/implementations/fom-impl/src/site/markdown/index.md.vm
Sat Sep 5 11:34:39 2015
@@ -0,0 +1,37 @@
+##
+## 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.
+##
+
+About
+-----
+
+The FOM (Feed Object Model) implementation is designed as a replacement for
+Apache Abdera's `abdera-parser` component and allows you to use Abdera 1.1.3
+(released in 2012) with the latest Axiom release. To use it, remove
`abdera-parser`
+from your project, and add `fom-impl`, together with its dependencies. E.g. if
you
+use Maven:
+
+ <dependency>
+ <groupId>org.apache.ws.commons.axiom</groupId>
+ <artifactId>fom-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+
+Note: currently the FOM implementation also implements the Axiom API; this may
+change in the future.
Added: webservices/axiom/trunk/implementations/fom-impl/src/site/site.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/fom-impl/src/site/site.xml?rev=1701373&view=auto
==============================================================================
--- webservices/axiom/trunk/implementations/fom-impl/src/site/site.xml (added)
+++ webservices/axiom/trunk/implementations/fom-impl/src/site/site.xml Sat Sep
5 11:34:39 2015
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!--
+ ~ 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>
+ <body>
+ <menu ref="reports"/>
+ </body>
+</project>
Propchange: webservices/axiom/trunk/implementations/fom-impl/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified: webservices/axiom/trunk/implementations/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/pom.xml?rev=1701373&r1=1701372&r2=1701373&view=diff
==============================================================================
--- webservices/axiom/trunk/implementations/pom.xml (original)
+++ webservices/axiom/trunk/implementations/pom.xml Sat Sep 5 11:34:39 2015
@@ -30,7 +30,7 @@
<packaging>pom</packaging>
<name>Implementations</name>
- <url>http://ws.apache.org/axiom/</url>
+ <description>Object model implementations built using Axiom</description>
<modules>
<module>axiom-impl</module>
@@ -38,10 +38,6 @@
<module>fom-impl</module>
</modules>
- <properties>
- <skipSite>true</skipSite>
- </properties>
-
<build>
<plugins>
<plugin>
@@ -117,4 +113,20 @@
</plugin>
</plugins>
</build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <inherited>false</inherited>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>index</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
Added: webservices/axiom/trunk/implementations/src/site/site.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/src/site/site.xml?rev=1701373&view=auto
==============================================================================
--- webservices/axiom/trunk/implementations/src/site/site.xml (added)
+++ webservices/axiom/trunk/implementations/src/site/site.xml Sat Sep 5
11:34:39 2015
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<!--
+ ~ 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>
+ <body>
+ <menu ref="reports"/>
+ <menu ref="modules"/>
+ </body>
+</project>
Propchange: webservices/axiom/trunk/implementations/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified: webservices/axiom/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/src/site/site.xml?rev=1701373&r1=1701372&r2=1701373&view=diff
==============================================================================
--- webservices/axiom/trunk/src/site/site.xml (original)
+++ webservices/axiom/trunk/src/site/site.xml Sat Sep 5 11:34:39 2015
@@ -64,6 +64,7 @@
<item name="Privacy Policy" href="privacy-policy.html"/>
</menu>
<menu name="Modules">
+ <item name="Implementations" href="implementations/index.html"/>
<item name="Google Truth extension for XML"
href="testing/xml-truth/index.html"/>
</menu>
</body>