|
From: <tho...@us...> - 2014-07-13 12:25:35
|
Revision: 8541
http://sourceforge.net/p/bigdata/code/8541
Author: thompsonbry
Date: 2014-07-13 12:25:31 +0000 (Sun, 13 Jul 2014)
Log Message:
-----------
Javadoc for "REST API INSERT" does not handle .gz ticket.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/InsertServlet.java
Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/InsertServlet.java
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/InsertServlet.java 2014-07-13 12:23:29 UTC (rev 8540)
+++ branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/InsertServlet.java 2014-07-13 12:25:31 UTC (rev 8541)
@@ -270,8 +270,14 @@
conn = getUnisolatedConnection();
- /*
+ /**
* There is a request body, so let's try and parse it.
+ *
+ * FIXME This does not handle .gz or .zip files. We handle this
+ * in the
+ *
+ * @see <a href="http://trac.bigdata.com/ticket/991" >REST API:
+ * INSERT does not handle .gz</a>
*/
final RDFParser rdfParser = rdfParserFactory.getParser();
@@ -466,10 +472,16 @@
/**
* There is a request body, so let's try and parse it.
*
- * <a href=
- * "https://sourceforge.net/apps/trac/bigdata/ticket/620"
- * > UpdateServlet fails to parse MIMEType when doing
- * conneg. </a>
+ * @see <a href=
+ * "https://sourceforge.net/apps/trac/bigdata/ticket/620"
+ * > UpdateServlet fails to parse MIMEType when
+ * doing conneg. </a>
+ *
+ * FIXME This does not handle .gz or .zip files. We
+ * handle this in the
+ *
+ * @see <a href="http://trac.bigdata.com/ticket/991"
+ * >REST API: INSERT does not handle .gz</a>
*/
final String contentType = hconn.getContentType();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|