Return-Path: X-Original-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Delivered-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 81C7A1806B for ; Tue, 28 Apr 2015 09:05:58 +0000 (UTC) Received: (qmail 60677 invoked by uid 500); 28 Apr 2015 09:05:58 -0000 Delivered-To: apmail-commonsrdf-commits-archive@commonsrdf.apache.org Received: (qmail 60647 invoked by uid 500); 28 Apr 2015 09:05:58 -0000 Mailing-List: contact commits-help@commonsrdf.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commonsrdf.incubator.apache.org Delivered-To: mailing list commits@commonsrdf.incubator.apache.org Received: (qmail 60637 invoked by uid 99); 28 Apr 2015 09:05:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Apr 2015 09:05:58 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [54.191.145.13] (HELO mx1-us-west.apache.org) (54.191.145.13) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Apr 2015 09:05:53 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id AFB61283F1 for ; Tue, 28 Apr 2015 09:05:33 +0000 (UTC) Received: (qmail 60335 invoked by uid 99); 28 Apr 2015 09:05:33 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Apr 2015 09:05:33 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 86F03AC0623 for ; Tue, 28 Apr 2015 09:05:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r949456 - in /websites/production/commonsrdf/content: contributing.html download.html implementations.html index.html userguide.html Date: Tue, 28 Apr 2015 09:05:33 -0000 To: commits@commonsrdf.incubator.apache.org From: stain@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150428090533.86F03AC0623@hades.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stain Date: Tue Apr 28 09:05:33 2015 New Revision: 949456 Log: Site checkin for project Commons RDF Modified: websites/production/commonsrdf/content/contributing.html websites/production/commonsrdf/content/download.html websites/production/commonsrdf/content/implementations.html websites/production/commonsrdf/content/index.html websites/production/commonsrdf/content/userguide.html Modified: websites/production/commonsrdf/content/contributing.html ============================================================================== --- websites/production/commonsrdf/content/contributing.html (original) +++ websites/production/commonsrdf/content/contributing.html Tue Apr 28 09:05:33 2015 @@ -230,7 +230,21 @@ -

Contribute

+

Contribute

Contributions to this project will be gratefully received.

Feel free to subscribe to the dev@commonsrdf mailing list to follow the ongoing development of Commons RDF, ask questions about its usage, or help shape Commons RDF by contributing your ideas, code and use cases.

You can contribute to Apache Commons RDF in many ways:

Modified: websites/production/commonsrdf/content/download.html ============================================================================== --- websites/production/commonsrdf/content/download.html (original) +++ websites/production/commonsrdf/content/download.html Tue Apr 28 09:05:33 2015 @@ -230,7 +230,21 @@ -

Download Commons RDF

+

Download Commons RDF

Nothing to see here for now…

Modified: websites/production/commonsrdf/content/implementations.html ============================================================================== --- websites/production/commonsrdf/content/implementations.html (original) +++ websites/production/commonsrdf/content/implementations.html Tue Apr 28 09:05:33 2015 @@ -230,7 +230,21 @@ -

Implementations

+

Implementations

As a set of Java interfaces, Commons RDF must be used with one or more implementations.

Current implementations

Modified: websites/production/commonsrdf/content/index.html ============================================================================== --- websites/production/commonsrdf/content/index.html (original) +++ websites/production/commonsrdf/content/index.html Tue Apr 28 09:05:33 2015 @@ -230,7 +230,21 @@
-

Apache Commons RDF (incubating)

+

Apache Commons RDF (incubating)

-

User Guide

+

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 Commons RDF API.

+ +
  • Complete example
  • Introduction

    @@ -983,7 +999,9 @@ for (Triple t1: g1.getTriples(null, iri1

    Note: Special care might need to be taken for cross-interoperability of BlankNode instances. This is currently under discussion. See COMMONSRDF-15

    The .equals() methods of RDFTerm interfaces are explicitly defined, so their instances can be compared across implementations.

    Note: The Graph implementation is not required to keep the JVM object reference, e.g. after g2.add(subj1, pred, obj) it is not required to later return the same subj1 implementation in g2.getTriples(). Special care should be taken if returned values are needs to be casted to implementation specific types.

    -

    The .hashCode() is not currently explicitly defined, hence special care should be taken for cross-interoperability within hashing data structures like HashMap. See COMMONSRDF-14

    +

    The .hashCode() is not currently explicitly defined, hence special care should be taken for cross-interoperability within hashing data structures like HashMap. See COMMONSRDF-14

    +

    Complete example

    +

    The complete source code for the examples used in this user guide can be browsed in UserGuideTest.java within the examples folder of the Commons RDF source code repository.