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:
Viktor Szakats
2012-11-17 12:53:46 +00:00
parent 9f4537cda1
commit ab5ebeef3d
10 changed files with 35 additions and 16 deletions

View File

@@ -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.

View File

@@ -153,6 +153,6 @@
$FILES$
Library is hbct.
$SEEALSO$
CHARONLY CharRem() WordRem()
CharOnly() CharRem() WordRem()
$END$
*/

View File

@@ -33,7 +33,7 @@
$FILES$
Library is hbct.
$SEEALSO$
CEILING
Ceiling()
$END$
*/
@@ -68,7 +68,7 @@
$FILES$
Library is hbct.
$SEEALSO$
FLOOR
Floor()
$END$
*/

View File

@@ -1143,7 +1143,7 @@
$FILES$
$SEEALSO$
hb_HCaseMatch(),hb_HSetAutoAdd(),HB_HSETBINARY
hb_HCaseMatch(),hb_HSetAutoAdd(),hb_HSetBinary()
$END$
*/

View File

@@ -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$
*/

View File

@@ -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

View File

@@ -133,7 +133,7 @@
$FILES$
Library is rdd
$SEEALSO$
DBF()
Dbf()
$END$
*/

View File

@@ -116,7 +116,7 @@ DYNAMIC dbDrop
DYNAMIC dbEdit
DYNAMIC dbEval
DYNAMIC dbExists
DYNAMIC DBF
DYNAMIC Dbf
DYNAMIC DBFBLOB
DYNAMIC DBFCDX
DYNAMIC DBFDBT

View File

@@ -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/*" , ;

View File

@@ -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() )