diff options
author | Henrik Nord <[email protected]> | 2011-04-04 12:30:18 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-04-04 12:30:24 +0200 |
commit | 3fcefa8fd498a7bba83948dd83e39a1569df3a43 (patch) | |
tree | 540afcd02e8c5b4371fa85ed4c235202a01af167 /lib/inets/doc/src/httpd.xml | |
parent | 8773ee1b029e3443bba5bedd12ba93ba59a6ea78 (diff) | |
parent | 6597f81ec28909d1b3670e1c701f1175394c3fc2 (diff) | |
download | otp-3fcefa8fd498a7bba83948dd83e39a1569df3a43.tar.gz otp-3fcefa8fd498a7bba83948dd83e39a1569df3a43.tar.bz2 otp-3fcefa8fd498a7bba83948dd83e39a1569df3a43.zip |
Merge branch 'bd/doc_fixes2' into dev
* bd/doc_fixes2:
Fix mistake in blowfish_ebc_en/decrypt docs
Compile fixes for earlier documentation fixes
Various small documentation fixes
OTP-9172
Diffstat (limited to 'lib/inets/doc/src/httpd.xml')
-rw-r--r-- | lib/inets/doc/src/httpd.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/inets/doc/src/httpd.xml b/lib/inets/doc/src/httpd.xml index 62f4e18f82..6470b6fac7 100644 --- a/lib/inets/doc/src/httpd.xml +++ b/lib/inets/doc/src/httpd.xml @@ -525,12 +525,13 @@ bytes scheme scripts. A matching URL is mapped into a specific module and function. For example: - <code>{erl_script_alias, {"/cgi-bin/example" [httpd_example]} + <code>{erl_script_alias, {"/cgi-bin/example", [httpd_example]} </code> and a request to http://your.server.org/cgi-bin/example/httpd_example:yahoo - would refer to httpd_example:yahoo/2 and + would refer to httpd_example:yahoo/3 or, if that did not exist, + httpd_example:yahoo/2 and http://your.server.org/cgi-bin/example/other:yahoo would not be allowed to execute. </item> |