Commit d3f902cc19ca37aaa158c0cbb72de47009b28474
1 parent
c06a3015
starting change filename from old cxm lib to xlib
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
xlib_examples/web/minimal_web_site_vc.anubis
| ... | ... | @@ -23,15 +23,15 @@ |
| 23 | 23 | read tools/basis.anubis // required for 'make_directory' and . |
| 24 | 24 | read system/convert.anubis |
| 25 | 25 | read system/logger.anubis |
| 26 | -read xlib/web/CXM_common.anubis // required for type 'Web_arg' | |
| 27 | -read xlib/web/CXM_multihost_http_server.anubis // required for type 'HTTP_Info' | |
| 26 | +read xlib/web/common.anubis // required for type 'Web_arg' | |
| 27 | +read xlib/web/multihost_http_server.anubis // required for type 'HTTP_Info' | |
| 28 | 28 | read xlib/web/controllers_web_site.anubis |
| 29 | -read xlib/web/CXM_making_a_web_site.anubis | |
| 29 | +read xlib/web/making_a_web_site.anubis | |
| 30 | 30 | read web/mime.anubis // required for list of known MIME types |
| 31 | -read xlib/web/CXM_web_arg_utils.anubis | |
| 32 | -read xlib/web/CXM_web_session.anubis | |
| 33 | -read xlib/web/CXM_form.anubis | |
| 34 | -read xlib/web/jQuery/CXM_jquery_button.anubis | |
| 31 | +read xlib/web/web_arg_utils.anubis | |
| 32 | +read xlib/web/web_session.anubis | |
| 33 | +read xlib/web/form.anubis | |
| 34 | +read xlib/web/jQuery/jq_button.anubis | |
| 35 | 35 | |
| 36 | 36 | *** Server directory. |
| 37 | 37 | |
| ... | ... | @@ -109,7 +109,7 @@ define WEB_Controller_Result |
| 109 | 109 | ], |
| 110 | 110 | |
| 111 | 111 | // content of the page |
| 112 | - div([center(text("This is the 'Example 1' web site.")), br, | |
| 112 | + div([text("This is the 'Example 1' web site."), br, | |
| 113 | 113 | text("Login from :")]) |
| 114 | 114 | ) |
| 115 | 115 | )) | ... | ... |