Commit 7527c2c5ea67ae0c24f176ccba68a8d97df6254d

Authored by David RENE
1 parent 9ca943bd

fix to be compliant with anubis 1.9.1.0

MF_1_1/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
MF_1_1/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
MF_1_1/web/CXM_making_a_web_site.anubis
@@ -2994,7 +2994,7 @@ public define String @@ -2994,7 +2994,7 @@ public define String
2994 if attributs is 2994 if attributs is
2995 { 2995 {
2996 [] then "", 2996 [] then "",
2997 - [h .t] then 2997 + [h . t] then
2998 with current = if h is 2998 with current = if h is
2999 { 2999 {
3000 id(id_name) then 3000 id(id_name) then
@@ -3038,7 +3038,7 @@ define String @@ -3038,7 +3038,7 @@ define String
3038 if attributs is 3038 if attributs is
3039 { 3039 {
3040 [] then "", 3040 [] then "",
3041 - [h .t] then 3041 + [h . t] then
3042 with current = if h is 3042 with current = if h is
3043 { 3043 {
3044 class(class_name) then 3044 class(class_name) then
@@ -3083,13 +3083,13 @@ define String @@ -3083,13 +3083,13 @@ define String
3083 if text_options is 3083 if text_options is
3084 { 3084 {
3085 [] then "", 3085 [] then "",
3086 - [_._] then " style=\"" + format(text_options) + "\" " 3086 + [_ . _] then " style=\"" + format(text_options) + "\" "
3087 } 3087 }
3088 + 3088 +
3089 if css_classes is 3089 if css_classes is
3090 { 3090 {
3091 [] then "", 3091 [] then "",
3092 - [_._] then format_attrs(css_classes) 3092 + [_ . _] then format_attrs(css_classes)
3093 }. 3093 }.
3094 3094
3095 //define String 3095 //define String
@@ -4222,7 +4222,7 @@ define Printable_tree @@ -4222,7 +4222,7 @@ define Printable_tree
4222 if css_styles is 4222 if css_styles is
4223 { 4223 {
4224 [] then [], 4224 [] then [],
4225 - [_._] then [ "<style type=\"text/css\"><!--\n", 4225 + [_ . _] then [ "<style type=\"text/css\"><!--\n",
4226 format_css_styles(css_styles), 4226 format_css_styles(css_styles),
4227 " --></style>\n" 4227 " --></style>\n"
4228 ] 4228 ]