Commit 3fd70e86892d9b114ba1bc2201a9c8b98320fcfe
1 parent
3ee2b423
fix the path access to other files
Showing
5 changed files
with
7 additions
and
7 deletions
Show diff stats
web/CXM_common.anubis
| @@ -115,7 +115,7 @@ public type Redirection: | @@ -115,7 +115,7 @@ public type Redirection: | ||
| 115 | Now, you may also want to recover web argument values which have been encoded (by | 115 | Now, you may also want to recover web argument values which have been encoded (by |
| 116 | 'web_arg_encode'). In this case, use the following: | 116 | 'web_arg_encode'). In this case, use the following: |
| 117 | 117 | ||
| 118 | -read web/CXM_web_arg_encode.anubis | 118 | +read CXM_web_arg_encode.anubis |
| 119 | 119 | ||
| 120 | 120 | ||
| 121 | public define Maybe($T) | 121 | public define Maybe($T) |
web/CXM_generic_form.anubis
web/CXM_generic_table.anubis
| @@ -17,8 +17,8 @@ | @@ -17,8 +17,8 @@ | ||
| 17 | 17 | ||
| 18 | 18 | ||
| 19 | read tools/basis.anubis | 19 | read tools/basis.anubis |
| 20 | -read web/CXM_common.anubis | ||
| 21 | -read web/CXM_making_a_web_site.anubis | 20 | +read CXM_common.anubis |
| 21 | +read CXM_making_a_web_site.anubis | ||
| 22 | 22 | ||
| 23 | 23 | ||
| 24 | The purpose is to print on a html browser a table from a List($Data) using the function | 24 | The purpose is to print on a html browser a table from a List($Data) using the function |
web/CXM_making_a_web_site.anubis
| @@ -1418,7 +1418,7 @@ public define String | @@ -1418,7 +1418,7 @@ public define String | ||
| 1418 | 'web_arg_encode'. The name of the file into which the state is saved is the | 1418 | 'web_arg_encode'. The name of the file into which the state is saved is the |
| 1419 | concatenation of "s" and the name of the state. | 1419 | concatenation of "s" and the name of the state. |
| 1420 | 1420 | ||
| 1421 | -read web/CXM_web_arg_encode.anubis | 1421 | +read CXM_web_arg_encode.anubis |
| 1422 | 1422 | ||
| 1423 | The tool below constructs the function which is able to save a state on the server's | 1423 | The tool below constructs the function which is able to save a state on the server's |
| 1424 | disk. | 1424 | disk. |
web/CXM_multihost_http_server.anubis
| @@ -160,9 +160,9 @@ | @@ -160,9 +160,9 @@ | ||
| 160 | type 'Web_arg' is defined in 'web/common.anubis'. It has two alternatives, one for | 160 | type 'Web_arg' is defined in 'web/common.anubis'. It has two alternatives, one for |
| 161 | ordinary web arguments (pairs) and one for uploaded files. | 161 | ordinary web arguments (pairs) and one for uploaded files. |
| 162 | 162 | ||
| 163 | -read web/CXM_common.anubis | 163 | +read CXM_common.anubis |
| 164 | read tools/basis.anubis | 164 | read tools/basis.anubis |
| 165 | -read web/CXM_mime.anubis | 165 | +read CXM_mime.anubis |
| 166 | 166 | ||
| 167 | 167 | ||
| 168 | 168 |