| Clarifying some CGI stuff. - geomyidae - A small C-based gopherd. | |
| git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfri… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| commit 6dd2752f4e89d9d8e5f5a9608b66a35b81dbc2b4 | |
| parent 7114924898ed83d3a4eb3f0a59f9047ed3877ba4 | |
| Author: Christoph Lohmann <[email protected]> | |
| Date: Wed, 16 Mar 2011 05:11:13 +0100 | |
| Clarifying some CGI stuff. | |
| Diffstat: | |
| M CGI | 30 +++++++++++++++++++++++------- | |
| 1 file changed, 23 insertions(+), 7 deletions(-) | |
| --- | |
| diff --git a/CGI b/CGI | |
| @@ -9,7 +9,7 @@ There are two modes: standard cgi and dynamic cgi. | |
| PERMISSIONS | |
| -The scripts are run using the permissions of geomyidae. It is adived to use | |
| +The scripts are run using the permissions of geomyidae. It is adivsed to use | |
| the -g and -u option of gemoyidae. | |
| @@ -21,38 +21,50 @@ sending. | |
| CALLING CONVENTION | |
| +Geomyidae will call the script like this: | |
| + | |
| % $gopherroot/test.cgi $search $arguments | |
| +When it is a plain request, the arguments will have these values: | |
| + | |
| C: /test.cgi | |
| -> $search = "" | |
| -> $arguments = server host | |
| +If the request is for a type 7 search element, then the entered string by | |
| +the user will be seen as following: | |
| + | |
| C: /test.cgi searchterm (There is a Tab inbetwee… | |
| -> $search = »searchterm« | |
| -> $arguments = server host | |
| - C: /test.cgi?hello=world | |
| +When you are trying to give your script some calling arguments, the syntax | |
| +is: | |
| + | |
| + C: /test.cgi?hello | |
| -> $search = "" | |
| - -> $arguments = »hello=world« | |
| + -> $arguments = »hello« | |
| + | |
| +If borth ways of input are combined, the variables are set as following: | |
| C: /test.cgi?hello=world searchterm (Beware! A Tab!) | |
| -> $search = »searchterm« | |
| -> $arguments = »hello=world« | |
| -The examples should be enough for understanding it. | |
| - | |
| STANDARD CGI | |
| The file extension »cgi« switches to this mode, where the output of the | |
| -script is not interpreted at all by the server and the client needs to send | |
| -raw Gopher menus/files. | |
| +script is not interpreted at all by the server and the script needs to send | |
| +raw content. | |
| % cat test.cgi | |
| #!/bin/sh | |
| echo "Hello my friend." | |
| % | |
| +The client will receive: | |
| + | |
| S: Hello my friend. | |
| @@ -67,7 +79,11 @@ mat is the same as in the *.gph files. | |
| echo "[1|Some link|/somewhere|server|port]" | |
| % | |
| +Here geomyidae will interpret the *.gph format and return the valid gopher | |
| +menu item. | |
| + | |
| S: 1Some link /somewhere gopher.r-36.net 70 | |
| + | |
| Have fun! | |