diff --git a/calexium_lib/web/CXM_making_a_web_site.anubis b/calexium_lib/web/CXM_making_a_web_site.anubis
index 4b4ff12..9003367 100644
--- a/calexium_lib/web/CXM_making_a_web_site.anubis
+++ b/calexium_lib/web/CXM_making_a_web_site.anubis
@@ -880,6 +880,7 @@ public type HTML_In_Form:
private_download (String abs_path, String name, String extra_ext,
Maybe((String,List((String,String)))) action),
text_input (String label_text, String label, String name, String init, Int32 width),
+ text_input_ro (String label_text, String label, String name, String init, Int32 width),
password_input (String label_text, String label, String name, Int32 width),
text_area (List(TextAreaOption), String name, String init, Int32 width, Int32 height),
file_upload (String name, Int32 width),
@@ -3082,7 +3083,8 @@ define List(Cell_Option)
if member(l,left) then l else
if member(l,h_center) then l else
if member(l,right) then l else
- [left . l].
+ //[left . l]. CR: why ? there is no default because we can use CSS
+ l.
Formating cells in a row.
@@ -3501,6 +3503,10 @@ define Printable_tree
[ "",
""],
//[" "],
+ text_input_ro(label_text, label, name,i,w) then
+ [ "",
+ ""],
+ //[" "],
password_input(label_text, label, name,w) then
[ "",
""],
@@ -3522,7 +3528,7 @@ define Printable_tree
[ "",
""],
check_box(label_text, label,n,c) then
- [ "",
+ [ if length(label_text) > 0 then "" else "",
""]
div(options, e) then
format(cinfo,sn,ic_v,any_div(options, e),format_element,is_https),
@@ -3582,6 +3588,7 @@ define Bool
foreign_link(o,u,n) then false,
private_download(p,n,e,a) then false,
text_input(lt,l,n,i,w) then false,
+ text_input_ro(lt,l,n,i,w) then false,
password_input(lt,l,n,w) then false,
text_area(o,n,i,w,h) then false,
file_upload(n,w) then true,
--
libgit2 0.21.4