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