-
Notifications
You must be signed in to change notification settings - Fork 1
/
svn-mkdir-declaration.xpl
executable file
·32 lines (29 loc) · 1.15 KB
/
svn-mkdir-declaration.xpl
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
<?xml version="1.0"?>
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:svn="http://transpect.io/svn"
version="1.0"
type="svn:mkdir">
<p:output port="result" sequence="true">
<p:documentation>Create a directory in a SVN repository</p:documentation>
</p:output>
<p:option name="username">
<p:documentation>The username for authentification.</p:documentation>
</p:option>
<p:option name="password">
<p:documentation>The password for authentification.</p:documentation>
</p:option>
<p:option name="dir">
<p:documentation>Whitespace-separated list of
directory paths to be created.</p:documentation>
</p:option>
<p:option name="parents" select="'no'">
<p:documentation>Whether to create parent directories if necessary.
Applicable values are 'yes' or 'no' (default).</p:documentation>
</p:option>
<p:option name="message" select="'svn:mkdir create dir'">
<p:documentation>Provide a message for your commit. Please note that
commits are just caried out for remote repositories. This behaviour
corresponds to the default svn mkdir command.
</p:documentation>
</p:option>
</p:declare-step>