2012-11-17 13:52 UTC+0100 Viktor Szakats (vszakats syenar.net)
* contrib/hbct/doc/en/charonly.txt
* contrib/hbct/doc/en/ctmath2.txt
* doc/en/hashes.txt
* doc/en/misc.txt
! added missing '()' from the end of function names
* include/harbour.hbx
! fixed casing of Dbf()
* tests/fixcase.hb
+ added exceptions fixed manually last time
* doc/en/rdddb.txt
* doc/en/rddmisc.txt
* tests/newrdd.prg
* rerun fixcase.hb
This commit is contained in:
@@ -16,6 +16,24 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2012-11-17 13:52 UTC+0100 Viktor Szakats (vszakats syenar.net)
|
||||
* contrib/hbct/doc/en/charonly.txt
|
||||
* contrib/hbct/doc/en/ctmath2.txt
|
||||
* doc/en/hashes.txt
|
||||
* doc/en/misc.txt
|
||||
! added missing '()' from the end of function names
|
||||
|
||||
* include/harbour.hbx
|
||||
! fixed casing of Dbf()
|
||||
|
||||
* tests/fixcase.hb
|
||||
+ added exceptions fixed manually last time
|
||||
|
||||
* doc/en/rdddb.txt
|
||||
* doc/en/rddmisc.txt
|
||||
* tests/newrdd.prg
|
||||
* rerun fixcase.hb
|
||||
|
||||
2012-11-16 22:32 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
|
||||
* harbour/contrib/hbodbc/odbc.c
|
||||
! fixed length of string parameters passed to ODBC functions.
|
||||
|
||||
@@ -153,6 +153,6 @@
|
||||
$FILES$
|
||||
Library is hbct.
|
||||
$SEEALSO$
|
||||
CHARONLY CharRem() WordRem()
|
||||
CharOnly() CharRem() WordRem()
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
$FILES$
|
||||
Library is hbct.
|
||||
$SEEALSO$
|
||||
CEILING
|
||||
Ceiling()
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
$FILES$
|
||||
Library is hbct.
|
||||
$SEEALSO$
|
||||
FLOOR
|
||||
Floor()
|
||||
$END$
|
||||
*/
|
||||
|
||||
|
||||
@@ -1143,7 +1143,7 @@
|
||||
$FILES$
|
||||
|
||||
$SEEALSO$
|
||||
hb_HCaseMatch(),hb_HSetAutoAdd(),HB_HSETBINARY
|
||||
hb_HCaseMatch(),hb_HSetAutoAdd(),hb_HSetBinary()
|
||||
$END$
|
||||
*/
|
||||
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
$ONELINER$
|
||||
Obtains a system environmental setting.
|
||||
$SYNTAX$
|
||||
GetEnv(<cEnviroment> ) --> <cReturn>
|
||||
GetEnv( <cEnviroment> ) --> <cReturn>
|
||||
$ARGUMENTS$
|
||||
<cEnviroment> Enviromental variable to obtain.
|
||||
$RETURNS$
|
||||
@@ -118,7 +118,7 @@
|
||||
$FILES$
|
||||
Library is core
|
||||
$SEEALSO$
|
||||
GETE
|
||||
GetE()
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -134,7 +134,7 @@
|
||||
$ONELINER$
|
||||
Obtains a system environmental setting.
|
||||
$SYNTAX$
|
||||
GetE(<cEnviroment> ) --> <cReturn>
|
||||
GetE( <cEnviroment> ) --> <cReturn>
|
||||
$ARGUMENTS$
|
||||
<cEnviroment> Enviromental variable to obtain.
|
||||
$RETURNS$
|
||||
@@ -163,7 +163,7 @@
|
||||
$FILES$
|
||||
Library is core
|
||||
$SEEALSO$
|
||||
GETENV
|
||||
GetEnv()
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -216,7 +216,7 @@
|
||||
$FILES$
|
||||
Library is core
|
||||
$SEEALSO$
|
||||
GETENV, GETE
|
||||
GetEnv(), GetE()
|
||||
$END$
|
||||
*/
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
$TEMPLATE$
|
||||
Function
|
||||
$NAME$
|
||||
DBF()
|
||||
Dbf()
|
||||
$CATEGORY$
|
||||
API
|
||||
$SUBCATEGORY$
|
||||
@@ -84,7 +84,7 @@
|
||||
$ONELINER$
|
||||
Alias name of a work area
|
||||
$SYNTAX$
|
||||
DBF() --> <cWorkArea>
|
||||
Dbf() --> <cWorkArea>
|
||||
$RETURNS$
|
||||
<cWorkArea> Name of alias
|
||||
$DESCRIPTION$
|
||||
@@ -95,8 +95,8 @@
|
||||
|
||||
USE test
|
||||
SELECT 0
|
||||
? iif( DBF() == "", "No Name", DBF() )
|
||||
? test->( DBF() )
|
||||
? iif( Dbf() == "", "No Name", Dbf() )
|
||||
? test->( Dbf() )
|
||||
? Alias( 1 )
|
||||
|
||||
RETURN
|
||||
|
||||
@@ -133,7 +133,7 @@
|
||||
$FILES$
|
||||
Library is rdd
|
||||
$SEEALSO$
|
||||
DBF()
|
||||
Dbf()
|
||||
$END$
|
||||
*/
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@ DYNAMIC dbDrop
|
||||
DYNAMIC dbEdit
|
||||
DYNAMIC dbEval
|
||||
DYNAMIC dbExists
|
||||
DYNAMIC DBF
|
||||
DYNAMIC Dbf
|
||||
DYNAMIC DBFBLOB
|
||||
DYNAMIC DBFCDX
|
||||
DYNAMIC DBFDBT
|
||||
|
||||
@@ -85,6 +85,7 @@ PROCEDURE Main()
|
||||
"contrib/xhb/thtm.prg" , ;
|
||||
"contrib/hbnetio/readme.txt" , ;
|
||||
"contrib/hbnetio/tests/*" , ;
|
||||
"extras/httpsrv/home/*" , ;
|
||||
"tests/hbpptest/*" , ;
|
||||
"tests/mt/*" , ;
|
||||
"tests/multifnc/*" , ;
|
||||
|
||||
@@ -35,7 +35,7 @@ PROCEDURE Main()
|
||||
? "Header:", TESTDBF->( Header() )
|
||||
? "FieldPos( 'LAST' ):", TESTDBF->( FieldPos( "LAST" ) )
|
||||
? "FieldName( 2 ):", TESTDBF->( FieldName( 2 ) )
|
||||
? "DBF():", TESTDBF->( DBF() )
|
||||
? "Dbf():", TESTDBF->( Dbf() )
|
||||
? "Alias( 1 ):", Alias( 1 )
|
||||
? "dbTableExt():", TESTDBF->( dbTableExt() )
|
||||
aArray := TESTDBF->( dbStruct() )
|
||||
|
||||
Reference in New Issue
Block a user