Commit bd7ac9eebdbd0f24568acfe5555868c133eddec2

Authored by Cédric RICARD
1 parent c0e3a410

Fix compile problems due to Anubis lexical change

calexium_lib/net_services/CXM_net_services.anubis
@@ -49,7 +49,7 @@ define Maybe(NetService) @@ -49,7 +49,7 @@ define Maybe(NetService)
49 if services_list is 49 if services_list is
50 { 50 {
51 [] then failure, 51 [] then failure,
52 - [h.t] then 52 + [h . t] then
53 if h.id = service_id & h.version >=+ service_version then 53 if h.id = service_id & h.version >=+ service_version then
54 success(h) 54 success(h)
55 else 55 else
calexium_lib/web/CXM_http_get_common.anubis
@@ -56,7 +56,7 @@ public define String @@ -56,7 +56,7 @@ public define String
56 if t is 56 if t is
57 { 57 {
58 [ ] then if h is http_argument(n,v) then n + "=" + v, 58 [ ] then if h is http_argument(n,v) then n + "=" + v,
59 - [_._] then if h is http_argument(n,v) then n + "=" + v + "&" + format_http_args(t) 59 + [_ . _] then if h is http_argument(n,v) then n + "=" + v + "&" + format_http_args(t)
60 } 60 }
61 }. 61 }.
62 62
calexium_lib/web/CXM_making_a_web_site.anubis
@@ -2999,7 +2999,7 @@ public define String @@ -2999,7 +2999,7 @@ public define String
2999 if attributs is 2999 if attributs is
3000 { 3000 {
3001 [] then "", 3001 [] then "",
3002 - [h .t] then 3002 + [h . t] then
3003 with current = if h is 3003 with current = if h is
3004 { 3004 {
3005 id(id_name) then 3005 id(id_name) then
@@ -3043,7 +3043,7 @@ define String @@ -3043,7 +3043,7 @@ define String
3043 if attributs is 3043 if attributs is
3044 { 3044 {
3045 [] then "", 3045 [] then "",
3046 - [h .t] then 3046 + [h . t] then
3047 with current = if h is 3047 with current = if h is
3048 { 3048 {
3049 class(class_name) then 3049 class(class_name) then
@@ -3088,13 +3088,13 @@ define String @@ -3088,13 +3088,13 @@ define String
3088 if text_options is 3088 if text_options is
3089 { 3089 {
3090 [] then "", 3090 [] then "",
3091 - [_._] then " style=\"" + format(text_options) + "\" " 3091 + [_ . _] then " style=\"" + format(text_options) + "\" "
3092 } 3092 }
3093 + 3093 +
3094 if css_classes is 3094 if css_classes is
3095 { 3095 {
3096 [] then "", 3096 [] then "",
3097 - [_._] then format_attrs(css_classes) 3097 + [_ . _] then format_attrs(css_classes)
3098 }. 3098 }.
3099 3099
3100 //define String 3100 //define String
@@ -4227,7 +4227,7 @@ define Printable_tree @@ -4227,7 +4227,7 @@ define Printable_tree
4227 if css_styles is 4227 if css_styles is
4228 { 4228 {
4229 [] then [], 4229 [] then [],
4230 - [_._] then [ "<style type=\"text/css\"><!--\n", 4230 + [_ . _] then [ "<style type=\"text/css\"><!--\n",
4231 format_css_styles(css_styles), 4231 format_css_styles(css_styles),
4232 " --></style>\n" 4232 " --></style>\n"
4233 ] 4233 ]