See changelog 20000423 22:00 gmt -3

This commit is contained in:
Luiz Rafael Culik
2000-04-23 22:57:34 +00:00
parent d46faa5837
commit c588e84ca8
15 changed files with 215 additions and 47 deletions

View File

@@ -18,7 +18,7 @@
* $FUNCNAME$
* GT_ASCPOS()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Return the ascii value of a specified character in a string
* $SYNTAX$
@@ -52,7 +52,7 @@
* $FUNCNAME$
* GT_ASCIISUM()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Sum the ascii values in a string.
* $SYNTAX$
@@ -75,7 +75,7 @@
* $FUNCNAME$
* GT_ATDIFF()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Return the position where two strings begin to differ
* $SYNTAX$
@@ -106,7 +106,7 @@
* $FUNCNAME$
* GT_CHAREVEN()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Return a string of all the characters in even positions
* $SYNTAX$
@@ -134,7 +134,7 @@
* $FUNCNAME$
* GT_CHARMIX()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Amalgamate two strings to form the return value
* $SYNTAX$
@@ -166,7 +166,7 @@
* $FUNCNAME$
* GT_CHARODD()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Return a string of all the characters in odd positions
* $SYNTAX$
@@ -194,7 +194,7 @@
* $FUNCNAME$
* GT_CHRCOUNT()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Count the number of times a character appears in a string
* $SYNTAX$
@@ -223,7 +223,7 @@
* $FUNCNAME$
* GT_CHRFIRST()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Find which character occurs first in a string
* $SYNTAX$
@@ -251,7 +251,7 @@
* $FUNCNAME$
* GT_CHRTOTAL()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Find number of times a set of characters appears in a string
* $SYNTAX$
@@ -285,7 +285,7 @@
* $FUNCNAME$
* GT_STRCOUNT()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Count the number of times a substring appears in a string
* $SYNTAX$
@@ -318,7 +318,7 @@
* $FUNCNAME$
* GT_STRCSPN()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Return length of prefix in string of chars NOT in set.
* $SYNTAX$
@@ -345,7 +345,7 @@
* $FUNCNAME$
* GT_STRDIFF()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Return a string where it begins to differ from another
* $SYNTAX$
@@ -377,7 +377,7 @@
* $FUNCNAME$
* GT_STREXPAND()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Insert fillers between characters in a passed string
* $SYNTAX$
@@ -409,7 +409,7 @@
* $FUNCNAME$
* GT_STRLEFT()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Find length of prefix of a string
* $SYNTAX$
@@ -441,7 +441,7 @@
* $FUNCNAME$
* GT_STRPBRK()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Return string after 1st char from a set
* $SYNTAX$
@@ -469,7 +469,7 @@
* $FUNCNAME$
* GT_STRRIGHT()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Find length of a suffix of a string
* $SYNTAX$

View File

@@ -0,0 +1,33 @@
if "%1" =="/OS2" goto OS2
if "%1" =="/NGI" goto NG
if "%1" =="/RTF" goto RTF
if "%1" =="/HTM" goto HTM
ECHO Assembling input files
:NG
hbdoc /ngi libgt.lnk libgt.rsp
REM Compile the sources
Echo Compiling the sources
Processing Input Files
Copy ngi\funcam.txt+ngi\funcn_.txt overview.ngi
Compiling Sources
ngxc overview.ngi
Linking the Guide
ngxl libgt.lnk
del *.ngi
del *.ngo
del ngi\*.txt
del ngi\*.ngi
GOTO END
:OS2
hbdoc /OS2 libgt.lnk libgt.rsp
GOTO END
:RTF
hbdoc /RTF libgt.lnk libgt.rsp
HCW HARBOUR.HPJ
GOTO END
:HTM
hbdoc /HTM libgt.lnk libgt.rsp
GOTO END
:END
del ass*.bat

View File

@@ -0,0 +1,6 @@
!name: Harbour tools help- GT lib
!credits: The Harbour Project
Luiz Rafael Culik
!menu: Functions
Functions overview.ngo

View File

@@ -0,0 +1,2 @@
en\ht_gt.txt

View File

@@ -95,7 +95,7 @@
* $COMPLIANCE$
* This is a new Harbour Tools class </par>
* $FILES$
* Library is Tools
* Library is tools
* $SEEALSO$
* TClass()
* $END$

View File

@@ -17,7 +17,7 @@
* $FUNCNAME$
* ISBIN()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Check if the value is a Binary Number
* $SYNTAX$
@@ -29,7 +29,7 @@
* $DESCRIPTION$
* check if the passed string is a bynary number or not
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* ISOCTAL(),ISDEC(),ISHEXA()
* $END$
@@ -39,7 +39,7 @@
* $FUNCNAME$
* ISOCTAL()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Check if the value is a Octal Number
* $SYNTAX$
@@ -51,7 +51,7 @@
* $DESCRIPTION$
* check if the passed string is a octal number or not
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* ISBIN(),ISDEC(),ISHEXA()
* $END$
@@ -61,7 +61,7 @@
* $FUNCNAME$
* ISDEC()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Check if the value is a Decimal Number
* $SYNTAX$
@@ -73,7 +73,7 @@
* $DESCRIPTION$
* check if the passed string is a decimal number or not
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* ISOCTAL(),ISBIN(),ISHEXA()
* $END$
@@ -83,7 +83,7 @@
* $FUNCNAME$
* ISHEXA()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Check if the value is a Hexal Number
* $SYNTAX$
@@ -95,7 +95,7 @@
* $DESCRIPTION$
* check if the passed string is a hexa number or not
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* ISOCTAL(),ISDEC(),ISBIN()
* $END$
@@ -105,7 +105,7 @@
* $FUNCNAME$
* DECTOBIN()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Converts a Decimal Value to Binary
* $SYNTAX$
@@ -118,7 +118,7 @@
* This function converts a string <cN> from an decimal value
* to an binary value.
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* Dectohexa(),dectooctal()
* $END$
@@ -128,7 +128,7 @@
* $FUNCNAME$
* DECTOOCTAL()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Converts a Decimal Value to Octal
* $SYNTAX$
@@ -141,7 +141,7 @@
* This function converts a string <cN> from an decimal value
* to an octal value.
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* Dectohexa(),dectobin()
* $END$
@@ -151,7 +151,7 @@
* $FUNCNAME$
* DECTOHEXA()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Converts a Decimal Value to Hexa
* $SYNTAX$
@@ -164,7 +164,7 @@
* This function converts a string <cN> from an decimal value
* to an hexadecimal value.
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* Dectobin(),dectooctal()
* $END$
@@ -174,7 +174,7 @@
* $FUNCNAME$
* BINTODEC()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Converts a Binary Value to Decimal
* $SYNTAX$
@@ -187,7 +187,7 @@
* This function converts a string <cN> from an binary value
* to a numeric decimal value.
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* OctaltoDec(),HexatoDec()
* $END$
@@ -197,7 +197,7 @@
* $FUNCNAME$
* OCTALTODEC()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Converts a Octal Value to Decimal
* $SYNTAX$
@@ -210,7 +210,7 @@
* This function converts a string <cN> from an octal value
* to a numeric decimal value.
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* BintoDec(),HexatoDec()
* $END$
@@ -220,7 +220,7 @@
* $FUNCNAME$
* HEXATODEC()
* $CATEGORY$
* Conversion
* Conversion Tools
* $ONELINER$
* Converts a Hexa Value to Decimal
* $SYNTAX$
@@ -233,7 +233,7 @@
* This function converts a string <cN> from an hexadecimal value
* to a numeric decimal value.
* $FILES$
* Library is Tools.lib
* Library is tools
* $SEEALSO$
* OctaltoDec(),BintoDec()
* $END$

View File

@@ -52,9 +52,9 @@
* $STATUS$
* R
* $COMPLIANCE$
* This function is CA-CLIPPER TOOLS compatible
* This function is CA-CLIPPER tools compatible
* $FILES$
* Library is Tools
* Library is tools
* $SEEALSO$
* FIELDSIZE(),FIELDDECI()
* $END$
@@ -64,7 +64,7 @@
* $FUNCNAME$
* FIELDSIZE()
* $CATEGORY$
* Database Tools
* Database tools
* $ONELINER$
* Determines the size of a given field.
* $SYNTAX$
@@ -89,9 +89,9 @@
* $STATUS$
* R
* $COMPLIANCE$
* This function is CA-CLIPPER TOOLS compatible
* This function is CA-CLIPPER tools compatible
* $FILES$
* Library is Tools
* Library is tools
* $SEEALSO$
* FIELDTYPE(),FIELDDECI()
* $END$
@@ -101,7 +101,7 @@
* $FUNCNAME$
* FIELDDECI()
* $CATEGORY$
* Database Tools
* Database tools
* $ONELINER$
* Determines the number of decimal places of a given numeric field.
* $SYNTAX$
@@ -127,9 +127,9 @@
* $STATUS$
* R
* $COMPLIANCE$
* This function is CA-CLIPPER TOOLS compatible
* This function is CA-CLIPPER tools compatible
* $FILES$
* Library is Tools
* Library is tools
* $SEEALSO$
* FIELDTYPE(),FIELDSIZE()
* $END$

View File

@@ -17,7 +17,7 @@
* $FUNCNAME$
* StrFormat()
* $CATEGORY$
* String
* String Tools
* $ONELINER$
* Format a string
* $SYNTAX$
@@ -57,7 +57,7 @@
* $COMPLIANCE$
* All platforms </par>
* $FILES$
* Library is Tools
* Library is tools
* $END$
*/

View File

@@ -0,0 +1,33 @@
if "%1" =="/OS2" goto OS2
if "%1" =="/NGI" goto NG
if "%1" =="/RTF" goto RTF
if "%1" =="/HTM" goto HTM
ECHO Assembling input files
:NG
hbdoc /ngi libmisc.lnk libmisc.rsp
REM Compile the sources
Echo Compiling the sources
Processing Input Files
Copy ngi\funcam.txt+ngi\funcn_.txt overview.ngi
Compiling Sources
ngxc overview.ngi
Linking the Guide
ngxl libmisc.lnk
del *.ngi
del *.ngo
del ngi\*.txt
del ngi\*.ngi
GOTO END
:OS2
hbdoc /OS2 libmisc.lnk libmisc.rsp
GOTO END
:RTF
hbdoc /RTF libmisc.lnk libmisc.rsp
HCW HARBOUR.HPJ
GOTO END
:HTM
hbdoc /HTM libmisc.lnk libmisc.rsp
GOTO END
:END
del ass*.bat

View File

@@ -0,0 +1,6 @@
!name: Harbour tools help- GT lib
!credits: The Harbour Project
Luiz Rafael Culik
!menu: Functions
Functions overview.ngo

View File

@@ -0,0 +1,7 @@
en\ht_class.txt
en\ht_conv.txt
en\ht_dbf.txt
en\ht_doc.txt
en\ht_file.txt
en\ht_str.txt

View File

@@ -0,0 +1,41 @@
/*
* $DOC$
* $FUNCNAME$
* Overview
* $CATEGORY$
* Document
* $ONELINER$
* Rdd ads Read me
* $DESCRIPTION$
* RDD for Advantage Database Server
* Alexander Kresin <alex@belacy.belgorod.su>
*
* <b>For using this RDD you need to have: </b></par>
* <b>ace32.dll ( Advantage Client Engine ), </b></par>
* <b>AXCWS32.DLL ( communication layer for remote server ) or </b></par>
* <b>ADSLOC32.DLL ( local server ) </b></par>
*
* You need also to create ace32.lib with the help of implib.exe:
* implib ace32.lib ace32.dll
*
* Then build rddads.lib using make_b32.bat or make_vc.bat.
*
* For building executables don't forget to include the ace32.lib and
* rddads.lib to the make file or link script.
*
* You need also to include to your prg file following lines:
*
* REQUEST _ADS </par>
* rddRegister( "ADS", 1 ) </par>
* rddsetdefault( "ADS" ) </par>
*
* By default RDD is tuned for remote server and cdx indexes. To
* change this you may use commands, defined in ads.ch:
*
* SET SERVER LOCAL
*
* SET FILETYPE TO NTX ( SET FILETYPE TO ADT )
*
* or functions AdsSetServerType(), AdsSetFileType().
* $END$
*/

View File

@@ -0,0 +1,33 @@
if "%1" =="/OS2" goto OS2
if "%1" =="/NGI" goto NG
if "%1" =="/RTF" goto RTF
if "%1" =="/HTM" goto HTM
ECHO Assembling input files
:NG
hbdoc /ngi rddads.lnk rddads.rsp
REM Compile the sources
Echo Compiling the sources
Processing Input Files
Copy ngi\overview.ngi .
Compiling Sources
ngxc overview.ngi
Linking the Guide
ngxl rddads.lnk
del *.ngi
del *.ngo
del ngi\*.txt
del ngi\*.ngi
GOTO END
:OS2
hbdoc /OS2 rddads.lnk rddads.rsp
GOTO END
:RTF
hbdoc /RTF rddads.lnk rddads.rsp
HCW HARBOUR.HPJ
GOTO END
:HTM
hbdoc /HTM rddads.lnk rddads.rsp
GOTO END
:END
del ass*.bat

View File

@@ -0,0 +1,6 @@
!name: Rdd Ads read me
!credits: The Harbour Project
Alexander Kresin <alex@belacy.belgorod.su>
!menu: RDDADS
Read me overview.ngo

View File

@@ -0,0 +1 @@
en\readme.txt