Commit fa49a949ebc4e02f289c7667db3d3aae2acaf8a2

Authored by totoro
1 parent e6da20c4

move the WEB_Action_Name type into separate file web/CXM_web_action.anubis

web/CXM_making_a_web_site.anubis
... ... @@ -63,6 +63,7 @@ read CXM_json.anubis
63 63 transmit CXM_web_dump.anubis
64 64 transmit CXM_web_arg_utils.anubis
65 65 transmit CXM_web_session.anubis
  66 +transmit CXM_web_action.anubis
66 67  
67 68 //read CXM_html_tooltip.anubis
68 69  
... ... @@ -298,19 +299,6 @@ public type HTTP_Answer:...
298 299 conversation between the client and the web site, but also containing informations
299 300 taken from the data bases.
300 301  
301   -public type WEB_Action_Name:
302   - controller_action(
303   - String controller,
304   - String action_name
305   - ),
306   - action_name(
307   - String action_name
308   - ),
309   - //url is raw action, hence we will onlu copy that url in final link
310   - url(
311   - String url_name
312   - )
313   -.
314 302  
315 303  
316 304  
... ...
web/CXM_web_action.anubis 0 → 100644
  1 +/*
  2 + * Created by PyramIDE.
  3 + * User: フランスのトトロ aka (David RENÉ)
  4 + * Date: 14/03/2017
  5 + * Time: 04:23
  6 + * © Calexium
  7 + */
  8 +
  9 +
  10 +public type WEB_Action_Name:
  11 + controller_action(
  12 + String controller,
  13 + String action_name
  14 + ),
  15 + action_name(
  16 + String action_name
  17 + ),
  18 + //url is raw action, hence we will only copy that url in final link
  19 + url(
  20 + String url_name
  21 + )
  22 +.
... ...