-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.ttl
32 lines (28 loc) · 1.13 KB
/
manifest.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@base <https://barnard59.zazuko.com/operations/ftp/> .
@prefix code: <https://code.described.at/> .
@prefix p: <https://pipeline.described.at/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<list> a p:Operation, p:ReadableObjectMode;
rdfs:label "List files (FTP)";
rdfs:comment "Lists all files in the given FTP folder.";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-ftp/list.js#default>
].
<move> a p:Operation, p:Writable, p:Readable;
rdfs:label "Move file (FTP)";
rdfs:comment "Moves the given file at the end of the stream processing and forwards any incoming data.";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-ftp/move.js#default>
].
<read> a p:Operation, p:Readable;
rdfs:label "Read file (FTP)";
rdfs:comment "Reads the given file.";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-ftp/read.js#default>
].
<write> a p:Operation, p:Writable;
rdfs:label "Put file (FTP)";
rdfs:comment "Uploads the stream to FTP.";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-ftp/write.js#default>
].