Commit af97febdb7f4b98d43ea24d97ddc75e711d44b13

Authored by David RENÉ
1 parent 9a272509

some adjustment made to be compatible with Anubis 1.19 and some forgotten change…

… when it become Xlib (some reference to CXM was still there)
net_services/get_file.anubis
... ... @@ -38,7 +38,7 @@ define Bool
38 38 {
39 39 failure then println("Can't find raw Data"); send_ACK_error(mQ, _CXM_FTP_DATA); false,
40 40 success(data) then
41   - if write(fd, data) is
  41 + if write(fd, data, 10) is
42 42 {
43 43 failure then println("Can't write into file"); send_ACK_error(mQ, _CXM_FTP_DATA);false,
44 44 success(len) then
... ...
net_services_protocols/ftp_client.anubis
... ... @@ -37,7 +37,7 @@ define Maybe(One)
37 37 {
38 38 failure then println("Can't find raw Data"); send_ACK_error(mQ, _CXM_FTP_DATA); failure,
39 39 success(data) then
40   - if write(fd, data) is
  40 + if write(fd, data, 10) is
41 41 {
42 42 failure then println("Can't write into file"); send_ACK_error(mQ, _CXM_FTP_DATA);failure,
43 43 success(len) then
... ...
string/crlf.anubis
... ... @@ -55,11 +55,10 @@ define ResultCopy
55 55 Int so_far
56 56 ) =
57 57  
58   - if read(source, 65536, 10) is
  58 + if read(source, 65536, 30) is
59 59 {
60   - error then copy_error,
61   - timeout then _copy_file_and_convert(source, target, converter, so_far),
62   - ok(buffer)then
  60 + failure then copy_error,
  61 + success(buffer)then
63 62 with converted = converter(buffer),
64 63 with len = length(converted),
65 64 if len = 0 then
... ...
web/jQuery/jq_checkbox.anubis
... ... @@ -6,10 +6,10 @@
6 6 * © Calexium
7 7 */
8 8  
9   -transmit xlib/web/CXM_making_a_web_site.anubis
10   -transmit xlib/web/CXM_jquery.anubis
11   -transmit xlib/web/jQuery/CXM_jquery_button.anubis
12   -transmit xlib/web/jQuery/CXM_jquery_icons.anubis
  9 +transmit xlib/web/making_a_web_site.anubis
  10 +transmit xlib/web/jquery.anubis
  11 +transmit xlib/web/jQuery/jq_button.anubis
  12 +transmit xlib/web/jQuery/jq_icons.anubis
13 13 transmit xlib/web/js_tools.anubis
14 14 transmit tools/basis.anubis
15 15 transmit system/string.anubis
... ...
web/jQuery/jq_datatable_server_side.anubis
... ... @@ -6,10 +6,10 @@
6 6 *
7 7 */
8 8  
9   -read xlib/web/jQuery/CXM_jquery_datatable_types.anubis
  9 +read xlib/web/jQuery/jq_datatable_types.anubis
10 10 read tools/basis.anubis
11   -read xlib/web/CXM_common.anubis
12   -read xlib/web/CXM_web_arg_utils.anubis
  11 +read xlib/web/common.anubis
  12 +read xlib/web/web_arg_utils.anubis
13 13  
14 14 public define Maybe(JQuery_datatable_server_side_type)
15 15 get_datatable_server_side_query
... ...
web/jQuery/jq_eudock.anubis
... ... @@ -7,9 +7,9 @@
7 7 *
8 8 */
9 9  
10   -read xlib/web/CXM_making_a_web_site.anubis
11   -read xlib/web/CXM_jquery.anubis
12   -read xlib/web/jQuery/CXM_jquery_eudock_types.anubis
  10 +read xlib/web/making_a_web_site.anubis
  11 +read xlib/web/jquery.anubis
  12 +read xlib/web/jQuery/jq_eudock_types.anubis
13 13 read tools/basis.anubis
14 14 read system/string.anubis
15 15 read system/convert.anubis
... ...
web/jQuery/jq_eudock_types.anubis
... ... @@ -7,8 +7,8 @@
7 7 *
8 8 */
9 9  
10   -read xlib/web/CXM_making_a_web_site.anubis
11   -read xlib/web/CXM_jquery.anubis
  10 +read xlib/web/making_a_web_site.anubis
  11 +read xlib/web/jquery.anubis
12 12 read tools/basis.anubis
13 13 read system/string.anubis
14 14 read system/convert.anubis
... ...
web/jQuery/jq_jqplot.anubis
... ... @@ -6,7 +6,7 @@
6 6 *
7 7 */
8 8  
9   -read xlib/web/CXM_making_a_web_site.anubis
  9 +read xlib/web/making_a_web_site.anubis
10 10 read tools/basis.anubis
11 11  
12 12 public define HTML_Partial_Content
... ...
web/jQuery/jq_tabs.anubis
... ... @@ -7,9 +7,9 @@
7 7 *
8 8 */
9 9  
10   -read xlib/web/CXM_making_a_web_site.anubis
11   -read xlib/web/CXM_jquery.anubis
12   -read xlib/web/CXM_common.anubis
  10 +read xlib/web/making_a_web_site.anubis
  11 +read xlib/web/jquery.anubis
  12 +read xlib/web/common.anubis
13 13 read tools/basis.anubis
14 14  
15 15 public type JQuery_tab:
... ...
web/jQuery/jq_tiptip.anubis
... ... @@ -7,8 +7,8 @@
7 7 *
8 8 */
9 9  
10   -read xlib/web/CXM_making_a_web_site.anubis
11   -read xlib/web/CXM_jquery.anubis
  10 +read xlib/web/making_a_web_site.anubis
  11 +read xlib/web/jquery.anubis
12 12 read tools/basis.anubis
13 13 read system/string.anubis
14 14 read system/convert.anubis
... ...
web/jQuery/jq_toolbar.anubis
... ... @@ -6,8 +6,8 @@
6 6 * © David RENÉ
7 7 */
8 8  
9   -read xlib/web/CXM_making_a_web_site.anubis
10   -read xlib/web/jQuery/CXM_jquery_button.anubis
  9 +read xlib/web/making_a_web_site.anubis
  10 +read xlib/web/jQuery/jq_button.anubis
11 11  
12 12 public define HTML_Partial_Content
13 13 _jquery_toolbar
... ...
web/widgets/fisheye_menu.anubis
... ... @@ -8,7 +8,7 @@
8 8  
9 9 transmit tools/basis.anubis
10 10 transmit xlib/web/making_a_web_site.anubis
11   -read xlib/web/jQuery/jquery_animate.anubis
  11 +read xlib/web/jQuery/jq_animate.anubis
12 12 read xlib/web/jquery.anubis
13 13  
14 14 public type FisheyeEntry:
... ...