diff options
Diffstat (limited to 'command')
-rw-r--r-- | command/addaccess.mdwn | 9 | ||||
-rw-r--r-- | command/newrepo.mdwn | 10 | ||||
-rw-r--r-- | command/newuser.mdwn | 12 | ||||
-rw-r--r-- | command/rmaccess.mdwn | 9 | ||||
-rw-r--r-- | command/rmrepo.mdwn | 5 |
5 files changed, 45 insertions, 0 deletions
diff --git a/command/addaccess.mdwn b/command/addaccess.mdwn new file mode 100644 index 0000000..fe116f5 --- /dev/null +++ b/command/addaccess.mdwn @@ -0,0 +1,9 @@ +# Add User Access to a Repository + +<form action="https://secure.piny.be/auth/addaccess"> +[[!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/command/newrepo.mdwn b/command/newrepo.mdwn new file mode 100644 index 0000000..0ff426f --- /dev/null +++ b/command/newrepo.mdwn @@ -0,0 +1,10 @@ +# New Repository + +<form action="https://secure.piny.be/auth/newrepo"> +<p>New repository name: <input type="text" name="r" /></p> +<p>Provide a one-line description to be used in repo listings:s</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/command/newuser.mdwn b/command/newuser.mdwn new file mode 100644 index 0000000..9d4b9a9 --- /dev/null +++ b/command/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"> +[[!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/command/rmaccess.mdwn b/command/rmaccess.mdwn new file mode 100644 index 0000000..98903fa --- /dev/null +++ b/command/rmaccess.mdwn @@ -0,0 +1,9 @@ +# Remove User Access to a Repository + +<form action="https://secure.piny.be/auth/rmaccess"> +[[!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/command/rmrepo.mdwn b/command/rmrepo.mdwn new file mode 100644 index 0000000..3167269 --- /dev/null +++ b/command/rmrepo.mdwn @@ -0,0 +1,5 @@ +# Remove a Repository + +<form action="https://secure.piny.be/auth/rmrepo"> +Repository name: <input type="text" name="r" /> <input type="submit" /> +</form> |