diff --git a/web/CXM_making_a_web_site.anubis b/web/CXM_making_a_web_site.anubis index 37cc627..10574b3 100644 --- a/web/CXM_making_a_web_site.anubis +++ b/web/CXM_making_a_web_site.anubis @@ -63,6 +63,7 @@ read CXM_json.anubis transmit CXM_web_dump.anubis transmit CXM_web_arg_utils.anubis transmit CXM_web_session.anubis +transmit CXM_web_action.anubis //read CXM_html_tooltip.anubis @@ -298,19 +299,6 @@ public type HTTP_Answer:... conversation between the client and the web site, but also containing informations taken from the data bases. -public type WEB_Action_Name: - controller_action( - String controller, - String action_name - ), - action_name( - String action_name - ), - //url is raw action, hence we will onlu copy that url in final link - url( - String url_name - ) -. diff --git a/web/CXM_web_action.anubis b/web/CXM_web_action.anubis new file mode 100644 index 0000000..5e6e1dc --- /dev/null +++ b/web/CXM_web_action.anubis @@ -0,0 +1,22 @@ +/* + * Created by PyramIDE. + * User: フランスのトトロ aka (David RENÉ) + * Date: 14/03/2017 + * Time: 04:23 + * © Calexium + */ + + +public type WEB_Action_Name: + controller_action( + String controller, + String action_name + ), + action_name( + String action_name + ), + //url is raw action, hence we will only copy that url in final link + url( + String url_name + ) +. -- libgit2 0.21.4