|
Revision 43, 263 bytes
(checked in by jm3, 2 years ago)
|
- set Id property on all text-based files
- correctly handling the "no keys found" case with link to GPG help page (just a stub at this point)
|
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
#!/bin/bash |
|---|
| 2 |
# $Id$ |
|---|
| 3 |
|
|---|
| 4 |
# If we form-post to to a bash CGI, do we HAVE do deal with url-encoded characters? |
|---|
| 5 |
# else we could be SCREWED on people's passphrases that contain non-trivial text... |
|---|
| 6 |
|
|---|
| 7 |
echo Content-type: text/html |
|---|
| 8 |
echo |
|---|
| 9 |
|
|---|
| 10 |
echo "<h1>sample bash CGI works</h1>" |
|---|