You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2011/08/18 11:54:36 UTC

svn commit: r1159123 - in /incubator/jena/Jena2/ARQ/trunk: src-dev/dev/ src-dev/riot/web/ src/org/openjena/riot/web/

Author: andy
Date: Thu Aug 18 09:54:36 2011
New Revision: 1159123

URL: http://svn.apache.org/viewvc?rev=1159123&view=rev
Log: (empty)

Added:
    incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunHTTP.java   (contents, props changed)
      - copied, changed from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/RunHTTP.java
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/ContentProducer.java   (contents, props changed)
      - copied, changed from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/ContentProducer.java
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpCaptureResponse.java   (contents, props changed)
      - copied, changed from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpCaptureResponse.java
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpNames.java   (contents, props changed)
      - copied, changed from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpNames.java
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpOp.java   (contents, props changed)
      - copied, changed from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpOp.java
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseHandler.java   (contents, props changed)
      - copied, changed from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseHandler.java
    incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseLib.java   (contents, props changed)
      - copied, changed from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseLib.java
Removed:
    incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/
Modified:
    incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunARQ.java

Modified: incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunARQ.java
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunARQ.java?rev=1159123&r1=1159122&r2=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunARQ.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunARQ.java Thu Aug 18 09:54:36 2011
@@ -42,11 +42,11 @@ import org.openjena.riot.pipeline.normal
 import org.openjena.riot.tokens.Token ;
 import org.openjena.riot.tokens.Tokenizer ;
 import org.openjena.riot.tokens.TokenizerFactory ;
-import riot.web.ContentProducer ;
-import riot.web.HttpCaptureResponse ;
-import riot.web.HttpOp ;
-import riot.web.HttpResponseHandler ;
-import riot.web.HttpResponseLib ;
+import org.openjena.riot.web.ContentProducer ;
+import org.openjena.riot.web.HttpCaptureResponse ;
+import org.openjena.riot.web.HttpOp ;
+import org.openjena.riot.web.HttpResponseHandler ;
+import org.openjena.riot.web.HttpResponseLib ;
 
 import com.hp.hpl.jena.datatypes.xsd.XSDDatatype ;
 import com.hp.hpl.jena.datatypes.xsd.XSDDuration ;

Copied: incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunHTTP.java (from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/RunHTTP.java)
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunHTTP.java?p2=incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunHTTP.java&p1=incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/RunHTTP.java&r1=1158840&r2=1159123&rev=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/RunHTTP.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunHTTP.java Thu Aug 18 09:54:36 2011
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package riot.web;
+package dev;
 
 import java.io.IOException ;
 import java.io.OutputStream ;
@@ -30,6 +30,10 @@ import org.openjena.atlas.iterator.Iter 
 import org.openjena.atlas.lib.StrUtils ;
 import org.openjena.atlas.logging.Log ;
 import org.openjena.riot.WebContent ;
+import org.openjena.riot.web.ContentProducer ;
+import org.openjena.riot.web.HttpOp ;
+import org.openjena.riot.web.HttpResponseHandler ;
+import org.openjena.riot.web.HttpResponseLib ;
 
 import com.hp.hpl.jena.query.ResultSetFormatter ;
 

Propchange: incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunHTTP.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/jena/Jena2/ARQ/trunk/src-dev/dev/RunHTTP.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Copied: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/ContentProducer.java (from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/ContentProducer.java)
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/ContentProducer.java?p2=incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/ContentProducer.java&p1=incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/ContentProducer.java&r1=1158840&r2=1159123&rev=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/ContentProducer.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/ContentProducer.java Thu Aug 18 09:54:36 2011
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package riot.web;
+package org.openjena.riot.web;
 
 /** Interface for sending content over HTTP POST.
  *  Simply avoid client code needing to always pull in org.apache.http. packages. */

Propchange: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/ContentProducer.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Copied: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpCaptureResponse.java (from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpCaptureResponse.java)
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpCaptureResponse.java?p2=incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpCaptureResponse.java&p1=incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpCaptureResponse.java&r1=1158840&r2=1159123&rev=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpCaptureResponse.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpCaptureResponse.java Thu Aug 18 09:54:36 2011
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package riot.web;
+package org.openjena.riot.web;
 
 /** Act-on-HTTP-response and produce some object */
 public interface HttpCaptureResponse<T> extends HttpResponseHandler

Propchange: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpCaptureResponse.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Copied: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpNames.java (from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpNames.java)
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpNames.java?p2=incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpNames.java&p1=incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpNames.java&r1=1158840&r2=1159123&rev=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpNames.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpNames.java Thu Aug 18 09:54:36 2011
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package riot.web;
+package org.openjena.riot.web;
 
 public class HttpNames
 {

Propchange: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpNames.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Copied: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpOp.java (from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpOp.java)
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpOp.java?p2=incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpOp.java&p1=incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpOp.java&r1=1158840&r2=1159123&rev=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpOp.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpOp.java Thu Aug 18 09:54:36 2011
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package riot.web;
+package org.openjena.riot.web;
 
 import static java.lang.String.format ;
 

Propchange: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpOp.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Copied: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseHandler.java (from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseHandler.java)
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseHandler.java?p2=incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseHandler.java&p1=incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseHandler.java&r1=1158840&r2=1159123&rev=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseHandler.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseHandler.java Thu Aug 18 09:54:36 2011
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package riot.web ;
+package org.openjena.riot.web ;
 
 import java.io.IOException ;
 

Propchange: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseHandler.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Copied: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseLib.java (from r1158840, incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseLib.java)
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseLib.java?p2=incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseLib.java&p1=incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseLib.java&r1=1158840&r2=1159123&rev=1159123&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src-dev/riot/web/HttpResponseLib.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseLib.java Thu Aug 18 09:54:36 2011
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-package riot.web;
+package org.openjena.riot.web;
 
 import java.io.IOException ;
 import java.io.InputStream ;

Propchange: incubator/jena/Jena2/ARQ/trunk/src/org/openjena/riot/web/HttpResponseLib.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain