incubator-commonsrdf git commit: How to provide svn credentials

2015-08-10 Thread stain
Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master 9c441e2c2 - 58dc01ede


How to provide svn credentials


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/58dc01ed
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/58dc01ed
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/58dc01ed

Branch: refs/heads/master
Commit: 58dc01ede12d0c0b1237379ac56d0f09f8c5bb5a
Parents: 9c441e2
Author: Stian Soiland-Reyes st...@apache.org
Authored: Mon Aug 10 11:37:19 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Mon Aug 10 11:37:19 2015 +0100

--
 SITE.md | 20 
 1 file changed, 20 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/58dc01ed/SITE.md
--
diff --git a/SITE.md b/SITE.md
index 7bf2d51..05e37b2 100644
--- a/SITE.md
+++ b/SITE.md
@@ -26,4 +26,24 @@ Some common tasks:
 
 * Publish the site: `mvn clean site scm-publish:publish-scm`
 
+You will need to have `svn` installed.
+
 Further details at https://commons.apache.org/site-publish.html
+
+The first time you publish, you might need to tell `svn` your Apache password
+by doing the commit manually:
+
+```
+stain@biggie:~/src/incubator-commonsrdf$ cd target/site-content/
+stain@biggie:~/src/incubator-commonsrdf/target/site-content$ svn commit -m 
Updated website
+Authentication realm: https://svn.apache.org:443 ASF Committers
+Password for 'stain': ***
+
+Sendingapidocs/org/apache/commons/rdf/api/BlankNode.html
+Sendingapidocs/org/apache/commons/rdf/api/IRI.html
+Sendingindex.html
+Sendingmail-lists.html
+Sendingproject-info.html
+Transmitting file data ..
+Committed revision 961349.
+```



incubator-commonsrdf git commit: Showcase non-SNAPSHOT version

2015-08-10 Thread stain
Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master fa3d2fed8 - ae8a13a8c


Showcase non-SNAPSHOT version


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/ae8a13a8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/ae8a13a8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/ae8a13a8

Branch: refs/heads/master
Commit: ae8a13a8c72a481488589e8e0c373a1594c399c8
Parents: fa3d2fe
Author: Stian Soiland-Reyes st...@apache.org
Authored: Mon Aug 10 12:09:08 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Mon Aug 10 12:09:08 2015 +0100

--
 src/site/markdown/userguide.md.vm | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/ae8a13a8/src/site/markdown/userguide.md.vm
--
diff --git a/src/site/markdown/userguide.md.vm 
b/src/site/markdown/userguide.md.vm
index 3ecc2e6..2820441 100644
--- a/src/site/markdown/userguide.md.vm
+++ b/src/site/markdown/userguide.md.vm
@@ -21,7 +21,7 @@
 # User Guide
 
 This page shows some examples of a client using the Commons RDF API.
-It was last updated for version `0.1-incubating-SNAPSHOT` of the
+It was last updated for version `0.1.0-incubating` of the
 Commons RDF [API](apidocs/).
 
 * [Introduction](#Introduction)
@@ -84,14 +84,17 @@ add the following dependency to your `pom.xml`:
 dependency
 groupIdorg.apache.commons/groupId
 artifactIdcommons-rdf-api/artifactId
-version0.1-incubating-SNAPSHOT/version
+version0.1.0-incubating/version
 /dependency
 /dependencies
 ```
 
+The `version` above might not be up to date,
+see the [/download.html](download page) for the latest version.
+
 If you are testing a `SNAPSHOT` version, then you will have to either build
 Commons RDF from [source](https://github.com/apache/incubator-commonsrdf), or
-add the [snapshot 
repository](https://github.com/apache/incubator-commonsrdf#snapshot-repository):
+add this [snapshot 
repository](https://github.com/apache/incubator-commonsrdf#snapshot-repository):
 
 ```xml
 repositories
@@ -148,8 +151,8 @@ import org.apache.commons.rdf.simple.SimpleRDFTermFactory;
 RDFTermFactory factory = new SimpleRDFTermFactory();
 ```
 
-If you don't want to depend on instnatiating a concrete implementation,
-you can alternatively use the 
+If you don't want to depend on instantiating a concrete implementation,
+you can alternatively use the
 
[ServiceLoader](http://docs.oracle.com/javase/8/docs/api/java/util/ServiceLoader.html)
 to lookup any `RDFTermFactory` implementations found on the classpath:
 
@@ -184,7 +187,7 @@ Triple triple = factory.createTriple(aliceBlankNode, 
nameIri, aliceLiteral);
 
 The [RDFTermFactory](apidocs/org/apache/commons/rdf/api/RDFTermFactory.html) 
also
 contains more specific variants of some of the methods above, e.g. to create a
-typed literal.  
+typed literal.
 
 Note that for any given implementation, `RDFTerm` instances need not be created
 using a `RDFTermFactory`. More likely, implementation-specific methods might 
create these
@@ -899,7 +902,7 @@ IRI iri1 = 
fooFactory.createIRI(http://example.com/property1;);
 
 // Both Triple and RDFTerm instances can be used
 //
-for (Triple t1: g1.getTriples(null, iri1, null)) {  
+for (Triple t1: g1.getTriples(null, iri1, null)) {
 if (g2.contains(t1.getSubject(), null, t1.getObject())) {
   g2.remove(t1);
 }



[2/5] incubator-commonsrdf git commit: COMMONSRDF-14 Tests for hashCode requirements

2015-08-10 Thread stain
COMMONSRDF-14 Tests for hashCode requirements


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/26da4085
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/26da4085
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/26da4085

Branch: refs/heads/master
Commit: 26da40856a86f6fdb511fdc0290b11c24518b704
Parents: 1a1bc32
Author: Stian Soiland-Reyes st...@apache.org
Authored: Tue May 12 10:06:29 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Tue May 12 10:06:29 2015 +0100

--
 .../rdf/api/AbstractRDFTermFactoryTest.java | 67 
 1 file changed, 67 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/26da4085/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
--
diff --git 
a/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java 
b/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
index e4561c4..1c62161 100644
--- 
a/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
+++ 
b/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java
@@ -22,6 +22,8 @@ import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotEquals;
 import static org.junit.Assert.assertNotSame;
 
+import java.util.Objects;
+
 import org.junit.Assume;
 import org.junit.Before;
 import org.junit.Test;
@@ -406,4 +408,69 @@ public abstract class AbstractRDFTermFactoryTest {
 factory.createTriple(subject, (IRI) predicate, object);
 }
 
+@Test
+public void hashCodeBlankNode() throws Exception {
+BlankNode bnode1;
+try {
+bnode1 = factory.createBlankNode();
+} catch (UnsupportedOperationException ex) {
+Assume.assumeNoException(
+createBlankNode() not supported, ex);
+return;
+}
+assertEquals(bnode1.uniqueReference().hashCode(), bnode1.hashCode());
+}
+
+@Test
+public void hashCodeIRI() throws Exception {
+IRI iri;
+try {
+iri = factory.createIRI(http://example.com/;);
+} catch (UnsupportedOperationException ex) {
+Assume.assumeNoException(
+createIRI(String) not supported, ex);
+return;
+}
+assertEquals(iri.getIRIString().hashCode(), iri.hashCode());
+}
+
+@Test
+public void hashCodeLiteral() throws Exception {
+Literal literal;
+try {
+literal = factory.createLiteral(Hello);
+} catch (UnsupportedOperationException ex) {
+Assume.assumeNoException(
+createLiteral(String) not supported, ex);
+return;
+}
+assertEquals(Objects.hash(
+literal.getLexicalForm(),
+literal.getDatatype(),
+literal.getLanguageTag()
+),
+literal.hashCode());
+}
+
+@Test
+public void hashCodeTriple() throws Exception {
+IRI iri;
+try {
+iri = factory.createIRI(http://example.com/;);
+} catch (UnsupportedOperationException ex) {
+Assume.assumeNoException(
+createIRI() not supported, ex);
+return;
+}
+Triple triple;
+try {
+triple = factory.createTriple(iri, iri, iri);
+} catch (UnsupportedOperationException ex) {
+Assume.assumeNoException(
+createTriple() not supported, ex);
+return;
+}
+assertEquals(Objects.hash(iri, iri, iri),
+ triple.hashCode());
+}
 }



[5/5] incubator-commonsrdf git commit: Merge remote-tracking branch 'remotes/stain/COMMONSRDF-14-hashCode'

2015-08-10 Thread stain
Merge remote-tracking branch 'remotes/stain/COMMONSRDF-14-hashCode'

Define explicit hashCode()

This fixes COMMONSRDF-14

This closes #13


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/9c441e2c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/9c441e2c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/9c441e2c

Branch: refs/heads/master
Commit: 9c441e2c2f06bb8744f05a0ccc305f384f187128
Parents: 3b00286 e0d8b5c
Author: Stian Soiland-Reyes st...@apache.org
Authored: Mon Aug 10 11:29:59 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Mon Aug 10 11:29:59 2015 +0100

--
 .../org/apache/commons/rdf/api/BlankNode.java   |  6 +-
 .../java/org/apache/commons/rdf/api/IRI.java|  9 ++-
 .../org/apache/commons/rdf/api/Literal.java | 11 +++-
 .../java/org/apache/commons/rdf/api/Triple.java | 13 +++-
 .../rdf/api/AbstractRDFTermFactoryTest.java | 67 
 .../apache/commons/rdf/simple/LiteralImpl.java  |  8 +--
 6 files changed, 102 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/9c441e2c/api/src/main/java/org/apache/commons/rdf/api/BlankNode.java
--

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/9c441e2c/api/src/main/java/org/apache/commons/rdf/api/IRI.java
--

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/9c441e2c/api/src/main/java/org/apache/commons/rdf/api/Literal.java
--

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/9c441e2c/api/src/main/java/org/apache/commons/rdf/api/Triple.java
--



[1/5] incubator-commonsrdf git commit: COMMONSRDF-14 specify hashCode

2015-08-10 Thread stain
Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master 3b0028621 - 9c441e2c2


COMMONSRDF-14 specify hashCode


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/1a1bc326
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/1a1bc326
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/1a1bc326

Branch: refs/heads/master
Commit: 1a1bc326c9232b6d560c14d43c5e05a1e1e640b9
Parents: d44aee6
Author: Stian Soiland-Reyes st...@apache.org
Authored: Wed May 6 22:49:29 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Tue May 12 10:05:09 2015 +0100

--
 .../java/org/apache/commons/rdf/api/BlankNode.java |  4 
 api/src/main/java/org/apache/commons/rdf/api/IRI.java  |  7 ++-
 .../main/java/org/apache/commons/rdf/api/Literal.java  | 11 +--
 .../main/java/org/apache/commons/rdf/api/Triple.java   | 13 ++---
 4 files changed, 29 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/1a1bc326/api/src/main/java/org/apache/commons/rdf/api/BlankNode.java
--
diff --git a/api/src/main/java/org/apache/commons/rdf/api/BlankNode.java 
b/api/src/main/java/org/apache/commons/rdf/api/BlankNode.java
index 52275ad..80ee79e 100644
--- a/api/src/main/java/org/apache/commons/rdf/api/BlankNode.java
+++ b/api/src/main/java/org/apache/commons/rdf/api/BlankNode.java
@@ -101,6 +101,10 @@ public interface BlankNode extends BlankNodeOrIRI {
 
 /**
  * Calculate a hash code for this BlankNode.
+ * p
+ * The returned hash code MUST be equal to the
+ * {@link String#hashCode()} of the
+ * {@link #uniqueReference()}.
  *
  * This method MUST be implemented in conjunction with
  * {@link #equals(Object)} so that two equal BlankNodes produce the same

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/1a1bc326/api/src/main/java/org/apache/commons/rdf/api/IRI.java
--
diff --git a/api/src/main/java/org/apache/commons/rdf/api/IRI.java 
b/api/src/main/java/org/apache/commons/rdf/api/IRI.java
index 20ed071..117598e 100644
--- a/api/src/main/java/org/apache/commons/rdf/api/IRI.java
+++ b/api/src/main/java/org/apache/commons/rdf/api/IRI.java
@@ -60,8 +60,13 @@ public interface IRI extends BlankNodeOrIRI {
 
 /**
  * Calculate a hash code for this IRI.
+ * p
+ * The returned hash code MUST be equal to the
+ * {@link String#hashCode()} of the
+ * {@link #getIRIString()}.
  *
- * This method MUST be implemented when implementing {@link 
#equals(Object)}
+ * This method MUST be implemented in conjunction with
+ * {@link #equals(Object)}
  * so that two equal IRIs produce the same hash code.
  *
  * @return a hash code value for this IRI.

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/1a1bc326/api/src/main/java/org/apache/commons/rdf/api/Literal.java
--
diff --git a/api/src/main/java/org/apache/commons/rdf/api/Literal.java 
b/api/src/main/java/org/apache/commons/rdf/api/Literal.java
index 8e22acb..970e9de 100644
--- a/api/src/main/java/org/apache/commons/rdf/api/Literal.java
+++ b/api/src/main/java/org/apache/commons/rdf/api/Literal.java
@@ -18,6 +18,7 @@
 package org.apache.commons.rdf.api;
 
 import java.io.Serializable;
+import java.util.Objects;
 import java.util.Optional;
 
 /**
@@ -106,12 +107,18 @@ public interface Literal extends RDFTerm {
 
 /**
  * Calculate a hash code for this Literal.
- *
- * This method MUST be implemented when implementing {@link 
#equals(Object)}
+ * p
+ * The returned hash code MUST be equal to the result
+ * of {@link Objects#hash(Object...)} with
+ * the arguments
+ * {@link #getLexicalForm()}, {@link #getDatatype()}, {@link 
#getLanguageTag()}.
+ * p
+ * This method MUST be implemented in conjunction with {@link 
#equals(Object)}
  * so that two equal Literals produce the same hash code.
  *
  * @return a hash code value for this Literal.
  * @see Object#hashCode()
+ * @see Objects#hash(Object...)
  */
 @Override
 public int hashCode();

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/1a1bc326/api/src/main/java/org/apache/commons/rdf/api/Triple.java
--
diff --git a/api/src/main/java/org/apache/commons/rdf/api/Triple.java 
b/api/src/main/java/org/apache/commons/rdf/api/Triple.java
index f7dcd39..34ea7a3 100644
--- a/api/src/main/java/org/apache/commons/rdf/api/Triple.java
+++ 

incubator-commonsrdf git commit: userguide markdown syntax

2015-08-10 Thread stain
Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master 9c315dafd - a54422f6f


userguide markdown syntax


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/a54422f6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/a54422f6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/a54422f6

Branch: refs/heads/master
Commit: a54422f6fd509e482afaa4fe10e5f61ca8261b58
Parents: 9c315da
Author: Stian Soiland-Reyes st...@apache.org
Authored: Mon Aug 10 12:21:07 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Mon Aug 10 12:21:07 2015 +0100

--
 src/site/markdown/userguide.md | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/a54422f6/src/site/markdown/userguide.md
--
diff --git a/src/site/markdown/userguide.md b/src/site/markdown/userguide.md
index 437f6b1..b8ed3dc 100644
--- a/src/site/markdown/userguide.md
+++ b/src/site/markdown/userguide.md
@@ -89,8 +89,8 @@ add the following dependency to your `pom.xml`:
 /dependencies
 ```
 
-The `version` above might not be up to date,
-see the [download page](download.html) for the latest version.
+_The `version` above might not be up to date,
+see the [download page](download.html) for the latest version._
 
 If you are testing a `SNAPSHOT` version, then you will have to either build
 Commons RDF from [source](https://github.com/apache/incubator-commonsrdf), or
@@ -132,8 +132,9 @@ _simple_ implementation, add to your `dependencies`:
 /dependency
 ```
 
-The `version` above might not be up to date,
-see the [/download.html](download page) for the latest version.
+_The `version` above might not be up to date,
+see the [download page](download.html) for the latest version._
+
 
 ## Creating Commons RDF instances
 



incubator-commonsrdf git commit: Updated version and license statement

2015-08-10 Thread stain
Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master ae8a13a8c - 896e3fb59


Updated version and license statement


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/896e3fb5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/896e3fb5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/896e3fb5

Branch: refs/heads/master
Commit: 896e3fb5914bfd8e0d13ae01eb08b223d5fe3aaa
Parents: ae8a13a
Author: Stian Soiland-Reyes st...@apache.org
Authored: Mon Aug 10 12:13:56 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Mon Aug 10 12:13:56 2015 +0100

--
 README.md | 36 +---
 1 file changed, 29 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/896e3fb5/README.md
--
diff --git a/README.md b/README.md
index d7844a3..e69d1c3 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,26 @@ welcomed to join the project and 
[contribute](http://commonsrdf.incubator.apache
 
 See the [Commons RDF homepage](http://commonsrdf.incubator.apache.org/) for 
more details.
 
+## License
+
+
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the [NOTICE](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.
+
+
 ## Contributing
 
 Feel free to subscribe to the 
@@ -87,19 +107,25 @@ Building has been tested with [Apache Maven 
3.2](http://maven.apache.org/downloa
 [INFO] 

 
 
-To then use from your project, add to Maven (update `version` to match the 
Maven output):
+To then use this build from your project, add to Maven (update `version` to 
match the Maven output):
 
 dependency
 groupIdorg.apache.commons/groupId
 artifactIdcommons-rdf-api/artifactId
-version0.0.3-SNAPSHOT/version
+version0.2.0-incubating-SNAPSHOT/version
 /dependency
+
+See the [downloads](http://commonsrdf.incubator.apache.org/download.html) to 
+use the latest stable release published in Maven Central.
 
 
 ## Snapshot repository
 
 The Apache Commons RDF project is aiming to regularly release early 
 previews releases (0.x.y versions) and publish these to Maven Central.
+See the [downloads](http://commonsrdf.incubator.apache.org/download.html) to 
+use the latest stable release.
+
 
 However, if you are following the ongoing
 development on 
[dev@commonsrdf](http://mail-archives.apache.org/mod_mbox/incubator-commonsrdf-dev/),
 
@@ -156,7 +182,7 @@ classifier for the commons-rdf-api module, for example (for 
Maven):
 dependency
 groupIdorg.apache.commons/groupId
 artifactIdcommons-rdf-api/artifactId
-version0.0.3-SNAPSHOT/version
+version0.2.0-incubating-SNAPSHOT/version
 classifiertests/classifier
 scopetest/scope
 /dependency
@@ -170,7 +196,3 @@ For an example, see
 
 
 
-## License
-
-[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)
-



svn commit: r961351 - in /websites/production/commonsrdf/content: download.html userguide.html

2015-08-10 Thread stain
Author: stain
Date: Mon Aug 10 11:15:10 2015
New Revision: 961351

Log:
Site checkin for project Commons RDF

Modified:
websites/production/commonsrdf/content/download.html
websites/production/commonsrdf/content/userguide.html

Modified: websites/production/commonsrdf/content/download.html
==
--- websites/production/commonsrdf/content/download.html (original)
+++ websites/production/commonsrdf/content/download.html Mon Aug 10 11:15:10 
2015
@@ -231,18 +231,44 @@
 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. --h1Download Commons RDF/h1
-pMaven artifact are available from a class=externalLink 
href=http://search.maven.org/;Maven Central/a. Here you can find all source 
releases published by the project:/p
 div class=section
-h2a name=a0.1.0-incubating/a0.1.0-incubating/h2
-pbApache Commons RDF 0.1.0-incubating/b has been published on May 15, 
2015, and is available for download in the a class=externalLink 
href=http://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/;ASF
 Distribution Directory/a:/p
+h2a name=Maven/aMaven/h2
+pApache Commons RDF (incuating) is available from a class=externalLink 
href=http://central.maven.org/maven2/org/apache/commons/commons-rdf-api/;Maven
 Central/a, mirrored from a class=externalLink 
href=https://repository.apache.org/content/repositories/releases/org/apache/commons/commons-rdf-api/;ASF#x2019;s
 Maven repository/a./p
+pTo use Commons RDF with a class=externalLink 
href=https://maven.apache.org/;Maven/a, add to your ttpom.xml/tt:/p
+
+div class=source
+div class=source
+prelt;dependenciesgt;
+  lt;dependencygt;
+  lt;groupIdgt;org.apache.commonslt;/groupIdgt;
+  lt;artifactIdgt;commons-rdf-apilt;/artifactIdgt;
+  lt;versiongt;0.1.0-incubatinglt;/versiongt;
+  lt;/dependencygt;
+  lt;!-- and optionally: --gt;
+  lt;dependencygt;
+  lt;groupIdgt;org.apache.commonslt;/groupIdgt;
+  lt;artifactIdgt;commons-rdf-simplelt;/artifactIdgt;
+  lt;versiongt;0.1.0-incubatinglt;/versiongt;
+  lt;optionalgt;truelt;/optionalgt;
+  lt;/dependencygt;
+lt;/dependenciesgt;
+/pre/div/div
+pFor convenience of IDE users, the Maven artifacts include 
tt-javadoc.jar/tt and tt-sources.jar/tt, however you might prefer the 
online a href=/apidocs/API javadoc/a and the [source code](#source code) 
release (see below)./p
+pSee the a href=/userguide.htmluser guide/a for more details. 
/p/div
+div class=section
+h2a name=Source_code/aSource code/h2
+pHere you can find all source releases published by Apache Commons RDF 
(incubating)./p
+div class=section
+h3a name=a0.1.0-incubating/a0.1.0-incubating/h3
+pbApache Commons RDF 0.1.0-incubating/b was published on 2015-05-15, and 
is available for download from official mirrors of the ASF Distribution 
Directory a class=externalLink 
href=https://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/;incubator/commonsrdf/a:/p
 
 ul
   
-lia class=externalLink 
href=http://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip;apache-commons-rdf-0.1.0-incubating-src.zip/a
  (a class=externalLink 
href=http://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip.asc;asc/a,
  a class=externalLink 
href=http://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip.md5;md5/a,
  a class=externalLink 
href=http://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip.sha1;sha1/a)/li
+lia class=externalLink 
href=https://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip;apache-commons-rdf-0.1.0-incubating-src.zip/a
  (a class=externalLink 
href=https://dist.apache.org/repos/dist/release/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip.asc;asc/a,
  a class=externalLink 
href=https://dist.apache.org/repos/dist/release/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip.md5;md5/a,
  a class=externalLink 
href=https://dist.apache.org/repos/dist/release/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.zip.sha1;sha1/a)/li
   
-lia class=externalLink 
href=http://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.tar.gz;apache-commons-rdf-0.1.0-incubating-src.tar.gz/a
  (a class=externalLink 
href=http://www.apache.org/dyn/closer.cgi/incubator/commonsrdf/0.1.0-incubating/apache-commons-rdf-0.1.0-incubating-src.tar.gz.asc;asc/a,
  a class=externalLink 

[2/2] incubator-commonsrdf git commit: Velocity template broke the headers..

2015-08-10 Thread stain
Velocity template broke the headers..

avoid ${project.version} (which would easily point to
-SNAPSHOT rather than stable release) and instead
point to download page for latest version.


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/e4522ae9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/e4522ae9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/e4522ae9

Branch: refs/heads/master
Commit: e4522ae91a8ac776261ee0f0159275f246a38e22
Parents: 50a6c5c
Author: Stian Soiland-Reyes st...@apache.org
Authored: Mon Aug 10 12:16:50 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Mon Aug 10 12:16:50 2015 +0100

--
 src/site/markdown/userguide.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/e4522ae9/src/site/markdown/userguide.md
--
diff --git a/src/site/markdown/userguide.md b/src/site/markdown/userguide.md
index 2820441..242a2d8 100644
--- a/src/site/markdown/userguide.md
+++ b/src/site/markdown/userguide.md
@@ -128,10 +128,12 @@ _simple_ implementation, add to your `dependencies`:
 dependency
 groupIdorg.apache.commons/groupId
 artifactIdcommons-rdf-simple/artifactId
-version${project.version}/version
+version0.1.0-incubating/version
 /dependency
 ```
 
+The `version` above might not be up to date,
+see the [/download.html](download page) for the latest version.
 
 ## Creating Commons RDF instances
 



svn commit: r961354 - /websites/production/commonsrdf/content/userguide.html

2015-08-10 Thread stain
Author: stain
Date: Mon Aug 10 11:20:16 2015
New Revision: 961354

Log:
Site checkin for project Commons RDF

Modified:
websites/production/commonsrdf/content/userguide.html

Modified: websites/production/commonsrdf/content/userguide.html
==
--- websites/production/commonsrdf/content/userguide.html (original)
+++ websites/production/commonsrdf/content/userguide.html Mon Aug 10 11:20:16 
2015
@@ -327,7 +327,7 @@
 lt;/dependencygt;
 lt;/dependenciesgt;
 /pre/div/div
-pThe ttlt;versiongt;/tt above might not be up to date, see the 
[/download.html](download page) for the latest version./p
+pThe ttlt;versiongt;/tt above might not be up to date, see the a 
href=download.htmldownload page/a for the latest version./p
 pIf you are testing a ttSNAPSHOT/tt version, then you will have to 
either build Commons RDF from a class=externalLink 
href=https://github.com/apache/incubator-commonsrdf;source/a, or add this 
a class=externalLink 
href=https://github.com/apache/incubator-commonsrdf#snapshot-repository;snapshot
 repository/a:/p
 
 div class=source




svn commit: r961359 - /websites/production/commonsrdf/content/download.html

2015-08-10 Thread stain
Author: stain
Date: Mon Aug 10 11:30:30 2015
New Revision: 961359

Log:
Site checkin for project Commons RDF

Modified:
websites/production/commonsrdf/content/download.html

Modified: websites/production/commonsrdf/content/download.html
==
--- websites/production/commonsrdf/content/download.html (original)
+++ websites/production/commonsrdf/content/download.html Mon Aug 10 11:30:30 
2015
@@ -233,7 +233,7 @@
 limitations under the License. --h1Download Commons RDF/h1
 div class=section
 h2a name=Maven/aMaven/h2
-pApache Commons RDF (incuating) is available from a class=externalLink 
href=http://central.maven.org/maven2/org/apache/commons/commons-rdf-api/;Maven
 Central/a, mirrored from a class=externalLink 
href=https://repository.apache.org/content/repositories/releases/org/apache/commons/commons-rdf-api/;ASF#x2019;s
 Maven repository/a./p
+pApache Commons RDF (incubating) is available from a class=externalLink 
href=http://central.maven.org/maven2/org/apache/commons/commons-rdf-api/;Maven
 Central/a, mirrored from a class=externalLink 
href=https://repository.apache.org/content/repositories/releases/org/apache/commons/commons-rdf-api/;ASF#x2019;s
 Maven repository/a. For convenience of IDE users, the Maven artifacts 
include tt-javadoc.jar/tt and tt-sources.jar/tt, however you might 
prefer the online a href=/apidocs/API javadoc/a and the a 
href=#Source_codesource code releases/a (see below)./p
 pTo use Commons RDF with a class=externalLink 
href=https://maven.apache.org/;Maven/a, add to your ttpom.xml/tt:/p
 
 div class=source
@@ -253,8 +253,8 @@
   lt;/dependencygt;
 lt;/dependenciesgt;
 /pre/div/div
-pFor convenience of IDE users, the Maven artifacts include 
tt-javadoc.jar/tt and tt-sources.jar/tt, however you might prefer the 
online a href=/apidocs/API javadoc/a and the [source code](#source code) 
release (see below)./p
-pSee the a href=/userguide.htmluser guide/a for more details. 
/p/div
+pThe ttlt;versiongt;/tt above might not be up to date, see the a 
href=#Source_codesource code releases/a below to find the latest 
version./p
+pSee the a href=/userguide.htmluser guide/a for documentation of the 
Apache Commons RDF API. /p/div
 div class=section
 h2a name=Source_code/aSource code/h2
 pHere you can find all source releases published by Apache Commons RDF 
(incubating)./p




[1/2] incubator-commonsrdf git commit: Download page: fix typos and moving things around

2015-08-10 Thread stain
Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master a54422f6f - 76a2ed1e1


Download page: fix typos and moving things around


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/e6f98ef9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/e6f98ef9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/e6f98ef9

Branch: refs/heads/master
Commit: e6f98ef98a1d60d6a507b1ac29c5ad1f314785d1
Parents: a54422f
Author: Stian Soiland-Reyes st...@apache.org
Authored: Mon Aug 10 12:29:50 2015 +0100
Committer: Stian Soiland-Reyes st...@apache.org
Committed: Mon Aug 10 12:29:50 2015 +0100

--
 src/site/markdown/download.md | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/e6f98ef9/src/site/markdown/download.md
--
diff --git a/src/site/markdown/download.md b/src/site/markdown/download.md
index 088b819..a2b2e3a 100644
--- a/src/site/markdown/download.md
+++ b/src/site/markdown/download.md
@@ -23,10 +23,14 @@
 
 ## Maven
 
-Apache Commons RDF (incuating) is available from
+Apache Commons RDF (incubating) is available from
 [Maven 
Central](http://central.maven.org/maven2/org/apache/commons/commons-rdf-api/),
 mirrored from
 [ASF's Maven 
repository](https://repository.apache.org/content/repositories/releases/org/apache/commons/commons-rdf-api/).
+For convenience of IDE users, the Maven artifacts include `-javadoc.jar` and
+`-sources.jar`, however you might prefer the
+online [API javadoc](/apidocs/)
+and the [source code releases](#Source_code) (see below).
 
 To use Commons RDF with [Maven](https://maven.apache.org/), add to your 
`pom.xml`:
 
@@ -47,13 +51,11 @@ To use Commons RDF with [Maven](https://maven.apache.org/), 
add to your `pom.xml
 /dependencies
 ```
 
-For convenience of IDE users, the Maven artifacts include `-javadoc.jar` and
-`-sources.jar`, however you might prefer the
-online [API javadoc](/apidocs/)
-and the [source code](#source code) release (see below).
-
-See the [user guide](/userguide.html) for more details.  
+The `version` above might not be up to date,
+see the [source code releases](#Source_code) below to find the latest version.
 
+See the [user guide](/userguide.html) for documentation of the
+Apache Commons RDF API.  
 
 ## Source code