This commit is contained in:
Lorenzo Fiorini
2008-09-05 15:17:39 +00:00
parent 7fe3adb76c
commit f727607d21
3 changed files with 9 additions and 4 deletions

View File

@@ -8,6 +8,11 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-05 17:11 UTC+0200 Lorenzo Fiorini (lorenzo.fiorini/at/gmail.com)
* contrib/hbtip/test/tiptest.prg
* contrib/hbtip/popcln.prg
* fixed typos: "retreived vs retrieved"
2008-09-05 16:54 UTC+0100 Miguel Angel Marchuet <miguelangel@marchuet.net>
* contrib/hbbmcdx/bmdbfcdx.c
! fixed to not respect bitmap filters when structural order

View File

@@ -179,7 +179,7 @@ METHOD Read( nLen ) CLASS tIPClientPOP
ENDIF
ENDIF
RETURN ::Retreive( Val (::oUrl:cFile ), nLen )
RETURN ::Retrieve( Val (::oUrl:cFile ), nLen )

View File

@@ -13,7 +13,7 @@
* just demostrating it is working
*
* With the filename, data will be stored to the file or
* retreived from the file and sent to internet.
* retrieved from the file and sent to internet.
*
* Usage of URI.
* HTTP Protocol
@@ -43,7 +43,7 @@
* - without path, get the list of files (use path/ to get the list of
* files in a dir.
* - with path, get a file. If the target file (second param) starts with '+'
* it will be sent instead of being retreived.
* it will be sent instead of being retrieved.
*/
#include "hbclass.ch"
@@ -124,7 +124,7 @@ PROCEDURE MAIN( cUrl, cFile )
@7,5 SAY "First 80 characters:"
? Trim(SubStr( cData, 1, 80 ))
ELSE
@7,5 SAY "ERROR - file can't be retreived " + oClient:lastErrorMessage()
@7,5 SAY "ERROR - file can't be retrieved " + oClient:lastErrorMessage()
ENDIF
ELSE
IF oClient:ReadToFile( cFile )