* bin/commit.hb
* config/detect.mk
* config/detfun.mk
* config/detplat.mk
* config/dir.mk
* config/dirsh.mk
* config/global.mk
* config/globsh.mk
* config/instsh.mk
* config/lang.hb
* config/lang2po.hb
* config/po2lang.hb
* config/postinst.hb
* contrib/hbexpat/tests/tohash.prg
* contrib/hbformat/utils/hbformat.ini
* contrib/hbmisc/hbedit.prg
* contrib/hbmxml/tests/testmxml.prg
* contrib/hbnetio/utils/hbnetio/_console.prg
* contrib/hbnetio/utils/hbnetio/_winsvc.prg
* contrib/hbnetio/utils/hbnetio/hbnetio.prg
* contrib/hbnetio/utils/hbnetio/netiomgm.hb
* contrib/hbwin/tests/ole.prg
* contrib/hbwin/tests/oletst2.js
* contrib/hbwin/tests/oletst2.vbs
* contrib/hbxpp/doc/en/binnumx.txt
* contrib/hbxpp/doc/en/dbcmdx.txt
* contrib/xhb/htmutil.prg
* contrib/xhb/tfile.prg
* contrib/xhb/tframe.prg
* contrib/xhb/thtm.prg
* ChangeLog.txt
* debian/copyright
* doc/class_tp.txt
* doc/hdr_tpl.txt
* doc/xhb-diff.txt
* LICENSE.txt
* package/harbour-wce.spec.in
* package/harbour-win.spec.in
* package/harbour.spec
* package/mpkg_rpm_wce.sh
* package/mpkg_rpm_win.sh
* package/mpkg_rpm.sh
* package/mpkg_src.sh
* package/mpkg_ver.sh
* src/rtl/achoice.prg
* src/rtl/getsys53.prg
* src/rtl/tgetlist.prg
* src/rtl/tlabel.prg
* src/rtl/tmenusys.prg
* tests/hbdoc.prg
* tests/langmsg.prg
* tests/rto_get.prg
* tests/rto_tb.prg
+ doc/en/ati.txt
+ doc/en/dirdrive.txt
+ doc/en/hashfunc.txt
+ doc/en/hbtoken.txt
+ doc/en/left.txt
+ doc/en/proc.txt
+ doc/en/strtran.txt
+ doc/en/transfrm.txt
+ doc/en/typefile.txt
* doc/en/*
* more partial sync with 3.4 fork
228 lines
5.4 KiB
Plaintext
228 lines
5.4 KiB
Plaintext
/*
|
|
* HTMLLIB Frame Class
|
|
*
|
|
* Copyright 2000 Manos Aspradakis <maspr@otenet.gr>
|
|
* Copyright 2000 Luiz Rafael Culik <culik@sl.conex.net> (Porting this library to Harbour)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file LICENSE.txt. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA (or visit https://www.gnu.org/licenses/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#include "hbclass.ch"
|
|
#include "cgi.ch"
|
|
|
|
|
|
CREATE CLASS THtmlFrameSet
|
|
|
|
VAR nH
|
|
VAR FName
|
|
VAR cStr INIT ""
|
|
|
|
VAR TITLE INIT "FrameSet01"
|
|
|
|
METHOD New( cFName, cTitle )
|
|
|
|
METHOD StartSet( aRows, aCols, onLoad, onUnload )
|
|
|
|
METHOD EndSet()
|
|
|
|
METHOD End()
|
|
|
|
METHOD Frame( cName, cURL, lBorder, lResize, lScrolling, ;
|
|
marginwidth, marginheight, cTarget, cScrolling )
|
|
|
|
ENDCLASS
|
|
|
|
|
|
METHOD New( cFName, cTitle ) CLASS THtmlFrameSet
|
|
|
|
LOCAL cStr
|
|
|
|
__defaultNIL( @cTitle, "" )
|
|
|
|
::FName := cFName
|
|
::Title := cTitle
|
|
|
|
IF HB_ISSTRING( ::FName )
|
|
cStr := ""
|
|
::nH := FCreate( ::FName )
|
|
ELSE
|
|
cStr := "Content-Type: text/html" + CRLF() + CRLF()
|
|
::nH := STD_OUT
|
|
ENDIF
|
|
|
|
cStr += "<html>" + CRLF() + ;
|
|
" <head>" + CRLF() + ;
|
|
" <title>" + ::Title + "</title>" + CRLF() + ;
|
|
" </head>" + CRLF()
|
|
|
|
::cStr += cStr
|
|
|
|
RETURN Self
|
|
|
|
METHOD StartSet( aRows, aCols, onLoad, onUnload ) CLASS THtmlFrameSet
|
|
|
|
LOCAL cStr
|
|
LOCAL cItem
|
|
|
|
cStr := CRLF() + " <frameset "
|
|
|
|
IF HB_ISARRAY( aRows ) .AND. ! Empty( aRows )
|
|
|
|
cStr += ' rows="'
|
|
|
|
FOR EACH cItem in aRows
|
|
IF cItem:__enumIndex() > 1
|
|
cStr += ","
|
|
ENDIF
|
|
cStr += cItem
|
|
NEXT
|
|
|
|
cStr += '"'
|
|
ENDIF
|
|
|
|
IF HB_ISARRAY( aCols ) .AND. ! Empty( aCols )
|
|
|
|
cStr += ' cols="'
|
|
|
|
FOR EACH cItem IN aCols
|
|
IF cItem:__enumIndex() > 1
|
|
cStr += ","
|
|
ENDIF
|
|
cStr += cItem
|
|
NEXT
|
|
|
|
cStr += '"'
|
|
ENDIF
|
|
|
|
IF HB_ISSTRING( onLoad )
|
|
cStr += Space( 7 ) + ' onLoad="' + onLoad + '"'
|
|
ENDIF
|
|
|
|
IF HB_ISSTRING( onUnLoad )
|
|
cStr += Space( 5 ) + ' onUnLoad="' + onUnLoad + '"'
|
|
ENDIF
|
|
|
|
cStr += " >" + CRLF()
|
|
|
|
::cStr += cStr
|
|
|
|
RETURN Self
|
|
|
|
|
|
METHOD Endset() CLASS THtmlFrameSet
|
|
|
|
::cStr += " </frameset>" + CRLF()
|
|
|
|
RETURN Self
|
|
|
|
|
|
METHOD End() CLASS THtmlFrameSet
|
|
|
|
::cStr += "</html>" + CRLF()
|
|
|
|
FWrite( ::nH, ::cStr )
|
|
|
|
IF ::FName != NIL
|
|
FClose( ::nH )
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
|
|
METHOD Frame( cName, cURL, lBorder, lResize, lScrolling, ;
|
|
marginwidth, marginheight, cTarget, cScrolling ) CLASS THtmlFrameSet
|
|
|
|
LOCAL cStr
|
|
|
|
__defaultNIL( @lBorder, .T. )
|
|
__defaultNIL( @lResize, .T. )
|
|
__defaultNIL( @lScrolling, .F. )
|
|
__defaultNIL( @cScrolling, "AUTO" )
|
|
__defaultNIL( @cTarget, "_self" )
|
|
|
|
cStr := " <frame "
|
|
|
|
IF HB_ISSTRING( cName )
|
|
cStr += ' name="' + cName + '"'
|
|
ENDIF
|
|
|
|
IF HB_ISSTRING( cUrl )
|
|
cStr += ' src="' + cURL + '"'
|
|
ENDIF
|
|
|
|
IF HB_ISSTRING( cTarget )
|
|
cStr += ' target="' + cTarget + '"'
|
|
ENDIF
|
|
|
|
IF ! lBorder
|
|
cStr += ' frameborder="0"'
|
|
ELSE
|
|
cStr += ' frameborder="1"'
|
|
ENDIF
|
|
|
|
IF ! lResize
|
|
cStr += " noresize"
|
|
ENDIF
|
|
|
|
IF HB_ISSTRING( cScrolling )
|
|
cStr += ' scrolling="' + cScrolling + '"'
|
|
ELSE
|
|
IF lScrolling != NIL
|
|
cStr += ' scrolling=' + iif( lScrolling, '"yes"', '"no"' )
|
|
ELSE
|
|
cStr += ' scrolling="auto"'
|
|
ENDIF
|
|
ENDIF
|
|
|
|
IF HB_ISNUMERIC( marginwidth )
|
|
cStr += " marginwidth= " + hb_ntos( marginwidth )
|
|
ENDIF
|
|
|
|
IF HB_ISNUMERIC( marginheight )
|
|
cStr += " marginheight= " + hb_ntos( marginheight )
|
|
ENDIF
|
|
|
|
cStr += ">" + CRLF()
|
|
|
|
::cStr += cStr
|
|
|
|
RETURN Self
|