diff options
Diffstat (limited to 'command')
-rw-r--r-- | command/lsaccess.mdwn | 11 | ||||
-rw-r--r-- | command/lsrepo.mdwn | 5 | ||||
-rw-r--r-- | command/pinyconfig.mdwn | 33 | ||||
-rw-r--r-- | command/rebuildrepo.mdwn | 5 |
4 files changed, 54 insertions, 0 deletions
diff --git a/command/lsaccess.mdwn b/command/lsaccess.mdwn new file mode 100644 index 0000000..f687e72 --- /dev/null +++ b/command/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/command/lsrepo.mdwn b/command/lsrepo.mdwn new file mode 100644 index 0000000..8a6ca00 --- /dev/null +++ b/command/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/command/pinyconfig.mdwn b/command/pinyconfig.mdwn new file mode 100644 index 0000000..70f2df8 --- /dev/null +++ b/command/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/command/rebuildrepo.mdwn b/command/rebuildrepo.mdwn new file mode 100644 index 0000000..66bfe19 --- /dev/null +++ b/command/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> |