diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 241a16c267..887c82809c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,61 @@ The license applies to all entries newer than 2009-04-28. */ +2012-11-05 12:32 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbamf/tests/tstendin.prg + * contrib/hbblat/blatcls.prg + * contrib/hbct/tests/ctwtest.prg + * contrib/hbct/tests/token2.prg + * contrib/hbhttpd/readme.txt + * contrib/hbhttpd/widgets.prg + * contrib/hbmisc/fileread.prg + * contrib/hbmisc/hbedit.prg + * contrib/hbmysql/diff-en.txt + * contrib/hbmysql/diff-es.txt + * contrib/hbmysql/tests/dbf2mysq.prg + * contrib/hbmysql/tmysql.prg + * contrib/hbmysql/tsqlbrw.prg + * contrib/hbnetio/tests/netiot03.prg + * contrib/hbnetio/tests/netiotst.prg + * contrib/hbnf/doc/en/fttext.txt + * contrib/hbodbc/browodbc.prg + * contrib/hbodbc/tests/odbcdemo.prg + * contrib/hbodbc/todbc.prg + * contrib/hbtip/ftpcli.prg + * contrib/hbwin/tests/olesrv1.prg + * contrib/rddads/ads.ch + * contrib/rddsql/readme.txt + * contrib/sddodbc/tests/test2.prg + * contrib/xhb/dbf2txt.c + * contrib/xhb/hbcompat.ch + * contrib/xhb/hblog.prg + * contrib/xhb/html.ch + * contrib/xhb/tfile.prg + * contrib/xhb/tframe.prg + * contrib/xhb/ttable.prg + * ChangeLog + * doc/en/dbdelim.txt + * doc/en/dbsdf.txt + * doc/en/rdddb.txt + * doc/en/terminal.txt + * extras/gtwvw/tests/wvt2wvw.ch + * extras/httpsrv/cookie.prg + * extras/httpsrv/modules/tableservletdb.prg + * extras/rddado/adordd.ch + * extras/rddado/adordd.prg + * include/assert.ch + * include/hbsix.ch + * src/debug/dbgbrwsr.prg + * src/debug/dbgtinp.prg + * src/rdd/*.prg + * src/rtl/*.prg + * tests/*.prg + * tests/rddtest/rddtst.prg + * tests/usrrdd/exarr.prg + * tests/usrrdd/exfcm.prg + * utils/hbtest/hbtest.prg + * more minor + 2012-11-05 03:23 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/gtwvg/*.prg * contrib/gtwvg/tests/*.prg diff --git a/harbour/contrib/hbamf/tests/tstendin.prg b/harbour/contrib/hbamf/tests/tstendin.prg index 3966663240..65091a3a96 100644 --- a/harbour/contrib/hbamf/tests/tstendin.prg +++ b/harbour/contrib/hbamf/tests/tstendin.prg @@ -41,6 +41,6 @@ STATIC PROCEDURE _TEST( a, cChkOK ) LOCAL x := AMF3_ENCODE( a ) LOCAL cChk := hb_StrToHex( I2Bin( hb_CRC( x ) ) ) - ? PadL( hb_ValToExp( a ), 18 ), hb_StrToHex( x, " " ), "CHECKSUM", cChk, iif( !Empty( cChkOK ) .AND. !( cChk == cChkOK ), "!TEST FAILED!, should be " + cChkOK, " " ) + ? PadL( hb_ValToExp( a ), 18 ), hb_StrToHex( x, " " ), "CHECKSUM", cChk, iif( ! Empty( cChkOK ) .AND. !( cChk == cChkOK ), "!TEST FAILED!, should be " + cChkOK, " " ) RETURN diff --git a/harbour/contrib/hbblat/blatcls.prg b/harbour/contrib/hbblat/blatcls.prg index d2e414aacc..2913fe5faa 100644 --- a/harbour/contrib/hbblat/blatcls.prg +++ b/harbour/contrib/hbblat/blatcls.prg @@ -237,7 +237,7 @@ METHOD PROCEDURE Check() CLASS HBBlat // The Basics ---------------------------------- // to - IF ! HB_ISSTRING( ::cTO ) .AND. ! HB_ISSTRING( ::cTOFile ) .AND. !::lToUndiscloseRecipients + IF ! HB_ISSTRING( ::cTO ) .AND. ! HB_ISSTRING( ::cTOFile ) .AND. ! ::lToUndiscloseRecipients ::nError := BLAT_ERR_MISSING_TO ::cError := ::TranslateBlatError( BLAT_ERR_MISSING_TO ) AAdd( ::aErrors, { ::nError, ::cError } ) diff --git a/harbour/contrib/hbct/tests/ctwtest.prg b/harbour/contrib/hbct/tests/ctwtest.prg index 440c95a238..a9ce2dea7c 100644 --- a/harbour/contrib/hbct/tests/ctwtest.prg +++ b/harbour/contrib/hbct/tests/ctwtest.prg @@ -79,7 +79,7 @@ PROCEDURE Main() ELSE wboard( 5, 5, 20, 75 ) ENDIF - lBoard := !lBoard + lBoard := ! lBoard ELSEIF k == hb_keyCode( "P" ) .OR. k == hb_keyCode( "P" ) y := wfrow() x := wfcol() @@ -88,7 +88,7 @@ PROCEDURE Main() @ y, x SAY "THIS IS WINDOW 0 OUTPUT" wselect( i ) ELSEIF k == K_INS - lFlag := !lFlag + lFlag := ! lFlag SetCursor( iif( lFlag, 3, 1 ) ) ELSEIF k == K_DEL SetCursor( SC_NONE ) diff --git a/harbour/contrib/hbct/tests/token2.prg b/harbour/contrib/hbct/tests/token2.prg index 96a9bc68ed..31f5511509 100644 --- a/harbour/contrib/hbct/tests/token2.prg +++ b/harbour/contrib/hbct/tests/token2.prg @@ -81,14 +81,14 @@ PROCEDURE Main() ? ' tokeninit(@cStr1, ",", 1) == .T. ? ----> ' + ltoc( tokeninit( @cStr1, ",", 1 ) ) ? ' tokennum() == 6 ? ---------------------> ' + Str( tokennum() ) ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) - WHILE !tokenend() + WHILE ! tokenend() ? ' tokennext(@cStr1) ------------------> "' + tokennext( @cStr1 ) + '"' ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) ENDDO ? ? ' rewind with tokeninit() == .T. ? ------> ' + ltoc( tokeninit() ) ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) - WHILE !tokenend() + WHILE ! tokenend() ? ' tokennext(@cStr1) ------------------> "' + tokennext( @cStr1 ) + '"' ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) ENDDO @@ -106,14 +106,14 @@ PROCEDURE Main() ? ' token environment of cStr1 !' ? ' rewind with tokeninit() == .T. ? ------> ' + ltoc( tokeninit() ) ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) - WHILE !tokenend() + WHILE ! tokenend() ? ' tokennext(@cStr3) ------------------> "' + tokennext( @cStr3 ) + '"' ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) ENDDO ? ? ' rewind with tokeninit() == .T. ? ------> ' + ltoc( tokeninit() ) ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) - WHILE( !tokenend() ) + WHILE ! tokenend() ? ' start & end with tokenat(.F./.T.)-----> ' + Str( tokenat() ) + ' ' + Str( tokenat( .T. ) ) tokennext( @cStr1 ) ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) @@ -139,7 +139,7 @@ PROCEDURE Main() tokeninit() ? ' tokennum() == 6 ? ----------------------> ' + Str( tokennum() ) ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) - WHILE !tokenend() + WHILE ! tokenend() ? ' tokennext( @cStr1 ) -----------------> "' + tokennext( @cStr1 ) + '"' ? ' tokenend() ? -------------------------> ' + ltoc( tokenend() ) ENDDO @@ -159,7 +159,7 @@ PROCEDURE Main() ? ' tokennum( @cTE2 ) == 4 ? --------------------> ' + Str( tokennum( @cTE2 ) ) ? ' tokenend( @cTE1 ) ? ---------------------> ' + ltoc( tokenend( @cTE1 ) ) ? ' tokenend( @cTE2 ) ? ---------------------> ' + ltoc( tokenend( @cTE2 ) ) - WHILE !tokenend( @cTE1 ) .AND. !tokenend( @cTE2 ) + WHILE ! tokenend( @cTE1 ) .AND. ! tokenend( @cTE2 ) ? ' next train at ' + tokennext( cStr4,, @cTE1 ) + ":" + tokennext( cStr5,, @cTE2 ) ? ' compiled with tokennext( cStr4,, @cTE1 ) + ":" + tokennext( cStr5,, @cTE2 )' ? ' tokenend( @cTE1 ) ? ---------------------> ' + ltoc( tokenend( @cTE1 ) ) diff --git a/harbour/contrib/hbhttpd/readme.txt b/harbour/contrib/hbhttpd/readme.txt index 3a1ff30cfc..f8d783e36b 100644 --- a/harbour/contrib/hbhttpd/readme.txt +++ b/harbour/contrib/hbhttpd/readme.txt @@ -177,10 +177,10 @@ some framework/toolkit on top of basic uhttp server to allow a quick application development. UWidgets is used for this purpose. It allows to use some objects (browse, etc.) instead of plain: UWrite('
| ' + FIELD->NAME + ' | ' + - STR(FIELD->AGE) + ' |
| ' + FIELD->NAME + ' | ' + + Str( FIELD->AGE ) + ' |