Commit 3fd70e86892d9b114ba1bc2201a9c8b98320fcfe

Authored by David RENE
1 parent 3ee2b423

fix the path access to other files

web/CXM_common.anubis
... ... @@ -115,7 +115,7 @@ public type Redirection:
115 115 Now, you may also want to recover web argument values which have been encoded (by
116 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 121 public define Maybe($T)
... ...
web/CXM_generic_form.anubis
... ... @@ -16,7 +16,7 @@
16 16  
17 17  
18 18  
19   -read web/CXM_making_a_web_site.anubis
  19 +read CXM_making_a_web_site.anubis
20 20  
21 21  
22 22 public type Mandatory: // used to mark fields as mandatory.
... ...
web/CXM_generic_table.anubis
... ... @@ -17,8 +17,8 @@
17 17  
18 18  
19 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 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 1418 'web_arg_encode'. The name of the file into which the state is saved is the
1419 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 1423 The tool below constructs the function which is able to save a state on the server's
1424 1424 disk.
... ...
web/CXM_multihost_http_server.anubis
... ... @@ -160,9 +160,9 @@
160 160 type 'Web_arg' is defined in 'web/common.anubis'. It has two alternatives, one for
161 161 ordinary web arguments (pairs) and one for uploaded files.
162 162  
163   -read web/CXM_common.anubis
  163 +read CXM_common.anubis
164 164 read tools/basis.anubis
165   -read web/CXM_mime.anubis
  165 +read CXM_mime.anubis
166 166  
167 167  
168 168  
... ...