DBA Data[Home] [Help]

OWAPUB.HTP dependencies on HTF

Line 38: begin p(htf.htmlOpen); end;

34: nCompressDownloadFiles binary_integer;
35:
36: /* STRUCTURE tags */
37: procedure htmlOpen is
38: begin p(htf.htmlOpen); end;
39:
40: procedure htmlClose is
41: begin p(htf.htmlClose); end;
42:

Line 41: begin p(htf.htmlClose); end;

37: procedure htmlOpen is
38: begin p(htf.htmlOpen); end;
39:
40: procedure htmlClose is
41: begin p(htf.htmlClose); end;
42:
43: procedure headOpen is
44: begin p(htf.headOpen); end;
45:

Line 44: begin p(htf.headOpen); end;

40: procedure htmlClose is
41: begin p(htf.htmlClose); end;
42:
43: procedure headOpen is
44: begin p(htf.headOpen); end;
45:
46: procedure headClose is
47: begin p(htf.headClose); end;
48:

Line 47: begin p(htf.headClose); end;

43: procedure headOpen is
44: begin p(htf.headOpen); end;
45:
46: procedure headClose is
47: begin p(htf.headClose); end;
48:
49: procedure bodyOpen(cbackground in varchar2 DEFAULT NULL,
50: cattributes in varchar2 DEFAULT NULL) is
51: begin p(htf.bodyOpen(cbackground,cattributes)); end;

Line 51: begin p(htf.bodyOpen(cbackground,cattributes)); end;

47: begin p(htf.headClose); end;
48:
49: procedure bodyOpen(cbackground in varchar2 DEFAULT NULL,
50: cattributes in varchar2 DEFAULT NULL) is
51: begin p(htf.bodyOpen(cbackground,cattributes)); end;
52:
53: procedure bodyClose is
54: begin p(htf.bodyClose); end;
55: /* END STRUCTURE tags */

Line 54: begin p(htf.bodyClose); end;

50: cattributes in varchar2 DEFAULT NULL) is
51: begin p(htf.bodyOpen(cbackground,cattributes)); end;
52:
53: procedure bodyClose is
54: begin p(htf.bodyClose); end;
55: /* END STRUCTURE tags */
56:
57: /* HEAD Related elements tags */
58: procedure title (ctitle in varchar2) is

Line 59: begin p(htf.title(ctitle)); end;

55: /* END STRUCTURE tags */
56:
57: /* HEAD Related elements tags */
58: procedure title (ctitle in varchar2) is
59: begin p(htf.title(ctitle)); end;
60:
61: procedure htitle(ctitle in varchar2,
62: nsize in integer DEFAULT 1,
63: calign in varchar2 DEFAULT NULL,

Line 67: begin p(htf.htitle(ctitle,nsize,calign,cnowrap,cclear,cattributes)); end;

63: calign in varchar2 DEFAULT NULL,
64: cnowrap in varchar2 DEFAULT NULL,
65: cclear in varchar2 DEFAULT NULL,
66: cattributes in varchar2 DEFAULT NULL) is
67: begin p(htf.htitle(ctitle,nsize,calign,cnowrap,cclear,cattributes)); end;
68:
69: procedure base( ctarget in varchar2 DEFAULT NULL,
70: cattributes in varchar2 DEFAULT NULL) is
71: begin p(htf.base(ctarget,cattributes)); end;

Line 71: begin p(htf.base(ctarget,cattributes)); end;

67: begin p(htf.htitle(ctitle,nsize,calign,cnowrap,cclear,cattributes)); end;
68:
69: procedure base( ctarget in varchar2 DEFAULT NULL,
70: cattributes in varchar2 DEFAULT NULL) is
71: begin p(htf.base(ctarget,cattributes)); end;
72:
73: procedure isindex(cprompt in varchar2 DEFAULT NULL,
74: curl in varchar2 DEFAULT NULL) is
75: begin p(htf.isindex(cprompt, curl)); end;

Line 75: begin p(htf.isindex(cprompt, curl)); end;

71: begin p(htf.base(ctarget,cattributes)); end;
72:
73: procedure isindex(cprompt in varchar2 DEFAULT NULL,
74: curl in varchar2 DEFAULT NULL) is
75: begin p(htf.isindex(cprompt, curl)); end;
76:
77: procedure linkRel(crel in varchar2,
78: curl in varchar2,
79: ctitle in varchar2 DEFAULT NULL) is

Line 80: begin p(htf.linkRel(crel, curl, ctitle)); end;

76:
77: procedure linkRel(crel in varchar2,
78: curl in varchar2,
79: ctitle in varchar2 DEFAULT NULL) is
80: begin p(htf.linkRel(crel, curl, ctitle)); end;
81:
82: procedure linkRev(crev in varchar2,
83: curl in varchar2,
84: ctitle in varchar2 DEFAULT NULL) is

Line 85: begin p(htf.linkRev(crev, curl, ctitle)); end;

81:
82: procedure linkRev(crev in varchar2,
83: curl in varchar2,
84: ctitle in varchar2 DEFAULT NULL) is
85: begin p(htf.linkRev(crev, curl, ctitle)); end;
86:
87: procedure meta(chttp_equiv in varchar2,
88: cname in varchar2,
89: ccontent in varchar2) is

Line 90: begin p(htf.meta(chttp_equiv, cname, ccontent)); end;

86:
87: procedure meta(chttp_equiv in varchar2,
88: cname in varchar2,
89: ccontent in varchar2) is
90: begin p(htf.meta(chttp_equiv, cname, ccontent)); end;
91:
92: procedure nextid(cidentifier in varchar2) is
93: begin p(htf.nextid(cidentifier)); end;
94:

Line 93: begin p(htf.nextid(cidentifier)); end;

89: ccontent in varchar2) is
90: begin p(htf.meta(chttp_equiv, cname, ccontent)); end;
91:
92: procedure nextid(cidentifier in varchar2) is
93: begin p(htf.nextid(cidentifier)); end;
94:
95: procedure style(cstyle in varchar2) is
96: begin p(htf.style(cstyle)); end;
97:

Line 96: begin p(htf.style(cstyle)); end;

92: procedure nextid(cidentifier in varchar2) is
93: begin p(htf.nextid(cidentifier)); end;
94:
95: procedure style(cstyle in varchar2) is
96: begin p(htf.style(cstyle)); end;
97:
98: procedure script(cscript in varchar2,
99: clanguage in varchar2 DEFAULT NULL) is
100: begin p(htf.script(cscript, clanguage)); end;

Line 100: begin p(htf.script(cscript, clanguage)); end;

96: begin p(htf.style(cstyle)); end;
97:
98: procedure script(cscript in varchar2,
99: clanguage in varchar2 DEFAULT NULL) is
100: begin p(htf.script(cscript, clanguage)); end;
101:
102: /* END HEAD Related elements tags */
103:
104: /* BODY ELEMENT tags */

Line 108: begin p(htf.hr(cclear, csrc, cattributes)); end;

104: /* BODY ELEMENT tags */
105: procedure hr (cclear in varchar2 DEFAULT NULL,
106: csrc in varchar2 DEFAULT NULL,
107: cattributes in varchar2 DEFAULT NULL) is
108: begin p(htf.hr(cclear, csrc, cattributes)); end;
109:
110: procedure line(cclear in varchar2 DEFAULT NULL,
111: csrc in varchar2 DEFAULT NULL,
112: cattributes in varchar2 DEFAULT NULL) is

Line 117: begin p(htf.nl(cclear,cattributes)); end;

113: begin htp.hr(cclear, csrc, cattributes); end;
114:
115: procedure nl (cclear in varchar2 DEFAULT NULL,
116: cattributes in varchar2 DEFAULT NULL) is
117: begin p(htf.nl(cclear,cattributes)); end;
118:
119: procedure br (cclear in varchar2 DEFAULT NULL,
120: cattributes in varchar2 DEFAULT NULL) is
121: begin htp.nl(cclear,cattributes); end;

Line 129: begin p(htf.header(nsize,cheader,calign,cnowrap,cclear,cattributes)); end;

125: calign in varchar2 DEFAULT NULL,
126: cnowrap in varchar2 DEFAULT NULL,
127: cclear in varchar2 DEFAULT NULL,
128: cattributes in varchar2 DEFAULT NULL) is
129: begin p(htf.header(nsize,cheader,calign,cnowrap,cclear,cattributes)); end;
130:
131: procedure anchor(curl in varchar2,
132: ctext in varchar2,
133: cname in varchar2 DEFAULT NULL,

Line 135: begin p(htf.anchor(curl,ctext,cname,cattributes)); end;

131: procedure anchor(curl in varchar2,
132: ctext in varchar2,
133: cname in varchar2 DEFAULT NULL,
134: cattributes in varchar2 DEFAULT NULL) is
135: begin p(htf.anchor(curl,ctext,cname,cattributes)); end;
136:
137: procedure anchor2(curl in varchar2,
138: ctext in varchar2,
139: cname in varchar2 DEFAULT NULL,

Line 142: begin p(htf.anchor2(curl,ctext,cname,ctarget,cattributes)); end;

138: ctext in varchar2,
139: cname in varchar2 DEFAULT NULL,
140: ctarget in varchar2 DEFAULT NULL,
141: cattributes in varchar2 DEFAULT NULL) is
142: begin p(htf.anchor2(curl,ctext,cname,ctarget,cattributes)); end;
143:
144: procedure mailto(caddress in varchar2,
145: ctext in varchar2,
146: cname in varchar2 DEFAULT NULL,

Line 148: begin p(htf.mailto(caddress,ctext,cname,cattributes)); end;

144: procedure mailto(caddress in varchar2,
145: ctext in varchar2,
146: cname in varchar2 DEFAULT NULL,
147: cattributes in varchar2 DEFAULT NULL) is
148: begin p(htf.mailto(caddress,ctext,cname,cattributes)); end;
149:
150: procedure img(curl in varchar2,
151: calign in varchar2 DEFAULT NULL,
152: calt in varchar2 DEFAULT NULL,

Line 155: begin p(htf.img(curl,calign,calt,cismap,cattributes)); end;

151: calign in varchar2 DEFAULT NULL,
152: calt in varchar2 DEFAULT NULL,
153: cismap in varchar2 DEFAULT NULL,
154: cattributes in varchar2 DEFAULT NULL) is
155: begin p(htf.img(curl,calign,calt,cismap,cattributes)); end;
156:
157: procedure img2(curl in varchar2,
158: calign in varchar2 DEFAULT NULL,
159: calt in varchar2 DEFAULT NULL,

Line 163: begin p(htf.img2(curl,calign,calt,cismap,cusemap,cattributes)); end;

159: calt in varchar2 DEFAULT NULL,
160: cismap in varchar2 DEFAULT NULL,
161: cusemap in varchar2 DEFAULT NULL,
162: cattributes in varchar2 DEFAULT NULL) is
163: begin p(htf.img2(curl,calign,calt,cismap,cusemap,cattributes)); end;
164:
165: procedure area( ccoords in varchar2,
166: cshape in varchar2 DEFAULT NULL,
167: chref in varchar2 DEFAULT NULL,

Line 171: begin p(htf.area(ccoords,cshape,chref,cnohref,ctarget,cattributes));end;

167: chref in varchar2 DEFAULT NULL,
168: cnohref in varchar2 DEFAULT NULL,
169: ctarget in varchar2 DEFAULT NULL,
170: cattributes in varchar2 DEFAULT NULL) is
171: begin p(htf.area(ccoords,cshape,chref,cnohref,ctarget,cattributes));end;
172:
173: procedure mapOpen(cname in varchar2,cattributes in varchar2 DEFAULT NULL) is
174: begin p(htf.mapOpen(cname,cattributes)); end;
175: procedure mapClose is

Line 174: begin p(htf.mapOpen(cname,cattributes)); end;

170: cattributes in varchar2 DEFAULT NULL) is
171: begin p(htf.area(ccoords,cshape,chref,cnohref,ctarget,cattributes));end;
172:
173: procedure mapOpen(cname in varchar2,cattributes in varchar2 DEFAULT NULL) is
174: begin p(htf.mapOpen(cname,cattributes)); end;
175: procedure mapClose is
176: begin p(htf.mapClose); end;
177:
178: procedure bgsound(csrc in varchar2,

Line 176: begin p(htf.mapClose); end;

172:
173: procedure mapOpen(cname in varchar2,cattributes in varchar2 DEFAULT NULL) is
174: begin p(htf.mapOpen(cname,cattributes)); end;
175: procedure mapClose is
176: begin p(htf.mapClose); end;
177:
178: procedure bgsound(csrc in varchar2,
179: cloop in varchar2 DEFAULT NULL,
180: cattributes in varchar2 DEFAULT NULL) is

Line 181: begin p(htf.bgsound(csrc,cloop,cattributes));end;

177:
178: procedure bgsound(csrc in varchar2,
179: cloop in varchar2 DEFAULT NULL,
180: cattributes in varchar2 DEFAULT NULL) is
181: begin p(htf.bgsound(csrc,cloop,cattributes));end;
182:
183: procedure para is
184: begin p(htf.para); end;
185:

Line 184: begin p(htf.para); end;

180: cattributes in varchar2 DEFAULT NULL) is
181: begin p(htf.bgsound(csrc,cloop,cattributes));end;
182:
183: procedure para is
184: begin p(htf.para); end;
185:
186: procedure paragraph(calign in varchar2 DEFAULT NULL,
187: cnowrap in varchar2 DEFAULT NULL,
188: cclear in varchar2 DEFAULT NULL,

Line 190: begin p(htf.paragraph(calign,cnowrap,cclear,cattributes)); end;

186: procedure paragraph(calign in varchar2 DEFAULT NULL,
187: cnowrap in varchar2 DEFAULT NULL,
188: cclear in varchar2 DEFAULT NULL,
189: cattributes in varchar2 DEFAULT NULL) is
190: begin p(htf.paragraph(calign,cnowrap,cclear,cattributes)); end;
191:
192: procedure div( calign in varchar2 DEFAULT NULL,
193: cattributes in varchar2 DEFAULT NULL) is
194: begin p(htf.div(calign,cattributes)); end;

Line 194: begin p(htf.div(calign,cattributes)); end;

190: begin p(htf.paragraph(calign,cnowrap,cclear,cattributes)); end;
191:
192: procedure div( calign in varchar2 DEFAULT NULL,
193: cattributes in varchar2 DEFAULT NULL) is
194: begin p(htf.div(calign,cattributes)); end;
195:
196: procedure address(cvalue in varchar2,
197: cnowrap in varchar2 DEFAULT NULL,
198: cclear in varchar2 DEFAULT NULL,

Line 200: begin p(htf.address(cvalue, cnowrap, cclear, cattributes)); end;

196: procedure address(cvalue in varchar2,
197: cnowrap in varchar2 DEFAULT NULL,
198: cclear in varchar2 DEFAULT NULL,
199: cattributes in varchar2 DEFAULT NULL) is
200: begin p(htf.address(cvalue, cnowrap, cclear, cattributes)); end;
201:
202: procedure comment(ctext in varchar2) is
203: begin p(htf.comment(ctext)); end;
204:

Line 203: begin p(htf.comment(ctext)); end;

199: cattributes in varchar2 DEFAULT NULL) is
200: begin p(htf.address(cvalue, cnowrap, cclear, cattributes)); end;
201:
202: procedure comment(ctext in varchar2) is
203: begin p(htf.comment(ctext)); end;
204:
205: procedure preOpen(cclear in varchar2 DEFAULT NULL,
206: cwidth in varchar2 DEFAULT NULL,
207: cattributes in varchar2 DEFAULT NULL) is

Line 208: begin p(htf.preOpen(cclear,cwidth,cattributes)); end;

204:
205: procedure preOpen(cclear in varchar2 DEFAULT NULL,
206: cwidth in varchar2 DEFAULT NULL,
207: cattributes in varchar2 DEFAULT NULL) is
208: begin p(htf.preOpen(cclear,cwidth,cattributes)); end;
209:
210: procedure preClose is
211: begin p(htf.preClose); end;
212:

Line 211: begin p(htf.preClose); end;

207: cattributes in varchar2 DEFAULT NULL) is
208: begin p(htf.preOpen(cclear,cwidth,cattributes)); end;
209:
210: procedure preClose is
211: begin p(htf.preClose); end;
212:
213: procedure listingOpen is
214: begin p(htf.listingOpen); end;
215: procedure listingClose is

Line 214: begin p(htf.listingOpen); end;

210: procedure preClose is
211: begin p(htf.preClose); end;
212:
213: procedure listingOpen is
214: begin p(htf.listingOpen); end;
215: procedure listingClose is
216: begin p(htf.listingClose); end;
217:
218: procedure nobr(ctext in varchar2) is

Line 216: begin p(htf.listingClose); end;

212:
213: procedure listingOpen is
214: begin p(htf.listingOpen); end;
215: procedure listingClose is
216: begin p(htf.listingClose); end;
217:
218: procedure nobr(ctext in varchar2) is
219: begin p(htf.nobr(ctext)); end;
220: procedure wbr is

Line 219: begin p(htf.nobr(ctext)); end;

215: procedure listingClose is
216: begin p(htf.listingClose); end;
217:
218: procedure nobr(ctext in varchar2) is
219: begin p(htf.nobr(ctext)); end;
220: procedure wbr is
221: begin p(htf.wbr); end;
222:
223: procedure center(ctext in varchar2) is

Line 221: begin p(htf.wbr); end;

217:
218: procedure nobr(ctext in varchar2) is
219: begin p(htf.nobr(ctext)); end;
220: procedure wbr is
221: begin p(htf.wbr); end;
222:
223: procedure center(ctext in varchar2) is
224: begin p(htf.center(ctext)); end;
225:

Line 224: begin p(htf.center(ctext)); end;

220: procedure wbr is
221: begin p(htf.wbr); end;
222:
223: procedure center(ctext in varchar2) is
224: begin p(htf.center(ctext)); end;
225:
226: procedure centerOpen is
227: begin p(htf.centerOpen); end;
228:

Line 227: begin p(htf.centerOpen); end;

223: procedure center(ctext in varchar2) is
224: begin p(htf.center(ctext)); end;
225:
226: procedure centerOpen is
227: begin p(htf.centerOpen); end;
228:
229: procedure centerClose is
230: begin p(htf.centerClose); end;
231:

Line 230: begin p(htf.centerClose); end;

226: procedure centerOpen is
227: begin p(htf.centerOpen); end;
228:
229: procedure centerClose is
230: begin p(htf.centerClose); end;
231:
232:
233:
234: procedure blockquoteOpen(cnowrap in varchar2 DEFAULT NULL,

Line 237: begin p(htf.blockquoteOpen(cnowrap,cclear,cattributes)); end;

233:
234: procedure blockquoteOpen(cnowrap in varchar2 DEFAULT NULL,
235: cclear in varchar2 DEFAULT NULL,
236: cattributes in varchar2 DEFAULT NULL) is
237: begin p(htf.blockquoteOpen(cnowrap,cclear,cattributes)); end;
238:
239: procedure blockquoteClose is
240: begin p(htf.blockquoteClose); end;
241:

Line 240: begin p(htf.blockquoteClose); end;

236: cattributes in varchar2 DEFAULT NULL) is
237: begin p(htf.blockquoteOpen(cnowrap,cclear,cattributes)); end;
238:
239: procedure blockquoteClose is
240: begin p(htf.blockquoteClose); end;
241:
242: /* LIST tags */
243: procedure listHeader(ctext in varchar2,
244: cattributes in varchar2 DEFAULT NULL) is

Line 245: begin p(htf.listHeader(ctext,cattributes)); end;

241:
242: /* LIST tags */
243: procedure listHeader(ctext in varchar2,
244: cattributes in varchar2 DEFAULT NULL) is
245: begin p(htf.listHeader(ctext,cattributes)); end;
246:
247: procedure listItem(ctext in varchar2 DEFAULT NULL,
248: cclear in varchar2 DEFAULT NULL,
249: cdingbat in varchar2 DEFAULT NULL,

Line 252: begin p(htf.listItem(ctext,cclear,cdingbat,csrc,cattributes)); end;

248: cclear in varchar2 DEFAULT NULL,
249: cdingbat in varchar2 DEFAULT NULL,
250: csrc in varchar2 DEFAULT NULL,
251: cattributes in varchar2 DEFAULT NULL) is
252: begin p(htf.listItem(ctext,cclear,cdingbat,csrc,cattributes)); end;
253:
254: procedure ulistOpen(cclear in varchar2 DEFAULT NULL,
255: cwrap in varchar2 DEFAULT NULL,
256: cdingbat in varchar2 DEFAULT NULL,

Line 259: begin p(htf.ulistOpen(cclear,cwrap,cdingbat,csrc,cattributes)); end;

255: cwrap in varchar2 DEFAULT NULL,
256: cdingbat in varchar2 DEFAULT NULL,
257: csrc in varchar2 DEFAULT NULL,
258: cattributes in varchar2 DEFAULT NULL) is
259: begin p(htf.ulistOpen(cclear,cwrap,cdingbat,csrc,cattributes)); end;
260:
261: procedure ulistClose is
262: begin p(htf.ulistClose); end;
263:

Line 262: begin p(htf.ulistClose); end;

258: cattributes in varchar2 DEFAULT NULL) is
259: begin p(htf.ulistOpen(cclear,cwrap,cdingbat,csrc,cattributes)); end;
260:
261: procedure ulistClose is
262: begin p(htf.ulistClose); end;
263:
264: procedure olistOpen(cclear in varchar2 DEFAULT NULL,
265: cwrap in varchar2 DEFAULT NULL,
266: cattributes in varchar2 DEFAULT NULL) is

Line 267: begin p(htf.olistOpen(cclear,cwrap,cattributes)); end;

263:
264: procedure olistOpen(cclear in varchar2 DEFAULT NULL,
265: cwrap in varchar2 DEFAULT NULL,
266: cattributes in varchar2 DEFAULT NULL) is
267: begin p(htf.olistOpen(cclear,cwrap,cattributes)); end;
268:
269: procedure olistClose is
270: begin p(htf.olistClose); end;
271:

Line 270: begin p(htf.olistClose); end;

266: cattributes in varchar2 DEFAULT NULL) is
267: begin p(htf.olistOpen(cclear,cwrap,cattributes)); end;
268:
269: procedure olistClose is
270: begin p(htf.olistClose); end;
271:
272: procedure dlistOpen(cclear in varchar2 DEFAULT NULL,
273: cattributes in varchar2 DEFAULT NULL) is
274: begin p(htf.dlistOpen(cclear,cattributes)); end;

Line 274: begin p(htf.dlistOpen(cclear,cattributes)); end;

270: begin p(htf.olistClose); end;
271:
272: procedure dlistOpen(cclear in varchar2 DEFAULT NULL,
273: cattributes in varchar2 DEFAULT NULL) is
274: begin p(htf.dlistOpen(cclear,cattributes)); end;
275:
276: procedure dlistTerm(ctext in varchar2 DEFAULT NULL,
277: cclear in varchar2 DEFAULT NULL,
278: cattributes in varchar2 DEFAULT NULL) is

Line 279: begin p(htf.dlistTerm(ctext,cclear,cattributes)); end;

275:
276: procedure dlistTerm(ctext in varchar2 DEFAULT NULL,
277: cclear in varchar2 DEFAULT NULL,
278: cattributes in varchar2 DEFAULT NULL) is
279: begin p(htf.dlistTerm(ctext,cclear,cattributes)); end;
280:
281: procedure dlistDef(ctext in varchar2 DEFAULT NULL,
282: cclear in varchar2 DEFAULT NULL,
283: cattributes in varchar2 DEFAULT NULL) is

Line 284: begin p(htf.dlistDef(ctext,cclear,cattributes)); end;

280:
281: procedure dlistDef(ctext in varchar2 DEFAULT NULL,
282: cclear in varchar2 DEFAULT NULL,
283: cattributes in varchar2 DEFAULT NULL) is
284: begin p(htf.dlistDef(ctext,cclear,cattributes)); end;
285:
286: procedure dlistClose is
287: begin p(htf.dlistClose); end;
288:

Line 287: begin p(htf.dlistClose); end;

283: cattributes in varchar2 DEFAULT NULL) is
284: begin p(htf.dlistDef(ctext,cclear,cattributes)); end;
285:
286: procedure dlistClose is
287: begin p(htf.dlistClose); end;
288:
289: procedure menulistOpen is
290: begin p(htf.menulistOpen); end;
291:

Line 290: begin p(htf.menulistOpen); end;

286: procedure dlistClose is
287: begin p(htf.dlistClose); end;
288:
289: procedure menulistOpen is
290: begin p(htf.menulistOpen); end;
291:
292: procedure menulistClose is
293: begin p(htf.menulistClose); end;
294:

Line 293: begin p(htf.menulistClose); end;

289: procedure menulistOpen is
290: begin p(htf.menulistOpen); end;
291:
292: procedure menulistClose is
293: begin p(htf.menulistClose); end;
294:
295: procedure dirlistOpen is
296: begin p(htf.dirlistOpen); end;
297:

Line 296: begin p(htf.dirlistOpen); end;

292: procedure menulistClose is
293: begin p(htf.menulistClose); end;
294:
295: procedure dirlistOpen is
296: begin p(htf.dirlistOpen); end;
297:
298: procedure dirlistClose is
299: begin p(htf.dirlistClose); end;
300: /* END LIST tags */

Line 299: begin p(htf.dirlistClose); end;

295: procedure dirlistOpen is
296: begin p(htf.dirlistOpen); end;
297:
298: procedure dirlistClose is
299: begin p(htf.dirlistClose); end;
300: /* END LIST tags */
301:
302: /* SEMANTIC FORMAT ELEMENTS */
303: procedure dfn(ctext in varchar2,

Line 305: begin p(htf.dfn(ctext,cattributes)); end;

301:
302: /* SEMANTIC FORMAT ELEMENTS */
303: procedure dfn(ctext in varchar2,
304: cattributes in varchar2 DEFAULT NULL) is
305: begin p(htf.dfn(ctext,cattributes)); end;
306:
307: procedure cite(ctext in varchar2,
308: cattributes in varchar2 DEFAULT NULL) is
309: begin p(htf.cite(ctext,cattributes)); end;

Line 309: begin p(htf.cite(ctext,cattributes)); end;

305: begin p(htf.dfn(ctext,cattributes)); end;
306:
307: procedure cite(ctext in varchar2,
308: cattributes in varchar2 DEFAULT NULL) is
309: begin p(htf.cite(ctext,cattributes)); end;
310:
311: procedure code(ctext in varchar2,
312: cattributes in varchar2 DEFAULT NULL) is
313: begin p(htf.code(ctext,cattributes)); end;

Line 313: begin p(htf.code(ctext,cattributes)); end;

309: begin p(htf.cite(ctext,cattributes)); end;
310:
311: procedure code(ctext in varchar2,
312: cattributes in varchar2 DEFAULT NULL) is
313: begin p(htf.code(ctext,cattributes)); end;
314:
315: procedure em(ctext in varchar2,
316: cattributes in varchar2 DEFAULT NULL) is
317: begin p(htf.em(ctext,cattributes)); end;

Line 317: begin p(htf.em(ctext,cattributes)); end;

313: begin p(htf.code(ctext,cattributes)); end;
314:
315: procedure em(ctext in varchar2,
316: cattributes in varchar2 DEFAULT NULL) is
317: begin p(htf.em(ctext,cattributes)); end;
318:
319: procedure emphasis(ctext in varchar2,
320: cattributes in varchar2 DEFAULT NULL) is
321: begin p(htf.emphasis(ctext,cattributes)); end;

Line 321: begin p(htf.emphasis(ctext,cattributes)); end;

317: begin p(htf.em(ctext,cattributes)); end;
318:
319: procedure emphasis(ctext in varchar2,
320: cattributes in varchar2 DEFAULT NULL) is
321: begin p(htf.emphasis(ctext,cattributes)); end;
322:
323: procedure kbd(ctext in varchar2,
324: cattributes in varchar2 DEFAULT NULL) is
325: begin p(htf.kbd(ctext,cattributes)); end;

Line 325: begin p(htf.kbd(ctext,cattributes)); end;

321: begin p(htf.emphasis(ctext,cattributes)); end;
322:
323: procedure kbd(ctext in varchar2,
324: cattributes in varchar2 DEFAULT NULL) is
325: begin p(htf.kbd(ctext,cattributes)); end;
326:
327: procedure keyboard(ctext in varchar2,
328: cattributes in varchar2 DEFAULT NULL) is
329: begin p(htf.keyboard(ctext,cattributes)); end;

Line 329: begin p(htf.keyboard(ctext,cattributes)); end;

325: begin p(htf.kbd(ctext,cattributes)); end;
326:
327: procedure keyboard(ctext in varchar2,
328: cattributes in varchar2 DEFAULT NULL) is
329: begin p(htf.keyboard(ctext,cattributes)); end;
330:
331: procedure sample(ctext in varchar2,
332: cattributes in varchar2 DEFAULT NULL) is
333: begin p(htf.sample(ctext,cattributes)); end;

Line 333: begin p(htf.sample(ctext,cattributes)); end;

329: begin p(htf.keyboard(ctext,cattributes)); end;
330:
331: procedure sample(ctext in varchar2,
332: cattributes in varchar2 DEFAULT NULL) is
333: begin p(htf.sample(ctext,cattributes)); end;
334:
335: procedure strong (ctext in varchar2,
336: cattributes in varchar2 DEFAULT NULL) is
337: begin p(htf.strong(ctext,cattributes)); end;

Line 337: begin p(htf.strong(ctext,cattributes)); end;

333: begin p(htf.sample(ctext,cattributes)); end;
334:
335: procedure strong (ctext in varchar2,
336: cattributes in varchar2 DEFAULT NULL) is
337: begin p(htf.strong(ctext,cattributes)); end;
338:
339: procedure variable(ctext in varchar2,
340: cattributes in varchar2 DEFAULT NULL) is
341: begin p(htf.variable(ctext,cattributes)); end;

Line 341: begin p(htf.variable(ctext,cattributes)); end;

337: begin p(htf.strong(ctext,cattributes)); end;
338:
339: procedure variable(ctext in varchar2,
340: cattributes in varchar2 DEFAULT NULL) is
341: begin p(htf.variable(ctext,cattributes)); end;
342:
343: procedure big( ctext in varchar2,
344: cattributes in varchar2 DEFAULT NULL) is
345: begin p(htf.big(ctext,cattributes)); end;

Line 345: begin p(htf.big(ctext,cattributes)); end;

341: begin p(htf.variable(ctext,cattributes)); end;
342:
343: procedure big( ctext in varchar2,
344: cattributes in varchar2 DEFAULT NULL) is
345: begin p(htf.big(ctext,cattributes)); end;
346:
347: procedure small(ctext in varchar2,
348: cattributes in varchar2 DEFAULT NULL) is
349: begin p(htf.small(ctext,cattributes)); end;

Line 349: begin p(htf.small(ctext,cattributes)); end;

345: begin p(htf.big(ctext,cattributes)); end;
346:
347: procedure small(ctext in varchar2,
348: cattributes in varchar2 DEFAULT NULL) is
349: begin p(htf.small(ctext,cattributes)); end;
350:
351: procedure sub( ctext in varchar2,
352: calign in varchar2 DEFAULT NULL,
353: cattributes in varchar2 DEFAULT NULL) is

Line 354: begin p(htf.sub(ctext,calign,cattributes)); end;

350:
351: procedure sub( ctext in varchar2,
352: calign in varchar2 DEFAULT NULL,
353: cattributes in varchar2 DEFAULT NULL) is
354: begin p(htf.sub(ctext,calign,cattributes)); end;
355:
356: procedure sup( ctext in varchar2,
357: calign in varchar2 DEFAULT NULL,
358: cattributes in varchar2 DEFAULT NULL) is

Line 359: begin p(htf.sup(ctext,calign,cattributes)); end;

355:
356: procedure sup( ctext in varchar2,
357: calign in varchar2 DEFAULT NULL,
358: cattributes in varchar2 DEFAULT NULL) is
359: begin p(htf.sup(ctext,calign,cattributes)); end;
360:
361:
362: /* END SEMANTIC FORMAT ELEMENTS */
363:

Line 366: begin p(htf.basefont(nsize));end;

362: /* END SEMANTIC FORMAT ELEMENTS */
363:
364: /* PHYSICAL FORMAT ELEMENTS */
365: procedure basefont(nsize in integer) is
366: begin p(htf.basefont(nsize));end;
367:
368: procedure fontOpen(ccolor in varchar2 DEFAULT NULL,
369: cface in varchar2 DEFAULT NULL,
370: csize in varchar2 DEFAULT NULL,

Line 372: begin p(htf.fontOpen(ccolor,cface,csize,cattributes)); end;

368: procedure fontOpen(ccolor in varchar2 DEFAULT NULL,
369: cface in varchar2 DEFAULT NULL,
370: csize in varchar2 DEFAULT NULL,
371: cattributes in varchar2 DEFAULT NULL) is
372: begin p(htf.fontOpen(ccolor,cface,csize,cattributes)); end;
373:
374: procedure fontClose is
375: begin p(htf.fontClose); end;
376:

Line 375: begin p(htf.fontClose); end;

371: cattributes in varchar2 DEFAULT NULL) is
372: begin p(htf.fontOpen(ccolor,cface,csize,cattributes)); end;
373:
374: procedure fontClose is
375: begin p(htf.fontClose); end;
376:
377: procedure bold (ctext in varchar2,
378: cattributes in varchar2 DEFAULT NULL) is
379: begin p(htf.bold(ctext,cattributes)); end;

Line 379: begin p(htf.bold(ctext,cattributes)); end;

375: begin p(htf.fontClose); end;
376:
377: procedure bold (ctext in varchar2,
378: cattributes in varchar2 DEFAULT NULL) is
379: begin p(htf.bold(ctext,cattributes)); end;
380:
381: procedure italic (ctext in varchar2,
382: cattributes in varchar2 DEFAULT NULL) is
383: begin p(htf.italic(ctext,cattributes)); end;

Line 383: begin p(htf.italic(ctext,cattributes)); end;

379: begin p(htf.bold(ctext,cattributes)); end;
380:
381: procedure italic (ctext in varchar2,
382: cattributes in varchar2 DEFAULT NULL) is
383: begin p(htf.italic(ctext,cattributes)); end;
384:
385: procedure teletype(ctext in varchar2,
386: cattributes in varchar2 DEFAULT NULL) is
387: begin p(htf.teletype(ctext,cattributes)); end;

Line 387: begin p(htf.teletype(ctext,cattributes)); end;

383: begin p(htf.italic(ctext,cattributes)); end;
384:
385: procedure teletype(ctext in varchar2,
386: cattributes in varchar2 DEFAULT NULL) is
387: begin p(htf.teletype(ctext,cattributes)); end;
388:
389: procedure plaintext(ctext in varchar2,
390: cattributes in varchar2 DEFAULT NULL) is
391: begin p(htf.plaintext(ctext,cattributes)); end;

Line 391: begin p(htf.plaintext(ctext,cattributes)); end;

387: begin p(htf.teletype(ctext,cattributes)); end;
388:
389: procedure plaintext(ctext in varchar2,
390: cattributes in varchar2 DEFAULT NULL) is
391: begin p(htf.plaintext(ctext,cattributes)); end;
392:
393: procedure s(ctext in varchar2,
394: cattributes in varchar2 DEFAULT NULL) is
395: begin p(htf.s(ctext,cattributes)); end;

Line 395: begin p(htf.s(ctext,cattributes)); end;

391: begin p(htf.plaintext(ctext,cattributes)); end;
392:
393: procedure s(ctext in varchar2,
394: cattributes in varchar2 DEFAULT NULL) is
395: begin p(htf.s(ctext,cattributes)); end;
396:
397: procedure strike (ctext in varchar2,
398: cattributes in varchar2 DEFAULT NULL) is
399: begin p(htf.strike(ctext,cattributes)); end;

Line 399: begin p(htf.strike(ctext,cattributes)); end;

395: begin p(htf.s(ctext,cattributes)); end;
396:
397: procedure strike (ctext in varchar2,
398: cattributes in varchar2 DEFAULT NULL) is
399: begin p(htf.strike(ctext,cattributes)); end;
400:
401: procedure underline (ctext in varchar2,
402: cattributes in varchar2 DEFAULT NULL) is
403: begin p(htf.underline(ctext,cattributes)); end;

Line 403: begin p(htf.underline(ctext,cattributes)); end;

399: begin p(htf.strike(ctext,cattributes)); end;
400:
401: procedure underline (ctext in varchar2,
402: cattributes in varchar2 DEFAULT NULL) is
403: begin p(htf.underline(ctext,cattributes)); end;
404:
405: /* END PHYSICAL FORMAT ELEMENTS */
406:
407: /* HTML FORMS */

Line 414: begin p(htf.formOpen(curl,cmethod,ctarget,cenctype,cattributes)); end;

410: cmethod in varchar2 DEFAULT 'POST',
411: ctarget in varchar2 DEFAULT NULL,
412: cenctype in varchar2 DEFAULT NULL,
413: cattributes in varchar2 DEFAULT NULL) is
414: begin p(htf.formOpen(curl,cmethod,ctarget,cenctype,cattributes)); end;
415:
416: procedure formCheckbox(cname in varchar2,
417: cvalue in varchar2 DEFAULT 'on',
418: cchecked in varchar2 DEFAULT NULL,

Line 420: begin p(htf.formCheckbox(cname,cvalue,cchecked,cattributes)); end;

416: procedure formCheckbox(cname in varchar2,
417: cvalue in varchar2 DEFAULT 'on',
418: cchecked in varchar2 DEFAULT NULL,
419: cattributes in varchar2 DEFAULT NULL) is
420: begin p(htf.formCheckbox(cname,cvalue,cchecked,cattributes)); end;
421:
422: procedure formFile(cname in varchar2,
423: caccept in varchar2 DEFAULT NULL,
424: cattributes in varchar2 DEFAULT NULL) is

Line 425: begin p(htf.formFile(cname,caccept,cattributes)); end;

421:
422: procedure formFile(cname in varchar2,
423: caccept in varchar2 DEFAULT NULL,
424: cattributes in varchar2 DEFAULT NULL) is
425: begin p(htf.formFile(cname,caccept,cattributes)); end;
426:
427: procedure formHidden(cname in varchar2,
428: cvalue in varchar2 DEFAULT NULL,
429: cattributes in varchar2 DEFAULT NULL) is

Line 430: begin p(htf.formHidden(cname,cvalue,cattributes)); end;

426:
427: procedure formHidden(cname in varchar2,
428: cvalue in varchar2 DEFAULT NULL,
429: cattributes in varchar2 DEFAULT NULL) is
430: begin p(htf.formHidden(cname,cvalue,cattributes)); end;
431:
432: procedure formImage(cname in varchar2,
433: csrc in varchar2,
434: calign in varchar2 DEFAULT NULL,

Line 436: begin p(htf.formImage(cname,csrc,calign,cattributes)); end;

432: procedure formImage(cname in varchar2,
433: csrc in varchar2,
434: calign in varchar2 DEFAULT NULL,
435: cattributes in varchar2 DEFAULT NULL) is
436: begin p(htf.formImage(cname,csrc,calign,cattributes)); end;
437:
438: procedure formPassword(cname in varchar2,
439: csize in varchar2 DEFAULT NULL,
440: cmaxlength in varchar2 DEFAULT NULL,

Line 443: begin p(htf.formPassword(cname,csize,cmaxlength,cvalue,cattributes)); end;

439: csize in varchar2 DEFAULT NULL,
440: cmaxlength in varchar2 DEFAULT NULL,
441: cvalue in varchar2 DEFAULT NULL,
442: cattributes in varchar2 DEFAULT NULL) is
443: begin p(htf.formPassword(cname,csize,cmaxlength,cvalue,cattributes)); end;
444:
445: procedure formRadio(cname in varchar2,
446: cvalue in varchar2,
447: cchecked in varchar2 DEFAULT NULL,

Line 449: begin p(htf.formRadio(cname,cvalue,cchecked,cattributes)); end;

445: procedure formRadio(cname in varchar2,
446: cvalue in varchar2,
447: cchecked in varchar2 DEFAULT NULL,
448: cattributes in varchar2 DEFAULT NULL) is
449: begin p(htf.formRadio(cname,cvalue,cchecked,cattributes)); end;
450:
451: procedure formReset(cvalue in varchar2 DEFAULT 'Reset',
452: cattributes in varchar2 DEFAULT NULL) is
453: begin p(htf.formReset(cvalue,cattributes)); end;

Line 453: begin p(htf.formReset(cvalue,cattributes)); end;

449: begin p(htf.formRadio(cname,cvalue,cchecked,cattributes)); end;
450:
451: procedure formReset(cvalue in varchar2 DEFAULT 'Reset',
452: cattributes in varchar2 DEFAULT NULL) is
453: begin p(htf.formReset(cvalue,cattributes)); end;
454:
455: procedure formSubmit(cname in varchar2 DEFAULT NULL,
456: cvalue in varchar2 DEFAULT 'Submit',
457: cattributes in varchar2 DEFAULT NULL) is

Line 458: begin p(htf.formSubmit(cname,cvalue,cattributes)); end;

454:
455: procedure formSubmit(cname in varchar2 DEFAULT NULL,
456: cvalue in varchar2 DEFAULT 'Submit',
457: cattributes in varchar2 DEFAULT NULL) is
458: begin p(htf.formSubmit(cname,cvalue,cattributes)); end;
459:
460: procedure formText(cname in varchar2,
461: csize in varchar2 DEFAULT NULL,
462: cmaxlength in varchar2 DEFAULT NULL,

Line 465: begin p(htf.formText(cname,csize,cmaxlength,cvalue,cattributes)); end;

461: csize in varchar2 DEFAULT NULL,
462: cmaxlength in varchar2 DEFAULT NULL,
463: cvalue in varchar2 DEFAULT NULL,
464: cattributes in varchar2 DEFAULT NULL) is
465: begin p(htf.formText(cname,csize,cmaxlength,cvalue,cattributes)); end;
466:
467: procedure formSelectOpen(cname in varchar2,
468: cprompt in varchar2 DEFAULT NULL,
469: nsize in integer DEFAULT NULL,

Line 471: begin p(htf.formSelectOpen(cname,cprompt,nsize,cattributes)); end;

467: procedure formSelectOpen(cname in varchar2,
468: cprompt in varchar2 DEFAULT NULL,
469: nsize in integer DEFAULT NULL,
470: cattributes in varchar2 DEFAULT NULL) is
471: begin p(htf.formSelectOpen(cname,cprompt,nsize,cattributes)); end;
472:
473: procedure formSelectOption(cvalue in varchar2,
474: cselected in varchar2 DEFAULT NULL,
475: cattributes in varchar2 DEFAULT NULL) is

Line 476: begin p(htf.formSelectOption(cvalue,cselected,cattributes)); end;

472:
473: procedure formSelectOption(cvalue in varchar2,
474: cselected in varchar2 DEFAULT NULL,
475: cattributes in varchar2 DEFAULT NULL) is
476: begin p(htf.formSelectOption(cvalue,cselected,cattributes)); end;
477:
478: procedure formSelectClose is
479: begin p(htf.formSelectClose); end;
480:

Line 479: begin p(htf.formSelectClose); end;

475: cattributes in varchar2 DEFAULT NULL) is
476: begin p(htf.formSelectOption(cvalue,cselected,cattributes)); end;
477:
478: procedure formSelectClose is
479: begin p(htf.formSelectClose); end;
480:
481: procedure formTextarea(cname in varchar2,
482: nrows in integer,
483: ncolumns in integer,

Line 486: begin p(htf.formTextarea(cname,nrows,ncolumns,calign,cattributes)); end;

482: nrows in integer,
483: ncolumns in integer,
484: calign in varchar2 DEFAULT NULL,
485: cattributes in varchar2 DEFAULT NULL) is
486: begin p(htf.formTextarea(cname,nrows,ncolumns,calign,cattributes)); end;
487:
488:
489: procedure formTextarea2(cname in varchar2,
490: nrows in integer,

Line 495: begin p(htf.formTextarea2(cname,nrows,ncolumns,calign,cwrap,cattributes)); end;

491: ncolumns in integer,
492: calign in varchar2 DEFAULT NULL,
493: cwrap in varchar2 DEFAULT NULL,
494: cattributes in varchar2 DEFAULT NULL) is
495: begin p(htf.formTextarea2(cname,nrows,ncolumns,calign,cwrap,cattributes)); end;
496:
497:
498: procedure formTextareaOpen(cname in varchar2,
499: nrows in integer,

Line 503: begin p(htf.formTextareaOpen(cname,nrows,ncolumns,calign,cattributes)); end;

499: nrows in integer,
500: ncolumns in integer,
501: calign in varchar2 DEFAULT NULL,
502: cattributes in varchar2 DEFAULT NULL) is
503: begin p(htf.formTextareaOpen(cname,nrows,ncolumns,calign,cattributes)); end;
504:
505:
506: procedure formTextareaOpen2(cname in varchar2,
507: nrows in integer,

Line 512: begin p(htf.formTextareaOpen2(cname,nrows,ncolumns,calign,cwrap,cattributes)); end;

508: ncolumns in integer,
509: calign in varchar2 DEFAULT NULL,
510: cwrap in varchar2 DEFAULT NULL,
511: cattributes in varchar2 DEFAULT NULL) is
512: begin p(htf.formTextareaOpen2(cname,nrows,ncolumns,calign,cwrap,cattributes)); end;
513:
514: procedure formTextareaClose is
515: begin p(htf.formTextareaClose); end;
516:

Line 515: begin p(htf.formTextareaClose); end;

511: cattributes in varchar2 DEFAULT NULL) is
512: begin p(htf.formTextareaOpen2(cname,nrows,ncolumns,calign,cwrap,cattributes)); end;
513:
514: procedure formTextareaClose is
515: begin p(htf.formTextareaClose); end;
516:
517: procedure formClose is
518: begin p(htf.formClose); end;
519: /* END HTML FORMS */

Line 518: begin p(htf.formClose); end;

514: procedure formTextareaClose is
515: begin p(htf.formTextareaClose); end;
516:
517: procedure formClose is
518: begin p(htf.formClose); end;
519: /* END HTML FORMS */
520:
521: /* HTML TABLES */
522: procedure tableOpen(cborder in varchar2 DEFAULT NULL,

Line 527: begin p(htf.tableOpen(cborder,calign,cnowrap,cclear,cattributes)); end;

523: calign in varchar2 DEFAULT NULL,
524: cnowrap in varchar2 DEFAULT NULL,
525: cclear in varchar2 DEFAULT NULL,
526: cattributes in varchar2 DEFAULT NULL) is
527: begin p(htf.tableOpen(cborder,calign,cnowrap,cclear,cattributes)); end;
528:
529: procedure tableCaption(ccaption in varchar2,
530: calign in varchar2 DEFAULT NULL,
531: cattributes in varchar2 DEFAULT NULL) is

Line 532: begin p(htf.tableCaption(ccaption,calign,cattributes)); end;

528:
529: procedure tableCaption(ccaption in varchar2,
530: calign in varchar2 DEFAULT NULL,
531: cattributes in varchar2 DEFAULT NULL) is
532: begin p(htf.tableCaption(ccaption,calign,cattributes)); end;
533:
534: procedure tableRowOpen(calign in varchar2 DEFAULT NULL,
535: cvalign in varchar2 DEFAULT NULL,
536: cdp in varchar2 DEFAULT NULL,

Line 539: begin p(htf.tableRowOpen(calign,cvalign,cdp,cnowrap,cattributes)); end;

535: cvalign in varchar2 DEFAULT NULL,
536: cdp in varchar2 DEFAULT NULL,
537: cnowrap in varchar2 DEFAULT NULL,
538: cattributes in varchar2 DEFAULT NULL) is
539: begin p(htf.tableRowOpen(calign,cvalign,cdp,cnowrap,cattributes)); end;
540:
541: procedure tableHeader(cvalue in varchar2 DEFAULT NULL,
542: calign in varchar2 DEFAULT NULL,
543: cdp in varchar2 DEFAULT NULL,

Line 548: begin p(htf.tableHeader(cvalue,calign,cdp,cnowrap,

544: cnowrap in varchar2 DEFAULT NULL,
545: crowspan in varchar2 DEFAULT NULL,
546: ccolspan in varchar2 DEFAULT NULL,
547: cattributes in varchar2 DEFAULT NULL) is
548: begin p(htf.tableHeader(cvalue,calign,cdp,cnowrap,
549: crowspan,ccolspan,cattributes)); end;
550:
551: procedure tableData(cvalue in varchar2 DEFAULT NULL,
552: calign in varchar2 DEFAULT NULL,

Line 558: begin p(htf.tableData(cvalue,calign,cdp,cnowrap,

554: cnowrap in varchar2 DEFAULT NULL,
555: crowspan in varchar2 DEFAULT NULL,
556: ccolspan in varchar2 DEFAULT NULL,
557: cattributes in varchar2 DEFAULT NULL) is
558: begin p(htf.tableData(cvalue,calign,cdp,cnowrap,
559: crowspan,ccolspan,cattributes)); end;
560:
561: procedure tableRowClose is
562: begin p(htf.tableRowClose); end;

Line 562: begin p(htf.tableRowClose); end;

558: begin p(htf.tableData(cvalue,calign,cdp,cnowrap,
559: crowspan,ccolspan,cattributes)); end;
560:
561: procedure tableRowClose is
562: begin p(htf.tableRowClose); end;
563:
564: procedure tableClose is
565: begin p(htf.tableClose); end;
566: /* END HTML TABLES */

Line 565: begin p(htf.tableClose); end;

561: procedure tableRowClose is
562: begin p(htf.tableRowClose); end;
563:
564: procedure tableClose is
565: begin p(htf.tableClose); end;
566: /* END HTML TABLES */
567:
568: /* BEGIN HTML FRAMES - Netscape Extensions FRAMESET, FRAME tags */
569: procedure framesetOpen( crows in varchar2 DEFAULT NULL, /* row height value list */

Line 573: p(htf.framesetOpen( crows, ccols, cattributes ));

569: procedure framesetOpen( crows in varchar2 DEFAULT NULL, /* row height value list */
570: ccols in varchar2 DEFAULT NULL,
571: cattributes in varchar2 DEFAULT NULL) is /* column width list */
572: begin
573: p(htf.framesetOpen( crows, ccols, cattributes ));
574: end framesetOpen;
575:
576: procedure framesetClose is
577: begin

Line 578: p(htf.framesetClose);

574: end framesetOpen;
575:
576: procedure framesetClose is
577: begin
578: p(htf.framesetClose);
579: end framesetClose;
580:
581: procedure frame( csrc in varchar2, /* URL */
582: cname in varchar2 DEFAULT NULL, /* Window Name */

Line 589: p(htf.frame( csrc, cname, cmarginwidth, cmarginheight, cscrolling, cnoresize, cattributes ));

585: cscrolling in varchar2 DEFAULT NULL, /* yes | no | auto */
586: cnoresize in varchar2 DEFAULT NULL,
587: cattributes in varchar2 DEFAULT NULL) is /* Not resizable by user */
588: begin
589: p(htf.frame( csrc, cname, cmarginwidth, cmarginheight, cscrolling, cnoresize, cattributes ));
590: end frame;
591:
592: procedure noframesOpen is
593: begin

Line 594: p(htf.noframesOpen);

590: end frame;
591:
592: procedure noframesOpen is
593: begin
594: p(htf.noframesOpen);
595: end noframesOpen;
596:
597: procedure noframesClose is
598: begin

Line 599: p(htf.noframesClose);

595: end noframesOpen;
596:
597: procedure noframesClose is
598: begin
599: p(htf.noframesClose);
600: end noframesClose;
601:
602: /* END HTML FRAMES */
603:

Line 609: begin p(htf.appletOpen(ccode,cwidth,cheight,cattributes));end;

605: procedure appletOpen( ccode in varchar2,
606: cwidth in integer,
607: cheight in integer,
608: cattributes in varchar2 DEFAULT NULL) is
609: begin p(htf.appletOpen(ccode,cwidth,cheight,cattributes));end;
610:
611: procedure param( cname in varchar2,
612: cvalue in varchar2) is
613: begin p(htf.param(cname,cvalue));end;

Line 613: begin p(htf.param(cname,cvalue));end;

609: begin p(htf.appletOpen(ccode,cwidth,cheight,cattributes));end;
610:
611: procedure param( cname in varchar2,
612: cvalue in varchar2) is
613: begin p(htf.param(cname,cvalue));end;
614:
615: procedure appletClose is
616: begin p(htf.appletClose);end;
617:

Line 616: begin p(htf.appletClose);end;

612: cvalue in varchar2) is
613: begin p(htf.param(cname,cvalue));end;
614:
615: procedure appletClose is
616: begin p(htf.appletClose);end;
617:
618: /* END SPECIAL HTML TAGS */
619:
620:

Line 975: begin p(htf.escape_sc(ctext)); end;

971: procedure p (nbuf in number) is
972: begin print(to_char(nbuf)); end;
973:
974: procedure prints(ctext in varchar2) is
975: begin p(htf.escape_sc(ctext)); end;
976:
977: procedure ps(ctext in varchar2) is
978: begin p(htf.escape_sc(ctext)); end;
979:

Line 978: begin p(htf.escape_sc(ctext)); end;

974: procedure prints(ctext in varchar2) is
975: begin p(htf.escape_sc(ctext)); end;
976:
977: procedure ps(ctext in varchar2) is
978: begin p(htf.escape_sc(ctext)); end;
979:
980: procedure escape_sc(ctext in varchar2) is
981: begin p(htf.escape_sc(ctext)); end;
982: /* END SPECIAL PROCEDURES */

Line 981: begin p(htf.escape_sc(ctext)); end;

977: procedure ps(ctext in varchar2) is
978: begin p(htf.escape_sc(ctext)); end;
979:
980: procedure escape_sc(ctext in varchar2) is
981: begin p(htf.escape_sc(ctext)); end;
982: /* END SPECIAL PROCEDURES */
983:
984: begin
985: init;