You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by st...@apache.org on 2016/02/03 00:46:45 UTC

incubator-taverna-language git commit: Avoid Java 7 references, updated Databundle link

Repository: incubator-taverna-language
Updated Branches:
  refs/heads/master cad1978b9 -> 290d82f8b


Avoid Java 7 references, updated Databundle link


Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/commit/290d82f8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/290d82f8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/290d82f8

Branch: refs/heads/master
Commit: 290d82f8ba8a6260770e94e5416ae5396e0bc101
Parents: cad1978
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Tue Feb 2 23:46:21 2016 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Tue Feb 2 23:46:21 2016 +0000

----------------------------------------------------------------------
 taverna-databundle/README.md | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/290d82f8/taverna-databundle/README.md
----------------------------------------------------------------------
diff --git a/taverna-databundle/README.md b/taverna-databundle/README.md
index bc487dd..4de15a4 100644
--- a/taverna-databundle/README.md
+++ b/taverna-databundle/README.md
@@ -1,10 +1,9 @@
 Data bundles API
 ================
 
-API for Taverna Data Bundles
+API for Taverna Data Bundles.
 
-See [Data bundle requirements](http://dev.mygrid.org.uk/wiki/display/TAVOSGI/2013-02+Data+bundle+requirements)
-and [TestDataBundles.java](src/test/java/org/apache/taverna/databundle/TestDataBundles.java)
+See also the [structure of the data bundle](https://github.com/apache/incubator-taverna-engine/tree/master/taverna-prov#structure-of-exported-provenance).
 
 This API is built on the Java NIO Files and the [RO Bundle API](../taverna-robundle/), which
 uses the [Java ZIP file provider](http://docs.oracle.com/javase/8/docs/technotes/guides/io/fsp/zipfilesystemprovider.html) to generate the Data Bundle.
@@ -57,7 +56,7 @@ Alternatively, use the regular Files methods:
 ```
 
 
-Binaries and large files are done through the Files API
+Binaries and large files are done through the Files API:
 ```java
         try (OutputStream out = Files.newOutputStream(portIn1,
                 StandardOpenOption.APPEND)) {
@@ -65,7 +64,7 @@ Binaries and large files are done through the Files API
         }
 ```
 
-Or Java 7 style:
+Or using NIO:
 ```java
         Path localFile = Files.createTempFile("", ".txt");
         Files.copy(portIn1, localFile, StandardCopyOption.REPLACE_EXISTING);