Source code for XTF.P
PACKAGE xtf AS
-- version 2.0.0
-- added function
-- comment
-- added constants
-- encoding
-- defaultEncoding
-- used by xtp toolkit
-- obsoletes funtions:
-- xtf.prolog(cversion,cstylesheet,cmedia,cattrbutes) replaced by xtp.prolog(cversion)
-- xtf.stylesheet(...)
-- xtf.process(...)
-- xtf.not_found
----------------------------------------------
-- version 1.0.1
-- replace xtf.tag(cname,cvalue,bclose)
-- by xtf.tag(cname,cvalue,cattributes)
--
----------------------------------------------
-- version 1.0.0
-- initial
encoding VARCHAR2(64) := 'notInitialized';
defaultEncoding VARCHAR2(64) := 'iso-8859-1';
function prolog(cversion in VARCHAR2 default '1.0') return VARCHAR2;
function comment(ccomment in VARCHAR2) return VARCHAR2;
function epilog return VARCHAR2;
function tag(cname in VARCHAR2,
cvalue in VARCHAR2,
cattributes in VARCHAR2 default NULL) return VARCHAR2;
function tagOpen(cname in VARCHAR2,cattributes in VARCHAR2 default NULL) return VARCHAR2;
function tagClose(cname in VARCHAR2) return VARCHAR2;
END xtf;
This page was produced by the
PL/SQL Web ToolKit on November 21, 2003 06:27 AM