diff options
Diffstat (limited to 'commands')
-rw-r--r-- | commands/addaccess.mdwn | 9 | ||||
-rw-r--r-- | commands/lsaccess.mdwn | 11 | ||||
-rw-r--r-- | commands/lsrepo.mdwn | 5 | ||||
-rw-r--r-- | commands/newrepo.mdwn | 30 | ||||
-rw-r--r-- | commands/newuser.mdwn | 12 | ||||
-rw-r--r-- | commands/pinyconfig.mdwn | 33 | ||||
-rw-r--r-- | commands/rebuildrepo.mdwn | 5 | ||||
-rw-r--r-- | commands/rmaccess.mdwn | 9 | ||||
-rw-r--r-- | commands/rmrepo.mdwn | 5 |
9 files changed, 119 insertions, 0 deletions
diff --git a/commands/addaccess.mdwn b/commands/addaccess.mdwn new file mode 100644 index 0000000..47f38d8 --- /dev/null +++ b/commands/addaccess.mdwn @@ -0,0 +1,9 @@ +# Add User Access to a Repository + +<form action="https://secure.piny.be/auth/addaccess.cgi" method="post"> +[[!table format=dsv delimiter=# data=""" +Repository name: # <input type="text" name="r" /> +User name: # <input type="text" name="n" /> +<input type="submit" /> +"""]] +</form> diff --git a/commands/lsaccess.mdwn b/commands/lsaccess.mdwn new file mode 100644 index 0000000..f687e72 --- /dev/null +++ b/commands/lsaccess.mdwn @@ -0,0 +1,11 @@ +# List repositories you have access to + +<form action="https://secure.piny.be/auth/lsaccess.cgi" method="post"> +<input type="submit" /> +</form> + +# List users who have access to a repository + +<form action="https://secure.piny.be/auth/lsaccess.cgi" method="post"> +Repository name: <input type="text" name="r" /> <input type="submit" /> +</form> diff --git a/commands/lsrepo.mdwn b/commands/lsrepo.mdwn new file mode 100644 index 0000000..8a6ca00 --- /dev/null +++ b/commands/lsrepo.mdwn @@ -0,0 +1,5 @@ +# List repositories you have access to + +<form action="https://secure.piny.be/auth/lsrepo.cgi" method="post"> +<input type="submit" /> +</form> diff --git a/commands/newrepo.mdwn b/commands/newrepo.mdwn new file mode 100644 index 0000000..035f7b7 --- /dev/null +++ b/commands/newrepo.mdwn @@ -0,0 +1,30 @@ +# New Repository + +<form action="https://secure.piny.be/auth/newrepo.cgi" method="post"> +<p>New repository name: <input type="text" name="r" /></p> +<p>Ikiwiki: +<input type="radio" name="i" value="1" checked /> enable +<input type="radio" name="i" value="0"/> disable +<!-- <input type="radio" name="i" value=""/> inherit --> +</p> +<p>Provide a one-line description to be used in repo listings:</p> +<p><input type="text" name="d" size="80" maxlength="80" /></p> +<input type="submit" /> +</form> + +# Clone Repo + +<form action="https://secure.piny.be/auth/newrepo.cgi" method="post"> +<p>New repository name: <input type="text" name="r" /></p> +<p>Piny repo or git-fetchable remote to clone: <input type="text" name="s" /></p> +<p>Ikiwiki: +<input type="radio" name="i" value="1"/> enable +<input type="radio" name="i" value="0" checked /> disable +<!-- <input type="radio" name="i" value=""/> inherit --> +</p> +<p>Provide a one-line description to be used in repo listings:</p> +<p><input type="text" name="d" size="80" maxlength="80" /></p> +<input type="submit" /> +</form> + +Note: your email address will be published with your repository. diff --git a/commands/newuser.mdwn b/commands/newuser.mdwn new file mode 100644 index 0000000..3c5c756 --- /dev/null +++ b/commands/newuser.mdwn @@ -0,0 +1,12 @@ +# Make a New User + +A confirmation email will be sent to the provided email address. + +<form action="https://secure.piny.be/piny-newuser" method="post"> +[[!table format=dsv delimiter=# data=""" +New username: #<input type="text" name="n" /> +Password: #<input type="password" name="p" /> +Email address: #<input type="text" name="a" /> + #<input type="submit" /> +"""]] +</form> diff --git a/commands/pinyconfig.mdwn b/commands/pinyconfig.mdwn new file mode 100644 index 0000000..70f2df8 --- /dev/null +++ b/commands/pinyconfig.mdwn @@ -0,0 +1,33 @@ +# List configuration variables for a repository +<form action="https://secure.piny.be/auth/pinyconfig.cgi" method="post"> +Repository name: <input type="text" name="r" /> + <input type="submit" /> +</form> + +# Configure a repository + +<form action="https://secure.piny.be/auth/pinyconfig.cgi" method="post"> +[[!table format=dsv delimiter=# data=""" +Repository name: #<input type="text" name="r" /> +Variable name: #<input type="text" name="n" /> +Variable value: #<input type="text" name="v" /> + #<input type="submit" /> +"""]] +</form> + +# List your own configuration variables +<form action="https://secure.piny.be/auth/pinyconfig.cgi" method="post"> +<input type="hidden" name="r" value="--user" /> + <input type="submit" /> +</form> + +# Configure your own settings + +<form action="https://secure.piny.be/auth/pinyconfig.cgi" method="post"> +[[!table format=dsv delimiter=# data=""" +<input type="hidden" name="r" value="--user" /> +Variable name: #<input type="text" name="n" /> +Variable value: #<input type="text" name="v" /> + #<input type="submit" /> +"""]] +</form> diff --git a/commands/rebuildrepo.mdwn b/commands/rebuildrepo.mdwn new file mode 100644 index 0000000..66bfe19 --- /dev/null +++ b/commands/rebuildrepo.mdwn @@ -0,0 +1,5 @@ +# Rebuild a Repository + +<form action="https://secure.piny.be/auth/rebuildrepo.cgi" method="post"> +Repository name: <input type="text" name="r" /> <input type="submit" /> +</form> diff --git a/commands/rmaccess.mdwn b/commands/rmaccess.mdwn new file mode 100644 index 0000000..67733f2 --- /dev/null +++ b/commands/rmaccess.mdwn @@ -0,0 +1,9 @@ +# Remove User Access to a Repository + +<form action="https://secure.piny.be/auth/rmaccess.cgi" method="post"> +[[!table format=dsv delimiter=# data=""" +Repository name: # <input type="text" name="r" /> +User name: # <input type="text" name="n" /> +<input type="submit" /> +"""]] +</form> diff --git a/commands/rmrepo.mdwn b/commands/rmrepo.mdwn new file mode 100644 index 0000000..ebec365 --- /dev/null +++ b/commands/rmrepo.mdwn @@ -0,0 +1,5 @@ +# Remove a Repository + +<form action="https://secure.piny.be/auth/rmrepo.cgi" method="post"> +Repository name: <input type="text" name="r" /> <input type="submit" /> +</form> |