diff --git a/ChangeLog.txt b/ChangeLog.txt index ba5c1cdae7..0695063500 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,5 +1,5 @@ /* - * $Id: bbdb15ce23480752ff235387e66d8cf0a7c2cb0c $ + * $Id$ */ /* Read doc/howtorep.txt and use this format for entry headers: @@ -10,6 +10,25 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-06-13 23:59 UTC+0200 Viktor Szakáts (harbour syenar.net) + * utils/hbmk2/hbmk2.prg + ! reverted 2nd hunk of 2013-06-03 16:45 UTC+0200. It + introduced unnecessary and confusing disparity between + command-line and .hbp/.hbm while they are supposed to + be working similarly. It also breaks syntax supported + in .hbc directives, and it also makes behavior contracting + with the way documented in hbmk2 help and hbmk2 examples. + All this, to resolve the problem of space containing option + values for one specific and rare subcase of reverted apostrophs. + To pass option/directive value containing a space, put + the whole option (or the option value) in double quotes + (as documented in help), this works equally well on the + command line and in .hbp/.hbm/.hbc files. + + * ChangeLog.txt + ! ending whitespaces + ! explicitly filled git $Id + 2013-06-12 00:28 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/gtwvg/wvgcore.c * contrib/gtwvg/wvgcuig.c @@ -78,8 +97,8 @@ 2013-06-06 01:56 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbtip/client.prg - ! Fixed: to test if a connection is available actually or not - before sending other info. This fixes a RTE when a SSL over + ! Fixed: to test if a connection is available actually or not + before sending other info. This fixes a RTE when a SSL over HTTP request was made and internet access was not available. * contrib/hbtip/httpcli.prg @@ -87,24 +106,24 @@ METHOD SetConnectionPersistent() This does not send "Connection: close" header entry. - Useful in cases where many requests are required to - be submitted under one session. :close() may be + Useful in cases where many requests are required to + be submitted under one session. :close() may be called to close the connection explicitly. - METHOD IsConnectionAlive() - It allows the application to test connection's state + METHOD IsConnectionAlive() + It allows the application to test connection's state and facilitates to take alternate action. 2013-06-05 23:40 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/gtwvg/wvgcore.c - + Added: function WVT_DRAWPICTUREEX - WVT_LOADPICTUREFROMRESOURCEEX + + Added: function WVT_DRAWPICTUREEX + WVT_LOADPICTUREFROMRESOURCEEX - * contrib/gtwvg/wvgcuig.c - + Added: function WVG_PICTUREEX + * contrib/gtwvg/wvgcuig.c + + Added: function WVG_PICTUREEX * contrib/gtwvg/wvgwin.c - + Added: function WVG_FORCEWINDOWTOTOP + + Added: function WVG_FORCEWINDOWTOTOP 2013-06-05 19:15 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * contrib/gtqtc/gtqtc1.cpp @@ -254,7 +273,7 @@ 2013-05-22 13:29 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) * contrib/sddpg/core.c - + enhanced connection parameters support. Now it is possible to connect + + enhanced connection parameters support. Now it is possible to connect to PostgreSQL server using: 1) URI string RDDINFO(RDDI_CONNECT, {"POSTGRESQL", "postgresql://host"}) @@ -419,9 +438,9 @@ ; Pritpal, please verify if it works with QT5 2013-04-29 16:17 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) - * ChangeLog.txt - ! Fixed: BOM troubled by wrong editor, now with Notepad++ - and proper settings. I am unable to change Przemek's name + * ChangeLog.txt + ! Fixed: BOM troubled by wrong editor, now with Notepad++ + and proper settings. I am unable to change Przemek's name changed in previous commit, rather unable to understand what should be changed. @@ -501,7 +520,7 @@ 2013-04-24 16:15 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) * harbour/contrib/rddads/ads1.c - + run error on invalid SQL query, ex., + + run error on invalid SQL query, ex., DBUSEAREA(,, "SELECT * FOM syntax_error") * changed ADS error description to be much more informative @@ -572,8 +591,8 @@ 2013-04-23 14:00 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) * harbour/contrib/rddads/adsfunc.c - * ADSREGCALLBACK() implemented using AdsRegisterCallbackFunction() instead - of obsolete AdsRegisterProgressCallback(). This enables draw progress + * ADSREGCALLBACK() implemented using AdsRegisterCallbackFunction() instead + of obsolete AdsRegisterProgressCallback(). This enables draw progress bar for both indexing and SQL query processing. ; implementation unchanged for old ADS versions (<= 6.1) @@ -697,7 +716,7 @@ ! fixed adsSeek() if seek string length is less than index key length * harbour/src/compiler/hbopt.c - ! improved BEGIN/END SEQUENCE support in code trace optimizer. Problem + ! improved BEGIN/END SEQUENCE support in code trace optimizer. Problem of false positive warning 'Variable is assigned but not used' is solved in cases like: FUNC TEST() @@ -713,8 +732,8 @@ ; TODO: test for more complicated cases like nested BEGIN/END SEQUENCE * harbour/src/rdd/dbf1.c - * added :GetValue() GPF protection if area is "half opened" (ex., - enumerating field values in error handler on area open failure). + * added :GetValue() GPF protection if area is "half opened" (ex., + enumerating field values in error handler on area open failure). More general solution for "half opened" workareas is welcome 2013-04-19 16:35 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) diff --git a/utils/hbmk2/hbmk2.prg b/utils/hbmk2/hbmk2.prg index 63f1e8a596..5e759370d9 100644 --- a/utils/hbmk2/hbmk2.prg +++ b/utils/hbmk2/hbmk2.prg @@ -11330,7 +11330,7 @@ STATIC FUNCTION HBM_Load( hbmk, aParams, cFileName, nNestingLevel, lProcHBP, cPa FOR EACH cLine IN hb_ATokens( cFile, _CHR_EOL ) IF !( Left( cLine, 1 ) == "#" ) - FOR EACH cParam IN hb_ATokens( cLine,, 7 ) + FOR EACH cParam IN hb_ATokens( cLine,, .T. ) cParam := StrStripQuote( cParam ) IF ! Empty( cParam )