diff --git a/harbour/ChangeLog b/harbour/ChangeLog index daca606c3d..b1588d7216 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,14 @@ The license applies to all entries newer than 2009-04-28. */ +2011-02-12 16:53 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * doc/en/gnulice.txt + * doc/en/setmode.txt + ! Corrected: NF confirmant mis-alignments. + * contrib/hbide/ideharbourhelp.prg + ! Fixed: a bug in retreival of values agains blank data. + Pointed out by Alain Aupeix. + 2011-02-12 13:03 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbxbp/hbpprocess.prg ! Reworked: how command line parameters are passed to the appln. diff --git a/harbour/contrib/hbide/ideharbourhelp.prg b/harbour/contrib/hbide/ideharbourhelp.prg index 5d7c6d84be..b877f92ca5 100644 --- a/harbour/contrib/hbide/ideharbourhelp.prg +++ b/harbour/contrib/hbide/ideharbourhelp.prg @@ -854,19 +854,29 @@ METHOD IdeHarbourHelp:pullDefinitions( acBuffer ) CASE DOC_FUN_BEGINS EXIT CASE DOC_FUN_TEMPLATE - oFunc:cTemplate := s + IF ! empty( s ) + oFunc:cTemplate := s + ENDIF EXIT CASE DOC_FUN_FUNCNAME - oFunc:cName := alltrim( s ) + IF ! empty( s ) + oFunc:cName := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_CATEGORY - oFunc:cCategory := alltrim( s ) + IF ! empty( s ) + oFunc:cCategory := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_SUBCATEGORY - oFunc:cSubCategory := alltrim( s ) + IF ! empty( s ) + oFunc:cSubCategory := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_ONELINER - oFunc:cOneLiner := s + IF ! empty( s ) + oFunc:cOneLiner := s + ENDIF EXIT CASE DOC_FUN_SYNTAX aadd( oFunc:aSyntax , s ) @@ -890,28 +900,37 @@ METHOD IdeHarbourHelp:pullDefinitions( acBuffer ) aadd( oFunc:aFiles , s ) EXIT CASE DOC_FUN_STATUS - oFunc:cStatus := alltrim( s ) + IF ! empty( s ) + oFunc:cStatus := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_PLATFORMS - oFunc:cPlatForms := alltrim( s ) + IF ! empty( s ) + oFunc:cPlatForms := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_SEEALSO - oFunc:cSeeAlso := alltrim( s ) - EXIT - CASE DOC_FUN_SEEALSO - oFunc:cVersion := alltrim( s ) + IF ! empty( s ) + oFunc:cSeeAlso := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_INHERITS - oFunc:cInherits := alltrim( s ) + IF ! empty( s ) + oFunc:cInherits := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_METHODS aadd( oFunc:aMethods , s ) EXIT CASE DOC_FUN_VERSION - oFunc:cVersion := alltrim( s ) + IF ! empty( s ) + oFunc:cVersion := alltrim( s ) + ENDIF EXIT CASE DOC_FUN_EXTERNALLINK - oFunc:cExternalLink := alltrim( s ) + IF ! empty( s ) + oFunc:cExternalLink := alltrim( s ) + ENDIF EXIT OTHERWISE nPart := DOC_FUN_NONE @@ -967,7 +986,7 @@ METHOD IdeHarbourHelp:getFunctionPrototypes() LOCAL aProto IF empty( ::aProtoTypes ) //.AND. empty( ::aProtoTypes := hbide_loadHarbourProtos( ::oIde ) ) - IF !empty( ::cPathInstall ) + IF ! empty( ::cPathInstall ) IF ! ::lLoadedProto hbide_fetchSubPaths( @aPaths, ::cPathInstall, .t. ) @@ -1265,7 +1284,7 @@ METHOD IdeHarbourHelp:buildView( oFunc ) ENDIF IF !empty( oFunc:cPlatforms ) - aadd( aHtm, x + "Platforms" + y ) + aadd( aHtm, x + "Compliance | Platforms" + y ) aadd( aHtm, v + oFunc:cPlatforms + w ) aadd( aHtm, z ) ENDIF diff --git a/harbour/doc/en/gnulice.txt b/harbour/doc/en/gnulice.txt index 2068340d20..2f3efac48f 100644 --- a/harbour/doc/en/gnulice.txt +++ b/harbour/doc/en/gnulice.txt @@ -4,7 +4,7 @@ /* $DOC$ * $TEMPLATE$ - * Document + * Document * $NAME$ * GNU License * $CATEGORY$ @@ -215,7 +215,7 @@ * parties to this License. * * $SEEALSO$ - * GNU License Part 2 + * GNU License.. * $END$ */ /* @@ -223,7 +223,7 @@ * $TEMPLATE$ * Document * $NAME$ - * GNU License + * GNU License.. * $CATEGORY$ * Document * $SUBCATEGORY$ diff --git a/harbour/doc/en/setmode.txt b/harbour/doc/en/setmode.txt index 7637d59858..304b739482 100644 --- a/harbour/doc/en/setmode.txt +++ b/harbour/doc/en/setmode.txt @@ -36,20 +36,22 @@ * that produce the video mode change. * The followings are availables for DOS: * - *