From 49711d0d74d5f3e8b7f09245f8cb0c2995830675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Viktor?= Date: Fri, 22 Mar 2013 12:48:11 +0100 Subject: [PATCH 01/22] travis: disabled e-mail notifications docs here: http://about.travis-ci.org/docs/user/notifications/ --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3656e67972..ae04086d43 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,3 +3,5 @@ compiler: gcc script: make before_install: - sudo apt-get install -qq libmagic-dev +notifications: + email: false From eeee015a4d726a04a8ac5ec10def9a1685eb80ad Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 22 Mar 2013 19:06:50 +0100 Subject: [PATCH 02/22] removed unnecessary win platform guard. (In Harbour dynlib calls work on every OS) --- ChangeLog.txt | 5 +++++ contrib/xhb/hbdll.ch | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 6348d7654c..7c0cd32c23 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,11 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-22 19:05 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/xhb/hbdll.ch + + removed unnecessary win platform guard. (In Harbour + dynlib calls work on every OS) + 2013-03-22 11:12 UTC+0100 Viktor Szakats (harbour syenar.net) * README.txt + added link to automated build service page diff --git a/contrib/xhb/hbdll.ch b/contrib/xhb/hbdll.ch index 22bde2dcab..2278337b37 100644 --- a/contrib/xhb/hbdll.ch +++ b/contrib/xhb/hbdll.ch @@ -57,9 +57,6 @@ #define DC_RETVAL_MATH4 0x0100 // Return value in ST #define DC_RETVAL_MATH8 0x0200 // Return value in ST -// Avoid xHarbour code when included by dllcall.c -#if defined( __PLATFORM__WINDOWS ) - #include "cstruct.ch" #include "wintypes.ch" @@ -140,4 +137,3 @@ RETURN DllExecuteCall( t_cTemplate [, ] [, ] ) #endif -#endif From 5703021253df6c33bd886c90b3f56b04c4233554 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Viktor?= Date: Sat, 23 Mar 2013 12:44:50 +0100 Subject: [PATCH 03/22] travis: enabled more optional components --- .travis.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ae04086d43..ac04352f1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,20 @@ language: c compiler: gcc script: make before_install: + - sudo apt-get install -qq libncurses-dev + - sudo apt-get install -qq libslang2-dev + - sudo apt-get install -qq libgpm-dev + - sudo apt-get install -qq liballegro4.2-dev + - sudo apt-get install -qq libcairo2-dev + - sudo apt-get install -qq libcups2-dev + - sudo apt-get install -qq libcurl4-openssl-dev + - sudo apt-get install -qq firebird2.1-dev + - sudo apt-get install -qq libfreeimage-dev + - sudo apt-get install -qq libgd2-xpm-dev + - sudo apt-get install -qq libgs-dev - sudo apt-get install -qq libmagic-dev + - sudo apt-get install -qq libmysqlclient15-dev + - sudo apt-get install -qq unixodbc-dev + - sudo apt-get install -qq libpq-dev notifications: - email: false + email: false From d700e48d5f0f52b2d3d8166e74e301f64f6e0f4a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 23 Mar 2013 12:54:23 +0100 Subject: [PATCH 04/22] corrections to prevs --- ChangeLog.txt | 5 +++++ README.txt | 1 + contrib/hbnetio/utils/hbnetio/hbnetio.hbp | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 7c0cd32c23..17cfd5263a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,11 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-23 12:53 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbnetio/utils/hbnetio/hbnetio.hbp + * README.txt + ! corrections to prevs + 2013-03-22 19:05 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/xhb/hbdll.ch + removed unnecessary win platform guard. (In Harbour diff --git a/README.txt b/README.txt index cdc6e37f49..0a28141940 100644 --- a/README.txt +++ b/README.txt @@ -487,6 +487,7 @@ TABLE OF CONTENT for zlib support: $ sudo apt-get install zlib1g-dev for pcre (regex) support: $ sudo apt-get install libpcre3-dev for contrib/hbsqlit3 lib: $ sudo apt-get install libsqlite3-dev + for contrib/hbexpat lib: $ sudo apt-get install libexpat1-dev Linux (.rpm based distros: openSUSE, Fedora, CentOS, Mandriva) -------------------------------------------------------------- diff --git a/contrib/hbnetio/utils/hbnetio/hbnetio.hbp b/contrib/hbnetio/utils/hbnetio/hbnetio.hbp index 12f7e867ee..60b2ee7f07 100644 --- a/contrib/hbnetio/utils/hbnetio/hbnetio.hbp +++ b/contrib/hbnetio/utils/hbnetio/hbnetio.hbp @@ -8,7 +8,7 @@ hbnetio.hbc hbnetio.prg -netiosvc.prg{win} +_winsvc.prg{win} -main=WinMain{win} hbwin.hbc{win} From afd7efb540642752fb11916545f81228dd3b5328 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 23 Mar 2013 13:20:28 +0100 Subject: [PATCH 05/22] partially reverted to pick sources from .hbp and only use SET PROCEDURE in script mode. Ugly, but SET PROCEDURE can only find sources in cwd. --- ChangeLog.txt | 13 +++++++++++++ contrib/hbnetio/utils/hbnetio/hbnetio.hbp | 2 ++ contrib/hbnetio/utils/hbnetio/hbnetio.prg | 2 ++ extras/guestbk/guestbk.hbp | 2 ++ extras/guestbk/guestbk.prg | 2 ++ extras/hbdoc/hbdoc.hbp | 5 +++++ extras/hbdoc/hbdoc.prg | 2 ++ extras/httpsrv/uhttpd.hbp | 3 +++ extras/httpsrv/uhttpd.prg | 2 ++ 9 files changed, 33 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index 17cfd5263a..a5f225f277 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,19 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-23 13:19 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbnetio/utils/hbnetio/hbnetio.hbp + * contrib/hbnetio/utils/hbnetio/hbnetio.prg + * extras/guestbk/guestbk.hbp + * extras/guestbk/guestbk.prg + * extras/hbdoc/hbdoc.hbp + * extras/hbdoc/hbdoc.prg + * extras/httpsrv/uhttpd.hbp + * extras/httpsrv/uhttpd.prg + ! partially reverted to pick sources from .hbp and + only use SET PROCEDURE in script mode. Ugly, but + SET PROCEDURE can only find sources in cwd. + 2013-03-23 12:53 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbnetio/utils/hbnetio/hbnetio.hbp * README.txt diff --git a/contrib/hbnetio/utils/hbnetio/hbnetio.hbp b/contrib/hbnetio/utils/hbnetio/hbnetio.hbp index 60b2ee7f07..0d6902665b 100644 --- a/contrib/hbnetio/utils/hbnetio/hbnetio.hbp +++ b/contrib/hbnetio/utils/hbnetio/hbnetio.hbp @@ -7,6 +7,8 @@ hbnetio.hbc -o${hb_name} hbnetio.prg +_console.prg +netiomgm.hb _winsvc.prg{win} -main=WinMain{win} diff --git a/contrib/hbnetio/utils/hbnetio/hbnetio.prg b/contrib/hbnetio/utils/hbnetio/hbnetio.prg index 188bcc314b..b2585a03af 100644 --- a/contrib/hbnetio/utils/hbnetio/hbnetio.prg +++ b/contrib/hbnetio/utils/hbnetio/hbnetio.prg @@ -887,5 +887,7 @@ STATIC PROCEDURE HB_Usage() RETURN +#if defined( __HBSCRIPT__HBSHELL ) SET PROCEDURE TO "_console.prg" SET PROCEDURE TO "netiomgm.hb" +#endif diff --git a/extras/guestbk/guestbk.hbp b/extras/guestbk/guestbk.hbp index 0699658c7a..3938ec72e9 100644 --- a/extras/guestbk/guestbk.hbp +++ b/extras/guestbk/guestbk.hbp @@ -6,3 +6,5 @@ -gtcgi guestbk.prg +_cgi.prg +_inifile.prg diff --git a/extras/guestbk/guestbk.prg b/extras/guestbk/guestbk.prg index 94d6656ced..41bc10e86e 100644 --- a/extras/guestbk/guestbk.prg +++ b/extras/guestbk/guestbk.prg @@ -155,5 +155,7 @@ PROCEDURE Main() RETURN +#if defined( __HBSCRIPT__HBSHELL ) SET PROCEDURE TO "_cgi.prg" SET PROCEDURE TO "_inifile.prg" +#endif diff --git a/extras/hbdoc/hbdoc.hbp b/extras/hbdoc/hbdoc.hbp index 9205e22447..6cc16ad0d9 100644 --- a/extras/hbdoc/hbdoc.hbp +++ b/extras/hbdoc/hbdoc.hbp @@ -9,6 +9,11 @@ -gtcgi hbdoc.prg +_genbase.prg +_genhtml.prg +_gentxt.prg +_genxml.prg +_tmplates.prg # NOTE: hbdoc doesn't work from other locations than # the current one, so we don't install it yet. diff --git a/extras/hbdoc/hbdoc.prg b/extras/hbdoc/hbdoc.prg index 9c8ef47e41..cab7081201 100644 --- a/extras/hbdoc/hbdoc.prg +++ b/extras/hbdoc/hbdoc.prg @@ -1150,8 +1150,10 @@ FUNCTION Filename( cFile, cFormat, nLength ) RETURN cResult +#if defined( __HBSCRIPT__HBSHELL ) SET PROCEDURE TO "_tmplates.prg" SET PROCEDURE TO "_genbase.prg" SET PROCEDURE TO "_gentxt.prg" SET PROCEDURE TO "_genhtml.prg" SET PROCEDURE TO "_genxml.prg" +#endif diff --git a/extras/httpsrv/uhttpd.hbp b/extras/httpsrv/uhttpd.hbp index eed368e1a3..258f7fec08 100644 --- a/extras/httpsrv/uhttpd.hbp +++ b/extras/httpsrv/uhttpd.hbp @@ -6,6 +6,9 @@ -gtwvt uhttpd.prg +_cgifunc.prg +_cookie.prg +_session.prg hbwin.hbc hbnf.hbc diff --git a/extras/httpsrv/uhttpd.prg b/extras/httpsrv/uhttpd.prg index 84f219d25d..f2dcd4b0d1 100644 --- a/extras/httpsrv/uhttpd.prg +++ b/extras/httpsrv/uhttpd.prg @@ -2871,6 +2871,8 @@ STATIC FUNCTION HB_HASHI() RETURN h +#if defined( __HBSCRIPT__HBSHELL ) SET PROCEDURE TO "_cgifunc.prg" SET PROCEDURE TO "_cookie.prg" SET PROCEDURE TO "_session.prg" +#endif From e7accaf72a619db3f7c2655c16a7eb15025a7434 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 23 Mar 2013 17:26:44 +0100 Subject: [PATCH 06/22] added new note about processing of target type options --- ChangeLog.txt | 4 ++++ utils/hbmk2/hbmk2.prg | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index a5f225f277..aee49b5c81 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-23 17:26 UTC+0100 Viktor Szakats (harbour syenar.net) + * utils/hbmk2/hbmk2.prg + + added new note about processing of target type options + 2013-03-23 13:19 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbnetio/utils/hbnetio/hbnetio.hbp * contrib/hbnetio/utils/hbnetio/hbnetio.prg diff --git a/utils/hbmk2/hbmk2.prg b/utils/hbmk2/hbmk2.prg index af938eaf94..9bdd794d83 100644 --- a/utils/hbmk2/hbmk2.prg +++ b/utils/hbmk2/hbmk2.prg @@ -16285,6 +16285,8 @@ STATIC PROCEDURE ShowHelp( hbmk, lMore, lLong ) e"enclose in double quotes. Standard output of the command will be used " + ; e"as the value. F.e. \"-cflag=`wx-config --cflags`\", or " + ; e"ldflags={unix&gcc}\"`wx-config --libs`\"." ), ; + I_( "When multiple target type selection options (-hblib, -hbdyn, etc.) are specified, " + ; + "the first one will be significant, the rest will be silently ignored." ), ; I_( "Libraries and object files built with/for CA-Cl*pper will not work with " + ; "any supported platform/compiler." ), ; I_( "Defaults and feature support may vary by platform/compiler." ), ; From 075c94b254d28fa790ce621fe35c9afd7850a1e7 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 23 Mar 2013 17:30:07 +0100 Subject: [PATCH 07/22] EOL fix --- ChangeLog.txt | 4 + extras/httpsrv/home/counter.html | 176 +++++++++++++++---------------- 2 files changed, 91 insertions(+), 89 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index aee49b5c81..ace872ba16 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-23 17:29 UTC+0100 Viktor Szakats (harbour syenar.net) + * extras/httpsrv/home/counter.html + ! EOL fix + 2013-03-23 17:26 UTC+0100 Viktor Szakats (harbour syenar.net) * utils/hbmk2/hbmk2.prg + added new note about processing of target type options diff --git a/extras/httpsrv/home/counter.html b/extras/httpsrv/home/counter.html index cd9bebc60f..36c2ee7104 100644 --- a/extras/httpsrv/home/counter.html +++ b/extras/httpsrv/home/counter.html @@ -1,89 +1,87 @@ - - - - - Show Graphic Counter - - - - - - - This is a simple ajax test. Please type a number (at least 4 digits). -
-

Number: -

-
-
- Return to Main Page - - - + + + + Show Graphic Counter + + + + + + + This is a simple ajax test. Please type a number (at least 4 digits). +
+

Number: +

+
+
+ Return to Main Page + + From ce6f600218edd682049dab604853757b9ae1a3e5 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 23 Mar 2013 17:33:58 +0100 Subject: [PATCH 08/22] comment, link with hbtest automatically --- ChangeLog.txt | 5 +++++ extras/template/tests/hbmk.hbm | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index ace872ba16..def8bc024a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,11 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-23 17:33 UTC+0100 Viktor Szakats (harbour syenar.net) + * extras/template/tests/hbmk.hbm + + comment + + link with hbtest automatically + 2013-03-23 17:29 UTC+0100 Viktor Szakats (harbour syenar.net) * extras/httpsrv/home/counter.html ! EOL fix diff --git a/extras/template/tests/hbmk.hbm b/extras/template/tests/hbmk.hbm index 6a05df4325..111a7b73c9 100644 --- a/extras/template/tests/hbmk.hbm +++ b/extras/template/tests/hbmk.hbm @@ -1,4 +1,6 @@ +# hbmk2 build option defaults for this directory hbtpl.hbc +hbtest.hbc -w3 -es2 From debbb0960b2dbab884b274bdaee274d350905b9a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 23 Mar 2013 17:54:29 +0100 Subject: [PATCH 09/22] EOL fixes to avoid Git warning --- ChangeLog.txt | 12 ++ contrib/hbhttpd/tests/files/main.css | 1 - extras/httpsrv/home/css/base.css | 128 +++++++++---------- extras/httpsrv/home/index.html | 88 ++++++------- extras/httpsrv/home/js/ajax.js | 1 - extras/httpsrv/home/postsample.html | 46 +++---- extras/httpsrv/home/testajax.html | 112 ++++++++--------- extras/httpsrv/home/testxmldb.html | 180 +++++++++++++-------------- extras/httpsrv/home/xsl/based.xsl | 146 +++++++++++----------- extras/httpsrv/home/xsl/basep.xsl | 48 +++---- 10 files changed, 386 insertions(+), 376 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index def8bc024a..b94f51d5a8 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,18 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-23 17:51 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbhttpd/tests/files/main.css + * extras/httpsrv/home/css/base.css + * extras/httpsrv/home/index.html + * extras/httpsrv/home/js/ajax.js + * extras/httpsrv/home/postsample.html + * extras/httpsrv/home/testajax.html + * extras/httpsrv/home/testxmldb.html + * extras/httpsrv/home/xsl/based.xsl + * extras/httpsrv/home/xsl/basep.xsl + ! EOL fixes to avoid Git warning + 2013-03-23 17:33 UTC+0100 Viktor Szakats (harbour syenar.net) * extras/template/tests/hbmk.hbm + comment diff --git a/contrib/hbhttpd/tests/files/main.css b/contrib/hbhttpd/tests/files/main.css index 1a889aeafd..84275e9772 100644 --- a/contrib/hbhttpd/tests/files/main.css +++ b/contrib/hbhttpd/tests/files/main.css @@ -33,4 +33,3 @@ ulnk { text-decoration:underline; text-color:blue; } - diff --git a/extras/httpsrv/home/css/base.css b/extras/httpsrv/home/css/base.css index 08413062c7..d80d65a609 100644 --- a/extras/httpsrv/home/css/base.css +++ b/extras/httpsrv/home/css/base.css @@ -1,64 +1,64 @@ - -body { color:black; font-size:10pt; font-family:Tahoma,Helvetica,Arial; } - -a.pageSection:link { color: #ff0000; } -a.pageSection:visited { color: #0000ff; } -a.pageSection:hover { background: #66ff66; } - -/* a:link { color: #ff0000; } */ -/* a:visited { color: #0000ff; } */ -/* a:hover { background: #66ff66; } */ - -A { - color: #0000FF; - text-decoration: none; -} - -A:hover { color: #6699cc; text-decoration: underline; } -A.urls { color: #0A68B6; text-decoration: none; } -A.urls:hover { color: #6699cc; text-decoration: underline; } -A.tags { color: #008080; text-decoration: none; } -A.tags:hover { color: #6699cc; text-decoration: underline; } - - - -table.pagetable td -{ - padding: 3px; -} - -table.datatable -{ - width: 100%; - font-size: 12px; - font-family: Verdana; -} - -table.datatable tr th -{ - padding: 2px; - border-bottom:1px solid black; - text-align: left; -} - -table.datatable tr td -{ - padding: 2px; - border-bottom: 1px solid white; - vertical-align: top; -} - -table.datatable tr.odd -{ - background-color: #7FFFD4; -} - -table.datatable tr.even -{ - background-color: #F0F0F0; -} - -table.datatable tr.blank -{ - background-color: #FFFFFF; -} + +body { color:black; font-size:10pt; font-family:Tahoma,Helvetica,Arial; } + +a.pageSection:link { color: #ff0000; } +a.pageSection:visited { color: #0000ff; } +a.pageSection:hover { background: #66ff66; } + +/* a:link { color: #ff0000; } */ +/* a:visited { color: #0000ff; } */ +/* a:hover { background: #66ff66; } */ + +A { + color: #0000FF; + text-decoration: none; +} + +A:hover { color: #6699cc; text-decoration: underline; } +A.urls { color: #0A68B6; text-decoration: none; } +A.urls:hover { color: #6699cc; text-decoration: underline; } +A.tags { color: #008080; text-decoration: none; } +A.tags:hover { color: #6699cc; text-decoration: underline; } + + + +table.pagetable td +{ + padding: 3px; +} + +table.datatable +{ + width: 100%; + font-size: 12px; + font-family: Verdana; +} + +table.datatable tr th +{ + padding: 2px; + border-bottom:1px solid black; + text-align: left; +} + +table.datatable tr td +{ + padding: 2px; + border-bottom: 1px solid white; + vertical-align: top; +} + +table.datatable tr.odd +{ + background-color: #7FFFD4; +} + +table.datatable tr.even +{ + background-color: #F0F0F0; +} + +table.datatable tr.blank +{ + background-color: #FFFFFF; +} diff --git a/extras/httpsrv/home/index.html b/extras/httpsrv/home/index.html index cdb01ba912..edad38465b 100644 --- a/extras/httpsrv/home/index.html +++ b/extras/httpsrv/home/index.html @@ -1,44 +1,44 @@ - - - - -Harbour uHTTPD Server example - - - -

Simple uHTTPD server demo

-
-Examples: -
- - -
-(*) Before run these examples, please build files in /uhttpd/modules folder using 'hbmk2 modules.hbp' -
-(**) This example requires libgd package - - - - + + + + +Harbour uHTTPD Server example + + + +

Simple uHTTPD server demo

+
+Examples: +
+ + +
+(*) Before run these examples, please build files in /uhttpd/modules folder using 'hbmk2 modules.hbp' +
+(**) This example requires libgd package + + + + diff --git a/extras/httpsrv/home/js/ajax.js b/extras/httpsrv/home/js/ajax.js index c405ca3714..345fce7f90 100644 --- a/extras/httpsrv/home/js/ajax.js +++ b/extras/httpsrv/home/js/ajax.js @@ -254,4 +254,3 @@ function ShowProgress() a.style.display="none"; } // if } // ShowProgress - diff --git a/extras/httpsrv/home/postsample.html b/extras/httpsrv/home/postsample.html index cadf212508..b697141127 100644 --- a/extras/httpsrv/home/postsample.html +++ b/extras/httpsrv/home/postsample.html @@ -1,23 +1,23 @@ - - - - -Harbour uHTTPD Server post example - - - -

Simple uHTTPD server method POST

-
-
- -
- Type something: - -
-Pressing button you will redirect to /info page. Look at POST and REQUEST values. -
You will see a "word" variable name. -
-
Return to Main Page - - - + + + + +Harbour uHTTPD Server post example + + + +

Simple uHTTPD server method POST

+
+
+ +
+ Type something: + +
+Pressing button you will redirect to /info page. Look at POST and REQUEST values. +
You will see a "word" variable name. +
+
Return to Main Page + + + diff --git a/extras/httpsrv/home/testajax.html b/extras/httpsrv/home/testajax.html index b0e1efee7b..0fd4222a87 100644 --- a/extras/httpsrv/home/testajax.html +++ b/extras/httpsrv/home/testajax.html @@ -1,56 +1,56 @@ - - -Simple Ajax Example - - - -This is a simple ajax test. Please type a string in input field and press GO button. -
-

word: -

-
-
-Return to Main Page - - + + +Simple Ajax Example + + + +This is a simple ajax test. Please type a string in input field and press GO button. +
+

word: +

+
+
+Return to Main Page + + diff --git a/extras/httpsrv/home/testxmldb.html b/extras/httpsrv/home/testxmldb.html index b3eb656913..04ee2e6bfe 100644 --- a/extras/httpsrv/home/testxmldb.html +++ b/extras/httpsrv/home/testxmldb.html @@ -1,90 +1,90 @@ - - - - Part 4 Example - - - - - - - Simple XML servlet -
-
Tested with IE6+, Firefox 2+ and Opera 9+. Not working with Google Chrome, Safari. -
Please note that tableservletdb.prg simulates a slow reply of 0.5 seconds. - If you want to check real speed please comment #define SIMULATE_SLOW_REPLY in source. -
Return to Main Page -
-
Select a Page  -
 
-
- -
 
- - + + + + Part 4 Example + + + + + + + Simple XML servlet +
+
Tested with IE6+, Firefox 2+ and Opera 9+. Not working with Google Chrome, Safari. +
Please note that tableservletdb.prg simulates a slow reply of 0.5 seconds. + If you want to check real speed please comment #define SIMULATE_SLOW_REPLY in source. +
Return to Main Page +
+
Select a Page  +
 
+
+ +
 
+ + diff --git a/extras/httpsrv/home/xsl/based.xsl b/extras/httpsrv/home/xsl/based.xsl index 9b5bbb3b83..7ef7f3e5e9 100644 --- a/extras/httpsrv/home/xsl/based.xsl +++ b/extras/httpsrv/home/xsl/based.xsl @@ -1,74 +1,74 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - even - odd - - - - - - - - - - - - - - -
No Records Found
- - -
- - - - - - -   - - - - - - - - - -   - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + even + odd + + + + + + + + + + + + + + +
No Records Found
+ + +
+ + + + + + +   + + + + + + + + + +   + + + + + + + +
\ No newline at end of file diff --git a/extras/httpsrv/home/xsl/basep.xsl b/extras/httpsrv/home/xsl/basep.xsl index 088b6d3380..567441cded 100644 --- a/extras/httpsrv/home/xsl/basep.xsl +++ b/extras/httpsrv/home/xsl/basep.xsl @@ -1,24 +1,24 @@ - - - - - - - - - - - - - - - - -
- - - -
- -
-
+ + + + + + + + + + + + + + + + +
+ + + +
+ +
+
From 951fa0bb0c069f9834b0c9a6b589f266f85a12a2 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 23 Mar 2013 18:01:45 +0100 Subject: [PATCH 10/22] missing EOL @ EOF --- ChangeLog.txt | 4 ++++ extras/httpsrv/home/xsl/based.xsl | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index b94f51d5a8..5a78c3502c 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-23 18:01 UTC+0100 Viktor Szakats (harbour syenar.net) + * extras/httpsrv/home/xsl/based.xsl + ! missing EOL @ EOF + 2013-03-23 17:51 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbhttpd/tests/files/main.css * extras/httpsrv/home/css/base.css diff --git a/extras/httpsrv/home/xsl/based.xsl b/extras/httpsrv/home/xsl/based.xsl index 7ef7f3e5e9..a9222dbb22 100644 --- a/extras/httpsrv/home/xsl/based.xsl +++ b/extras/httpsrv/home/xsl/based.xsl @@ -71,4 +71,4 @@ -
\ No newline at end of file + From ec87fbc449c54eb1e8695c41e5367c69b04db3e1 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 20:22:55 +0100 Subject: [PATCH 11/22] 2013-03-24 20:22 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbct/doc/en/*.txt * contrib/hbgt/doc/en/hbgt.txt * contrib/hbmisc/doc/en/*.txt * contrib/hbziparc/doc/en/hbziparc.txt * contrib/rddads/doc/en/adsfuncs.txt * doc/en/*.txt ! space after comma ! unicode fix ! minor corrections * extras/template/tests/hbmk.hbm * cleaned recently added comment --- ChangeLog.txt | 14 ++++++ contrib/hbct/doc/en/atadjust.txt | 2 +- contrib/hbct/doc/en/atnum.txt | 2 +- contrib/hbct/doc/en/charlihb.txt | 4 +- contrib/hbct/doc/en/charlist.txt | 4 +- contrib/hbct/doc/en/charswap.txt | 4 +- contrib/hbct/doc/en/color.txt | 6 +-- contrib/hbct/doc/en/ctc.txt | 4 +- contrib/hbct/doc/en/datetime.txt | 12 +++--- contrib/hbct/doc/en/dattime3.txt | 2 +- contrib/hbct/doc/en/finan.txt | 10 ++--- contrib/hbct/doc/en/numat.txt | 2 +- contrib/hbct/doc/en/numconv.txt | 6 +-- contrib/hbct/doc/en/pos1.txt | 8 ++-- contrib/hbct/doc/en/pos2.txt | 8 ++-- contrib/hbct/doc/en/relation.txt | 2 +- contrib/hbct/doc/en/remove.txt | 6 +-- contrib/hbct/doc/en/replace.txt | 6 +-- contrib/hbct/doc/en/screen1.txt | 2 +- contrib/hbct/doc/en/strdiff.txt | 4 +- contrib/hbct/doc/en/token1.txt | 12 +++--- contrib/hbct/doc/en/token2.txt | 18 ++++---- contrib/hbct/doc/en/trig.txt | 28 ++++++------ contrib/hbct/doc/en/wordrepl.txt | 2 +- contrib/hbct/doc/en/wordtoch.txt | 2 +- contrib/hbgt/doc/en/hbgt.txt | 44 +++++++++---------- contrib/hbmisc/doc/en/dates2.txt | 4 +- contrib/hbmisc/doc/en/ht_conv.txt | 22 +++++----- contrib/hbmisc/doc/en/ht_doc.txt | 12 +++--- contrib/hbmisc/doc/en/ht_file.txt | 6 +-- contrib/hbziparc/doc/en/hbziparc.txt | 4 +- contrib/rddads/doc/en/adsfuncs.txt | 54 +++++++++++------------ doc/en/array.txt | 30 ++++++------- doc/en/binnum.txt | 16 +++---- doc/en/browse.txt | 8 ++-- doc/en/command.txt | 22 +++++----- doc/en/datetime.txt | 34 +++++++-------- doc/en/dbstrux.txt | 18 ++++---- doc/en/dir.txt | 6 +-- doc/en/diskspac.txt | 4 +- doc/en/errsys.txt | 2 +- doc/en/eval.txt | 4 +- doc/en/file.txt | 58 ++++++++++++------------- doc/en/garbage.txt | 6 +-- doc/en/hbflock.txt | 4 +- doc/en/hvm.txt | 10 ++--- doc/en/idle.txt | 10 ++--- doc/en/input.txt | 14 +++--- doc/en/lang.txt | 14 +++--- doc/en/math.txt | 10 ++--- doc/en/memo.txt | 12 +++--- doc/en/memvar.txt | 14 +++--- doc/en/menu.txt | 8 ++-- doc/en/misc.txt | 2 +- doc/en/nation.txt | 6 +-- doc/en/objfunc.txt | 28 ++++++------ doc/en/rdddb.txt | 64 ++++++++++++++-------------- doc/en/rddmisc.txt | 24 +++++------ doc/en/rddord.txt | 20 ++++----- doc/en/sayget.txt | 18 ++++---- doc/en/set.txt | 56 ++++++++++++------------ doc/en/setmode.txt | 4 +- doc/en/string.txt | 54 +++++++++++------------ doc/en/tbrowse.txt | 8 ++-- doc/en/tclass.txt | 8 ++-- doc/en/terminal.txt | 48 ++++++++++----------- doc/en/tgetlist.txt | 2 +- doc/en/tlabel.txt | 4 +- doc/en/treport.txt | 2 +- doc/en/var.txt | 6 +-- extras/template/tests/hbmk.hbm | 2 +- 71 files changed, 495 insertions(+), 481 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 5a78c3502c..f6a01740cb 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,20 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-24 20:22 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbct/doc/en/*.txt + * contrib/hbgt/doc/en/hbgt.txt + * contrib/hbmisc/doc/en/*.txt + * contrib/hbziparc/doc/en/hbziparc.txt + * contrib/rddads/doc/en/adsfuncs.txt + * doc/en/*.txt + ! space after comma + ! unicode fix + ! minor corrections + + * extras/template/tests/hbmk.hbm + * cleaned recently added comment + 2013-03-23 18:01 UTC+0100 Viktor Szakats (harbour syenar.net) * extras/httpsrv/home/xsl/based.xsl ! missing EOL @ EOF diff --git a/contrib/hbct/doc/en/atadjust.txt b/contrib/hbct/doc/en/atadjust.txt index 33aa600cf5..9f7bb1130e 100644 --- a/contrib/hbct/doc/en/atadjust.txt +++ b/contrib/hbct/doc/en/atadjust.txt @@ -37,6 +37,6 @@ $FILES$ Library is hbct. $SEEALSO$ - SetAtLike(),CSetAtMupa() + SetAtLike(), CSetAtMupa() $END$ */ diff --git a/contrib/hbct/doc/en/atnum.txt b/contrib/hbct/doc/en/atnum.txt index 4f61bef860..b1e352baab 100644 --- a/contrib/hbct/doc/en/atnum.txt +++ b/contrib/hbct/doc/en/atnum.txt @@ -47,7 +47,7 @@ $FILES$ Library is hbct. $SEEALSO$ - AtNum(),BeforAtNum(),CSetAtMupa(),SetAtLike() + AtNum(), BeforAtNum(), CSetAtMupa(), SetAtLike() $END$ */ diff --git a/contrib/hbct/doc/en/charlihb.txt b/contrib/hbct/doc/en/charlihb.txt index b9702f0c85..3f227c9074 100644 --- a/contrib/hbct/doc/en/charlihb.txt +++ b/contrib/hbct/doc/en/charlihb.txt @@ -30,7 +30,7 @@ $FILES$ Library is hbct. $SEEALSO$ - CharNoList(),CharList(),CharHist() + CharNoList(), CharList(), CharHist() $END$ */ @@ -66,6 +66,6 @@ $FILES$ Library is hbct. $SEEALSO$ - CharList(),CharNoList(),CharSList() + CharList(), CharNoList(), CharSList() $END$ */ diff --git a/contrib/hbct/doc/en/charlist.txt b/contrib/hbct/doc/en/charlist.txt index 5b0c1a7860..fdd763b357 100644 --- a/contrib/hbct/doc/en/charlist.txt +++ b/contrib/hbct/doc/en/charlist.txt @@ -30,7 +30,7 @@ $FILES$ Library is hbct. $SEEALSO$ - CharNoList(),CharSList(),CharHist() + CharNoList(), CharSList(), CharHist() $END$ */ @@ -65,6 +65,6 @@ $FILES$ Library is hbct. $SEEALSO$ - CharList(),CharSList(),CharHist() + CharList(), CharSList(), CharHist() $END$ */ diff --git a/contrib/hbct/doc/en/charswap.txt b/contrib/hbct/doc/en/charswap.txt index 032e9da2f0..1b13cc5689 100644 --- a/contrib/hbct/doc/en/charswap.txt +++ b/contrib/hbct/doc/en/charswap.txt @@ -30,7 +30,7 @@ $FILES$ Library is hbct. $SEEALSO$ - WordSwap(),CSetRef() + WordSwap(), CSetRef() $END$ */ @@ -71,6 +71,6 @@ $FILES$ Library is hbct. $SEEALSO$ - CharSwap(),CSetRef() + CharSwap(), CSetRef() $END$ */ diff --git a/contrib/hbct/doc/en/color.txt b/contrib/hbct/doc/en/color.txt index 2816eb1a4d..9376db9e1c 100644 --- a/contrib/hbct/doc/en/color.txt +++ b/contrib/hbct/doc/en/color.txt @@ -139,7 +139,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Standard(),Unselected() + Standard(), Unselected() $END$ */ @@ -169,7 +169,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Enhanced(),Unselected() + Enhanced(), Unselected() $END$ */ @@ -199,6 +199,6 @@ $FILES$ Library is hbct. $SEEALSO$ - Enhanced(),Standard() + Enhanced(), Standard() $END$ */ diff --git a/contrib/hbct/doc/en/ctc.txt b/contrib/hbct/doc/en/ctc.txt index 6309fe5542..5d4e58743c 100644 --- a/contrib/hbct/doc/en/ctc.txt +++ b/contrib/hbct/doc/en/ctc.txt @@ -67,7 +67,7 @@ $FILES$ Library is hbct. $SEEALSO$ - ctinit(),ctexit() + ctinit(), ctexit() $END$ */ @@ -98,6 +98,6 @@ $FILES$ Library is hbct. $SEEALSO$ - ctinit(),ctexit() + ctinit(), ctexit() $END$ */ diff --git a/contrib/hbct/doc/en/datetime.txt b/contrib/hbct/doc/en/datetime.txt index 3f68ba1539..7b2e74fa9c 100644 --- a/contrib/hbct/doc/en/datetime.txt +++ b/contrib/hbct/doc/en/datetime.txt @@ -25,7 +25,7 @@ $FILES$ Library is hbct. $SEEALSO$ - EoM(),BoQ(),EoQ(),BoY(),EoY() + EoM(), BoQ(), EoQ(), BoY(), EoY() $END$ */ @@ -55,7 +55,7 @@ $FILES$ Library is hbct. $SEEALSO$ - BoM(),BoQ(),EoQ(),BoY(),EoY() + BoM(), BoQ(), EoQ(), BoY(), EoY() $END$ */ @@ -85,7 +85,7 @@ $FILES$ Library is hbct. $SEEALSO$ - BoM(),EoM(),EoQ(),BoY(),EoY() + BoM(), EoM(), EoQ(), BoY(), EoY() $END$ */ @@ -115,7 +115,7 @@ $FILES$ Library is hbct. $SEEALSO$ - BoM(),EoM(),BoQ(),BoY(),EoY() + BoM(), EoM(), BoQ(), BoY(), EoY() $END$ */ @@ -145,7 +145,7 @@ $FILES$ Library is hbct. $SEEALSO$ - BoM(),EoM(),BoQ(),EoQ(),EoY() + BoM(), EoM(), BoQ(), EoQ(), EoY() $END$ */ @@ -175,6 +175,6 @@ $FILES$ Library is hbct. $SEEALSO$ - BoM(),EoM(),BoQ(),EoQ(),BoY() + BoM(), EoM(), BoQ(), EoQ(), BoY() $END$ */ diff --git a/contrib/hbct/doc/en/dattime3.txt b/contrib/hbct/doc/en/dattime3.txt index d4f53f4dd4..cc1e83fd74 100644 --- a/contrib/hbct/doc/en/dattime3.txt +++ b/contrib/hbct/doc/en/dattime3.txt @@ -155,7 +155,7 @@ $FILES$ Library is hbct. $SEEALSO$ - SetDate(),TimeValid() + SetDate(), TimeValid() $END$ */ diff --git a/contrib/hbct/doc/en/finan.txt b/contrib/hbct/doc/en/finan.txt index a564231b1d..28a4c150bd 100644 --- a/contrib/hbct/doc/en/finan.txt +++ b/contrib/hbct/doc/en/finan.txt @@ -44,7 +44,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PV(),Payment(),Periods(),Rate() + PV(), Payment(), Periods(), Rate() $END$ */ @@ -92,7 +92,7 @@ $FILES$ Library is hbct. $SEEALSO$ - FV(),Payment(),Periods(),Rate() + FV(), Payment(), Periods(), Rate() $END$ */ @@ -138,7 +138,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PV(),FV(),Periods(),Rate() + PV(), FV(), Periods(), Rate() $END$ */ @@ -189,7 +189,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PV(),FV(),Payment(),Rate() + PV(), FV(), Payment(), Rate() $END$ */ @@ -232,6 +232,6 @@ $FILES$ Library is hbct. $SEEALSO$ - PV(),FV(),Payment(),Periods() + PV(), FV(), Payment(), Periods() $END$ */ diff --git a/contrib/hbct/doc/en/numat.txt b/contrib/hbct/doc/en/numat.txt index 8604697463..cdfbfef92a 100644 --- a/contrib/hbct/doc/en/numat.txt +++ b/contrib/hbct/doc/en/numat.txt @@ -25,6 +25,6 @@ $FILES$ Library is hbct. $SEEALSO$ - CSetAtMupa(),SetAtLike() + CSetAtMupa(), SetAtLike() $END$ */ diff --git a/contrib/hbct/doc/en/numconv.txt b/contrib/hbct/doc/en/numconv.txt index 782c243b6e..82b9df6a1e 100644 --- a/contrib/hbct/doc/en/numconv.txt +++ b/contrib/hbct/doc/en/numconv.txt @@ -7,7 +7,7 @@ $ONELINER$ $SYNTAX$ - NToC( [, ][,][,] ) -> + NToC( [, ][, ][, ] ) -> $ARGUMENTS$ $RETURNS$ @@ -37,7 +37,7 @@ $ONELINER$ $SYNTAX$ - CToN( [, ][,] ) -> + CToN( [, ][, ] ) -> $ARGUMENTS$ $RETURNS$ @@ -67,7 +67,7 @@ $ONELINER$ $SYNTAX$ - BitToC( , [,] ) -> + BitToC( , [, ] ) -> $ARGUMENTS$ $RETURNS$ diff --git a/contrib/hbct/doc/en/pos1.txt b/contrib/hbct/doc/en/pos1.txt index bdcbd6b2b1..ebb731f5b0 100644 --- a/contrib/hbct/doc/en/pos1.txt +++ b/contrib/hbct/doc/en/pos1.txt @@ -25,7 +25,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PosLower(),PosUpper(),PosRange() + PosLower(), PosUpper(), PosRange() $END$ */ @@ -55,7 +55,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PosAlpha(),PosUpper(),PosRange() + PosAlpha(), PosUpper(), PosRange() $END$ */ @@ -86,7 +86,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PosAlpha(),PosLower(),PosUpper() + PosAlpha(), PosLower(), PosUpper() $END$ */ @@ -116,6 +116,6 @@ $FILES$ Library is hbct. $SEEALSO$ - PosAlpha(),PosLower(),PosRange() + PosAlpha(), PosLower(), PosRange() $END$ */ diff --git a/contrib/hbct/doc/en/pos2.txt b/contrib/hbct/doc/en/pos2.txt index 678a67f165..4fc9f79259 100644 --- a/contrib/hbct/doc/en/pos2.txt +++ b/contrib/hbct/doc/en/pos2.txt @@ -25,7 +25,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PosDel(),PosIns(),PosRepl(),CSetRef() + PosDel(), PosIns(), PosRepl(), CSetRef() $END$ */ @@ -55,7 +55,7 @@ $FILES$ Library is hbct. $SEEALSO$ - PosChar(),PosIns(),PosRepl() + PosChar(), PosIns(), PosRepl() $END$ */ @@ -85,7 +85,7 @@ $FILES$ Library is hbct. $SEEALSO$ - POSCHAR,PosDel(),PosRepl() + POSCHAR, PosDel(), PosRepl() $END$ */ @@ -115,6 +115,6 @@ $FILES$ Library is hbct. $SEEALSO$ - PosChar(),PosDel(),PosIns(),CSetRef() + PosChar(), PosDel(), PosIns(), CSetRef() $END$ */ diff --git a/contrib/hbct/doc/en/relation.txt b/contrib/hbct/doc/en/relation.txt index 67a12d802e..ab98d1aced 100644 --- a/contrib/hbct/doc/en/relation.txt +++ b/contrib/hbct/doc/en/relation.txt @@ -58,6 +58,6 @@ $FILES$ Library is hbct. $SEEALSO$ - CharRelA(),CSetRef() + CharRelA(), CSetRef() $END$ */ diff --git a/contrib/hbct/doc/en/remove.txt b/contrib/hbct/doc/en/remove.txt index 40935ca9a3..4df2ea441e 100644 --- a/contrib/hbct/doc/en/remove.txt +++ b/contrib/hbct/doc/en/remove.txt @@ -25,7 +25,7 @@ $FILES$ Library is hbct. $SEEALSO$ - RemLeft(),RemRight() + RemLeft(), RemRight() $END$ */ @@ -55,7 +55,7 @@ $FILES$ Library is hbct. $SEEALSO$ - RemAll(),RemRight() + RemAll(), RemRight() $END$ */ @@ -85,6 +85,6 @@ $FILES$ Library is hbct. $SEEALSO$ - RemAll(),RemLeft() + RemAll(), RemLeft() $END$ */ diff --git a/contrib/hbct/doc/en/replace.txt b/contrib/hbct/doc/en/replace.txt index dace0eee47..8739e93228 100644 --- a/contrib/hbct/doc/en/replace.txt +++ b/contrib/hbct/doc/en/replace.txt @@ -25,7 +25,7 @@ $FILES$ Library is hbct. $SEEALSO$ - ReplLeft(),ReplRight() + ReplLeft(), ReplRight() $END$ */ @@ -55,7 +55,7 @@ $FILES$ Library is hbct. $SEEALSO$ - ReplAll(),ReplRight() + ReplAll(), ReplRight() $END$ */ @@ -85,6 +85,6 @@ $FILES$ Library is hbct. $SEEALSO$ - ReplAll(),ReplLeft() + ReplAll(), ReplLeft() $END$ */ diff --git a/contrib/hbct/doc/en/screen1.txt b/contrib/hbct/doc/en/screen1.txt index b8480048cf..a874fc9088 100644 --- a/contrib/hbct/doc/en/screen1.txt +++ b/contrib/hbct/doc/en/screen1.txt @@ -7,7 +7,7 @@ $ONELINER$ $SYNTAX$ - ScreenAttr( [],[] ) -> + ScreenAttr( [], [] ) -> $ARGUMENTS$ Designates the line from which to determine the attribute. The default is the cursor line. diff --git a/contrib/hbct/doc/en/strdiff.txt b/contrib/hbct/doc/en/strdiff.txt index af532a54eb..95afe5d925 100644 --- a/contrib/hbct/doc/en/strdiff.txt +++ b/contrib/hbct/doc/en/strdiff.txt @@ -31,9 +31,9 @@ work on most systems. If this simple check fails, -1 is returned. Also, be aware that there can be an overflow when the penalty points are summed up: Assuming that the - number of transformation operations is in the order of Max(Len(cString1),Len(cString2)), the penalty point + number of transformation operations is in the order of Max(Len(cString1), Len(cString2)), the penalty point sum, that is internally stored in an "int" variable, is in the order of - (Max(Len(cString1),Len(cString2))*Max(nReplacementPenalty,nDeletionPenalty,nInsertionPentaly). + (Max(Len(cString1), Len(cString2))*Max(nReplacementPenalty, nDeletionPenalty, nInsertionPentaly). The StrDiff() does not do an overflow check due to time performance reasons. Future versions of StrDiff() could use a type different to "int" to store the penalty point sum to save memory or to avoid overflows. diff --git a/contrib/hbct/doc/en/token1.txt b/contrib/hbct/doc/en/token1.txt index 84361c8bdf..e2a555ab2c 100644 --- a/contrib/hbct/doc/en/token1.txt +++ b/contrib/hbct/doc/en/token1.txt @@ -51,7 +51,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Token(),NumToken(),TokenLower(),TokenUpper(),TokenSep() + Token(), NumToken(), TokenLower(), TokenUpper(), TokenSep() $END$ */ @@ -114,7 +114,7 @@ $FILES$ Library is hbct. $SEEALSO$ - NumToken(),AtToken(),TokenLower(),TokenUpper(),TokenSep() + NumToken(), AtToken(), TokenLower(), TokenUpper(), TokenSep() $END$ */ @@ -144,7 +144,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Token(),AtToken(),TokenLower(),TokenUpper(),TokenSep() + Token(), AtToken(), TokenLower(), TokenUpper(), TokenSep() $END$ */ @@ -200,7 +200,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Token(),NumToken(),AtToken(),TokenUpper(),TokenSep(),CSetRef() + Token(), NumToken(), AtToken(), TokenUpper(), TokenSep(), CSetRef() $END$ */ @@ -256,7 +256,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Token(),NumToken(),AtToken(),TokenLower(),TokenSep(),CSetRef() + Token(), NumToken(), AtToken(), TokenLower(), TokenSep(), CSetRef() $END$ */ @@ -295,6 +295,6 @@ $FILES$ Library is hbct. $SEEALSO$ - Token(),NumToken(),AtToken(),TokenLower(),TokenUpper() + Token(), NumToken(), AtToken(), TokenLower(), TokenUpper() $END$ */ diff --git a/contrib/hbct/doc/en/token2.txt b/contrib/hbct/doc/en/token2.txt index 03ab07ef57..0916c2d422 100644 --- a/contrib/hbct/doc/en/token2.txt +++ b/contrib/hbct/doc/en/token2.txt @@ -77,7 +77,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Token(),TokenExit(),TokenNext(),TokenNum(),TokenAt(),SaveToken(),RestToken(),TokenEnd() + Token(), TokenExit(), TokenNext(), TokenNum(), TokenAt(), SaveToken(), RestToken(), TokenEnd() $END$ */ @@ -113,7 +113,7 @@ Note that does not have to be the same used in TokenInit(), so that one can do a "correlational tokenization", i.e. tokenize a string as if it was another! E.G. using TokenInit() with the string - "AA,BBB" but calling TokenNext() with "CCCEE" would + "AA, BBB" but calling TokenNext() with "CCCEE" would give first "CC" and then "EE" (because "CCCEE" is not long enough). $EXAMPLES$ // default behavhiour @@ -134,7 +134,7 @@ $FILES$ Library is hbct. $SEEALSO$ - TokenInit(),TokenExit(),TokenNum(),TokenAt(),SaveToken(),RestToken(),TokenEnd() + TokenInit(), TokenExit(), TokenNum(), TokenAt(), SaveToken(), RestToken(), TokenEnd() $END$ */ @@ -169,7 +169,7 @@ $FILES$ Library is hbct. $SEEALSO$ - TokenInit(),TokenExit(),TokenNext(),TokenAt(),SaveToken(),RestToken(),TokenEnd() + TokenInit(), TokenExit(), TokenNext(), TokenAt(), SaveToken(), RestToken(), TokenEnd() $END$ */ @@ -211,7 +211,7 @@ $FILES$ Library is hbct. $SEEALSO$ - TokenInit(),TokenExit(),TokenNext(),TokenNum(),TokenAt(),SaveToken(),RestToken() + TokenInit(), TokenExit(), TokenNext(), TokenNum(), TokenAt(), SaveToken(), RestToken() $END$ */ @@ -249,7 +249,7 @@ $FILES$ Library is hbct. $SEEALSO$ - TokenInit(),TokenNext(),TokenNum(),TokenAt(),SaveToken(),RestToken(),TokenEnd() + TokenInit(), TokenNext(), TokenNum(), TokenAt(), SaveToken(), RestToken(), TokenEnd() $END$ */ @@ -304,7 +304,7 @@ $FILES$ Library is hbct. $SEEALSO$ - TokenInit(),TokenExit(),TokenNext(),TokenNum(),SaveToken(),RestToken(),TokenEnd() + TokenInit(), TokenExit(), TokenNext(), TokenNum(), SaveToken(), RestToken(), TokenEnd() $END$ */ @@ -337,7 +337,7 @@ $FILES$ Library is hbct. $SEEALSO$ - TokenInit(),TokenExit(),TokenNext(),TokenNum(),TokenAt(),RestToken(),TokenEnd() + TokenInit(), TokenExit(), TokenNext(), TokenNum(), TokenAt(), RestToken(), TokenEnd() $END$ */ @@ -370,6 +370,6 @@ $FILES$ Library is hbct. $SEEALSO$ - TokenInit(),TokenExit(),TokenNext(),TokenNum(),TokenAt(),SaveToken(),TokenEnd() + TokenInit(), TokenExit(), TokenNext(), TokenNum(), TokenAt(), SaveToken(), TokenEnd() $END$ */ diff --git a/contrib/hbct/doc/en/trig.txt b/contrib/hbct/doc/en/trig.txt index a0d007fe31..f12937ef3b 100644 --- a/contrib/hbct/doc/en/trig.txt +++ b/contrib/hbct/doc/en/trig.txt @@ -30,7 +30,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),DToR() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), DToR() $END$ */ @@ -65,7 +65,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -100,7 +100,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -136,7 +136,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -171,7 +171,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -207,7 +207,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -243,7 +243,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -277,7 +277,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -318,7 +318,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Sinh(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Sinh(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -354,7 +354,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Cosh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Cosh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -390,7 +390,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Tanh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Tanh(), RToD(), DToR(), Pi() $END$ */ @@ -422,7 +422,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),RToD(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), RToD(), DToR(), Pi() $END$ */ @@ -455,7 +455,7 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),DToR(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), DToR(), Pi() $END$ */ @@ -487,6 +487,6 @@ $FILES$ Library is hbct. $SEEALSO$ - Sin(),Cos(),Tan(),Cot(),Asin(),Acos(),Atan(),Atn2(),Sinh(),Cosh(),Tanh(),RToD(),Pi() + Sin(), Cos(), Tan(), Cot(), Asin(), Acos(), Atan(), Atn2(), Sinh(), Cosh(), Tanh(), RToD(), Pi() $END$ */ diff --git a/contrib/hbct/doc/en/wordrepl.txt b/contrib/hbct/doc/en/wordrepl.txt index 88150bfd53..4b7802c649 100644 --- a/contrib/hbct/doc/en/wordrepl.txt +++ b/contrib/hbct/doc/en/wordrepl.txt @@ -53,6 +53,6 @@ $FILES$ Library is hbct. $SEEALSO$ - CharRepl(),RangeRepl(),PosRepl(),CSetRef(),CSetAtMupa() + CharRepl(), RangeRepl(), PosRepl(), CSetRef(), CSetAtMupa() $END$ */ diff --git a/contrib/hbct/doc/en/wordtoch.txt b/contrib/hbct/doc/en/wordtoch.txt index 231596067e..56d1c0606e 100644 --- a/contrib/hbct/doc/en/wordtoch.txt +++ b/contrib/hbct/doc/en/wordtoch.txt @@ -26,6 +26,6 @@ $FILES$ Library is hbct. $SEEALSO$ - CSetAtMupa(),CharRepl(),WordRepl() + CSetAtMupa(), CharRepl(), WordRepl() $END$ */ diff --git a/contrib/hbgt/doc/en/hbgt.txt b/contrib/hbgt/doc/en/hbgt.txt index 5bb93266d8..2557ac6a38 100644 --- a/contrib/hbgt/doc/en/hbgt.txt +++ b/contrib/hbgt/doc/en/hbgt.txt @@ -7,12 +7,12 @@ $ONELINER$ Return the ascii value of a specified character in a string $SYNTAX$ - gt_AscPos(, ) --> nAscVal + gt_AscPos( , ) --> nAscVal $ARGUMENTS$ - The string - The position in $RETURNS$ - - The ascii value of SubStr(, , 1) + - The ascii value of SubStr( , , 1 ) $DESCRIPTION$ Return the ascii value of a specified character in a string Equivalent (but much faster) to @@ -20,7 +20,7 @@ NOTE: invalid parameters will return -1 - nPos > Len(cStr) will return -2 + nPos > Len( cStr ) will return -2 This last behaviour is different to the Funcky function of the same name. I changed the behaviour because some of the strings @@ -46,7 +46,7 @@ $ONELINER$ Sum the ascii values in a string. $SYNTAX$ - gt_AsciiSum() --> nSum + gt_AsciiSum( ) --> nSum $ARGUMENTS$ - The string to sum $RETURNS$ @@ -75,7 +75,7 @@ $ONELINER$ Return the position where two strings begin to differ $SYNTAX$ - gt_AtDiff(, ) --> nPos + gt_AtDiff( , ) --> nPos $ARGUMENTS$ - A character string to compare - The string to compare with @@ -111,7 +111,7 @@ $ONELINER$ Return a string of all the characters in even positions $SYNTAX$ - gt_CharEven() --> cRet + gt_CharEven( ) --> cRet $ARGUMENTS$ - A character string to extract chars from $RETURNS$ @@ -143,7 +143,7 @@ $ONELINER$ Amalgamate two strings to form the return value $SYNTAX$ - gt_CharMix(, ) --> cRet + gt_CharMix( , ) --> cRet $ARGUMENTS$ - A character string to mix - A character string to mix with @@ -179,7 +179,7 @@ $ONELINER$ Return a string of all the characters in odd positions $SYNTAX$ - gt_CharOdd() --> cRet + gt_CharOdd( ) --> cRet $ARGUMENTS$ - A character string to extract chars from $RETURNS$ @@ -211,7 +211,7 @@ $ONELINER$ Count the number of times a character appears in a string $SYNTAX$ - gt_ChrCount(, ) --> nFreq + gt_ChrCount( , ) --> nFreq $ARGUMENTS$ - The character to find the frequence of - The string in which to find the character @@ -244,7 +244,7 @@ $ONELINER$ Find which character occurs first in a string $SYNTAX$ - gt_ChrFirst(, ) --> nAsc + gt_ChrFirst( , ) --> nAsc $ARGUMENTS$ - The set of characters to find - The input string @@ -276,7 +276,7 @@ $ONELINER$ Find number of times a set of characters appears in a string $SYNTAX$ - gt_ChrTotal(, ) --> nTotOcc + gt_ChrTotal( , ) --> nTotOcc $ARGUMENTS$ - The set of characters - The string to search @@ -314,7 +314,7 @@ $ONELINER$ Count the number of times a substring appears in a string $SYNTAX$ - gt_StrCount(, ) --> nFreq + gt_StrCount( , ) --> nFreq $ARGUMENTS$ - The substring to find the frequence of - The string in which to find the character @@ -351,7 +351,7 @@ $ONELINER$ Return length of prefix in string of chars NOT in set. $SYNTAX$ - gt_StrCSPN(, ) --> nLength + gt_StrCSPN( , ) --> nLength $ARGUMENTS$ - The string to find the prefix in - The set of characters @@ -382,7 +382,7 @@ $ONELINER$ Return a string where it begins to differ from another $SYNTAX$ - gt_StrDiff(, ) --> cRet + gt_StrDiff( , ) --> cRet $ARGUMENTS$ - A character string to compare - The string to compare with @@ -419,7 +419,7 @@ $ONELINER$ Insert fillers between characters in a passed string $SYNTAX$ - gt_StrExpand(, [], []) --> cRet + gt_StrExpand( , [], [] ) --> cRet $ARGUMENTS$ - A character string to insert chars into - The number of fill characters to insert (default 1) @@ -455,7 +455,7 @@ $ONELINER$ Find length of prefix of a string $SYNTAX$ - gt_StrLeft(, ) --> nLen + gt_StrLeft( , ) --> nLen $ARGUMENTS$ - The input string - The set of characters to find @@ -491,7 +491,7 @@ $ONELINER$ Return string after 1st char from a set $SYNTAX$ - gt_StrPBRK(, ) --> cString + gt_StrPBRK( , ) --> cString $ARGUMENTS$ - The input string - The set of characters to find @@ -523,7 +523,7 @@ $ONELINER$ Find length of a suffix of a string $SYNTAX$ - gt_StrRight(, ) --> nLen + gt_StrRight( , ) --> nLen $ARGUMENTS$ - The input string - The set of characters to find @@ -559,7 +559,7 @@ $ONELINER$ Create a new bit flag string. $SYNTAX$ - gt_NewFlag() --> cFlagString + gt_NewFlag( ) --> cFlagString $ARGUMENTS$ is the number of flags you wish to store. $RETURNS$ @@ -588,7 +588,7 @@ $ONELINER$ Set a number of flags to TRUE in a bit flag string. $SYNTAX$ - gt_SetFlag(,[],[]) --> cFlagString + gt_SetFlag( , [], [] ) --> cFlagString $ARGUMENTS$ is a bit flag string created with gt_NewFlag() @@ -629,7 +629,7 @@ $ONELINER$ Set a number of flags to FALSE in a bit flag string. $SYNTAX$ - gt_ClrFlag(,[],[]) --> cFlagString + gt_ClrFlag( , [], [] ) --> cFlagString $ARGUMENTS$ is a bit flag string created with gt_NewFlag() @@ -674,7 +674,7 @@ $ONELINER$ Test the setting of a flag in a bit flag string. $SYNTAX$ - gt_IsFlag(,[]) --> lSetting + gt_IsFlag( , [] ) --> lSetting $ARGUMENTS$ is a bit flag string created with gt_NewFlag() diff --git a/contrib/hbmisc/doc/en/dates2.txt b/contrib/hbmisc/doc/en/dates2.txt index 76c622198f..f86e83334d 100644 --- a/contrib/hbmisc/doc/en/dates2.txt +++ b/contrib/hbmisc/doc/en/dates2.txt @@ -156,7 +156,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - BoM(),WoM() + BoM(), WoM() $END$ */ @@ -188,7 +188,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - EoM(),WoM() + EoM(), WoM() $END$ */ diff --git a/contrib/hbmisc/doc/en/ht_conv.txt b/contrib/hbmisc/doc/en/ht_conv.txt index e8f2d4e158..c499b41599 100644 --- a/contrib/hbmisc/doc/en/ht_conv.txt +++ b/contrib/hbmisc/doc/en/ht_conv.txt @@ -11,13 +11,13 @@ $ARGUMENTS$ STRING TO BE CHECKED $RETURNS$ - .T. IF THE STRING IS BYNARY,otherwise .F. + .T. IF THE STRING IS BYNARY, otherwise .F. $DESCRIPTION$ check if the passed string is a bynary number or not $FILES$ Library is hbmisc $SEEALSO$ - IsOctal(),IsDec(),IsHexa() + IsOctal(), IsDec(), IsHexa() $END$ */ @@ -39,7 +39,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - IsBin(),IsDec(),IsHexa() + IsBin(), IsDec(), IsHexa() $END$ */ @@ -61,7 +61,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - IsOctal(),IsBin(),IsHexa() + IsOctal(), IsBin(), IsHexa() $END$ */ @@ -83,7 +83,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - IsOctal(),IsDec(),IsBin() + IsOctal(), IsDec(), IsBin() $END$ */ @@ -106,7 +106,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - DecToHexa(),DecToOctal() + DecToHexa(), DecToOctal() $END$ */ @@ -129,7 +129,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - DecToHexa(),DecToBin() + DecToHexa(), DecToBin() $END$ */ @@ -152,7 +152,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - DecToBin(),DecToOctal() + DecToBin(), DecToOctal() $END$ */ @@ -175,7 +175,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - OctalToDec(),HexaToDec() + OctalToDec(), HexaToDec() $END$ */ @@ -198,7 +198,7 @@ $FILES$ Library is hbmisc $SEEALSO$ - BinToDec(),HexaToDec() + BinToDec(), HexaToDec() $END$ */ @@ -221,6 +221,6 @@ $FILES$ Library is hbmisc $SEEALSO$ - OctalToDec(),BinToDec() + OctalToDec(), BinToDec() $END$ */ diff --git a/contrib/hbmisc/doc/en/ht_doc.txt b/contrib/hbmisc/doc/en/ht_doc.txt index d1905b661a..a228ecc132 100644 --- a/contrib/hbmisc/doc/en/ht_doc.txt +++ b/contrib/hbmisc/doc/en/ht_doc.txt @@ -21,7 +21,7 @@ WriteTitle() Write the file title WritePar() Writes a paragraph WriteParBold() Same as WritePar(), but the text is bold - WriteLink(,) Write a link to another topic + WriteLink(, ) Write a link to another topic WriteText() Write any text $EXAMPLES$ PROCEDURE Main() @@ -67,7 +67,7 @@ The class methods are as follows: New() Create a new instance of the TOs2 class Close() Close the created file - WriteTitle(,) Write the file title + WriteTitle(, ) Write the file title WritePar() Write a paragraph WriteParBold() Same as WritePar(), but the text is bold WriteLink() Write a link to another topic @@ -117,7 +117,7 @@ The class methods are as follows: New() Create an instance of the TNortonGuide class Close() Close the created file - WriteTitle(,) Write the file title + WriteTitle(, ) Write the file title WritePar() Write a paragraph WriteParBold() Same as WritePar(), but the text is bold WriteLink() Write a link to another topic @@ -142,7 +142,7 @@ $PLATFORMS$ ALL $SEEALSO$ - TTroff(),TRtf(),THtml(),TOs2() + TTroff(), TRtf(), THtml(), TOs2() $END$ */ @@ -165,7 +165,7 @@ The class methods are as follows: New() Create a new instance of the TRtf class Close() Close the create file - WriteTitle(,) Write the file title + WriteTitle(, ) Write the file title WritePar() Write a paragraph WriteParBold() Same as WritePar(), but the text is bold WriteLink() Write a link to another topic @@ -216,7 +216,7 @@ The class methods are as follows: New() Create a new instance of the THtml class Close() Close the created file - WriteTitle(,) Write the file title + WriteTitle(, ) Write the file title WritePar() Write a paragraph WriteParBold() Same as WritePar(), but the text is bold WriteLink() Write a link to another topic diff --git a/contrib/hbmisc/doc/en/ht_file.txt b/contrib/hbmisc/doc/en/ht_file.txt index f75c379593..1b43a2fce3 100644 --- a/contrib/hbmisc/doc/en/ht_file.txt +++ b/contrib/hbmisc/doc/en/ht_file.txt @@ -23,7 +23,7 @@ $FILES$ Header is fileio.ch $SEEALSO$ - MD(),RD() + MD(), RD() $END$ */ @@ -51,7 +51,7 @@ $FILES$ Header is fileio.ch $SEEALSO$ - CD(),MD() + CD(), MD() $END$ */ @@ -79,6 +79,6 @@ $FILES$ Header is fileio.ch $SEEALSO$ - CD(),MD() + CD(), MD() $END$ */ diff --git a/contrib/hbziparc/doc/en/hbziparc.txt b/contrib/hbziparc/doc/en/hbziparc.txt index eef33f7a4c..c41287521d 100644 --- a/contrib/hbziparc/doc/en/hbziparc.txt +++ b/contrib/hbziparc/doc/en/hbziparc.txt @@ -180,7 +180,7 @@ $ONELINER$ Create a zip file $SYNTAX$ - hb_ZipFileByTDSpan( , | , , + hb_ZipFileByTDSpan( , | , , , , , , , , ) --> lCompress $ARGUMENTS$ @@ -418,7 +418,7 @@ will evaluate bBlock. Parameters of bBlock are cFile and nPos. If is used, it toggles to overwrite or not the existing - file. Default is to overwrite the file,otherwise if is false + file. Default is to overwrite the file, otherwise if is false the new files are added to the . If is used, all files that are added to the archive are encrypted diff --git a/contrib/rddads/doc/en/adsfuncs.txt b/contrib/rddads/doc/en/adsfuncs.txt index 8e0fc1be65..f015b1031b 100644 --- a/contrib/rddads/doc/en/adsfuncs.txt +++ b/contrib/rddads/doc/en/adsfuncs.txt @@ -7,7 +7,7 @@ $ONELINER$ Write a Binary (memo) field's contents to a file $SYNTAX$ - AdsBlob2File(cFileName, cFieldName) --> lSuccess + AdsBlob2File( cFileName, cFieldName ) --> lSuccess $ARGUMENTS$ File to create. If it already exists, it will be overwritten on success and destroyed on error. @@ -43,7 +43,7 @@ $ONELINER$ Save a Binary file to a field $SYNTAX$ - AdsFile2Blob(cFileName, cFieldName, ) --> lSuccess + AdsFile2Blob( cFileName, cFieldName, ) --> lSuccess $ARGUMENTS$ File to read. Can be in UNC format. A common example is an image file. @@ -102,7 +102,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsCustomizeAOF(),AdsEvalAOF(),AdsGetAOF(),AdsGetAOFOptLevel(),AdsIsRecordInAOF(),AdsRefreshAOF() + AdsCustomizeAOF(), AdsEvalAOF(), AdsGetAOF(), AdsGetAOFOptLevel(), AdsIsRecordInAOF(), AdsRefreshAOF() $END$ */ @@ -140,7 +140,7 @@ from the server. The maximum number of records that can be customized in a single call is - 16,383, so must not be longer than this. + 16, 383, so must not be longer than this. Calls to AdsCustomizeAOF must be made after an application has created a filter with a call to AdsSetAOF. To create a completely empty record set @@ -171,7 +171,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsEvalAOF(),AdsGetAOF(),AdsGetAOFOptLevel(),AdsIsRecordInAOF(),AdsRefreshAOF() + AdsClearAOF(), AdsEvalAOF(), AdsGetAOF(), AdsGetAOFOptLevel(), AdsIsRecordInAOF(), AdsRefreshAOF() $END$ */ @@ -183,7 +183,7 @@ $ONELINER$ Evaluate a filter expression to determine its optimization level $SYNTAX$ - AdsEvalAOF() --> nOptimizationLevel + AdsEvalAOF( ) --> nOptimizationLevel $ARGUMENTS$ Expression to test. $RETURNS$ @@ -206,7 +206,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsGetAOF(),AdsGetAOFOptLevel(),AdsIsRecordInAOF(),AdsRefreshAOF() + AdsClearAOF(), AdsGetAOF(), AdsGetAOFOptLevel(), AdsIsRecordInAOF(), AdsRefreshAOF() $END$ */ @@ -239,7 +239,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsGetAOF(),AdsIsRecordInAOF(),AdsRefreshAOF() + AdsClearAOF(), AdsGetAOF(), AdsIsRecordInAOF(), AdsRefreshAOF() $END$ */ @@ -270,7 +270,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsGetAOFOptLevel(),AdsIsRecordInAOF(),AdsRefreshAOF() + AdsClearAOF(), AdsGetAOFOptLevel(), AdsIsRecordInAOF(), AdsRefreshAOF() $END$ */ @@ -302,7 +302,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsIsRecordInAOF(),AdsRefreshAOF() + AdsClearAOF(), AdsIsRecordInAOF(), AdsRefreshAOF() $END$ */ @@ -336,7 +336,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsIsRecordInAOF(),AdsSetAOF() + AdsClearAOF(), AdsIsRecordInAOF(), AdsSetAOF() $END$ */ @@ -372,7 +372,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsIsRecordInAOF(),AdsRefreshAOF() + AdsClearAOF(), AdsIsRecordInAOF(), AdsRefreshAOF() $END$ */ @@ -403,7 +403,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsClearAOF(),AdsRefreshAOF() + AdsClearAOF(), AdsRefreshAOF() $END$ */ @@ -442,7 +442,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsKeyNo(),AdsKeyCount(),AdsSetRelKeyPos() + AdsKeyNo(), AdsKeyCount(), AdsSetRelKeyPos() $END$ */ @@ -480,7 +480,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsKeyNo(),AdsKeyCount(),AdsGetRelKeyPos() + AdsKeyNo(), AdsKeyCount(), AdsGetRelKeyPos() $END$ */ @@ -492,7 +492,7 @@ $ONELINER$ Retrieve the number of keys in a specified index $SYNTAX$ - AdsKeyCount([], , []) --> nKeyCount + AdsKeyCount( [], , [] ) --> nKeyCount $ARGUMENTS$ Numeric order number OR index tag name. Default is current index. @@ -529,7 +529,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsKeyNo(),AdsGetRelKeyPos() + AdsKeyNo(), AdsGetRelKeyPos() $END$ */ @@ -541,7 +541,7 @@ $ONELINER$ Get the logical key number of the current record in the given index $SYNTAX$ - AdsKeyNo([], , []) --> nKeyNo + AdsKeyNo( [], , [] ) --> nKeyNo $ARGUMENTS$ Numeric order number OR index tag name. Default is current index. @@ -579,7 +579,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsKeyCount(),AdsGetRelKeyPos() + AdsKeyCount(), AdsGetRelKeyPos() $END$ */ @@ -942,7 +942,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsRightsCheck(),AdsLocking(), AdsSetFileType() + AdsRightsCheck(), AdsLocking(), AdsSetFileType() $END$ */ @@ -960,7 +960,7 @@ $RETURNS$ $DESCRIPTION$ - Equivalent to Empty(ordSetFocus())<\b>, but faster. + Equivalent to Empty( ordSetFocus() )<\b>, but faster. $EXAMPLES$ $STATUS$ @@ -1142,7 +1142,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsGetTableConType(),AdsConnect(),AdsConnect60() + AdsGetTableConType(), AdsConnect(), AdsConnect60() $END$ */ @@ -1179,7 +1179,7 @@ Library is rddads Header is ads.ch $SEEALSO$ - AdsGetConnectionType(),AdsConnect(),AdsConnect60() + AdsGetConnectionType(), AdsConnect(), AdsConnect60() $END$ */ @@ -1230,7 +1230,7 @@ $ONELINER$ Connect to a local/remote/internet server $SYNTAX$ - AdsConnect60(, , [], [], []) -> lSuccess + AdsConnect60( , , [], [], [] ) -> lSuccess $ARGUMENTS$ Name of data dictionary to connect to. The server type to connect (LOCAL, REMOTE, AIS or all together) @@ -1270,7 +1270,7 @@ $ONELINER$ Provides caching of open tables $SYNTAX$ - AdsCacheOpenTables() -> nRetVal + AdsCacheOpenTables( ) -> nRetVal $ARGUMENTS$ Number of tables to cache. @@ -1308,7 +1308,7 @@ $ONELINER$ Provides caching of open cursors $SYNTAX$ - AdsCacheOpenCursors() -> nRetVal + AdsCacheOpenCursors( ) -> nRetVal $ARGUMENTS$ Number of cursors to cache. @@ -1347,7 +1347,7 @@ $ONELINER$ Close all cached tables on the given connection $SYNTAX$ - AdsCloseCachedTables([]) -> nRetVal + AdsCloseCachedTables( [] ) -> nRetVal $ARGUMENTS$ A connection handle retrieved via AdsConnect() or AdsConnect60(). If omitted, the RDD's current connection diff --git a/doc/en/array.txt b/doc/en/array.txt index 6a88568171..1e46a341bd 100644 --- a/doc/en/array.txt +++ b/doc/en/array.txt @@ -57,7 +57,7 @@ $FILES$ Library is core $SEEALSO$ - AAdd(),ADel(),AFill(),AIns() + AAdd(), ADel(), AFill(), AIns() $END$ */ @@ -103,7 +103,7 @@ $FILES$ Library is core $SEEALSO$ - AIns(),ASize() + AIns(), ASize() $END$ */ @@ -146,7 +146,7 @@ $FILES$ Library is core $SEEALSO$ - AAdd(),ADel(),AFill(),AIns() + AAdd(), ADel(), AFill(), AIns() $END$ */ @@ -181,7 +181,7 @@ $FILES$ Library is core $SEEALSO$ - Len(),Array(),ASize(),AAdd() + Len(), Array(), ASize(), AAdd() $END$ */ @@ -225,7 +225,7 @@ $FILES$ Library is core $SEEALSO$ - AAdd(),ACopy(),ADel(),AEval(),AFill(),ASize() + AAdd(), ACopy(), ADel(), AEval(), AFill(), ASize() $END$ */ @@ -254,7 +254,7 @@ given subscript position will move up one position in the array. In other words, what was formerly the sixth subscript position will become the fifth subscript position. The length of the array - will remain unchanged,as the last element in the array will + will remain unchanged, as the last element in the array will become a NIL data type. $EXAMPLES$ LOCAL aArray := { "Harbour", "is", "Power" } @@ -266,7 +266,7 @@ $FILES$ Library is core $SEEALSO$ - ACopy(),AIns(),AFill() + ACopy(), AIns(), AFill() $END$ */ @@ -316,7 +316,7 @@ $FILES$ Library is core $SEEALSO$ - AAdd(),AEval(),dbStruct(),Directory() + AAdd(), AEval(), dbStruct(), Directory() $END$ */ @@ -422,7 +422,7 @@ $FILES$ Library is core $SEEALSO$ - Eval(),dbEval() + Eval(), dbEval() $END$ */ @@ -461,7 +461,7 @@ is the number of elements to be copied from ; the default is the entire array. - is the subscript number in the target array,, + is the subscript number in the target array, , to which array elements are to be copied; the default is 1 This function will copy all data types in to . @@ -489,7 +489,7 @@ $FILES$ Library is core $SEEALSO$ - AClone(),ADel(),AEval(),AFill(),AIns(),ASort() + AClone(), ADel(), AEval(), AFill(), AIns(), ASort() $END$ */ @@ -519,11 +519,11 @@ $EXAMPLES$ LOCAL aOne, aTwo aOne := { "Harbour", " is ", "POWER" } - aTwo := AClone( aOne ) // Result: aTwo is {"Harbour"," is ","POWER"} + aTwo := AClone( aOne ) // Result: aTwo is { "Harbour", " is ", "POWER" } aOne[ 1 ] := "The Harbour Compiler" // Result: // aOne is { "The Harbour Compiler", " is ", "POWER" } - // aTwo is { "Harbour"," is ","POWER" } + // aTwo is { "Harbour", " is ", "POWER" } $STATUS$ R $COMPLIANCE$ @@ -531,7 +531,7 @@ $FILES$ Library is core $SEEALSO$ - ACopy(),ADel(),AIns(),ASize() + ACopy(), ADel(), AIns(), ASize() $END$ */ @@ -597,6 +597,6 @@ $FILES$ Library is core $SEEALSO$ - AScan(),Eval(),SORT + AScan(), Eval(), SORT $END$ */ diff --git a/doc/en/binnum.txt b/doc/en/binnum.txt index 904f7f30c5..4226657b87 100644 --- a/doc/en/binnum.txt +++ b/doc/en/binnum.txt @@ -65,7 +65,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2U(),I2Bin(),L2Bin(),W2Bin(),Word(),U2Bin(),FRead() + Bin2I(), Bin2L(), Bin2U(), I2Bin(), L2Bin(), W2Bin(), Word(), U2Bin(), FRead() $END$ */ @@ -127,7 +127,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2L(),Bin2U(),Bin2W(),I2Bin(),L2Bin(),W2Bin(),Word(),U2Bin(),FRead() + Bin2L(), Bin2U(), Bin2W(), I2Bin(), L2Bin(), W2Bin(), Word(), U2Bin(), FRead() $END$ */ @@ -186,7 +186,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2U(),Bin2W(),I2Bin(),L2Bin(),W2Bin(),Word(),U2Bin(),FRead() + Bin2I(), Bin2U(), Bin2W(), I2Bin(), L2Bin(), W2Bin(), Word(), U2Bin(), FRead() $END$ */ @@ -245,7 +245,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2W(),I2Bin(),L2Bin(),W2Bin(),Word(),U2Bin(),FRead() + Bin2I(), Bin2L(), Bin2W(), I2Bin(), L2Bin(), W2Bin(), Word(), U2Bin(), FRead() $END$ */ @@ -313,7 +313,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2U(),Bin2W(),L2Bin(),W2Bin(),Word(),U2Bin(),FWrite() + Bin2I(), Bin2L(), Bin2U(), Bin2W(), L2Bin(), W2Bin(), Word(), U2Bin(), FWrite() $END$ */ @@ -356,7 +356,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2U(),Bin2W(),I2Bin(),L2Bin(),Word(),U2Bin(),FWrite() + Bin2I(), Bin2L(), Bin2U(), Bin2W(), I2Bin(), L2Bin(), Word(), U2Bin(), FWrite() $END$ */ @@ -399,7 +399,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2U(),Bin2W(),I2Bin(),W2Bin(),Word(),U2Bin(),FWrite() + Bin2I(), Bin2L(), Bin2U(), Bin2W(), I2Bin(), W2Bin(), Word(), U2Bin(), FWrite() $END$ */ @@ -442,7 +442,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2U(),Bin2W(),I2Bin(),L2Bin(),W2Bin(),Word(),FWrite() + Bin2I(), Bin2L(), Bin2U(), Bin2W(), I2Bin(), L2Bin(), W2Bin(), Word(), FWrite() $END$ */ diff --git a/doc/en/browse.txt b/doc/en/browse.txt index 9a2877b378..b1e2fdc93f 100644 --- a/doc/en/browse.txt +++ b/doc/en/browse.txt @@ -193,7 +193,7 @@ Header files are dbedit.ch, inkey.ch Library is core $SEEALSO$ - @...SAY,Browse(),TBrowse class,Transform() + @...SAY, Browse(), TBrowse class, Transform() $END$ */ @@ -270,7 +270,7 @@ $FILES$ Library is core $SEEALSO$ - dbEdit()*,TBrowse class + dbEdit()*, TBrowse class $END$ */ @@ -314,7 +314,7 @@ $FILES$ Library is core $SEEALSO$ - Browse(),TBColumn class,TBrowse class,TBrowseNew() + Browse(), TBColumn class, TBrowse class, TBrowseNew() $END$ */ @@ -358,6 +358,6 @@ $FILES$ Library is core $SEEALSO$ - dbSkip(),SKIP + dbSkip(), SKIP $END$ */ diff --git a/doc/en/command.txt b/doc/en/command.txt index 05a54c33d8..b9c28819fd 100644 --- a/doc/en/command.txt +++ b/doc/en/command.txt @@ -21,7 +21,7 @@ $ONELINER$ Define a Class for Object Oriented Programming $SYNTAX$ - [CREATE] CLASS [ [,] ] [STATIC] + [CREATE] CLASS [ [, ] ] [STATIC] $ARGUMENTS$ Name of the class to define. By tradition, Harbour classes start with "T" to avoid collisions with user- @@ -83,7 +83,7 @@ $PLATFORMS$ All $SEEALSO$ - HBClass(),Object Oriented Programming,VAR,METHOD + HBClass(), Object Oriented Programming, VAR, METHOD $END$ */ @@ -99,7 +99,7 @@ $ONELINER$ Alternate syntax for VAR: instance variable for the objects. $SYNTAX$ - VAR [,] [ AS ] [ INIT ] + VAR [, ] [ AS ] [ INIT ] [[EXPORTED | VISIBLE] | [PROTECTED] | [HIDDEN]] [READONLY | RO] $ARGUMENTS$ Name of the VAR @@ -164,7 +164,7 @@ $PLATFORMS$ All $SEEALSO$ - Object Oriented Programming,CLASS,METHOD,CLASS VAR,VAR + Object Oriented Programming, CLASS, METHOD, CLASS VAR, VAR $END$ */ @@ -180,7 +180,7 @@ $ONELINER$ Define a CLASS VAR variable for a class (NOT for an Object!) $SYNTAX$ - CLASS VAR [,] [ AS ] [ INIT ] + CLASS VAR [, ] [ AS ] [ INIT ] $ARGUMENTS$ Name of the VAR @@ -213,7 +213,7 @@ $PLATFORMS$ All $SEEALSO$ - Object Oriented Programming,CLASS,METHOD,VAR + Object Oriented Programming, CLASS, METHOD, VAR $END$ */ @@ -322,7 +322,7 @@ $PLATFORMS$ All $SEEALSO$ - HBClass(),Object Oriented Programming,VAR,CLASS + HBClass(), Object Oriented Programming, VAR, CLASS $END$ */ @@ -378,7 +378,7 @@ $PLATFORMS$ All $SEEALSO$ - METHOD,VAR,CLASS,Object Oriented Programming + METHOD, VAR, CLASS, Object Oriented Programming $END$ */ @@ -413,7 +413,7 @@ $PLATFORMS$ All $SEEALSO$ - Object Oriented Programming,ON ERROR,CLASS,METHOD,VAR + Object Oriented Programming, ON ERROR, CLASS, METHOD, VAR $END$ */ @@ -449,7 +449,7 @@ $PLATFORMS$ All $SEEALSO$ - Object Oriented Programming,ERROR HANDLER,CLASS,METHOD,VAR + Object Oriented Programming, ERROR HANDLER, CLASS, METHOD, VAR $END$ */ @@ -482,6 +482,6 @@ $PLATFORMS$ All $SEEALSO$ - Object Oriented Programming,CLASS,METHOD,VAR + Object Oriented Programming, CLASS, METHOD, VAR $END$ */ diff --git a/doc/en/datetime.txt b/doc/en/datetime.txt index c0417f760c..2b76cbd215 100644 --- a/doc/en/datetime.txt +++ b/doc/en/datetime.txt @@ -3,8 +3,8 @@ * www - http://harbour-project.org * * Copyright 2000 Luiz Rafael Culik - * Documentation for: CDoW(),CMonth(),Date(),CToD(),Day(),Days() - * DoW(),DToS(),DToC(),ElapTime(),Month(),Seconds(),Secs(),Time(),Year() + * Documentation for: CDoW(), CMonth(), Date(), CToD(), Day(), Days() + * DoW(), DToS(), DToC(), ElapTime(), Month(), Seconds(), Secs(), Time(), Year() * See COPYING.txt for licensing terms. * */ @@ -45,7 +45,7 @@ $FILES$ Library is core $SEEALSO$ - Day(),DoW(),Date(),CMonth() + Day(), DoW(), Date(), CMonth() $END$ */ @@ -67,7 +67,7 @@ $RETURNS$ The current month name $DESCRIPTION$ - This function returns the name of the month (January,February,etc.) + This function returns the name of the month (January, February, etc.) from a date expression passed to it. If a NULL date is passed to the function, the value of the function will be a NULL byte. @@ -85,7 +85,7 @@ $FILES$ Library is core $SEEALSO$ - CDoW(),Date(),Month(),Year(),DoW(),DToC() + CDoW(), Date(), Month(), Year(), DoW(), DToC() $END$ */ @@ -120,7 +120,7 @@ $FILES$ Library is core $SEEALSO$ - CToD(),DToS(),DToC(),Day(),Month(),CMonth() + CToD(), DToS(), DToC(), Day(), Month(), CMonth() $END$ */ @@ -160,7 +160,7 @@ $FILES$ Library is core $SEEALSO$ - SET DATE,Date(),DToS() + SET DATE, Date(), DToS() $END$ */ @@ -196,7 +196,7 @@ $FILES$ Library is core $SEEALSO$ - CToD(),DToS(),DToC(),Date(),Month(),CMonth() + CToD(), DToS(), DToC(), Date(), Month(), CMonth() $END$ */ @@ -232,7 +232,7 @@ $FILES$ Library is core $SEEALSO$ - Seconds(),Secs(),ElapTime() + Seconds(), Secs(), ElapTime() $END$ */ @@ -268,7 +268,7 @@ $FILES$ Library is core $SEEALSO$ - DToC(),CDoW(),Date(),DToS(),Day() + DToC(), CDoW(), Date(), DToS(), Day() $END$ */ @@ -306,7 +306,7 @@ $FILES$ Library is core $SEEALSO$ - SET DATE,Date(),DToS() + SET DATE, Date(), DToS() $END$ */ @@ -342,7 +342,7 @@ $FILES$ Library is core $SEEALSO$ - DToC(),Date(),DToS() + DToC(), Date(), DToS() $END$ */ @@ -386,7 +386,7 @@ $FILES$ Library is core $SEEALSO$ - Secs(),Seconds(),Time(),Day() + Secs(), Seconds(), Time(), Day() $END$ */ @@ -423,7 +423,7 @@ $FILES$ Library is core $SEEALSO$ - CDoW(),DoW(),Year(),CMonth() + CDoW(), DoW(), Year(), CMonth() $END$ */ @@ -497,7 +497,7 @@ $FILES$ Library is core $SEEALSO$ - Seconds(),ElapTime(),Time() + Seconds(), ElapTime(), Time() $END$ */ @@ -532,7 +532,7 @@ $FILES$ Library is core $SEEALSO$ - Date(),Seconds() + Date(), Seconds() $END$ */ @@ -571,6 +571,6 @@ $FILES$ Library is core $SEEALSO$ - Day(),Month() + Day(), Month() $END$ */ diff --git a/doc/en/dbstrux.txt b/doc/en/dbstrux.txt index 0ebbea8944..73e8d56d54 100644 --- a/doc/en/dbstrux.txt +++ b/doc/en/dbstrux.txt @@ -61,7 +61,7 @@ $FILES$ Library is rdd $SEEALSO$ - COPY STRUCTURE,COPY STRUCTURE EXTENDED,dbCreate(),dbStruct(),__dbCopyXStruct(),__dbCreate(),__dbStructFilter() + COPY STRUCTURE, COPY STRUCTURE EXTENDED, dbCreate(), dbStruct(), __dbCopyXStruct(), __dbCreate(), __dbStructFilter() $END$ */ @@ -111,7 +111,7 @@ $PLATFORMS$ All $SEEALSO$ - COPY STRUCTURE EXTENDED,dbCreate(),dbStruct(),__dbCopyStruct(),__dbCopyXStruct(),__dbCreate(),__dbStructFilter() + COPY STRUCTURE EXTENDED, dbCreate(), dbStruct(), __dbCopyStruct(), __dbCopyXStruct(), __dbCreate(), __dbStructFilter() $END$ */ @@ -189,7 +189,7 @@ $FILES$ Library is rdd $SEEALSO$ - COPY STRUCTURE,COPY STRUCTURE EXTENDED,CREATE,CREATE FROM,dbCreate(),dbStruct(),__dbCopyStruct(),__dbCreate() + COPY STRUCTURE, COPY STRUCTURE EXTENDED, CREATE, CREATE FROM, dbCreate(), dbStruct(), __dbCopyStruct(), __dbCreate() $END$ */ @@ -263,7 +263,7 @@ $PLATFORMS$ All $SEEALSO$ - COPY STRUCTURE,CREATE,CREATE FROM,dbCreate(),dbStruct(),__dbCopyStruct(),__dbCopyXStruct(),__dbCreate() + COPY STRUCTURE, CREATE, CREATE FROM, dbCreate(), dbStruct(), __dbCopyStruct(), __dbCopyXStruct(), __dbCreate() $END$ */ @@ -377,7 +377,7 @@ $FILES$ Library is rdd $SEEALSO$ - COPY STRUCTURE,COPY STRUCTURE EXTENDED,CREATE,CREATE FROM,dbCreate(),dbStruct(),__dbCopyStruct(),__dbCopyXStruct() + COPY STRUCTURE, COPY STRUCTURE EXTENDED, CREATE, CREATE FROM, dbCreate(), dbStruct(), __dbCopyStruct(), __dbCopyXStruct() $END$ */ @@ -452,7 +452,7 @@ $PLATFORMS$ All $SEEALSO$ - COPY STRUCTURE,COPY STRUCTURE EXTENDED,CREATE FROM,dbCreate(),dbStruct(),__dbCopyStruct(),__dbCopyXStruct(),__dbCreate() + COPY STRUCTURE, COPY STRUCTURE EXTENDED, CREATE FROM, dbCreate(), dbStruct(), __dbCopyStruct(), __dbCopyXStruct(), __dbCreate() $END$ */ @@ -520,7 +520,7 @@ $PLATFORMS$ All $SEEALSO$ - COPY STRUCTURE,COPY STRUCTURE EXTENDED,CREATE,dbCreate(),dbStruct(),__dbCopyStruct(),__dbCopyXStruct(),__dbCreate() + COPY STRUCTURE, COPY STRUCTURE EXTENDED, CREATE, dbCreate(), dbStruct(), __dbCopyStruct(), __dbCopyXStruct(), __dbCreate() $END$ */ @@ -615,7 +615,7 @@ Header file is dbstruct.ch Library is rdd $SEEALSO$ - dbCreate(),dbStruct(),__dbCopyStruct(),__dbStructFilter() + dbCreate(), dbStruct(), __dbCopyStruct(), __dbStructFilter() $END$ */ @@ -702,6 +702,6 @@ Header file is dbstruct.ch Library is rdd $SEEALSO$ - dbCreate(),dbStruct(),__dbCopyStruct(),__FLedit()* + dbCreate(), dbStruct(), __dbCopyStruct(), __FLedit()* $END$ */ diff --git a/doc/en/dir.txt b/doc/en/dir.txt index 70963c3a1e..abfffc28ea 100644 --- a/doc/en/dir.txt +++ b/doc/en/dir.txt @@ -62,7 +62,7 @@ $FILES$ Library is core $SEEALSO$ - ADir(),Directory(),SET DEFAULT,DIR + ADir(), Directory(), SET DEFAULT, DIR $END$ */ @@ -115,7 +115,7 @@ $PLATFORMS$ All(LFN) $SEEALSO$ - ADir(),Directory(),SET DEFAULT,__Dir()* + ADir(), Directory(), SET DEFAULT, __Dir()* $END$ */ @@ -197,6 +197,6 @@ $FILES$ Library is core $SEEALSO$ - Array(),Directory(),SET DEFAULT + Array(), Directory(), SET DEFAULT $END$ */ diff --git a/doc/en/diskspac.txt b/doc/en/diskspac.txt index 4806804929..f1cc9c7b82 100644 --- a/doc/en/diskspac.txt +++ b/doc/en/diskspac.txt @@ -45,7 +45,7 @@ $COMPLIANCE$ C $PLATFORMS$ - DOS,Win,OS2 + DOS, Win, OS2 $FILES$ Library is core Header is fileio.ch @@ -107,7 +107,7 @@ $COMPLIANCE$ H $PLATFORMS$ - DOS,Win,OS2,Unix + DOS, Win, OS2, Unix $FILES$ Library is core Header is fileio.ch diff --git a/doc/en/errsys.txt b/doc/en/errsys.txt index 9d7a1f0761..9839fb0b84 100644 --- a/doc/en/errsys.txt +++ b/doc/en/errsys.txt @@ -37,6 +37,6 @@ $FILES$ Library is core $SEEALSO$ - ErrorBlock(),Error class + ErrorBlock(), Error class $END$ */ diff --git a/doc/en/eval.txt b/doc/en/eval.txt index 623e6deaa1..94c04cd6c8 100644 --- a/doc/en/eval.txt +++ b/doc/en/eval.txt @@ -35,7 +35,7 @@ returns its evaluated value. If their are multiple expressions within the code block, the last expression will be value of this function. - If the code block requires parameters to be passed to it,they are + If the code block requires parameters to be passed to it, they are specified in the parameter list and following. Each parameter is separated by a comma within the expression list. $EXAMPLES$ @@ -57,6 +57,6 @@ $FILES$ Library is core $SEEALSO$ - AEval(),dbEval() + AEval(), dbEval() $END$ */ diff --git a/doc/en/file.txt b/doc/en/file.txt index 33e9373ccc..8a83c4797a 100644 --- a/doc/en/file.txt +++ b/doc/en/file.txt @@ -55,7 +55,7 @@ 64 FO_SHARED same as FO_DENYNONE - If there is an error in opening a file, a -1 will be returned by + If there is an error in opening a file, a F_ERROR will be returned by the function. Files handles may be in the range of 0 to 65535. The status of the SET DEFAULT TO and SET PATH TO commands has no effect on this function. Directory names and paths must be specified along @@ -76,7 +76,7 @@ Library is core Header is fileio.ch $SEEALSO$ - FCreate(),FError(),FClose() + FCreate(), FError(), FClose() $END$ */ @@ -104,9 +104,9 @@ default value of is 0 and is used to set the attribute byte for the file being created by this function. The return value will be a file handle that is associated - with the new file. This number will be between zero to 65,535, + with the new file. This number will be between zero to 65535, inclusive. If an error occurs, the return value of this function - will be -1. + will be F_ERROR. If the file already exists, the existing file will be truncated to a file length of 0 bytes. @@ -118,10 +118,10 @@ fileio.ch Meaning - 0 FC_NORMAL Normal/Default,Read/Write + 0 FC_NORMAL Normal/Default, Read/Write 1 FC_READONLY Read-only file attribute is set - 2 FC_HIDDEN Hidden,Excluded from normal DIR search - 4 FC_SYSTEM Create,Excluded from normal DIR search + 2 FC_HIDDEN Hidden, Excluded from normal DIR search + 4 FC_SYSTEM Create, Excluded from normal DIR search
$EXAMPLES$ #include "fileio.ch" @@ -136,7 +136,7 @@ Library is core Header is fileio.ch $SEEALSO$ - FClose(),FOpen(),FWrite(),FRead(),FError() + FClose(), FOpen(), FWrite(), FRead(), FError() $END$ */ @@ -201,7 +201,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2W(),FError(),FWrite() + Bin2I(), Bin2L(), Bin2W(), FError(), FWrite() $END$ */ @@ -302,7 +302,7 @@ 33 Lock Violation $DESCRIPTION$ - After every low-level file function,this function will return + After every low-level file function, this function will return a value that provides additional information on the status of the last low-level file functions's performance. If the FError() function returns a 0, no error was detected. Below is a table @@ -320,7 +320,7 @@ $FILES$ Library is core $SEEALSO$ - FClose(),FErase(),FOpen(),FWrite() + FClose(), FErase(), FOpen(), FWrite() $END$ */ @@ -358,7 +358,7 @@ $FILES$ Library is core $SEEALSO$ - FOpen(),FCreate(),FRead(),FWrite(),FError() + FOpen(), FCreate(), FRead(), FWrite(), FError() $END$ */ @@ -408,7 +408,7 @@ $FILES$ Library is core $SEEALSO$ - FError(),FRename() + FError(), FRename() $END$ */ @@ -449,7 +449,7 @@ If the file specified in exists or the file is open, the function will be unable to rename the file. If the function - is unable to complete its operation,it will return a value of -1. + is unable to complete its operation, it will return a value of -1. If it is able to rename the file, the return value for the function will be 0. A call to FError() function will give additional infor- mation about any error found. @@ -466,7 +466,7 @@ $FILES$ Library is core $SEEALSO$ - ERASE,FErase(),FError(),File(),RENAME + ERASE, FErase(), FError(), File(), RENAME $END$ */ @@ -525,16 +525,16 @@ // cB = a string buffer passed-by-reference to hold the result // nMaxLine = maximum number of bytes to read - FUNCTION FREADln( nH, cB, nMaxLine ) + FUNCTION FReadLn( nH, cB, nMaxLine ) LOCAL cLine, nSavePos, nEol, nNumRead cLine := Space( nMaxLine ) cB := "" nSavePos := FSeek( nH, 0, FS_RELATIVE ) nNumRead := FRead( nH, @cLine, nMaxLine ) - IF ( nEol := At( hb_eol(), SubStr( cLine, 1, nNumRead ) ) ) == 0 + IF ( nEol := hb_BAt( hb_eol(), hb_BSubStr( cLine, 1, nNumRead ) ) ) == 0 cB := cLine ELSE - cB := SubStr( cLine, 1, nEol - 1 ) + cB := hb_BSubStr( cLine, 1, nEol - 1 ) FSeek( nH, nSavePos + nEol + 1, FS_SET ) ENDIF RETURN nNumRead != 0 @@ -546,7 +546,7 @@ Library is core Header is fileio.ch $SEEALSO$ - FCreate(),FError(),FOpen(),FRead(),FReadStr(),FWrite() + FCreate(), FError(), FOpen(), FRead(), FReadStr(), FWrite() $END$ */ @@ -589,7 +589,7 @@ $FILES$ Library is core $SEEALSO$ - SET DEFAULT,SET PATH,Set() + SET DEFAULT, SET PATH, Set() $END$ */ @@ -646,7 +646,7 @@ $FILES$ Library is core $SEEALSO$ - Bin2I(),Bin2L(),Bin2W(),FError(),FRead(),FSeek() + Bin2I(), Bin2L(), Bin2W(), FError(), FRead(), FSeek() $END$ */ @@ -685,7 +685,7 @@ $FILES$ Library is core $SEEALSO$ - CurDir(),ERASE,File(),FErase(),FRename() + CurDir(), ERASE, File(), FErase(), FRename() $END$ */ @@ -705,7 +705,7 @@ $ARGUMENTS$ Name of file to remove $DESCRIPTION$ - This command removes a file from the disk. The use of a drive,directo- + This command removes a file from the disk. The use of a drive, directo- ry, and wild-card skeleton operator is allowed for the root of the filename. The file extension is required. The SET DEFAULT and SET PATH commands do not affect this command. @@ -739,8 +739,8 @@ $ARGUMENTS$ Name of file to remove $DESCRIPTION$ - This command removes a file from the disk. The use of a drive,directo- - ry,and wild-card skeleton operator is allowed for the root of the + This command removes a file from the disk. The use of a drive, directo- + ry, and wild-card skeleton operator is allowed for the root of the filename. The file extension is required. The SET DEFAULT and SET PATH commands do not affect this command. @@ -814,7 +814,7 @@ $FILES$ Library is core $SEEALSO$ - COPY FILE,SET DEFAULT,SET PATH,SET PRINTER,TYPE + COPY FILE, SET DEFAULT, SET PATH, SET PRINTER, TYPE $END$ */ @@ -881,7 +881,7 @@ $COMPLIANCE$ C $SEEALSO$ - COPY FILE,SET DEFAULT,SET PATH,SET PRINTER,__TypeFile() + COPY FILE, SET DEFAULT, SET PATH, SET PRINTER, __TypeFile() $END$ */ @@ -959,7 +959,7 @@ $COMPLIANCE$ C $SEEALSO$ - ERASE,RENAME,FRename(),FErase() + ERASE, RENAME, FRename(), FErase() $END$ */ @@ -985,7 +985,7 @@ If the file handle is missing, not numeric, or not open, then this function returns .T. and sets the value returned by FError() to -1 - (FS_ERROR) or a C-compiler dependent errno value (EBADF or EINVAL). + (F_ERROR) or a C-compiler dependent errno value (EBADF or EINVAL). $EXAMPLES$ nH := FOpen( "test.txt" ) ? FReadStr( nH, 80 ) diff --git a/doc/en/garbage.txt b/doc/en/garbage.txt index 0d69cebaaa..577614cd40 100644 --- a/doc/en/garbage.txt +++ b/doc/en/garbage.txt @@ -92,7 +92,7 @@ See hb_gcAll() for explanation of how to call this function from your harbour code. $SEEALSO$ - hb_gcAlloc(),hb_gcFree(),hb_gcCollectAll(),hb_gcItemRef(),hb_gcAll(),hb_idleState() + hb_gcAlloc(), hb_gcFree(), hb_gcCollectAll(), hb_gcItemRef(), hb_gcAll(), hb_idleState() $END$ */ @@ -204,7 +204,7 @@ $PLATFORMS$ All $SEEALSO$ - hb_gcAlloc(),hb_gcFree() + hb_gcAlloc(), hb_gcFree() $END$ */ @@ -246,7 +246,7 @@ $PLATFORMS$ All $SEEALSO$ - hb_gcAlloc(),hb_gcFree() + hb_gcAlloc(), hb_gcFree() $END$ */ diff --git a/doc/en/hbflock.txt b/doc/en/hbflock.txt index 7b208062b5..1799dc00ff 100644 --- a/doc/en/hbflock.txt +++ b/doc/en/hbflock.txt @@ -54,7 +54,7 @@ $FILES$ Library is core $SEEALSO$ - hb_FUnlock(),FOpen(),FCreate(),FError(),FClose() + hb_FUnlock(), FOpen(), FCreate(), FError(), FClose() $END$ */ @@ -103,6 +103,6 @@ $FILES$ Library is core $SEEALSO$ - hb_FLock(),FOpen(),FCreate(),FError(),FClose() + hb_FLock(), FOpen(), FCreate(), FError(), FClose() $END$ */ diff --git a/doc/en/hvm.txt b/doc/en/hvm.txt index 1e8cc0d81e..e50344bf52 100644 --- a/doc/en/hvm.txt +++ b/doc/en/hvm.txt @@ -3,7 +3,7 @@ * www - http://harbour-project.org * * Copyright 1999 Jose Lanin - * Documentation for: ProcLine(),ProcFile(),ProcName() + * Documentation for: ProcLine(), ProcFile(), ProcName() * * Copyright 1999 Eddie Ruina * Documentation for: __dbgVMVarLGet() @@ -55,7 +55,7 @@ $FILES$ Library is core $SEEALSO$ - ProcLine(),ProcFile() + ProcLine(), ProcFile() $END$ */ @@ -93,7 +93,7 @@ $FILES$ Library is core $SEEALSO$ - ProcName(),ProcFile() + ProcName(), ProcFile() $END$ */ @@ -130,7 +130,7 @@ $FILES$ Library is core $SEEALSO$ - ProcName(),ProcLine() + ProcName(), ProcLine() $END$ */ @@ -306,7 +306,7 @@ $FILES$ Library is core $SEEALSO$ - __XHelp(),SET KEY,SetKey() + __XHelp(), SET KEY, SetKey() $END$ */ diff --git a/doc/en/idle.txt b/doc/en/idle.txt index 1b86592eb1..905b227765 100644 --- a/doc/en/idle.txt +++ b/doc/en/idle.txt @@ -28,7 +28,7 @@ For signaling the idle state from C code see the hb_idleState() API function. $SEEALSO$ - hb_idleAdd(),hb_idleDel() + hb_idleAdd(), hb_idleDel() $END$ */ @@ -65,7 +65,7 @@ $PLATFORMS$ All $SEEALSO$ - hb_idleDel(),hb_idleState() + hb_idleDel(), hb_idleState() $END$ */ @@ -106,7 +106,7 @@ $PLATFORMS$ All $SEEALSO$ - hb_idleAdd(),hb_idleState() + hb_idleAdd(), hb_idleState() $END$ */ @@ -151,7 +151,7 @@ $PLATFORMS$ All $SEEALSO$ - hb_idleAdd(),hb_idleDel() + hb_idleAdd(), hb_idleDel() $END$ */ @@ -191,6 +191,6 @@ $PLATFORMS$ All $SEEALSO$ - hb_idleAdd(),hb_idleDel(),hb_idleState() + hb_idleAdd(), hb_idleDel(), hb_idleState() $END$ */ diff --git a/doc/en/input.txt b/doc/en/input.txt index 748c18ba99..6db11edc9e 100644 --- a/doc/en/input.txt +++ b/doc/en/input.txt @@ -149,7 +149,7 @@ $FILES$ Library is core $SEEALSO$ - CLEAR TYPEAHEAD,KEYBOARD + CLEAR TYPEAHEAD, KEYBOARD $END$ */ @@ -188,7 +188,7 @@ $FILES$ Library is core $SEEALSO$ - KEYBOARD,CLEAR TYPEAHEAD,Inkey() + KEYBOARD, CLEAR TYPEAHEAD, Inkey() $END$ */ @@ -240,7 +240,7 @@ $FILES$ Library is core $SEEALSO$ - Inkey(),LastKey() + Inkey(), LastKey() $END$ */ @@ -285,7 +285,7 @@ $FILES$ Library is core $SEEALSO$ - Inkey(),LastKey() + Inkey(), LastKey() $END$ */ @@ -310,7 +310,7 @@ The number of characters that can be stuffed into the keyboard buffer is controlled by the SET TYPEAHEAD command and may range - from 0 to 32,622, with each character being in the ASCII + from 0 to 32622, with each character being in the ASCII range of 0 to 255. None of the extended keys may be stuffed into the keyboard buffer. @@ -329,7 +329,7 @@ $COMPLIANCE$ KEYBOARD is compliant with CA-Cl*pper 5.3 $SEEALSO$ - CLEAR TYPEAHEAD,__Keyboard() + CLEAR TYPEAHEAD, __Keyboard() $END$ */ @@ -384,7 +384,7 @@ $FILES$ Library is core $SEEALSO$ - @...GET,Inkey(),LastKey(),READ,ReadExit(),Updated() + @...GET, Inkey(), LastKey(), READ, ReadExit(), Updated() $END$ */ diff --git a/doc/en/lang.txt b/doc/en/lang.txt index 9d9b000e16..f26b8e05fd 100644 --- a/doc/en/lang.txt +++ b/doc/en/lang.txt @@ -6,7 +6,7 @@ * Documentation for: hb_langName(), hb_langSelect() * * Copyright 2004 Chen Kedem - * Documentation for: hb_langErrMsg(),hb_langMessage(),hb_cdpSelect(), + * Documentation for: hb_langErrMsg(), hb_langMessage(), hb_cdpSelect(), * hb_Translate() * * See COPYING.txt for licensing terms. @@ -54,7 +54,7 @@ $FILES$ Header is error.ch $SEEALSO$ - hb_langSelect(),NationMsg() + hb_langSelect(), NationMsg() $END$ */ @@ -103,7 +103,7 @@ $FILES$ Header is hblang.ch $SEEALSO$ - hb_langSelect(),NationMsg(),REQUEST + hb_langSelect(), NationMsg(), REQUEST $END$ */ @@ -156,7 +156,7 @@ All $FILES$ $SEEALSO$ - hb_langSelect(),NationMsg() + hb_langSelect(), NationMsg() $END$ */ @@ -252,7 +252,7 @@ All $FILES$ $SEEALSO$ - hb_langName(),hb_cdpSelect(),NationMsg(),REQUEST + hb_langName(), hb_cdpSelect(), NationMsg(), REQUEST $END$ */ @@ -363,7 +363,7 @@ All $FILES$ $SEEALSO$ - hb_langName(),hb_langSelect(),hb_Translate(),NationMsg(),REQUEST + hb_langName(), hb_langSelect(), hb_Translate(), NationMsg(), REQUEST $END$ */ @@ -421,6 +421,6 @@ All $FILES$ $SEEALSO$ - hb_langSelect(),hb_cdpSelect(),NationMsg(),REQUEST + hb_langSelect(), hb_cdpSelect(), NationMsg(), REQUEST $END$ */ diff --git a/doc/en/math.txt b/doc/en/math.txt index 365f48fafe..c5f0d20918 100644 --- a/doc/en/math.txt +++ b/doc/en/math.txt @@ -3,8 +3,8 @@ * www - http://harbour-project.org * * Copyright 2000 Luiz Rafael Culik - * Documentation for: Abs(),Exp(),Log(),Int(),Max() - * Min(),Sqrt(),Round() + * Documentation for: Abs(), Exp(), Log(), Int(), Max() + * Min(), Sqrt(), Round() * Copyright 2001 IntTec GmbH, Neunlindenstr 32, 79106 Freiburg, Germany * Author: Martin Vogel * Documentation for API @@ -128,7 +128,7 @@ $FILES$ Library is core $SEEALSO$ - Round(),StrZero() + Round(), StrZero() $END$ */ @@ -340,7 +340,7 @@ $ONELINER$ Rounds off a numeric expression. $SYNTAX$ - Round( , ) --> + Round( , ) --> $ARGUMENTS$ Any numeric value. @@ -365,7 +365,7 @@ $FILES$ Library is core $SEEALSO$ - Int(),Str(),Val(),SET FIXED + Int(), Str(), Val(), SET FIXED $END$ */ diff --git a/doc/en/memo.txt b/doc/en/memo.txt index 244610027a..054c636be0 100644 --- a/doc/en/memo.txt +++ b/doc/en/memo.txt @@ -51,7 +51,7 @@ $FILES$ Library is core $SEEALSO$ - HardCR(),StrTran() + HardCR(), StrTran() $END$ */ @@ -84,7 +84,7 @@ $FILES$ Library is core $SEEALSO$ - MemoTran(),StrTran() + MemoTran(), StrTran() $END$ */ @@ -150,7 +150,7 @@ $FILES$ Library is core $SEEALSO$ - MemoEdit(),MemoWrit(),REPLACE,hb_MemoRead() + MemoEdit(), MemoWrit(), REPLACE, hb_MemoRead() $END$ */ @@ -220,7 +220,7 @@ $FILES$ Library is core $SEEALSO$ - MemoEdit(),hb_MemoWrit(),REPLACE,MemoRead() + MemoEdit(), hb_MemoWrit(), REPLACE, MemoRead() $END$ */ @@ -281,7 +281,7 @@ $FILES$ Library is core $SEEALSO$ - MemoEdit(),MemoRead(),hb_MemoWrit() + MemoEdit(), MemoRead(), hb_MemoWrit() $END$ */ @@ -355,6 +355,6 @@ $FILES$ Library is core $SEEALSO$ - MemoEdit(),MemoRead(),hb_MemoWrit() + MemoEdit(), MemoRead(), hb_MemoWrit() $END$ */ diff --git a/doc/en/memvar.txt b/doc/en/memvar.txt index d91e5ebbdb..e45ada3020 100644 --- a/doc/en/memvar.txt +++ b/doc/en/memvar.txt @@ -11,7 +11,7 @@ $ONELINER$ Declares a list of database field names. $SYNTAX$ - FIELD [, [in ] + FIELD [, [IN ] $ARGUMENTS$ A valid field name @@ -46,7 +46,7 @@ $FILES$ None. $SEEALSO$ - MEMVAR,PRIVATE,PUBLIC,STATIC + MEMVAR, PRIVATE, PUBLIC, STATIC $END$ */ @@ -70,8 +70,8 @@ $DESCRIPTION$ This command created a LOCAL memory variable or array. The name of either is specified in . If more then one variable is being - initialized with the LOCAL command,separate each entry with a comma. - If a variable or an array is to be assingned a start-up value,that + initialized with the LOCAL command, separate each entry with a comma. + If a variable or an array is to be assingned a start-up value, that expression may be specified in and folling. Is Strong type compile mode is used, the Compiler will check if the value recived matchs the type specified in . @@ -110,7 +110,7 @@ $FILES$ None $SEEALSO$ - FIELD,PRIVATE,PUBLIC,STATIC,MEMVAR + FIELD, PRIVATE, PUBLIC, STATIC, MEMVAR $END$ */ @@ -138,7 +138,7 @@ expansions are not affected by this command. The MEMVAR declaration must apear before any executable commands;it - is similat to the LOCAL,STATIC,FIELD,PARAMETERS,FUNCTION, and + is similat to the LOCAL, STATIC, FIELD, PARAMETERS, FUNCTION, and PROCEDURE commands statements. $EXAMPLES$ MEMVAR y AS NUMERIC @@ -165,6 +165,6 @@ $FILES$ None. $SEEALSO$ - LOCAL,STATIC,FIELD,PRIVATE,PUBLIC + LOCAL, STATIC, FIELD, PRIVATE, PUBLIC $END$ */ diff --git a/doc/en/menu.txt b/doc/en/menu.txt index 13645f0fee..ec4e734cd1 100644 --- a/doc/en/menu.txt +++ b/doc/en/menu.txt @@ -153,7 +153,7 @@ $FILES$ Library is core $SEEALSO$ - AChoice(),MENU TO,SET MESSAGE,SET INTENSITY,SET WRAP,__MenuTo() + AChoice(), MENU TO, SET MESSAGE, SET INTENSITY, SET WRAP, __MenuTo() $END$ */ @@ -214,7 +214,7 @@ $COMPLIANCE$ C(menu) $SEEALSO$ - AChoice(),MENU TO,SET MESSAGE,SET INTENSITY,SET WRAP,__MenuTo() + AChoice(), MENU TO, SET MESSAGE, SET INTENSITY, SET WRAP, __MenuTo() $END$ */ @@ -305,7 +305,7 @@ $FILES$ Library is core $SEEALSO$ - @...PROMPT,AChoice(),SET MESSAGE,SET INTENSITY,SET WRAP,__AtPrompt() + @...PROMPT, AChoice(), SET MESSAGE, SET INTENSITY, SET WRAP, __AtPrompt() $END$ */ @@ -389,6 +389,6 @@ $COMPLIANCE$ C $SEEALSO$ - @...PROMPT,AChoice(),SET MESSAGE,SET INTENSITY,SET WRAP,__AtPrompt() + @...PROMPT, AChoice(), SET MESSAGE, SET INTENSITY, SET WRAP, __AtPrompt() $END$ */ diff --git a/doc/en/misc.txt b/doc/en/misc.txt index 479956f6b3..c9e0eab58f 100644 --- a/doc/en/misc.txt +++ b/doc/en/misc.txt @@ -292,7 +292,7 @@ $FILES$ Library is core $SEEALSO$ - Chr(),SET BELL + Chr(), SET BELL $END$ */ diff --git a/doc/en/nation.txt b/doc/en/nation.txt index 7510097cb3..89ffe4fc1c 100644 --- a/doc/en/nation.txt +++ b/doc/en/nation.txt @@ -44,7 +44,7 @@ $FILES$ Library is core $SEEALSO$ - IsNegative(),NationMsg() + IsNegative(), NationMsg() $END$ */ @@ -81,7 +81,7 @@ $FILES$ Library is core $SEEALSO$ - IsAffirm(),NationMsg() + IsAffirm(), NationMsg() $END$ */ @@ -119,6 +119,6 @@ $FILES$ Library is core $SEEALSO$ - IsAffirm(),IsNegative() + IsAffirm(), IsNegative() $END$ */ diff --git a/doc/en/objfunc.txt b/doc/en/objfunc.txt index 0547569848..f369c57537 100644 --- a/doc/en/objfunc.txt +++ b/doc/en/objfunc.txt @@ -49,7 +49,7 @@ $FILES$ Library is core $SEEALSO$ - __objGetMethodList(),__objGetMsgList(),__objHasMethod() + __objGetMethodList(), __objGetMsgList(), __objHasMethod() $END$ */ @@ -88,7 +88,7 @@ $FILES$ Library is core $SEEALSO$ - __objGetMethodList(),__objGetMsgList(),__objHasData() + __objGetMethodList(), __objGetMsgList(), __objHasData() $END$ */ @@ -165,7 +165,7 @@ Header file is hboo.ch Library is core $SEEALSO$ - __objGetMethodList(),__objGetValueList(),__objHasData(),__objHasMethod() + __objGetMethodList(), __objGetValueList(), __objHasData(), __objHasMethod() $END$ */ @@ -206,7 +206,7 @@ $FILES$ Library is core $SEEALSO$ - __objGetMsgList(),__objGetValueList(),__objHasData(),__objHasMethod() + __objGetMsgList(), __objGetValueList(), __objHasData(), __objHasMethod() $END$ */ @@ -254,7 +254,7 @@ Header file is hboo.ch Library is core $SEEALSO$ - __objGetMethodList(),__objGetMsgList(),__objHasData(),__objHasMethod(),__objSetValueList() + __objGetMethodList(), __objGetMsgList(), __objHasData(), __objHasMethod(), __objSetValueList() $END$ */ @@ -367,7 +367,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddInline(),__objAddData(),__objDelMethod(),__objGetMethodList(),__objGetMsgList(),__objHasMethod(),__objModMethod() + __objAddInline(), __objAddData(), __objDelMethod(), __objGetMethodList(), __objGetMsgList(), __objHasMethod(), __objModMethod() $END$ */ @@ -411,7 +411,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddData(),__objAddMethod(),__objDelInline(),__objGetMethodList(),__objGetMsgList(),__objHasMethod() ,__objModInline() + __objAddData(), __objAddMethod(), __objDelInline(), __objGetMethodList(), __objGetMsgList(), __objHasMethod() , __objModInline() $END$ */ @@ -455,7 +455,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddInline(),__objAddMethod(),__objDelData(),__objGetMsgList(),__objGetValueList(),__objHasData(),__objSetValueList() + __objAddInline(), __objAddMethod(), __objDelData(), __objGetMsgList(), __objGetValueList(), __objHasData(), __objSetValueList() $END$ */ @@ -526,7 +526,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddMethod(),__objDelMethod(),__objGetMethodList(),__objGetMsgList(),__objHasMethod() + __objAddMethod(), __objDelMethod(), __objGetMethodList(), __objGetMsgList(), __objHasMethod() $END$ */ @@ -576,7 +576,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddInline(),__objDelInline(),__objGetMethodList(),__objGetMsgList(),__objHasMethod() + __objAddInline(), __objDelInline(), __objGetMethodList(), __objGetMsgList(), __objHasMethod() $END$ */ @@ -632,7 +632,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddInline(),__objAddMethod(),__objGetMethodList(),__objGetMsgList(),__objHasMethod(),__objModInline(),__objModMethod() + __objAddInline(), __objAddMethod(), __objGetMethodList(), __objGetMsgList(), __objHasMethod(), __objModInline(), __objModMethod() $END$ */ @@ -686,7 +686,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddInline(),__objAddMethod(),__objGetMethodList(),__objGetMsgList(),__objHasMethod(),__objModInline(),__objModMethod() + __objAddInline(), __objAddMethod(), __objGetMethodList(), __objGetMsgList(), __objHasMethod(), __objModInline(), __objModMethod() $END$ */ @@ -729,7 +729,7 @@ $FILES$ Library is core $SEEALSO$ - __objAddData(),__objGetMsgList(),__objGetValueList(),__objHasData(),__objSetValueList() + __objAddData(), __objGetMsgList(), __objGetValueList(), __objHasData(), __objSetValueList() $END$ */ @@ -792,6 +792,6 @@ $FILES$ Library is core $SEEALSO$ - __objHasData(),__objHasMethod() + __objHasData(), __objHasMethod() $END$ */ diff --git a/doc/en/rdddb.txt b/doc/en/rdddb.txt index 6f32c72888..10aec9d0f7 100644 --- a/doc/en/rdddb.txt +++ b/doc/en/rdddb.txt @@ -128,7 +128,7 @@ This function add a new record to the end of the database in the selected or aliased work area. All fields in that database will be given empty data values - character fields - will be filled with blank spaces,date fields with CToD('//'), + will be filled with blank spaces, date fields with CToD('//'), numeric fields with 0, logical fields with .F., and memo fields with NULL bytes. The header of the database is not updated until the record is flushed from the buffer and the contents are @@ -160,7 +160,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbUnlock(),dbUnlockAll() + dbUnlock(), dbUnlockAll() $END$ */ @@ -197,7 +197,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbSetFilter(),dbFilter() + dbSetFilter(), dbFilter() $END$ */ @@ -236,7 +236,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbUseArea(),dbCloseArea() + dbUseArea(), dbCloseArea() $END$ */ @@ -270,7 +270,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbUseArea(),dbCloseAll() + dbUseArea(), dbCloseAll() $END$ */ @@ -288,7 +288,7 @@ $SYNTAX$ dbCommit() $DESCRIPTION$ - This function updates all of the information for a give,selected, + This function updates all of the information for a give, selected, or active workarea. This operation includes all database and index buffers for that work area only. This function does not update all open work areas. @@ -316,7 +316,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbCloseAll(),dbCommitAll(),dbUnlock() + dbCloseAll(), dbCommitAll(), dbUnlock() $END$ */ @@ -335,7 +335,7 @@ dbCommit() $DESCRIPTION$ This function performs a hard-disk write for all work areas. - Before the disk write is performed,all buffers are flushed. + Before the disk write is performed, all buffers are flushed. open work areas. $EXAMPLES$ PROCEDURE Main() @@ -366,7 +366,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbCloseAll(),dbCommit(),dbUnlock() + dbCloseAll(), dbCommit(), dbUnlock() $END$ */ @@ -421,7 +421,7 @@ The dbCreate( ) function does not use the decimal field to calculate the length of a character held longer than 256. Values - up to the maximum length of a character field (which is 65,519 bytes) + up to the maximum length of a character field (which is 65519 bytes) are stored directly in the database in the length attribute if that database was created via this function. However, a file containing fields longer than 256 bytes is not compatible with any interpreter. @@ -461,7 +461,7 @@ Library is rdd Header is dbstruct.ch $SEEALSO$ - AFields()*,dbStruct() + AFields()*, dbStruct() $END$ */ @@ -541,7 +541,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbRelation(),dbRSelect() + dbRelation(), dbRSelect() $END$ */ @@ -578,7 +578,7 @@ $FILES$ Library is rdd $SEEALSO$ - Bof(),Eof(),dbSkip(),dbSeek(),dbGoTop() + Bof(), Eof(), dbSkip(), dbSeek(), dbGoTop() $END$ */ @@ -605,7 +605,7 @@ The parameter may be something other than a record number. In some data formats, for example, the value of - is a unique primary key while in other formats, could + is a unique primary key while in other formats, could be an array offset if the data set was an array. Issuing a dbGoto(RecNo()) call in a network enviroment will refresh @@ -628,7 +628,7 @@ $FILES$ Library is rdd $SEEALSO$ - Bof(),Eof(),dbGoTop(),dbGoBottom(),dbSeek(),dbSkip() + Bof(), Eof(), dbGoTop(), dbGoBottom(), dbSeek(), dbSkip() $END$ */ @@ -665,7 +665,7 @@ $FILES$ Library is rdd $SEEALSO$ - Bof(),Eof(),dbSkip(),dbSeek(),dbGoBottom() + Bof(), Eof(), dbSkip(), dbSeek(), dbGoBottom() $END$ */ @@ -750,7 +750,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbUnlock(),dbUnlockAll(),FLock(),RLock() + dbUnlock(), dbUnlockAll(), FLock(), RLock() $END$ */ @@ -796,7 +796,7 @@ $FILES$ Library is rdd $SEEALSO$ - RLock(),dbRLock(),dbRUnlock() + RLock(), dbRLock(), dbRUnlock() $END$ */ @@ -837,7 +837,7 @@ $FILES$ Library is rdd $SEEALSO$ - RLock(),dbRLock(),dbRLockList() + RLock(), dbRLock(), dbRLockList() $END$ */ @@ -880,7 +880,7 @@ false if there is an item in the index key with a greater value than the key expression ; at this point the record pointer will position itself on that record. However, if there is no greater key - in the index,Eof() will return a logical true (.T.) value. If + in the index, Eof() will return a logical true (.T.) value. If is not passed, the function will look to the internal status of SOFTSEEK before performing the operation. The default of is a logical false (.F.) @@ -911,7 +911,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbGoBottom(),dbGoTop(),dbSkip(),Eof(),Bof(),Found() + dbGoBottom(), dbGoTop(), dbSkip(), Eof(), Bof(), Found() $END$ */ @@ -933,7 +933,7 @@ $DESCRIPTION$ This function moves the Harbour internal primary focus to the work area designated by . If is numeric, then it will - select the numeric work area; if is character,then it will + select the numeric work area; if is character, then it will select the work area with the alias name. dbSelectArea(0) will select the next avaliable and unused work area. @@ -960,7 +960,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbUseArea(),Select() + dbUseArea(), Select() $END$ */ @@ -986,7 +986,7 @@ selected work area. The default will be "DBFNTX". If specified, contains the name of the database driver that should be used to activate and manage the work area. If the specified driver is - not avaliable,this function will have no effect. + not avaliable, this function will have no effect. $EXAMPLES$ dbSetDriver( "ADS" ) $STATUS$ @@ -1038,7 +1038,7 @@ $FILES$ Library is rdd $SEEALSO$ - Bof(),dbGoBottom(),dbGoTop(),dbSeek(),Eof() + Bof(), dbGoBottom(), dbGoTop(), dbSeek(), Eof() $END$ */ @@ -1063,9 +1063,9 @@ This function masks a database so that only those records that meet the condition prescribed by the expression in the code block and literally expressed as are visible. - If is not passed to this function,then the dbFilter() + If is not passed to this function, then the dbFilter() function will return an empty string showing no filter in that work - area which in fact,would be not correct. + area which in fact, would be not correct. $EXAMPLES$ PROCEDURE Main() USE tests NEW @@ -1078,7 +1078,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbFilter(),dbClearFilter() + dbFilter(), dbClearFilter() $END$ */ @@ -1099,7 +1099,7 @@ dbStruct() returns an array pointer to database structure $DESCRIPTION$ This function returns a multidimensional array. This array has array - pointers to other arrays,each of which contains the characteristic + pointers to other arrays, each of which contains the characteristic of a field in the active work area. The lenght of this array is based in the number of fields in that particular work area. In other words, Len(dbStruct()) is equal to the value obtained from FCount(). @@ -1162,7 +1162,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbUnlockAll(),FLock(),RLock() + dbUnlockAll(), FLock(), RLock() $END$ */ @@ -1202,7 +1202,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbUnlock(),FLock(),RLock() + dbUnlock(), FLock(), RLock() $END$ */ @@ -1264,6 +1264,6 @@ $FILES$ Library is rdd $SEEALSO$ - dbCloseArea(),dbSetDriver(),Select(),Set() + dbCloseArea(), dbSetDriver(), Select(), Set() $END$ */ diff --git a/doc/en/rddmisc.txt b/doc/en/rddmisc.txt index 64b366ab78..1bb8531b7e 100644 --- a/doc/en/rddmisc.txt +++ b/doc/en/rddmisc.txt @@ -172,7 +172,7 @@ $FILES$ Library is rdd $SEEALSO$ - Eof(),Found(),LastRec() + Eof(), Found(), LastRec() $END$ */ @@ -207,7 +207,7 @@ $COMPLIANCE$ C $SEEALSO$ - DELETE,PACK,USE + DELETE, PACK, USE $END$ */ @@ -292,7 +292,7 @@ $FILES$ Library is rdd $SEEALSO$ - Bof(),Found(),LastRec() + Bof(), Found(), LastRec() $END$ */ @@ -328,7 +328,7 @@ $FILES$ Library is rdd $SEEALSO$ - FieldName(),Type() + FieldName(), Type() $END$ */ @@ -409,7 +409,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbStruct(),FCount(),Len(),ValType() + dbStruct(), FCount(), Len(), ValType() $END$ */ @@ -448,7 +448,7 @@ $FILES$ Library is rdd $SEEALSO$ - FieldGet(),FieldPut() + FieldGet(), FieldPut() $END$ */ @@ -603,7 +603,7 @@ $FILES$ Library is rdd $SEEALSO$ - DiskSpace(),LastRec(),RecSize() + DiskSpace(), LastRec(), RecSize() $END$ */ @@ -680,7 +680,7 @@ $FILES$ Library is rdd $SEEALSO$ - FieldName(),LastRec(),RecSize() + FieldName(), LastRec(), RecSize() $END$ */ @@ -729,7 +729,7 @@ $FILES$ Library is rdd $SEEALSO$ - FLock(),RLock() + FLock(), RLock() $END$ */ @@ -769,7 +769,7 @@ $FILES$ Library is rdd $SEEALSO$ - Eof(),LastRec(),RecNo(),dbGoBottom() + Eof(), LastRec(), RecNo(), dbGoBottom() $END$ */ @@ -809,7 +809,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbGoto(),dbGoTop(),dbGoBottom(),LastRec(),Eof(),Bof() + dbGoto(), dbGoTop(), dbGoBottom(), LastRec(), Eof(), Bof() $END$ */ @@ -848,7 +848,7 @@ $FILES$ Library is rdd $SEEALSO$ - DiskSpace(),FieldName(),Header(),LastRec() + DiskSpace(), FieldName(), Header(), LastRec() $END$ */ diff --git a/doc/en/rddord.txt b/doc/en/rddord.txt index 35c4f18dcd..6f32439e52 100644 --- a/doc/en/rddord.txt +++ b/doc/en/rddord.txt @@ -50,7 +50,7 @@ $FILES$ Library is rdd $SEEALSO$ - IndexExt(),ordBagName() + IndexExt(), ordBagName() $END$ */ @@ -98,7 +98,7 @@ $FILES$ Library is rdd $SEEALSO$ - IndexOrd(),ordBagExt(),Alias() + IndexOrd(), ordBagExt(), Alias() $END$ */ @@ -220,7 +220,7 @@ $FILES$ Library is rdd $SEEALSO$ - dbCreateIndex(),ordName(),ordSetFocus() + dbCreateIndex(), ordName(), ordSetFocus() $END$ */ @@ -284,7 +284,7 @@ $SYNTAX$ ordFor( [, ] ) --> cForExp $ARGUMENTS$ - It the name of the target order,or the numeric position + It the name of the target order, or the numeric position of the order. Name of the order bag. @@ -294,7 +294,7 @@ $DESCRIPTION$ This function returns a character string that is the expression for the FOR condition for the specified order. The order may be specified - if is the name of the order.However, may be an + if is the name of the order.However, may be an numeric which represent the position in the order list of the desired Order. $EXAMPLES$ @@ -315,7 +315,7 @@ $FILES$ Library is rdd $SEEALSO$ - ordKey(),ordCreate(),ordName(),ordNumber() + ordKey(), ordCreate(), ordName(), ordNumber() $END$ */ @@ -333,7 +333,7 @@ $SYNTAX$ ordKey( | [, ] ) --> cExpKey $ARGUMENTS$ - It the name of the target order,or the numeric position + It the name of the target order, or the numeric position of the order. Name of the order bag. @@ -362,7 +362,7 @@ $FILES$ Library is rdd $SEEALSO$ - ordFor(),ordName(),ordNumber(),ordKey() + ordFor(), ordName(), ordNumber(), ordKey() $END$ */ @@ -401,7 +401,7 @@ $FILES$ Library is rdd $SEEALSO$ - IndexKey(),IndexOrd() + IndexKey(), IndexOrd() $END$ */ @@ -468,7 +468,7 @@ The IndexOrd() function returns the numeric position of the current controlling index in the selected or designated work area. A returned value of 0 indicated that no active index is controlling - the database,which therefore is in the natural order. + the database, which therefore is in the natural order. $EXAMPLES$ USE tests NEW INDEX test1 IF IndexOrd() > 0 diff --git a/doc/en/sayget.txt b/doc/en/sayget.txt index 41f7ee058c..2ea742885d 100644 --- a/doc/en/sayget.txt +++ b/doc/en/sayget.txt @@ -11,9 +11,9 @@ $ONELINER$ Creates a GET object and displays it to the screen $SYNTAX$ - @ , [SAY [PICTURE ] COLOR ] + @ , [SAY [PICTURE ] COLOR ] GET [PICTURE ] [WHEN ] [COLOR ] - [VALID / RANGE ,] + [VALID / RANGE , ] $ARGUMENTS$ The row coordinate. @@ -45,7 +45,7 @@ at row, column coordinate , . If the SAY clause is used will be displayed starting at - ,, with the field variable displayed at Row(), + , , with the field variable displayed at Row(), Col()+ 1. If , the picture template for the SAY expression , is used, all formatting rules contained will apply See the TRANSFORM I function for further information. @@ -54,11 +54,11 @@ used for the GET object and all formatting rules will apply. See the table below for GET formatting rules. - If the WHEN clause is specified,when evaluates to a logical + If the WHEN clause is specified, when evaluates to a logical true (.T.) condition, the GET object will he activated otherwise the GET object will be skipped and no information will be obtained via the screen. The name of a user-defined function returning a logical - true (.T.) or false ( F.) or a code block may be ,specified in + true (.T.) or false ( F.) or a code block may be, specified in This clause not activated until a READ command or ReadModal() function call is issued. @@ -74,7 +74,7 @@ If the RANGE clause is specified instead of the VALID clause, the two inclusive range values for must be specified in - and . Id is a date data type, and must + and . Id is a date data type, and must also be date data types; if is a numeric data type and must also be numeric data types. If a value fails the RANGE test ,a message of OUT OF RANGE will appear in the SCOREBOARD @@ -143,7 +143,7 @@ $PLATFORMS$ All $SEEALSO$ - @...SAY,READ,Transform() + @...SAY, READ, Transform() $END$ */ @@ -159,7 +159,7 @@ $ONELINER$ Displays data at specified coordinates of the current device. $SYNTAX$ - @ , SAY [ PICTURE ] [COLOR ] + @ , SAY [ PICTURE ] [COLOR ] $ARGUMENTS$ Row coordinate @@ -195,6 +195,6 @@ $FILES$ $SEEALSO$ - @...GET,SET DEVICE,Transform() + @...GET, SET DEVICE, Transform() $END$ */ diff --git a/doc/en/set.txt b/doc/en/set.txt index 487eba9022..6eaf5e8922 100644 --- a/doc/en/set.txt +++ b/doc/en/set.txt @@ -17,10 +17,10 @@ * Documentation for: __XHelp() * * Copyright 2000 Luiz Rafael Culik - * Documentation for: SET WRAP,SET DEFAULT,SET MESSAGE - * Documentation for: SET PATH,SET INTENSITY,SET ALTERNATE - * Documentation for: SET CENTURY,SET DATE,SET CONSOLE - * Documentation for: SET EPOCH,SET PRINTER,SET FIXED + * Documentation for: SET WRAP, SET DEFAULT, SET MESSAGE + * Documentation for: SET PATH, SET INTENSITY, SET ALTERNATE + * Documentation for: SET CENTURY, SET DATE, SET CONSOLE + * Documentation for: SET EPOCH, SET PRINTER, SET FIXED * Documentation for: SET BELL * See COPYING.txt for licensing terms. * @@ -121,7 +121,7 @@ _SET_COLOR Sets the current color scheme, using color pairs in the - sequence ",,,, + sequence ", , , , ". Each color pair uses the format "/". The color codes are space or "N" for black, "B" for blue, "G" for green, "BG" for @@ -490,7 +490,7 @@ $FILES$ Library is core $SEEALSO$ - Inkey(),SetKey(),__Keyboard(),SET KEY + Inkey(), SetKey(), __Keyboard(), SET KEY $END$ */ @@ -547,7 +547,7 @@ $PLATFORMS$ All $SEEALSO$ - Inkey(),SetKey(),__Keyboard() + Inkey(), SetKey(), __Keyboard() $END$ */ @@ -640,7 +640,7 @@ $FILES$ Library is core $SEEALSO$ - SetKey(),hb_SetKeySave(),hb_SetKeyCheck() + SetKey(), hb_SetKeySave(), hb_SetKeyCheck() $END$ */ @@ -731,7 +731,7 @@ $FILES$ Library is core $SEEALSO$ - SetKey(),hb_SetKeySave() + SetKey(), hb_SetKeySave() $END$ */ @@ -816,7 +816,7 @@ $FILES$ Library is core $SEEALSO$ - __Accept(),__Input() + __Accept(), __Input() $END$ */ @@ -868,7 +868,7 @@ Drive and/or path. $DESCRIPTION$ This command changes the drive and directory used for reading and - writing database,index,memory, and alternate files. Specifying no + writing database, index, memory, and alternate files. Specifying no parameters with this command will default the operation to the current logged drive and directory. $EXAMPLES$ @@ -878,7 +878,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET PATH,CurDir(),Set() + SET PATH, CurDir(), Set() $END$ */ @@ -901,7 +901,7 @@ This command toggles the highlighted bars in a @...PROMPT command to wrap around in a bottom-to-top and top-to-bottom manner. If the value of the logical expression is a logical false (.F.), - the wrapping mode is set OFF; otherwise,it is set ON. + the wrapping mode is set OFF; otherwise, it is set ON. $EXAMPLES$ See tests/menuto.prg $STATUS$ @@ -909,7 +909,7 @@ $COMPLIANCE$ C $SEEALSO$ - @...PROMPT,MENU TO + @...PROMPT, MENU TO $END$ */ @@ -952,7 +952,7 @@ $COMPLIANCE$ C $SEEALSO$ - Set(),SET WRAP,@...PROMPT,MENU TO + Set(), SET WRAP, @...PROMPT, MENU TO $END$ */ @@ -985,7 +985,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET DEFAULT,CurDir(),Set() + SET DEFAULT, CurDir(), Set() $END$ */ @@ -1015,7 +1015,7 @@ $COMPLIANCE$ C $SEEALSO$ - @...GET,@...PROMPT,@...SAY,Set() + @...GET,@...PROMPT,@...SAY, Set() $END$ */ @@ -1065,7 +1065,7 @@ $COMPLIANCE$ C $SEEALSO$ - CLOSE,SET PRINTER,SET CONSOLE,Set() + CLOSE, SET PRINTER, SET CONSOLE, Set() $END$ */ @@ -1099,7 +1099,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET DATE,SET EPOCH,CToD(),Date(),DToC(),Set() + SET DATE, SET EPOCH, CToD(), Date(), DToC(), Set() $END$ */ @@ -1149,7 +1149,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET DATE,SET EPOCH,CToD(),Date(),DToC(),Set() + SET DATE, SET EPOCH, CToD(), Date(), DToC(), Set() $END$ */ @@ -1179,7 +1179,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET DATE,SET CENTURY,CToD(),Date(),DToC(),Set() + SET DATE, SET CENTURY, CToD(), Date(), DToC(), Set() $END$ */ @@ -1227,7 +1227,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET DECIMALS,Exp(),Log(),Sqrt(),Val(),Set() + SET DECIMALS, Exp(), Log(), Sqrt(), Val(), Set() $END$ */ @@ -1253,7 +1253,7 @@ $DESCRIPTION$ This command can direct all output that is not controlled by the @...SAY command and the DevPos() and DevOut() functions to the - printer. If specified,the condition toggles the printer + printer. If specified, the condition toggles the printer ON if a logical true (.T.) and OFF if a logical false (.F.). If no argument is specified in the command, the alternate file (if one is open) is closed, or the device is reselected and the PRINTER @@ -1308,7 +1308,7 @@ screens display other then direct output via the @...SAY commands or the <-> DevOut() function. - If is a logical true (.T.),the console will be turned + If is a logical true (.T.), the console will be turned ON; otherwise, the console will be turned off. $EXAMPLES$ SET CONSOLE ON @@ -1320,7 +1320,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET DEVICE,Set() + SET DEVICE, Set() $END$ */ @@ -1355,7 +1355,7 @@ $COMPLIANCE$ C $SEEALSO$ - SET FIXED,Set() + SET FIXED, Set() $END$ */ @@ -1379,7 +1379,7 @@ and the DevPos() and DevOut() function will be displayed on the printer. - When the device is set to the PRINTER,the SET MARGIN value adjusts + When the device is set to the PRINTER, the SET MARGIN value adjusts the position of the column values accordingly. Also, an automatic page eject will be issued when the current printhead position is less than the last printed row. Finally, if used in conjunction with @@ -1397,7 +1397,7 @@ $COMPLIANCE$ C $SEEALSO$ - @...SAY,SET PRINTER,SetPRC(),Set() + @...SAY, SET PRINTER, SetPRC(), Set() $END$ */ diff --git a/doc/en/setmode.txt b/doc/en/setmode.txt index 642f550d4d..fc586efd9f 100644 --- a/doc/en/setmode.txt +++ b/doc/en/setmode.txt @@ -71,8 +71,8 @@ $COMPLIANCE$ Some of these modes are not availables in CA-Cl*pper $PLATFORMS$ - DOS,Win + DOS, Win $SEEALSO$ - MaxCol(),MaxRow() + MaxCol(), MaxRow() $END$ */ diff --git a/doc/en/string.txt b/doc/en/string.txt index 7c51b55d1f..613f1c3797 100644 --- a/doc/en/string.txt +++ b/doc/en/string.txt @@ -7,7 +7,7 @@ * * Copyright 2000 Luiz Rafael Culik * Documentation for: IsAlpha(), IsDigit(), IsUpper(), IsLower(), LTrim(), - * At(), hb_At(),RAt(), hb_RAt(), Left(), Right(), + * At(), hb_At(), RAt(), hb_RAt(), Left(), Right(), * SubStr(), Upper(), Lower(), Asc(), Chr(), PadC(), * PadL(), PadR(), AllTrim(), Trim(), RTrim(), Space(), * Replicate(), Val(), Transform(), StrTran() @@ -49,7 +49,7 @@ $FILES$ Library is core $SEEALSO$ - IsDigit(),IsLower(),IsUpper(),Lower(),Upper() + IsDigit(), IsLower(), IsUpper(), Lower(), Upper() $END$ */ @@ -87,7 +87,7 @@ $FILES$ Library is core $SEEALSO$ - IsAlpha(),IsLower(),IsUpper(),Lower(),Upper() + IsAlpha(), IsLower(), IsUpper(), Lower(), Upper() $END$ */ @@ -125,7 +125,7 @@ $FILES$ Library is core $SEEALSO$ - IsAlpha(),IsLower(),IsDigit(),Lower(),Upper() + IsAlpha(), IsLower(), IsDigit(), Lower(), Upper() $END$ */ @@ -163,7 +163,7 @@ $FILES$ Library is core $SEEALSO$ - IsAlpha(),IsDigit(),IsUpper(),Lower(),Upper() + IsAlpha(), IsDigit(), IsUpper(), Lower(), Upper() $END$ */ @@ -198,7 +198,7 @@ $FILES$ Library is core $SEEALSO$ - Trim(),RTrim(),AllTrim() + Trim(), RTrim(), AllTrim() $END$ */ @@ -433,7 +433,7 @@ $FILES$ Library is core $SEEALSO$ - SubStr(),Right(),At(),RAt() + SubStr(), Right(), At(), RAt() $END$ */ @@ -474,7 +474,7 @@ $FILES$ Library is core $SEEALSO$ - SubStr(),Left(),At(),RAt() + SubStr(), Left(), At(), RAt() $END$ */ @@ -523,7 +523,7 @@ $FILES$ Library is core $SEEALSO$ - Left(),At(),Right() + Left(), At(), Right() $END$ */ @@ -597,7 +597,7 @@ $FILES$ Library is core $SEEALSO$ - StrZero(),Transform(),Val() + StrZero(), Transform(), Val() $END$ */ @@ -760,7 +760,7 @@ $FILES$ Library is core $SEEALSO$ - Empty(),RTrim(),LTrim(),AAdd(),ASize() + Empty(), RTrim(), LTrim(), AAdd(), ASize() $END$ */ @@ -875,7 +875,7 @@ $FILES$ Library is core $SEEALSO$ - Upper(),IsLower(),IsUpper() + Upper(), IsLower(), IsUpper() $END$ */ @@ -911,7 +911,7 @@ $FILES$ Library is core $SEEALSO$ - Lower(),IsUpper(),IsLower() + Lower(), IsUpper(), IsLower() $END$ */ @@ -1036,7 +1036,7 @@ $FILES$ Library is core $SEEALSO$ - AllTrim(),PadL(),PadR() + AllTrim(), PadL(), PadR() $END$ */ @@ -1054,7 +1054,7 @@ $SYNTAX$ PadL( , , ) --> cString $ARGUMENTS$ - An number,Character or date to pad + An number, Character or date to pad Width of output string @@ -1062,7 +1062,7 @@ $RETURNS$ The left-justifies string of $DESCRIPTION$ - This function takes an date,number,or character expression + This function takes an date, number, or character expression and attempt to left-justify it within a string of a given width expressed as . The default character used to pad left side of will be an blank space; however, this character may be @@ -1084,7 +1084,7 @@ $FILES$ Library is core $SEEALSO$ - AllTrim(),PadC(),PadR() + AllTrim(), PadC(), PadR() $END$ */ @@ -1110,7 +1110,7 @@ $RETURNS$ The right-justifies string of $DESCRIPTION$ - This function takes an date,number,or character expression + This function takes an date, number, or character expression and attempt to right-justify it within a string of a given width expressed as . The default character used to pad right side of will be an blank space; however, this character may be @@ -1132,7 +1132,7 @@ $FILES$ Library is core $SEEALSO$ - AllTrim(),PadC(),PadL() + AllTrim(), PadC(), PadL() $END$ */ @@ -1170,7 +1170,7 @@ $FILES$ Library is core $SEEALSO$ - LTrim(),RTrim(),Trim() + LTrim(), RTrim(), Trim() $END$ */ @@ -1212,7 +1212,7 @@ $FILES$ Library is core $SEEALSO$ - AllTrim(),LTrim(),Trim() + AllTrim(), LTrim(), Trim() $END$ */ @@ -1254,7 +1254,7 @@ $FILES$ Library is core $SEEALSO$ - RTrim(),LTrim(),AllTrim() + RTrim(), LTrim(), AllTrim() $END$ */ @@ -1296,7 +1296,7 @@ $FILES$ Library is core $SEEALSO$ - Space(),PadC(),PadL(),PadR() + Space(), PadC(), PadL(), PadR() $END$ */ @@ -1368,7 +1368,7 @@ $FILES$ Library is core $SEEALSO$ - PadC(),PadL(),PadR(),Replicate() + PadC(), PadL(), PadR(), Replicate() $END$ */ @@ -1405,7 +1405,7 @@ $FILES$ Library is core $SEEALSO$ - Str(),Transform() + Str(), Transform() $END$ */ @@ -1458,7 +1458,7 @@ $FILES$ Libraty is rtl $SEEALSO$ - SubStr(),At() + SubStr(), At() $END$ */ @@ -1555,6 +1555,6 @@ $FILES$ Library is core $SEEALSO$ - @...SAY,DevOutPict() + @...SAY, DevOutPict() $END$ */ diff --git a/doc/en/tbrowse.txt b/doc/en/tbrowse.txt index ab96f1a132..8b27944899 100644 --- a/doc/en/tbrowse.txt +++ b/doc/en/tbrowse.txt @@ -22,7 +22,7 @@ An new Browse Object $DESCRIPTION$ This function set up a browsing window at top-left coordinates of - , to bottom-right coordinates of ,. + , to bottom-right coordinates of , . To browse Database files use TBrowseDB() function insted. $DATANOLINK$ :aColumns Array to hold all browse columns @@ -178,7 +178,7 @@ $FILES$ Library is core $SEEALSO$ - TBrowseNew(),TBColumnNew() + TBrowseNew(), TBColumnNew() $END$ */ @@ -225,7 +225,7 @@ K_ESC {| oB, nKey | -1 } - The keys handlers can be queried,added and replace an removed from + The keys handlers can be queried, added and replace an removed from the internal keyboard dictionary. See the example. oTb:SetKey( K_TAB, {| oTb, nKey | -1 } ) @@ -267,7 +267,7 @@ Value Meaning -1 User request for the browse lost input focus 0 Code block associated with was evaluated - 1 Unable to locate in the dictionary,Key was not processed + 1 Unable to locate in the dictionary, Key was not processed $DESCRIPTION$ This method evaluate an code block associated with that is diff --git a/doc/en/tclass.txt b/doc/en/tclass.txt index 10b9e5eb5d..73e46748c3 100644 --- a/doc/en/tclass.txt +++ b/doc/en/tclass.txt @@ -21,14 +21,14 @@ $ONELINER$ HBClass() is used in the creation of all classes $SYNTAX$ - oClass := HBClass():New("TMyClass") + oClass := HBClass():New( "TMyClass" ) -or- HBClass() is usually accessed by defining a class with the commands - defined in hbclass.h: + defined in hbclass.ch: - CLASS HBGetList // Calls HBClass() to create the HBGetList class + CREATE CLASS HBGetList // Calls HBClass() to create the HBGetList class ... ENDCLASS $ARGUMENTS$ @@ -66,6 +66,6 @@ $FILES$ Library is core $SEEALSO$ - __objHasData(),Object Oriented Programming,CLASS + __objHasData(), Object Oriented Programming, CLASS $END$ */ diff --git a/doc/en/terminal.txt b/doc/en/terminal.txt index e6342725b1..aa63440e3e 100644 --- a/doc/en/terminal.txt +++ b/doc/en/terminal.txt @@ -17,7 +17,7 @@ * Documentation for: DevOutPict() * * Copyright 2000 Luiz Rafael Culik - * Documentation for: EJECT,MaxRow(),MaxCol(),Row(),Col(),PRow(),PCol() + * Documentation for: EJECT, MaxRow(), MaxCol(), Row(), Col(), PRow(), PCol() * * See COPYING.txt for licensing terms. * @@ -66,7 +66,7 @@ $FILES$ Library is core $SEEALSO$ - RESTORE SCREEN,RestScreen(),SaveScreen() + RESTORE SCREEN, RestScreen(), SaveScreen() $END$ */ @@ -107,7 +107,7 @@ $PLATFORMS$ All(GT) $SEEALSO$ - RESTORE SCREEN,__XRestScreen(),__XSaveScreen() + RESTORE SCREEN, __XRestScreen(), __XSaveScreen() $END$ */ @@ -153,7 +153,7 @@ $FILES$ Library is core $SEEALSO$ - __XRestScreen(),SAVE SCREEN,__XSaveScreen() + __XRestScreen(), SAVE SCREEN, __XSaveScreen() $END$ */ @@ -194,7 +194,7 @@ $PLATFORMS$ All(GT) $SEEALSO$ - __XRestScreen(),SAVE SCREEN,__XSaveScreen() + __XRestScreen(), SAVE SCREEN, __XSaveScreen() $END$ */ @@ -303,7 +303,7 @@ $FILES$ Library is core $SEEALSO$ - @...PROMPT,MENU TO,OutStd(),__NoNoAlert() + @...PROMPT, MENU TO, OutStd(), __NoNoAlert() $END$ */ @@ -379,7 +379,7 @@ $FILES$ Library is core $SEEALSO$ - OS(),OutStd(),OutErr() + OS(), OutStd(), OutErr() $END$ */ @@ -458,7 +458,7 @@ $FILES$ Library is core $SEEALSO$ - DevOut(),Transform() + DevOut(), Transform() $END$ */ @@ -489,7 +489,7 @@ $FILES$ Library is core $SEEALSO$ - __Wait(),__Accept() + __Wait(), __Accept() $END$ */ @@ -523,7 +523,7 @@ $FILES$ Library is core $SEEALSO$ - Set(),SET ALTERNATE,SET PRINTER,TEXT,__TextRestore() + Set(), SET ALTERNATE, SET PRINTER, TEXT, __TextRestore() $END$ */ @@ -555,7 +555,7 @@ $FILES$ Library is core $SEEALSO$ - Set(),SET ALTERNATE,SET PRINTER,TEXT,__TextSave() + Set(), SET ALTERNATE, SET PRINTER, TEXT, __TextSave() $END$ */ @@ -593,7 +593,7 @@ $FILES$ Library is core $SEEALSO$ - __Accept(),__Input() + __Accept(), __Input() $END$ */ @@ -641,7 +641,7 @@ $FILES$ Library is core $SEEALSO$ - ?,??,DevOut(),DevOutPict(),DispOut(),DispOutAt(),OutErr(),QOut(),QQOut(),Str() + ?, ??, DevOut(), DevOutPict(), DispOut(), DispOutAt(), OutErr(), QOut(), QQOut(), Str() $END$ */ @@ -690,7 +690,7 @@ $FILES$ Library is core $SEEALSO$ - ?,??,DevOut(),DevOutPict(),DispOut(),DispOutAt(),OutStd(),QOut(),QQOut(),Str() + ?, ??, DevOut(), DevOutPict(), DispOut(), DispOutAt(), OutStd(), QOut(), QQOut(), Str() $END$ */ @@ -711,11 +711,11 @@ None $DESCRIPTION$ This command issue an form-feed command to the printer. If the printer - is not properly hooked up to the computer,an error will not be + is not properly hooked up to the computer, an error will not be generated and the command will be ignored. - Once completed,the values of PRow() and PCol(),the row and column - indicators to the printer,will be set to 0. Their values,however,may + Once completed, the values of PRow() and PCol(), the row and column + indicators to the printer, will be set to 0. Their values, however, may be manipulated before or after ussuing an EJECT by using the DevPos() function. @@ -741,7 +741,7 @@ $PLATFORMS$ All $SEEALSO$ - DevPos(),SET PRINTER,PRow(),PCol() + DevPos(), SET PRINTER, PRow(), PCol() $END$ */ @@ -776,7 +776,7 @@ $FILES$ Library is core $SEEALSO$ - Row(),MaxRow(),MaxCol() + Row(), MaxRow(), MaxCol() $END$ */ @@ -811,7 +811,7 @@ $FILES$ Library is core $SEEALSO$ - Col(),MaxRow(),MaxCol() + Col(), MaxRow(), MaxCol() $END$ */ @@ -843,11 +843,11 @@ $COMPLIANCE$ C $PLATFORMS$ - Linux(GT),OS2(GT),Win(GT) + Linux(GT), OS2(GT), Win(GT) $FILES$ Library is core $SEEALSO$ - Row(),MaxRow(),Col() + Row(), MaxRow(), Col() $END$ */ @@ -879,10 +879,10 @@ $COMPLIANCE$ C $PLATFORMS$ - Linux(GT),OS2(GT),Win(GT) + Linux(GT), OS2(GT), Win(GT) $FILES$ Library is core $SEEALSO$ - Col(),Row(),MaxCol() + Col(), Row(), MaxCol() $END$ */ diff --git a/doc/en/tgetlist.txt b/doc/en/tgetlist.txt index 6a84bd62a3..1ac8789241 100644 --- a/doc/en/tgetlist.txt +++ b/doc/en/tgetlist.txt @@ -60,6 +60,6 @@ $FILES$ Library is core $SEEALSO$ - @...GET,@...PROMPT,MENU TO,READ,SET KEY,__AtPrompt(),__MenuTo() + @...GET, @...PROMPT, MENU TO, READ, SET KEY, __AtPrompt(), __MenuTo() $END$ */ diff --git a/doc/en/tlabel.txt b/doc/en/tlabel.txt index 15219cb35b..5d95da9c80 100644 --- a/doc/en/tlabel.txt +++ b/doc/en/tlabel.txt @@ -43,7 +43,7 @@ include NEXT (number of records to be displayed, where is the number of records), RECORD (a specific record to be printed), REST (all records starting from the current record - position,and ALL (all records). The default is ALL. + position, and ALL (all records). The default is ALL. Both logical expression may work ill conjunction with one another where is the logical expression for the FOR condition (for @@ -53,7 +53,7 @@ If the SAMPLE clause is specified, test labels will be generated. - If the NOCONSOLE clause is specified,the console will be turned off + If the NOCONSOLE clause is specified, the console will be turned off while this command is being executed. This command follows the search criteria outlined in the SET PATH TO diff --git a/doc/en/treport.txt b/doc/en/treport.txt index cc03646893..4cdf812926 100644 --- a/doc/en/treport.txt +++ b/doc/en/treport.txt @@ -85,7 +85,7 @@ groups, subgroups, and grand total information. The detailed title item information will be ignored. - If the NOCONSOLE clause is specified,output to the console will be + If the NOCONSOLE clause is specified, output to the console will be turned off while this command is being executed. $EXAMPLES$ PROCEDURE Main() diff --git a/doc/en/var.txt b/doc/en/var.txt index 104a9c3729..27017ad7e6 100644 --- a/doc/en/var.txt +++ b/doc/en/var.txt @@ -576,7 +576,7 @@ $COMPLIANCE$ C $SEEALSO$ - __mvGet(),__mvPut() + __mvGet(), __mvPut() $FILES$ Library is core $END$ @@ -631,7 +631,7 @@ $FILES$ Library is core $SEEALSO$ - Eval(),FieldWBlock(),MemVarBlock() + Eval(), FieldWBlock(), MemVarBlock() $END$ */ @@ -694,7 +694,7 @@ $FILES$ Library is core $SEEALSO$ - Eval(),FieldBlock(),MemVarBlock() + Eval(), FieldBlock(), MemVarBlock() $END$ */ diff --git a/extras/template/tests/hbmk.hbm b/extras/template/tests/hbmk.hbm index 111a7b73c9..5383620a07 100644 --- a/extras/template/tests/hbmk.hbm +++ b/extras/template/tests/hbmk.hbm @@ -1,4 +1,4 @@ -# hbmk2 build option defaults for this directory +# hbmk2 defaults for this directory hbtpl.hbc hbtest.hbc From feb68cb00ccf13d73b842967d37bd3bacef129a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Viktor?= Date: Sun, 24 Mar 2013 20:44:17 +0100 Subject: [PATCH 12/22] minors --- package/mpkg_win_nightly.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/mpkg_win_nightly.bat b/package/mpkg_win_nightly.bat index d318be797a..408b4bc976 100644 --- a/package/mpkg_win_nightly.bat +++ b/package/mpkg_win_nightly.bat @@ -7,13 +7,13 @@ rem --------------------------------------------------------------- rem --------------------------------------------------------------- rem REQUIREMENTS FOR BUILD MACHINE: -rem - Online 24/7 (reliable) +rem - online 24/7 (reliable) rem - Windows XP or higher (server preferred) -rem - 8GB disk space +rem - 8GB free disk space rem - downstream internet traffic 100MB per day rem - upstream internet traffic 100MB per day rem - 1-5hours CPU time per day -rem - Multicore CPU recommended +rem - multicore CPU recommended rem - admin rights for MSVC setup rem - admin rights for Scheduled Task setup rem - remote admin (via RDC or VNC protocol, RDC preferred) From 99bc6b67abf771e76fa18c2c661c149300190b5d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 21:25:29 +0100 Subject: [PATCH 13/22] cleanups --- ChangeLog.txt | 4 ++++ doc/en/datetime.txt | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index f6a01740cb..ae4905685e 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-24 21:25 UTC+0100 Viktor Szakats (harbour syenar.net) + * doc/en/datetime.txt + * cleanups + 2013-03-24 20:22 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbct/doc/en/*.txt * contrib/hbgt/doc/en/hbgt.txt diff --git a/doc/en/datetime.txt b/doc/en/datetime.txt index 2b76cbd215..88bc85baf3 100644 --- a/doc/en/datetime.txt +++ b/doc/en/datetime.txt @@ -138,7 +138,7 @@ $SYNTAX$ CToD( ) --> dDate $ARGUMENTS$ - A character date in format 'mm/dd/yy' + A character date in format "mm/dd/yy" $RETURNS$ A date expression $DESCRIPTION$ @@ -410,7 +410,7 @@ 0 to 12 $DESCRIPTION$ This function returns a number that represents the month of a given - date expression . If a NULL date (CToD('')) is passed to the + date expression . If a NULL date (CToD( "" )) is passed to the function, the value of the function will be 0. $EXAMPLES$ ? Month( Date() ) From 4a96b9f17f5f20c02ed5c47882bcdc094ee3fd53 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 21:39:15 +0100 Subject: [PATCH 14/22] cleanups --- ChangeLog.txt | 8 ++++++++ doc/en/browse.txt | 8 ++++---- doc/en/diskspac.txt | 4 ++-- doc/en/file.txt | 38 +++++++++++++++++++------------------- doc/en/objfunc.txt | 34 ++++++++++++++++------------------ doc/en/rdddb.txt | 4 ++-- 6 files changed, 51 insertions(+), 45 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index ae4905685e..a55e86db6c 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,14 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-24 21:39 UTC+0100 Viktor Szakats (harbour syenar.net) + * doc/en/browse.txt + * doc/en/diskspac.txt + * doc/en/file.txt + * doc/en/objfunc.txt + * doc/en/rdddb.txt + * cleanups + 2013-03-24 21:25 UTC+0100 Viktor Szakats (harbour syenar.net) * doc/en/datetime.txt * cleanups diff --git a/doc/en/browse.txt b/doc/en/browse.txt index b1e2fdc93f..6874474868 100644 --- a/doc/en/browse.txt +++ b/doc/en/browse.txt @@ -152,11 +152,11 @@ --------------------------- - dbedit.ch Value Meaning + dbedit.ch Meaning - DE_ABORT 0 Abort dbEdit(). - DE_CONT 1 Continue dbEdit() as is. - DE_REFRESH 2 Force reread/redisplay of all data rows. + DE_ABORT Abort dbEdit(). + DE_CONT Continue dbEdit() as is. + DE_REFRESH Force reread/redisplay of all data rows.
The user function is called once in each of the following cases: diff --git a/doc/en/diskspac.txt b/doc/en/diskspac.txt index f1cc9c7b82..8b117d4acf 100644 --- a/doc/en/diskspac.txt +++ b/doc/en/diskspac.txt @@ -39,7 +39,7 @@ $EXAMPLES$ ? "You can use : " + hb_ntos( DiskSpace() ) + " bytes " - Note: See tests/diskspac.prg for another example + // NOTE: See tests/diskspac.prg for another example $STATUS$ R $COMPLIANCE$ @@ -101,7 +101,7 @@ ? "You can use : " + hb_ntos( hb_DiskSpace() ) + " bytes " +; "Out of a total of " + hb_ntos( hb_DiskSpace( "C:", HB_FS_TOTAL ) ) - Note: See tests/diskspac.prg for another example + // NOTE: See tests/diskspac.prg for another example $STATUS$ R $COMPLIANCE$ diff --git a/doc/en/file.txt b/doc/en/file.txt index 8a83c4797a..798dc39e11 100644 --- a/doc/en/file.txt +++ b/doc/en/file.txt @@ -43,16 +43,16 @@ the default value is 0. The file open modes are as follows: - nMode fileio.ch Meaning + nMode Meaning - 0 FO_READ Read only - 1 FO_WRITE Write only - 2 FO_READWRITE Read/write - 16 FO_EXCLUSIVE Exclusive read only - 32 FO_DENYWRITE Prevent others from writing - 48 FO_DENYREAD Deny read only - 64 FO_DENYNONE Not deny, Let to others Read / Write - 64 FO_SHARED same as FO_DENYNONE + FO_READ Read only + FO_WRITE Write only + FO_READWRITE Read/write + FO_EXCLUSIVE Exclusive read only + FO_DENYWRITE Prevent others from writing + FO_DENYREAD Deny read only + FO_DENYNONE Not deny, Let to others Read / Write + FO_SHARED same as FO_DENYNONE
If there is an error in opening a file, a F_ERROR will be returned by @@ -74,7 +74,7 @@ C $FILES$ Library is core - Header is fileio.ch + Header is fileio.ch $SEEALSO$ FCreate(), FError(), FClose() $END$ @@ -116,12 +116,12 @@ this function. - fileio.ch Meaning + Meaning - 0 FC_NORMAL Normal/Default, Read/Write - 1 FC_READONLY Read-only file attribute is set - 2 FC_HIDDEN Hidden, Excluded from normal DIR search - 4 FC_SYSTEM Create, Excluded from normal DIR search + FC_NORMAL Normal/Default, Read/Write + FC_READONLY Read-only file attribute is set + FC_HIDDEN Hidden, Excluded from normal DIR search + FC_SYSTEM Create, Excluded from normal DIR search
$EXAMPLES$ #include "fileio.ch" @@ -509,11 +509,11 @@ file pointer should he moved, as shown in the following table: - fileio.ch File position + File position - 0 FS_SET Beginning of file - 1 FS_RELATIVE Current file pointer position - 2 FS_END End of file + FS_SET Beginning of file + FS_RELATIVE Current file pointer position + FS_END End of file
If a value is not provided for , it defaults to 0 and diff --git a/doc/en/objfunc.txt b/doc/en/objfunc.txt index f369c57537..82845e9fc7 100644 --- a/doc/en/objfunc.txt +++ b/doc/en/objfunc.txt @@ -129,11 +129,11 @@ that allow you to distinguish between VAR and CLASS VAR: table> - hboo.ch Value Meaning + hboo.ch Meaning - HB_MSGLISTALL 0 All types - HB_MSGLISTCLASS 1 CLASS VAR only - HB_MSGLISTPURE 2 VAR only + HB_MSGLISTALL All types + HB_MSGLISTCLASS CLASS VAR only + HB_MSGLISTPURE VAR only /table> VAR are instance variable usable within each object from a class, @@ -350,16 +350,14 @@ ? oHappy:Smile( 3 ) // *SMILE* STATIC FUNCTION MySmile( nType ) - LOCAL cSmile - DO CASE - CASE nType == 1 - cSmile := ":)" - CASE nType == 2 - cSmile := ";)" - CASE nType == 3 - cSmile := "*SMILE*" - ENDCASE - RETURN cSmile + IF HB_ISNUMERIC( nType ) + SWITCH nType + CASE 1 ; RETURN ":)" + CASE 2 ; RETURN ";)" + CASE 3 ; RETURN "*SMILE*" + ENDCASE + ENDIF + RETURN NIL $STATUS$ R $COMPLIANCE$ @@ -398,7 +396,7 @@ with the name already exist in . $EXAMPLES$ // create a new THappy class and add a Smile INLINE method - oHappy := HBClass():New( "THappy" ) + oHappy := HBClass():New( "THappy" ) bInline := {| nType | { ":)", ";)", "*SMILE*" }[ nType ] } __objAddInline( oHappy, "Smile", bInline ) ? oHappy:Smile( 1 ) // :) @@ -440,7 +438,7 @@ already exist in . $EXAMPLES$ // create a new THappy class and add a lHappy VAR - oHappy := HBClass():New( "THappy" ) + oHappy := HBClass():New( "THappy" ) __objAddData( oHappy, "lHappy" ) oHappy:lHappy := .T. IF oHappy:lHappy @@ -559,7 +557,7 @@ mechanism. $EXAMPLES$ // create a new THappy class and add a Smile INLINE method - oHappy := HBClass():New( "THappy" ) + oHappy := HBClass():New( "THappy" ) bMyInline := {| nType | { ":)", ";)" }[ nType ] } bYourInline := {| nType | { "*SMILE*", "*WINK*" }[ nType ] } __objAddInline( oHappy, "Smile", bMyInline ) @@ -716,7 +714,7 @@ with the name does not exist in . $EXAMPLES$ // create a new THappy class and add a lHappy VAR - oHappy := HBClass():New( "THappy" ) + oHappy := HBClass():New( "THappy" ) __objAddData( oHappy, "lHappy" ) ? __objHasData( oHappy, "lHappy" ) // .T. // remove lHappy VAR diff --git a/doc/en/rdddb.txt b/doc/en/rdddb.txt index 10aec9d0f7..1bc6f8446f 100644 --- a/doc/en/rdddb.txt +++ b/doc/en/rdddb.txt @@ -459,7 +459,7 @@ This function is not CA-Cl*pper compliant $FILES$ Library is rdd - Header is dbstruct.ch + Header is dbstruct.ch $SEEALSO$ AFields()*, dbStruct() $END$ @@ -1121,7 +1121,7 @@ C $FILES$ Library is rdd - Header is dbstruct.ch + Header is dbstruct.ch $SEEALSO$ AFields()* $END$ From 3b9b70dfa2c546e996df830b655eedc838bedfd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Viktor?= Date: Sun, 24 Mar 2013 21:41:56 +0100 Subject: [PATCH 15/22] typo --- doc/en/objfunc.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/objfunc.txt b/doc/en/objfunc.txt index 82845e9fc7..4bfb6c0dfb 100644 --- a/doc/en/objfunc.txt +++ b/doc/en/objfunc.txt @@ -355,7 +355,7 @@ CASE 1 ; RETURN ":)" CASE 2 ; RETURN ";)" CASE 3 ; RETURN "*SMILE*" - ENDCASE + ENDSWITCH ENDIF RETURN NIL $STATUS$ From 140e5913ebbb10bb46687d63428a4e6c73b53812 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 22:40:15 +0100 Subject: [PATCH 16/22] cleanups --- ChangeLog.txt | 8 +++ doc/en/subcodes.txt | 112 ++++++++++++++++++------------------- extras/hbdoc/_tmplates.prg | 10 ++-- extras/hbdoc/hbdoc.prg | 2 +- extras/httpsrv/uhttpd.prg | 2 +- tests/fixcase.hb | 1 + 6 files changed, 71 insertions(+), 64 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index a55e86db6c..20aaef1cb7 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,14 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-24 22:39 UTC+0100 Viktor Szakats (harbour syenar.net) + * doc/en/subcodes.txt + * extras/hbdoc/_tmplates.prg + * extras/hbdoc/hbdoc.prg + * extras/httpsrv/uhttpd.prg + * tests/fixcase.hb + * cleanups + 2013-03-24 21:39 UTC+0100 Viktor Szakats (harbour syenar.net) * doc/en/browse.txt * doc/en/diskspac.txt diff --git a/doc/en/subcodes.txt b/doc/en/subcodes.txt index 1cb74a2872..f555efbfdf 100644 --- a/doc/en/subcodes.txt +++ b/doc/en/subcodes.txt @@ -329,7 +329,7 @@ $DESCRIPTION$ The specified argument is not a string. $EXAMPLES$ - RTRIM, TRIM + RTrim(), Trim() $COMPLIANCE$ C $SEEALSO$ @@ -349,7 +349,7 @@ $DESCRIPTION$ The specified argument is not a string. $EXAMPLES$ - LTRIM + LTrim() $COMPLIANCE$ C $SEEALSO$ @@ -369,7 +369,7 @@ $DESCRIPTION$ The first argument passed to a function is not a string. $EXAMPLES$ - UPPER + Upper() $COMPLIANCE$ C $SEEALSO$ @@ -389,7 +389,7 @@ $DESCRIPTION$ The first argument passed to a function is not a string. $EXAMPLES$ - LOWER + Lower() $COMPLIANCE$ C $SEEALSO$ @@ -409,7 +409,7 @@ $DESCRIPTION$ The specified argument is not a numeric value. $EXAMPLES$ - CHR + Chr() $COMPLIANCE$ C $SEEALSO$ @@ -429,7 +429,7 @@ $DESCRIPTION$ The arguments passed to a function are of incorrect type. $EXAMPLES$ - SPACE + Space() $COMPLIANCE$ C $SEEALSO$ @@ -449,7 +449,7 @@ $DESCRIPTION$ The arguments passed to a function are of incorrect type. $EXAMPLES$ - REPLICATE + Replicate() $COMPLIANCE$ C $SEEALSO$ @@ -469,7 +469,7 @@ $DESCRIPTION$ The specified argument is not a string. $EXAMPLES$ - ASC + Asc() $COMPLIANCE$ C $SEEALSO$ @@ -489,7 +489,7 @@ $DESCRIPTION$ The specified argument is not a string. $EXAMPLES$ - AT + At() $COMPLIANCE$ C $SEEALSO$ @@ -510,8 +510,6 @@ The arguments of '$' operator are not a strings. $EXAMPLES$ - $$ - $COMPLIANCE$ C $SEEALSO$ @@ -531,7 +529,7 @@ $DESCRIPTION$ The first argument passed to a function is not a string. $EXAMPLES$ - SUBSTR + SubStr() $COMPLIANCE$ C $SEEALSO$ @@ -551,7 +549,7 @@ $DESCRIPTION$ The passed argument is neither a string nor an array. $EXAMPLES$ - LEN + Len() $COMPLIANCE$ C $SEEALSO$ @@ -572,7 +570,7 @@ The argument (or arguments) passed to a function are of incorrect type $EXAMPLES$ - YEAR + Year() $COMPLIANCE$ C $SEEALSO$ @@ -593,7 +591,7 @@ The argument (or arguments) passed to a function are of incorrect type $EXAMPLES$ - MONTH + Month() $COMPLIANCE$ C $SEEALSO$ @@ -614,7 +612,7 @@ The argument (or arguments) passed to a function are of incorrect type $EXAMPLES$ - DAY + Day() $COMPLIANCE$ C $SEEALSO$ @@ -635,7 +633,7 @@ The argument (or arguments) passed to a function are of incorrect type $EXAMPLES$ - DOW + DoW() $COMPLIANCE$ C $SEEALSO$ @@ -656,7 +654,7 @@ The argument (or arguments) passed to a function are of incorrect type $EXAMPLES$ - CMONTH + CMonth() $COMPLIANCE$ C $SEEALSO$ @@ -677,7 +675,7 @@ The argument (or arguments) passed to a function is of incorrect type $EXAMPLES$ - CDOW + CDoW() $COMPLIANCE$ C $SEEALSO$ @@ -698,7 +696,7 @@ The argument (or arguments) passed to a function is of incorrect type $EXAMPLES$ - DTOS + DToS() $COMPLIANCE$ C $SEEALSO$ @@ -719,7 +717,7 @@ The argument (or arguments) passed to a function is of incorrect type $EXAMPLES$ - TRANSFORM + Transform() $COMPLIANCE$ C $SEEALSO$ @@ -739,7 +737,7 @@ $DESCRIPTION$ The first argument is not a string. $EXAMPLES$ - LEFT + Left() $COMPLIANCE$ C $SEEALSO$ @@ -759,7 +757,7 @@ $DESCRIPTION$ The first arguments passed to a function is not a string. $EXAMPLES$ - STRTRAN + StrTran() $COMPLIANCE$ C $SEEALSO$ @@ -837,7 +835,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - MOD + Mod() $COMPLIANCE$ C $SEEALSO$ @@ -858,7 +856,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - ABS + Abs() $COMPLIANCE$ C $SEEALSO$ @@ -879,7 +877,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - INT + INT() $COMPLIANCE$ C $SEEALSO$ @@ -900,7 +898,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - MIN + Min() $COMPLIANCE$ C $SEEALSO$ @@ -921,7 +919,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - MAX + Max() $COMPLIANCE$ C $SEEALSO$ @@ -942,7 +940,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - ROUND + Round() $COMPLIANCE$ C $SEEALSO$ @@ -963,7 +961,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - LOG + Log() $COMPLIANCE$ C $SEEALSO$ @@ -984,7 +982,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - EXP + Exp() $COMPLIANCE$ C $SEEALSO$ @@ -1005,7 +1003,7 @@ The argument (or arguments) passed to a function is not an numeric value $EXAMPLES$ - SQRT + Sqrt() $COMPLIANCE$ C $SEEALSO$ @@ -1026,7 +1024,7 @@ The argument (or arguments) passed to a function is not a string value $EXAMPLES$ - VAL + Val() $COMPLIANCE$ C $SEEALSO$ @@ -1047,7 +1045,7 @@ The argument (or arguments) passed to a function is not a numeric value $EXAMPLES$ - STR + Str() $COMPLIANCE$ C $SEEALSO$ @@ -1067,7 +1065,7 @@ $DESCRIPTION$ Passed Run time errors was not strings with filenames to copy/ $EXAMPLES$ - __COPYFILE + __CopyFile() $COMPLIANCE$ H $SEEALSO$ @@ -1088,7 +1086,7 @@ An error has occurred during the attempt to open, create or write during copy operation $EXAMPLES$ - __COPYFILE + __CopyFile() $COMPLIANCE$ C $SEEALSO$ @@ -1109,7 +1107,7 @@ The first argument is not an array or/and the second argument is not a code block $EXAMPLES$ - AEVAL + AEval() $COMPLIANCE$ C $SEEALSO$ @@ -1153,7 +1151,7 @@ The passed argument is not an object. Only data of type OBJECT can be cloned by this function $EXAMPLES$ - OCLONE + OCLONE() $COMPLIANCE$ H $SEEALSO$ @@ -1174,7 +1172,7 @@ Passed argument is not a name of defined class or specified class doesn't have a super class $EXAMPLES$ - __INSTSUPER + __INSTSUPER() $COMPLIANCE$ H $SEEALSO$ @@ -1194,7 +1192,7 @@ $DESCRIPTION$ Passed argument is not a name of defined class $EXAMPLES$ - __INSTSUPER + __INSTSUPER() $COMPLIANCE$ H $SEEALSO$ @@ -1215,7 +1213,7 @@ The attempt to modify a data member of a class was made. Only INLINE and METHOD can be modified $EXAMPLES$ - CLASSMOD + __CLASSMOD() $COMPLIANCE$ H $SEEALSO$ @@ -1236,7 +1234,7 @@ Either the first argument was not an object or the second argument wasn't a string. $EXAMPLES$ - ISMESSAGE, OSEND + ISMESSAGE(), OSEND() $COMPLIANCE$ H $SEEALSO$ @@ -1257,7 +1255,7 @@ The passed arguments are causing conflict in handling of the request. There is no point in waiting forever for no input events! $EXAMPLES$ - INKEY + Inkey() $COMPLIANCE$ H $SEEALSO$ @@ -1278,7 +1276,7 @@ The passed argument(s) is not a string. It should be a string with a variable name or an one-dimensional array of strings. $EXAMPLES$ - __MVPRIVATE, __MVPUBLIC + __mvPrivate(), __mvPublic() $COMPLIANCE$ H $SEEALSO$ @@ -1294,12 +1292,12 @@ $CATEGORY$ Run time errors $ONELINER$ - Incorrect argument passed to __MVGET function + Incorrect argument passed to __mvGet() function $DESCRIPTION$ - __MVGET function expects only one argument: a string with a name + __mvGet() function expects only one argument: a string with a name of variable. The value of this variable will be returned. $EXAMPLES$ - __MVGET + __mvGet() $COMPLIANCE$ H $SEEALSO$ @@ -1315,12 +1313,12 @@ $CATEGORY$ Run time errors $ONELINER$ - Incorrect argument passed to __MVPUT function + Incorrect argument passed to __mvPut() function $DESCRIPTION$ - __MVPUT function expects at least one argument: a string with a name + __mvPut() function expects at least one argument: a string with a name of variable. The value of this variable will be set. $EXAMPLES$ - __MVPUT + __mvPut() $COMPLIANCE$ H $SEEALSO$ @@ -1342,7 +1340,7 @@ The number of requested argument is greater then the number of passed arguments. $EXAMPLES$ - PVALUE + hb_PValue() $COMPLIANCE$ H $SEEALSO$ @@ -1363,7 +1361,7 @@ The first argument is not a string with function/procedure name that should be called. $EXAMPLES$ - DO + Do() $COMPLIANCE$ H $SEEALSO$ @@ -1383,7 +1381,7 @@ $DESCRIPTION$ One passed argument is not of the required type. $EXAMPLES$ - __OBJ*() + __obj*() $COMPLIANCE$ H $SEEALSO$ @@ -1405,7 +1403,7 @@ A symbol should be modified or deleted from a class, but the symbol doesn't exist. $EXAMPLES$ - __OBJ*() + __obj*() $COMPLIANCE$ H $SEEALSO$ @@ -1425,7 +1423,7 @@ $DESCRIPTION$ A symbol should be added to a class, but the symbol already exists. $EXAMPLES$ - __OBJ*() + __obj*() $COMPLIANCE$ H $SEEALSO$ @@ -1445,7 +1443,7 @@ $DESCRIPTION$ The second arguments passed to a function is not a string. $EXAMPLES$ - ISLEAPYEAR + IsLeapYear() $COMPLIANCE$ H $SEEALSO$ @@ -1465,7 +1463,7 @@ $DESCRIPTION$ The specified file cannot be created due some OS error. $EXAMPLES$ - SET, SET ALTERNATE TO + Set(), SET ALTERNATE TO $COMPLIANCE$ C $SEEALSO$ diff --git a/extras/hbdoc/_tmplates.prg b/extras/hbdoc/_tmplates.prg index 530af79514..311b959717 100644 --- a/extras/hbdoc/_tmplates.prg +++ b/extras/hbdoc/_tmplates.prg @@ -152,7 +152,6 @@ METHOD IsField( c, nType ) CLASS Entry lResult := .F. ELSEIF nType != NIL .AND. hb_bitAnd( self:Group[ idx ], nType ) != nType lResult := .F. - ELSE ENDIF ENDIF @@ -351,7 +350,6 @@ PROCEDURE init_Templates() RETURN - PROCEDURE ShowTemplatesHelp( cTemplate, cDelimiter ) LOCAL o := Entry():New() @@ -372,9 +370,11 @@ PROCEDURE ShowTemplatesHelp( cTemplate, cDelimiter ) ! Empty( o:Templates[ idxTemplates ][ 1 ] ) .AND. ; !( o:Templates[ idxTemplates ][ 1 ] == "Template" ) - // ~ IF nFrom != nTo - // ~ ShowSubHelp( o:Templates[ idxTemplates ][ 1 ], 1, 0 ) - // ~ ENDIF +#if 0 + IF nFrom != nTo + ShowSubHelp( o:Templates[ idxTemplates ][ 1 ], 1, 0 ) + ENDIF +#endif o:SetTemplate( o:Templates[ idxTemplates ][ 1 ] ) diff --git a/extras/hbdoc/hbdoc.prg b/extras/hbdoc/hbdoc.prg index cab7081201..9c6fa65e43 100644 --- a/extras/hbdoc/hbdoc.prg +++ b/extras/hbdoc/hbdoc.prg @@ -173,7 +173,7 @@ PROCEDURE Main( ... ) ENDIF DO CASE - CASE cArgName == "-source" ; p_hsSwitches[ "basedir" ] := arg + iif( Right( arg, 1 ) == hb_ps(), "", hb_ps() ) + CASE cArgName == "-source" ; p_hsSwitches[ "basedir" ] := arg + iif( Right( arg, 1 ) == hb_ps(), "", hb_ps() ) CASE cArgName == "-format" IF arg == "" .OR. hb_AScan( p_hsSwitches[ "format-list" ], arg, , , .T. ) == 0 ShowHelp( "Unknown format option '" + arg + "'" ) diff --git a/extras/httpsrv/uhttpd.prg b/extras/httpsrv/uhttpd.prg index f2dcd4b0d1..3e8aa3e5d7 100644 --- a/extras/httpsrv/uhttpd.prg +++ b/extras/httpsrv/uhttpd.prg @@ -97,7 +97,7 @@ REQUEST __HB_EXTERN__ // adding GD support REQUEST GDChart REQUEST GDImage -REQUEST GDImageChar +REQUEST gdImageChar #define APP_GD_SUPPORT "_GD" #stdout "Lib GD support enabled" #else diff --git a/tests/fixcase.hb b/tests/fixcase.hb index afd9599ad6..2597966771 100644 --- a/tests/fixcase.hb +++ b/tests/fixcase.hb @@ -32,6 +32,7 @@ PROCEDURE Main( cFile ) ".7z" =>, ; ".exe" =>, ; ".o" =>, ; + ".obj" =>, ; ".js" =>, ; ".dif" =>, ; ".exe" =>, ; From 8378d932161f35a821d66cac362d8dc47306399f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 23:37:53 +0100 Subject: [PATCH 17/22] added missing category --- contrib/rddads/doc/en/readme.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/rddads/doc/en/readme.txt b/contrib/rddads/doc/en/readme.txt index 2bbb767c71..bf82447d35 100644 --- a/contrib/rddads/doc/en/readme.txt +++ b/contrib/rddads/doc/en/readme.txt @@ -1,5 +1,7 @@ /* $DOC$ + $TEMPLATE$ + Document $NAME$ ADS Overview $CATEGORY$ From ea235e54776ee1abdf01b87e8dbefd6ffddd8689 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 23:39:42 +0100 Subject: [PATCH 18/22] several NF docs validation errors are now considered warnings only. This way contrib docs are now included. --- ChangeLog.txt | 10 ++++++++++ extras/hbdoc/_tmplates.prg | 5 +++-- extras/hbdoc/hbdoc.prg | 33 +++++++++++++++------------------ 3 files changed, 28 insertions(+), 20 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 20aaef1cb7..a0e51e28f6 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,16 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-24 23:38 UTC+0100 Viktor Szakats (harbour syenar.net) + * extras/hbdoc/_tmplates.prg + * extras/hbdoc/hbdoc.prg + + several NF docs validation errors are now considered warnings only. + This way contrib docs are now included. + +2013-03-24 23:37 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/rddads/doc/en/readme.txt + ! added missing category + 2013-03-24 22:39 UTC+0100 Viktor Szakats (harbour syenar.net) * doc/en/subcodes.txt * extras/hbdoc/_tmplates.prg diff --git a/extras/hbdoc/_tmplates.prg b/extras/hbdoc/_tmplates.prg index 311b959717..51723004d8 100644 --- a/extras/hbdoc/_tmplates.prg +++ b/extras/hbdoc/_tmplates.prg @@ -228,10 +228,11 @@ METHOD FieldName( cField ) CLASS Entry RETURN self:Fields[ AScan( self:Fields, {| a | a[ 1 ] == cField } ) ][ 2 ] METHOD CategoryIndex( cCategory ) CLASS Entry - RETURN AScan( p_aCategories, {| a | a[ 1 ] == cCategory } ) + RETURN AScan( p_aCategories, {| a | HB_ISARRAY( a ) .AND. Len( a ) >= 1 .AND. a[ 1 ] == cCategory } ) METHOD SubcategoryIndex( cCategory, cSubcategory ) CLASS Entry - RETURN hb_AScan( p_aCategories[ ::CategoryIndex( cCategory ) ][ 2 ], cSubcategory, , , .T. ) + RETURN ::CategoryIndex( cCategory ) >= 1 .AND. ; + hb_AScan( p_aCategories[ ::CategoryIndex( cCategory ) ][ 2 ], cSubcategory, , , .T. ) PROCEDURE init_Templates() diff --git a/extras/hbdoc/hbdoc.prg b/extras/hbdoc/hbdoc.prg index 9c6fa65e43..02c158a6e6 100644 --- a/extras/hbdoc/hbdoc.prg +++ b/extras/hbdoc/hbdoc.prg @@ -463,8 +463,8 @@ STATIC PROCEDURE ProcessBlock( aHandle, aContent, cFile, cType, cVersion, o ) o:type_ := cType o:sourcefile_ := cSourceFile o:sourcefileversion_ := cVersion - o:Template := "?TEMPLATE?" o:Name := "?NAME?" + o:SetTemplate( "Function" ) DO WHILE FReadSection( aHandle, @cSectionName, @cSection, @o ) @@ -504,7 +504,7 @@ STATIC PROCEDURE ProcessBlock( aHandle, aContent, cFile, cType, cVersion, o ) IF ( idxCategory := AScan( p_aCategories, {| c | ! Empty( c ) .AND. ( iif( HB_ISCHAR( c ), Lower( c ) == Lower( cSection ), Lower( c[ 1 ] ) == Lower( cSection ) ) ) } ) ) == 0 AddErrorCondition( cFile, "Unknown CATEGORY '" + cSection + "' for template '" + o:Template, aHandle[ 2 ] ) - lAccepted := .F. + // lAccepted := .F. ENDIF CASE cSectionName == "SUBCATEGORY" .AND. o:IsField( "SUBCATEGORY" ) @@ -512,12 +512,12 @@ STATIC PROCEDURE ProcessBlock( aHandle, aContent, cFile, cType, cVersion, o ) IF idxCategory <= 0 .OR. o:Category == "" AddErrorCondition( cFile, "SUBCATEGORY '" + cSection + "' defined before CATEGORY", aHandle[ 2 ] ) - lAccepted := .F. + // lAccepted := .F. ELSEIF ( idxSubCategory := AScan( p_aCategories[ idxCategory ][ 2 ], {| c | c != NIL .AND. ( iif( HB_ISCHAR( c ), Lower( c ) == Lower( cSection ), Lower( c[ 1 ] ) == Lower( cSection ) ) ) } ) ) == 0 AddErrorCondition( cFile, "Unknown SUBCATEGORY '" + p_aCategories[ idxCategory ][ 1 ] + "-" + cSection, aHandle[ 2 ] ) - lAccepted := .F. + // lAccepted := .F. ENDIF @@ -528,7 +528,7 @@ STATIC PROCEDURE ProcessBlock( aHandle, aContent, cFile, cType, cVersion, o ) Lower( cSection ) == "none." ) AddErrorCondition( cFile, "'" + o:Name + "' is identified as template " + o:Template + " but has no RETURNS value (" + cSection + ")", aHandle[ 2 ] - 1 ) - lAccepted := .F. + // lAccepted := .F. CASE ! o:IsConstraint( cSectionName, cSection ) @@ -555,15 +555,13 @@ STATIC PROCEDURE ProcessBlock( aHandle, aContent, cFile, cType, cVersion, o ) ENDDO IF lAccepted - lAccepted := o:IsComplete( @cSource ) - IF ! lAccepted + IF ! o:IsComplete( @cSource ) AddErrorCondition( cFile, "Missing sections: '" + cSource + "'", aHandle[ 2 ] ) - lAccepted := .F. + // lAccepted := .F. ENDIF ENDIF IF ! lAccepted - ELSEIF o:Template == "Function" .AND. ( ; Empty( o:Returns ) .OR. ; Lower( o:Returns ) == "nil" .OR. ; @@ -602,15 +600,14 @@ STATIC PROCEDURE ProcessBlock( aHandle, aContent, cFile, cType, cVersion, o ) IF idxSubCategory == -1 .AND. ( ! o:IsField( "SUBCATEGORY" ) .OR. ! o:IsRequired( "SUBCATEGORY" ) ) // .AND. idxSubCategory == -1 idxSubCategory := o:SubcategoryIndex( o:Category, "" ) - IF idxSubCategory == -1 - idxSubCategory := 1 - ENDIF ENDIF - IF ! HB_ISARRAY( p_aCategories[ idxCategory ][ 3 ][ idxSubCategory ] ) - p_aCategories[ idxCategory ][ 3 ][ idxSubCategory ] := {} + IF idxCategory > 0 .AND. idxSubCategory > 0 + IF ! HB_ISARRAY( p_aCategories[ idxCategory ][ 3 ][ idxSubCategory ] ) + p_aCategories[ idxCategory ][ 3 ][ idxSubCategory ] := {} + ENDIF + AAdd( p_aCategories[ idxCategory ][ 3 ][ idxSubCategory ], o ) ENDIF - AAdd( p_aCategories[ idxCategory ][ 3 ][ idxSubCategory ], o ) ENDIF @@ -893,9 +890,9 @@ PROCEDURE ShowSubHelp( xLine, nMode, nIndent, n ) ENDIF OTHERWISE DO CASE - CASE nMode == 1 ; OutStd( cIndent + xLine ) ; OutStd( hb_eol() ) - CASE nMode == 2 ; OutStd( iif( n > 1, ", ", "" ) + xLine ) - OTHERWISE ; OutStd( "(" + hb_ntos( nMode ) + ") " ) ; OutStd( xLine ) ; OutStd( hb_eol() ) + CASE nMode == 1 ; OutStd( cIndent + xLine ) ; OutStd( hb_eol() ) + CASE nMode == 2 ; OutStd( iif( n > 1, ", ", "" ) + xLine ) + OTHERWISE ; OutStd( "(" + hb_ntos( nMode ) + ") " ) ; OutStd( xLine ) ; OutStd( hb_eol() ) ENDCASE ENDCASE ENDIF From 110d8a67490538f1b5ea48fd4d81459db4b9e7e6 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 23:47:36 +0100 Subject: [PATCH 19/22] doc cleanups --- ChangeLog.txt | 5 + contrib/hbmisc/doc/en/ht_conv.txt | 20 +-- contrib/hbmisc/doc/en/ht_doc.txt | 247 ------------------------------ 3 files changed, 15 insertions(+), 257 deletions(-) delete mode 100644 contrib/hbmisc/doc/en/ht_doc.txt diff --git a/ChangeLog.txt b/ChangeLog.txt index a0e51e28f6..a5b3e3ae04 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,11 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-24 23:47 UTC+0100 Viktor Szakats (harbour syenar.net) + - contrib/hbmisc/doc/en/ht_doc.txt + * contrib/hbmisc/doc/en/ht_conv.txt + * doc cleanups + 2013-03-24 23:38 UTC+0100 Viktor Szakats (harbour syenar.net) * extras/hbdoc/_tmplates.prg * extras/hbdoc/hbdoc.prg diff --git a/contrib/hbmisc/doc/en/ht_conv.txt b/contrib/hbmisc/doc/en/ht_conv.txt index c499b41599..f32a0d9ec9 100644 --- a/contrib/hbmisc/doc/en/ht_conv.txt +++ b/contrib/hbmisc/doc/en/ht_conv.txt @@ -7,7 +7,7 @@ $ONELINER$ Check if the value is a Binary Number $SYNTAX$ - IsBin() -> + IsBin( ) --> $ARGUMENTS$ STRING TO BE CHECKED $RETURNS$ @@ -29,7 +29,7 @@ $ONELINER$ Check if the value is a Octal Number $SYNTAX$ - IsOctal() -> + IsOctal( ) --> $ARGUMENTS$ STRING TO BE CHECKED $RETURNS$ @@ -51,7 +51,7 @@ $ONELINER$ Check if the value is a Decimal Number $SYNTAX$ - IsDec() -> + IsDec( ) --> $ARGUMENTS$ STRING TO BE CHECKED $RETURNS$ @@ -73,7 +73,7 @@ $ONELINER$ Check if the value is a Hexal Number $SYNTAX$ - IsHexa() -> + IsHexa( ) --> $ARGUMENTS$ STRING TO BE CHECKED $RETURNS$ @@ -95,7 +95,7 @@ $ONELINER$ Converts a Decimal Value to Binary $SYNTAX$ - DecToBin() -> + DecToBin( ) --> $ARGUMENTS$ NUMBER TO BE CONVERTED $RETURNS$ @@ -118,7 +118,7 @@ $ONELINER$ Converts a Decimal Value to Octal $SYNTAX$ - DecToOctal() -> + DecToOctal( ) --> $ARGUMENTS$ NUMBER TO BE CONVERTED $RETURNS$ @@ -141,7 +141,7 @@ $ONELINER$ Converts a Decimal Value to Hexa $SYNTAX$ - DecToHexa() -> + DecToHexa( ) --> $ARGUMENTS$ NUMBER TO BE CONVERTED $RETURNS$ @@ -164,7 +164,7 @@ $ONELINER$ Converts a Binary Value to Decimal $SYNTAX$ - BinToDec() -> + BinToDec( ) --> $ARGUMENTS$ NUMBER TO BE CONVERTED $RETURNS$ @@ -187,7 +187,7 @@ $ONELINER$ Converts a Octal Value to Decimal $SYNTAX$ - OctalToDec() -> + OctalToDec( ) --> $ARGUMENTS$ NUMBER TO BE CONVERTED $RETURNS$ @@ -210,7 +210,7 @@ $ONELINER$ Converts a Hexa Value to Decimal $SYNTAX$ - HexaToDec() -> + HexaToDec( ) --> $ARGUMENTS$ NUMBER TO BE CONVERTED $RETURNS$ diff --git a/contrib/hbmisc/doc/en/ht_doc.txt b/contrib/hbmisc/doc/en/ht_doc.txt deleted file mode 100644 index a228ecc132..0000000000 --- a/contrib/hbmisc/doc/en/ht_doc.txt +++ /dev/null @@ -1,247 +0,0 @@ - -/* $DOC$ - $NAME$ - THtml() - $CATEGORY$ - Harbour Tools - $ONELINER$ - Html Class - $SYNTAX$ - oHtml:=THtml():New() --> oHtm - $ARGUMENTS$ - Name of the Html file to create - $RETURNS$ - An instance of the THtml Class - $DESCRIPTION$ - THtml() is a class that creates an .html file of the same - name you pass to the constructor. - The class methods are as follows: - New() Create a new instance of the THtml class - Close() Close the created file - WriteTitle() Write the file title - WritePar() Writes a paragraph - WriteParBold() Same as WritePar(), but the text is bold - WriteLink(, ) Write a link to another topic - WriteText() Write any text - $EXAMPLES$ - PROCEDURE Main() - LOCAL oHtm - - oHtm := THtml():New( "www\harbour.html" ) - oHtm:WriteTitle( "Harbour Reference Guide" ) - oHtm:WritePar( "HARBOUR" ) - oHtm:WriteLink( "OverView" ) - oHtm:WriteLink( "License" ) - oHtm:WriteLink( "http://www.gnu.org/copyleft/gpl" ) - oHtm:WritePar( "See the Links Above" ) - oHtm:Close() - - RETURN - $STATUS$ - R - $COMPLIANCE$ - This is a new Harbour Tools class - $PLATFORMS$ - ALL - $SEEALSO$ - TCLASS() - $END$ - */ - -/* $DOC$ - $NAME$ - TOs2() - $CATEGORY$ - Harbour Tools - $ONELINER$ - OS/2 Documentation Class - $SYNTAX$ - oNg:=TOs2():New() --> oOs2 - $ARGUMENTS$ - Name of the IPF Source file to create - $RETURNS$ - An instance of the TOs2 Class - $DESCRIPTION$ - TOs2() is a class that creates the OS/2 IPF Source - of the same name you pass to the constructor. - The class methods are as follows: - New() Create a new instance of the TOs2 class - Close() Close the created file - WriteTitle(, ) Write the file title - WritePar() Write a paragraph - WriteParBold() Same as WritePar(), but the text is bold - WriteLink() Write a link to another topic - ScanLink() Scan the aLinkRef array for a valid topic - DosToOs2Text() Convert a Dos string to a OS/2 String - $EXAMPLES$ - PROCEDURE Main() - LOCAL oNg - - oNg := TOs2():New( "ngi\harbour.ngi" ) - oNg:WriteTitle( "Harbour Reference Guide" ) - oNg:WritePar( "HARBOUR" ) - oNg:WriteLink( "OverView" ) - oNg:WriteLink( "License" ) - - oNg:WritePar( "See the Links Above" ) - oNg:Close() - - RETURN - $STATUS$ - R - $COMPLIANCE$ - This is a new Harbour Tools class - $PLATFORMS$ - ALL - $SEEALSO$ - TNortonGuide() - $END$ - */ - -/* $DOC$ - $NAME$ - TNortonGuide() - $CATEGORY$ - Harbour Tools - $ONELINER$ - Norton Guide Class - $SYNTAX$ - oNg:=TNortonGuide():New() --> oNg - $ARGUMENTS$ - Name of the Ng Source file to create - $RETURNS$ - An instance of the TNortonGuide Class - $DESCRIPTION$ - TNortonGuide() is a class that creates the Norton Guide Source - Code of the same name you pass to the constructor. - The class methods are as follows: - New() Create an instance of the TNortonGuide class - Close() Close the created file - WriteTitle(, ) Write the file title - WritePar() Write a paragraph - WriteParBold() Same as WritePar(), but the text is bold - WriteLink() Write a link to another topic - $EXAMPLES$ - PROCEDURE Main() - LOCAL oNg - - oNg := TNortonGuide():New( "ngi\harbour.ngi" ) - oNg:WriteTitle( "Harbour Reference Guide" ) - oNg:WritePar( "HARBOUR" ) - oNg:WriteLink( "OverView" ) - oNg:WriteLink( "License" ) - - oNg:WritePar( "See the Links Above" ) - oNg:Close() - - RETURN - $STATUS$ - R - $COMPLIANCE$ - This is a new Harbour Tools class - $PLATFORMS$ - ALL - $SEEALSO$ - TTroff(), TRtf(), THtml(), TOs2() - $END$ - */ - -/* $DOC$ - $NAME$ - TRtf() - $CATEGORY$ - Harbour Tools - $ONELINER$ - Rtf Class - $SYNTAX$ - oNg:=TRtf():New() --> oRtf - $ARGUMENTS$ - Name of the RTF file to create - $RETURNS$ - An instance of the TRtf Class - $DESCRIPTION$ - TRtf() is a class that creates the RTF Documentation Source - Code of the same name you pass to the constructor. - The class methods are as follows: - New() Create a new instance of the TRtf class - Close() Close the create file - WriteTitle(, ) Write the file title - WritePar() Write a paragraph - WriteParBold() Same as WritePar(), but the text is bold - WriteLink() Write a link to another topic - WriteHeader() Write the RTF header - EndPar() Write the end paragraph delimiter - $EXAMPLES$ - PROCEDURE Main() - LOCAL oRtf - - oRtf := TRtf():New( "rtf\harbour.rtf" ) - oRtf:WriteHeader() - oRtf:WriteTitle( "Harbour Reference Guide" ) - oRtf:WritePar( "HARBOUR" ):Endpar() - oRtf:WriteLink( "OverView" ) - oRtf:WriteLink( "License" ) - - oRtf:WritePar( "See the Links Above" ):EndPar() - oRtf:Close() - - RETURN - $STATUS$ - R - $COMPLIANCE$ - This is a new Harbour Tools class - $PLATFORMS$ - ALL - $SEEALSO$ - TNortonGuide() - $END$ - */ - -/* $DOC$ - $NAME$ - TTroff() - $CATEGORY$ - Harbour Tools - $ONELINER$ - Troff Class - $SYNTAX$ - oTroff:=TTrof():New() --> oTrf - $ARGUMENTS$ - Name of the Troff file to create - $RETURNS$ - instance of the TTroff Class - $DESCRIPTION$ - TTroff() is a class that creates the TROFF Documentation Source - Code of the same name you pass to the constructor. - The class methods are as follows: - New() Create a new instance of the THtml class - Close() Close the created file - WriteTitle(, ) Write the file title - WritePar() Write a paragraph - WriteParBold() Same as WritePar(), but the text is bold - WriteLink() Write a link to another topic - WriteText() Writes text without formating - $EXAMPLES$ - PROCEDURE Main() - LOCAL oTroff - - oTroff := TTroff():New( "tr\harbour.ngi" ) - oTroff:WriteTitle( "Harbour Reference Guide" ) - oTroff:WritePar( "HARBOUR" ) - oTroff:WriteLink( "OverView" ) - oTroff:WriteLink( "License" ) - - oTroff:WritePar( "See the Links Above" ) - oTroff:Close() - - RETURN - $STATUS$ - R - $COMPLIANCE$ - This is a new Harbour Tools class - $PLATFORMS$ - ALL - $SEEALSO$ - TNortonGuide() - $END$ - */ From 91713d5fa0afcfddd54cfdcdf9bbc545e0f531bc Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 Mar 2013 23:49:58 +0100 Subject: [PATCH 20/22] handle unknown compliance strings gracefully --- ChangeLog.txt | 4 ++++ extras/hbdoc/hbdoc.prg | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index a5b3e3ae04..8e6b199445 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-24 23:49 UTC+0100 Viktor Szakats (harbour syenar.net) + * extras/hbdoc/hbdoc.prg + + handle unknown compliance strings gracefully + 2013-03-24 23:47 UTC+0100 Viktor Szakats (harbour syenar.net) - contrib/hbmisc/doc/en/ht_doc.txt * contrib/hbmisc/doc/en/ht_conv.txt diff --git a/extras/hbdoc/hbdoc.prg b/extras/hbdoc/hbdoc.prg index 02c158a6e6..23d731c56a 100644 --- a/extras/hbdoc/hbdoc.prg +++ b/extras/hbdoc/hbdoc.prg @@ -820,10 +820,9 @@ FUNCTION Decode( cType, hsBlock, cKey ) IF ( idx := AScan( p_aCompliance, {| a | a[ 1 ] == cCode } ) ) > 0 RETURN p_aCompliance[ idx ][ 2 ] ELSE - RETURN "Unknown 'COMPLIANCE' code: '" + cCode + "'" + RETURN cCode ENDIF DO CASE - CASE Empty( cCode ) ; RETURN cCode CASE cCode == "C" ; RETURN "This is CA-Cl*pper v5.2 compliant" CASE cCode == "C(array)" ; RETURN "This is CA-Cl*pper v5.2 compliant except that arrays in Harbour can have an unlimited number of elements" CASE cCode == "C(menu)" ; RETURN "This is CA-Cl*pper v5.2 compliant except that menus (internally arrays) in Harbour can have an unlimited number of elements" @@ -832,7 +831,7 @@ FUNCTION Decode( cType, hsBlock, cKey ) CASE cCode == "C53" ; RETURN "This is CA-Cl*pper v5.3 compliant and is only visible if source was compiled with the HB_COMPAT_C53 flag" CASE cCode == "H" ; RETURN "This is Harbour specific" CASE cCode == "NA" ; RETURN "Not applicable" - OTHERWISE ; RETURN "Unknown 'COMPLIANCE' code: '" + cCode + "'" + OTHERWISE ; RETURN cCode ENDCASE CASE cType == "NAME" From 7dcadd29767334335b6b26b36a4ac686c629ffd4 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 25 Mar 2013 01:22:21 +0100 Subject: [PATCH 21/22] deleted values of constants from docs --- ChangeLog.txt | 4 ++++ contrib/hbct/doc/en/ctstr.txt | 8 +++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 8e6b199445..4bae036bc4 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-25 01:21 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbct/doc/en/ctstr.txt + * deleted values of constants from docs + 2013-03-24 23:49 UTC+0100 Viktor Szakats (harbour syenar.net) * extras/hbdoc/hbdoc.prg + handle unknown compliance strings gracefully diff --git a/contrib/hbct/doc/en/ctstr.txt b/contrib/hbct/doc/en/ctstr.txt index 534ac67ea1..a5fecf00bc 100644 --- a/contrib/hbct/doc/en/ctstr.txt +++ b/contrib/hbct/doc/en/ctstr.txt @@ -137,12 +137,10 @@ is set (e.g. "?"), then "?" matches every other character. can be one of the following values that are defined - in ct.ch + in ct.ch: - Definition | Value - ----------------------|------ - CT_SETATLIKE_EXACT | 0 - CT_SETATLIKE_WILDCARD | 1 + CT_SETATLIKE_EXACT + CT_SETATLIKE_WILDCARD $EXAMPLES$ From 263d25222ec548bc8d6179b463c315884242d68a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 25 Mar 2013 16:15:56 +0100 Subject: [PATCH 22/22] 2013-03-25 16:14 UTC+0100 Viktor Szakats (harbour syenar.net) * extras/template/tests/hbmk.hbm * reverted to not refer to hbtest.hbc * README.txt * sections renumbered + updated the way to submit patches to use Git facilities + it's now an UTF-8 file --- ChangeLog.txt | 8 ++++ README.txt | 84 +++++++++++++++++----------------- extras/template/tests/hbmk.hbm | 1 - 3 files changed, 51 insertions(+), 42 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 4bae036bc4..5492a5a69d 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,14 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-25 16:14 UTC+0100 Viktor Szakats (harbour syenar.net) + * extras/template/tests/hbmk.hbm + * reverted to not refer to hbtest.hbc + * README.txt + * sections renumbered + + updated the way to submit patches to use Git facilities + + it's now an UTF-8 file + 2013-03-25 01:21 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbct/doc/en/ctstr.txt * deleted values of constants from docs diff --git a/README.txt b/README.txt index 0a28141940..55a84e1d0d 100644 --- a/README.txt +++ b/README.txt @@ -9,30 +9,30 @@ WELCOME TO HARBOUR UI and database backends, its own make system and a large collection of libraries and interfaces to many popular APIs. - http://harbour-project.org/ + TABLE OF CONTENT ================ -0. GUARANTEES AND LIABILITY -1. HOW TO BUILD AND INSTALL HARBOUR FROM SOURCE -2. HOW TO DO A PARTIAL [RE]BUILD -3. HOW TO CREATE DISTRIBUTABLE PACKAGES -4. HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD -5. SUPPORTED PLATFORMS AND C COMPILERS -6. OPTIONS AVAILABLE WHEN BUILDING HARBOUR -7. DEBUGGING OPTIONS -8. EXAMPLES -9. HOW TO GET HARBOUR -10. TROUBLESHOOTING -11. QUICK START TO BUILD YOUR OWN HARBOUR APPLICATIONS -12. BUILD HOST-PLATFORM/SHELL - TARGET-PLATFORM/COMPILER COMPATIBILITY MATRIX -13. LINKS TO EXTERNAL COMPONENTS -14. HOW TO PARTICIPATE -15. FOR MORE INFORMATION +1. GUARANTEES AND LIABILITY +2. HOW TO BUILD AND INSTALL HARBOUR FROM SOURCE +3. HOW TO DO A PARTIAL [RE]BUILD +4. HOW TO CREATE DISTRIBUTABLE PACKAGES +5. HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD +6. SUPPORTED PLATFORMS AND C COMPILERS +7. OPTIONS AVAILABLE WHEN BUILDING HARBOUR +8. DEBUGGING OPTIONS +9. EXAMPLES +10. HOW TO GET HARBOUR +11. TROUBLESHOOTING +12. QUICK START TO BUILD YOUR OWN HARBOUR APPLICATIONS +13. BUILD HOST-PLATFORM/SHELL - TARGET-PLATFORM/COMPILER COMPATIBILITY MATRIX +14. LINKS TO EXTERNAL COMPONENTS +15. HOW TO PARTICIPATE +16. FOR MORE INFORMATION -0. GUARANTEES AND LIABILITY +1. GUARANTEES AND LIABILITY =========================== This document and all other parts of Harbour are distributed in the @@ -49,7 +49,7 @@ TABLE OF CONTENT of the project. -1. HOW TO BUILD AND INSTALL HARBOUR FROM SOURCE +2. HOW TO BUILD AND INSTALL HARBOUR FROM SOURCE =============================================== ========================================================================== @@ -245,7 +245,7 @@ TABLE OF CONTENT your $PATH. -2. HOW TO DO A PARTIAL [RE]BUILD +3. HOW TO DO A PARTIAL [RE]BUILD ================================ If you want to [re]build only a specific part of Harbour, like @@ -264,7 +264,7 @@ TABLE OF CONTENT ../../bin///hbmk2 ../make.hb [clean] [custom hbmk2 options] -3. HOW TO CREATE DISTRIBUTABLE PACKAGES +4. HOW TO CREATE DISTRIBUTABLE PACKAGES ======================================= Source .tgz on *nixes @@ -345,7 +345,7 @@ TABLE OF CONTENT steps before calling the script. -4. HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD +5. HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD ================================================= Certain Harbour parts (typically contrib packages) depend on 3rd @@ -547,7 +547,7 @@ TABLE OF CONTENT $ make clean -5. SUPPORTED PLATFORMS AND C COMPILERS +6. SUPPORTED PLATFORMS AND C COMPILERS ====================================== You can override target platform autodetection with these HB_PLATFORM values: @@ -677,7 +677,7 @@ TABLE OF CONTENT watcom - Open Watcom C/C++ -6. OPTIONS AVAILABLE WHEN BUILDING HARBOUR +7. OPTIONS AVAILABLE WHEN BUILDING HARBOUR ========================================== You can fine-tune Harbour builds with below listed @@ -822,7 +822,7 @@ TABLE OF CONTENT executables are required for a cross-build process to succeed. -7. DEBUGGING OPTIONS +8. DEBUGGING OPTIONS ==================== Tracing @@ -857,7 +857,7 @@ TABLE OF CONTENT HB_USER_LIBS=cg32 -8. EXAMPLES +9. EXAMPLES =========== for Windows (x86, 32-bit) hosts @@ -1230,7 +1230,7 @@ TABLE OF CONTENT --- for Darwin (OS X) hosts - --------------------------- + ----------------------- --- To create "Universal" binaries, compatible with pre-Snow Leopard PowerPC and Intel systems export HB_USER_LDFLAGS="-arch i386 -arch ppc" @@ -1254,8 +1254,8 @@ TABLE OF CONTENT gmake OR make HB_PLATFORM=wce --- -9. HOW TO GET HARBOUR -===================== +10. HOW TO GET HARBOUR +====================== Stable versions --------------- @@ -1315,7 +1315,7 @@ TABLE OF CONTENT https://travis-ci.org/harbour/core -10. TROUBLESHOOTING +11. TROUBLESHOOTING =================== Always evaluate these points before reporting an issue on the developers' @@ -1409,7 +1409,7 @@ TABLE OF CONTENT functions against CT3 library, etc.) -11. QUICK START TO BUILD YOUR OWN HARBOUR APPLICATIONS +12. QUICK START TO BUILD YOUR OWN HARBOUR APPLICATIONS ====================================================== For all platforms you'll need two things: @@ -1436,7 +1436,7 @@ TABLE OF CONTENT https://github.com/harbour/core/blob/master/utils/hbmk2/hbmk2.md -12. BUILD HOST-PLATFORM/SHELL - TARGET-PLATFORM/COMPILER COMPATIBILITY MATRIX +13. BUILD HOST-PLATFORM/SHELL - TARGET-PLATFORM/COMPILER COMPATIBILITY MATRIX =============================================================================  | host
plat | target
plat/comp | target
cpu @@ -1553,7 +1553,7 @@ TABLE OF CONTENT *nix / POSIX shell -13. LINKS TO EXTERNAL COMPONENTS +14. LINKS TO EXTERNAL COMPONENTS ================================ C/C++ Compilers/Shells: @@ -1755,18 +1755,20 @@ TABLE OF CONTENT http://git.or.cz/course/svn.html -14. HOW TO PARTICIPATE +15. HOW TO PARTICIPATE ====================== There are several ways to help making Harbour better: - You can give feedback/suggestions to developers on available channels. - - You can submit patches or source code on above channels. - Patches are accepted in 'git diff' (or 'diff -u') format, - created from root directory of the repository sandbox. - Zip your patch file before attaching it. Use the extension '.zip'. - Always use the same coding/formatting style as you find in + - Submit a change: + 1. Fork Harbour + 2. Create a branch (git checkout -b my_mod) + 3. Commit your changes (git commit -am "Added my feature") + 4. Push to the branch (git push origin my_mod) + 5. Open a Pull Request + - Always use the same coding/formatting style as you find in the files you're patching. The easiest way to achieve this is to use these commands to format your sources: $ uncrustify -c /bin/harbour.ucf @@ -1788,7 +1790,7 @@ TABLE OF CONTENT various environments, etc. -15. FOR MORE INFORMATION +16. FOR MORE INFORMATION ======================== Homepage: @@ -1825,7 +1827,7 @@ TABLE OF CONTENT https://en.wikipedia.org/wiki/Harbour_compiler -[ Copyright (c) 2009-2013 Viktor Szakats (harbour syenar.net) +[ Copyright (c) 2009-2013 Viktor Szakáts (harbour syenar.net) Licensed under Creative Commons Attribution-ShareAlike 3.0: http://creativecommons.org/licenses/by-sa/3.0/ See COPYING.txt. ] diff --git a/extras/template/tests/hbmk.hbm b/extras/template/tests/hbmk.hbm index 5383620a07..7ee06a263d 100644 --- a/extras/template/tests/hbmk.hbm +++ b/extras/template/tests/hbmk.hbm @@ -1,6 +1,5 @@ # hbmk2 defaults for this directory hbtpl.hbc -hbtest.hbc -w3 -es2