blob: 5d22a50ac0b55676be4cd96843e10d51fe1eac73 (
plain)
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
33
|
# List configuration variables for a repository
<form action="https://secure.fairlystable.org/auth/pinyconfig.cgi" method="post">
Repository name: <input type="text" name="r" />
<input type="submit" />
</form>
# Configure a repository
<form action="https://secure.fairlystable.org/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.fairlystable.org/auth/pinyconfig.cgi" method="post">
<input type="hidden" name="r" value="--user" />
<input type="submit" />
</form>
# Configure your own settings
<form action="https://secure.fairlystable.org/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>
|