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 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
... ...
calexium_lib/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  
... ...
calexium_lib/web/CXM_making_a_web_site.anubis
... ... @@ -2999,7 +2999,7 @@ public define String
2999 2999 if attributs is
3000 3000 {
3001 3001 [] then "",
3002   - [h .t] then
  3002 + [h . t] then
3003 3003 with current = if h is
3004 3004 {
3005 3005 id(id_name) then
... ... @@ -3043,7 +3043,7 @@ define String
3043 3043 if attributs is
3044 3044 {
3045 3045 [] then "",
3046   - [h .t] then
  3046 + [h . t] then
3047 3047 with current = if h is
3048 3048 {
3049 3049 class(class_name) then
... ... @@ -3088,13 +3088,13 @@ define String
3088 3088 if text_options is
3089 3089 {
3090 3090 [] then "",
3091   - [_._] then " style=\"" + format(text_options) + "\" "
  3091 + [_ . _] then " style=\"" + format(text_options) + "\" "
3092 3092 }
3093 3093 +
3094 3094 if css_classes is
3095 3095 {
3096 3096 [] then "",
3097   - [_._] then format_attrs(css_classes)
  3097 + [_ . _] then format_attrs(css_classes)
3098 3098 }.
3099 3099  
3100 3100 //define String
... ... @@ -4227,7 +4227,7 @@ define Printable_tree
4227 4227 if css_styles is
4228 4228 {
4229 4229 [] then [],
4230   - [_._] then [ "<style type=\"text/css\"><!--\n",
  4230 + [_ . _] then [ "<style type=\"text/css\"><!--\n",
4231 4231 format_css_styles(css_styles),
4232 4232 " --></style>\n"
4233 4233 ]
... ...