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.
This commit is contained in:
Pritpal Bedi
2011-02-13 00:58:59 +00:00
parent 7744752ad3
commit 0b562ede5b
4 changed files with 60 additions and 31 deletions

View File

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

View File

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

View File

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

View File

@@ -36,20 +36,22 @@
* that produce the video mode change.
* The followings are availables for DOS:
*
* <table>
* 12 rows x 40 columns 12 rows x 80 columns
* 25 rows x 40 columns 25 rows x 80 columns
* 28 rows x 40 columns 28 rows x 80 columns
* 50 rows x 40 columns 43 rows x 80 columns
* 50 rows x 80 columns
* </table>
* <table>
* 12 rows x 40 columns 12 rows x 80 columns
* 25 rows x 40 columns 25 rows x 80 columns
* 28 rows x 40 columns 28 rows x 80 columns
* 50 rows x 40 columns 43 rows x 80 columns
* 50 rows x 80 columns
* </table>
*
* The follow modes are avaliable to Windows
*
* <table>
* 25 rows x 40 columns 25 rows x 80 columns
* 50 rows x 40 columns 43 rows x 80 columns
* 50 rows x 80 columns
* </table>
* <table>
* 25 rows x 40 columns 25 rows x 80 columns
* 50 rows x 40 columns 43 rows x 80 columns
* 50 rows x 80 columns
* </table>
*
* Some modes only are availables for color and/or VGA monitors.
* Any change produced on the screen size is updated in the values
* returned by MAXROW() and MAXCOL().