diff --git a/harbour/ChangeLog b/harbour/ChangeLog index bd6068ff3e..4175a5dad2 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,17 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-08 15:56 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * utils/hbmk2/hbmk2.prg + + Normalizing paths of cfg files. + * CCPREFIX, CCPATH renamed to HB_CCPREFIX, HB_CCPATH + (seems these are Harbour specific settings) + + * contrib/examples/uhttpd/home/testxmldb.html + * Added Safari as unsupported browser. + (BTW, what would it need to support Safari and Chrome, or + WebKit browsers in general?) + 2009-03-08 00:43 UTC+0100 Francesco Saverio Giudice (info/at/fsgiudice.com) * harbour/contrib/examples/uhttpd/uhttpd.prg - Commented hb_GCAll() in main loop, I got newly one GPF randomly. diff --git a/harbour/contrib/examples/uhttpd/home/testxmldb.html b/harbour/contrib/examples/uhttpd/home/testxmldb.html index ef301592b8..f776f90cee 100644 --- a/harbour/contrib/examples/uhttpd/home/testxmldb.html +++ b/harbour/contrib/examples/uhttpd/home/testxmldb.html @@ -18,14 +18,14 @@ function getTableData(pageNum) { xslGet( "/xsl/based.xsl" ); - xmlGet('/cgi-bin/tableservletdb.hrb?page=' + pageNum + "&sid=" + Math.random(), tableResponseHandler); + xmlGet( '/cgi-bin/tableservletdb.hrb?page=' + pageNum + "&sid=" + Math.random(), tableResponseHandler); divpart = 'tableSection'; } function getTablePages() { xslGet( "/xsl/basep.xsl" ); - xmlGet('/cgi-bin/tableservletdb.hrb?count=true' + "&sid=" + Math.random(), tableResponseHandler); + xmlGet( '/cgi-bin/tableservletdb.hrb?count=true' + "&sid=" + Math.random(), tableResponseHandler); divpart = 'pageSection'; } @@ -76,7 +76,7 @@ Simple XML servlet
-
Tested with IE6+, Firefox 2+ and Opera 9+. Not working with Google Chrome. +
Tested with IE6+, Firefox 2+ and Opera 9+. Not working with Google Chrome, Safari.
Please note that tableservletdb.prg simulates a slow reply of 0.5 seconds. If you want to check real speed please comment #define SIMULATE_SLOW_REPLY in source.
Return to Main Page diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index ae9f901994..1b1987dce5 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -551,8 +551,8 @@ FUNCTION Main( ... ) s_aLIBPATH := {} - t_cCCPATH := GetEnv( "CCPATH" ) - t_cCCPREFIX := GetEnv( "CCPREFIX" ) + t_cCCPATH := GetEnv( "HB_CCPATH" ) + t_cCCPREFIX := GetEnv( "HB_CCPREFIX" ) s_cHB_BIN_INSTALL := PathSepToTarget( GetEnv( "HB_BIN_INSTALL" ) ) s_cHB_LIB_INSTALL := PathSepToTarget( GetEnv( "HB_LIB_INSTALL" ) ) @@ -2275,7 +2275,7 @@ STATIC PROCEDURE HBP_ProcessAll( lConfigOnly,; #endif FOR EACH cDir IN aCFGDirs - IF hb_FileExists( cFileName := ( DirAddPathSep( cDir ) + HBMK_CFG_NAME ) ) + IF hb_FileExists( cFileName := ( PathNormalize( DirAddPathSep( cDir ) ) + HBMK_CFG_NAME ) ) IF ! t_lQuiet OutStd( "hbmk: Processing configuration: " + cFileName + hb_osNewLine() ) ENDIF