DBA Data[Home] [Help]

SYS.HTP dependencies on HTF

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

68: procedure prn_raw(cbuf in varchar2 character set any_cs);
69:
70: /* STRUCTURE tags */
71: procedure htmlOpen is
72: begin p(htf.htmlOpen); end;
73:
74: procedure htmlClose is
75: begin p(htf.htmlClose); end;
76:

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

71: procedure htmlOpen is
72: begin p(htf.htmlOpen); end;
73:
74: procedure htmlClose is
75: begin p(htf.htmlClose); end;
76:
77: procedure headOpen is
78: begin p(htf.headOpen); end;
79:

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

74: procedure htmlClose is
75: begin p(htf.htmlClose); end;
76:
77: procedure headOpen is
78: begin p(htf.headOpen); end;
79:
80: procedure headClose is
81: begin p(htf.headClose); end;
82:

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

77: procedure headOpen is
78: begin p(htf.headOpen); end;
79:
80: procedure headClose is
81: begin p(htf.headClose); end;
82:
83: procedure bodyOpen(cbackground in varchar2 DEFAULT NULL,
84: cattributes in varchar2 DEFAULT NULL) is
85: begin p(htf.bodyOpen(cbackground,cattributes)); end;

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

81: begin p(htf.headClose); end;
82:
83: procedure bodyOpen(cbackground in varchar2 DEFAULT NULL,
84: cattributes in varchar2 DEFAULT NULL) is
85: begin p(htf.bodyOpen(cbackground,cattributes)); end;
86:
87: procedure bodyClose is
88: begin p(htf.bodyClose); end;
89: /* END STRUCTURE tags */

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

84: cattributes in varchar2 DEFAULT NULL) is
85: begin p(htf.bodyOpen(cbackground,cattributes)); end;
86:
87: procedure bodyClose is
88: begin p(htf.bodyClose); end;
89: /* END STRUCTURE tags */
90:
91: /* HEAD Related elements tags */
92: procedure title (ctitle in varchar2 character set any_cs) is

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

89: /* END STRUCTURE tags */
90:
91: /* HEAD Related elements tags */
92: procedure title (ctitle in varchar2 character set any_cs) is
93: begin p(htf.title(ctitle)); end;
94:
95: procedure htitle(ctitle in varchar2 character set any_cs,
96: nsize in integer DEFAULT 1,
97: calign in varchar2 DEFAULT NULL,

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

97: calign in varchar2 DEFAULT NULL,
98: cnowrap in varchar2 DEFAULT NULL,
99: cclear in varchar2 DEFAULT NULL,
100: cattributes in varchar2 DEFAULT NULL) is
101: begin p(htf.htitle(ctitle,nsize,calign,cnowrap,cclear,cattributes)); end;
102:
103: procedure base( ctarget in varchar2 DEFAULT NULL,
104: cattributes in varchar2 DEFAULT NULL) is
105: begin p(htf.base(ctarget,cattributes)); end;

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

101: begin p(htf.htitle(ctitle,nsize,calign,cnowrap,cclear,cattributes)); end;
102:
103: procedure base( ctarget in varchar2 DEFAULT NULL,
104: cattributes in varchar2 DEFAULT NULL) is
105: begin p(htf.base(ctarget,cattributes)); end;
106:
107: procedure isindex(cprompt in varchar2 character set any_cs DEFAULT NULL,
108: curl in varchar2 DEFAULT NULL) is
109: begin p(htf.isindex(cprompt, curl)); end;

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

105: begin p(htf.base(ctarget,cattributes)); end;
106:
107: procedure isindex(cprompt in varchar2 character set any_cs DEFAULT NULL,
108: curl in varchar2 DEFAULT NULL) is
109: begin p(htf.isindex(cprompt, curl)); end;
110:
111: procedure linkRel(crel in varchar2,
112: curl in varchar2,
113: ctitle in varchar2 character set any_cs DEFAULT NULL) is

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

110:
111: procedure linkRel(crel in varchar2,
112: curl in varchar2,
113: ctitle in varchar2 character set any_cs DEFAULT NULL) is
114: begin p(htf.linkRel(crel, curl, ctitle)); end;
115:
116: procedure linkRev(crev in varchar2,
117: curl in varchar2,
118: ctitle in varchar2 character set any_cs DEFAULT NULL) is

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

115:
116: procedure linkRev(crev in varchar2,
117: curl in varchar2,
118: ctitle in varchar2 character set any_cs DEFAULT NULL) is
119: begin p(htf.linkRev(crev, curl, ctitle)); end;
120:
121: procedure meta(chttp_equiv in varchar2,
122: cname in varchar2,
123: ccontent in varchar2) is

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

120:
121: procedure meta(chttp_equiv in varchar2,
122: cname in varchar2,
123: ccontent in varchar2) is
124: begin p(htf.meta(chttp_equiv, cname, ccontent)); end;
125:
126: procedure nextid(cidentifier in varchar2) is
127: begin p(htf.nextid(cidentifier)); end;
128:

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

123: ccontent in varchar2) is
124: begin p(htf.meta(chttp_equiv, cname, ccontent)); end;
125:
126: procedure nextid(cidentifier in varchar2) is
127: begin p(htf.nextid(cidentifier)); end;
128:
129: procedure style(cstyle in varchar2 character set any_cs) is
130: begin p(htf.style(cstyle)); end;
131:

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

126: procedure nextid(cidentifier in varchar2) is
127: begin p(htf.nextid(cidentifier)); end;
128:
129: procedure style(cstyle in varchar2 character set any_cs) is
130: begin p(htf.style(cstyle)); end;
131:
132: procedure script(cscript in varchar2,
133: clanguage in varchar2 DEFAULT NULL) is
134: begin p(htf.script(cscript, clanguage)); end;

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

130: begin p(htf.style(cstyle)); end;
131:
132: procedure script(cscript in varchar2,
133: clanguage in varchar2 DEFAULT NULL) is
134: begin p(htf.script(cscript, clanguage)); end;
135:
136: /* END HEAD Related elements tags */
137:
138: /* BODY ELEMENT tags */

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

138: /* BODY ELEMENT tags */
139: procedure hr (cclear in varchar2 DEFAULT NULL,
140: csrc in varchar2 DEFAULT NULL,
141: cattributes in varchar2 DEFAULT NULL) is
142: begin p(htf.hr(cclear, csrc, cattributes)); end;
143:
144: procedure line(cclear in varchar2 DEFAULT NULL,
145: csrc in varchar2 DEFAULT NULL,
146: cattributes in varchar2 DEFAULT NULL) is

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

147: begin htp.hr(cclear, csrc, cattributes); end;
148:
149: procedure nl (cclear in varchar2 DEFAULT NULL,
150: cattributes in varchar2 DEFAULT NULL) is
151: begin p(htf.nl(cclear,cattributes)); end;
152:
153: procedure br (cclear in varchar2 DEFAULT NULL,
154: cattributes in varchar2 DEFAULT NULL) is
155: begin htp.nl(cclear,cattributes); end;

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

159: calign in varchar2 DEFAULT NULL,
160: cnowrap in varchar2 DEFAULT NULL,
161: cclear in varchar2 DEFAULT NULL,
162: cattributes in varchar2 DEFAULT NULL) is
163: begin p(htf.header(nsize,cheader,calign,cnowrap,cclear,cattributes)); end;
164:
165: procedure anchor(curl in varchar2,
166: ctext in varchar2 character set any_cs,
167: cname in varchar2 DEFAULT NULL,

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

165: procedure anchor(curl in varchar2,
166: ctext in varchar2 character set any_cs,
167: cname in varchar2 DEFAULT NULL,
168: cattributes in varchar2 DEFAULT NULL) is
169: begin p(htf.anchor(curl,ctext,cname,cattributes)); end;
170:
171: procedure anchor2(curl in varchar2,
172: ctext in varchar2 character set any_cs,
173: cname in varchar2 DEFAULT NULL,

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

172: ctext in varchar2 character set any_cs,
173: cname in varchar2 DEFAULT NULL,
174: ctarget in varchar2 DEFAULT NULL,
175: cattributes in varchar2 DEFAULT NULL) is
176: begin p(htf.anchor2(curl,ctext,cname,ctarget,cattributes)); end;
177:
178: procedure mailto(caddress in varchar2,
179: ctext in varchar2 character set any_cs,
180: cname in varchar2 character set any_cs DEFAULT NULL,

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

178: procedure mailto(caddress in varchar2,
179: ctext in varchar2 character set any_cs,
180: cname in varchar2 character set any_cs DEFAULT NULL,
181: cattributes in varchar2 DEFAULT NULL) is
182: begin p(htf.mailto(caddress,ctext,cname,cattributes)); end;
183:
184: procedure img(curl in varchar2,
185: calign in varchar2 DEFAULT NULL,
186: calt in varchar2 DEFAULT NULL,

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

185: calign in varchar2 DEFAULT NULL,
186: calt in varchar2 DEFAULT NULL,
187: cismap in varchar2 DEFAULT NULL,
188: cattributes in varchar2 DEFAULT NULL) is
189: begin p(htf.img(curl,calign,calt,cismap,cattributes)); end;
190:
191: procedure img2(curl in varchar2,
192: calign in varchar2 DEFAULT NULL,
193: calt in varchar2 DEFAULT NULL,

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

193: calt in varchar2 DEFAULT NULL,
194: cismap in varchar2 DEFAULT NULL,
195: cusemap in varchar2 DEFAULT NULL,
196: cattributes in varchar2 DEFAULT NULL) is
197: begin p(htf.img2(curl,calign,calt,cismap,cusemap,cattributes)); end;
198:
199: procedure area( ccoords in varchar2,
200: cshape in varchar2 DEFAULT NULL,
201: chref in varchar2 DEFAULT NULL,

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

201: chref in varchar2 DEFAULT NULL,
202: cnohref in varchar2 DEFAULT NULL,
203: ctarget in varchar2 DEFAULT NULL,
204: cattributes in varchar2 DEFAULT NULL) is
205: begin p(htf.area(ccoords,cshape,chref,cnohref,ctarget,cattributes));end;
206:
207: procedure mapOpen(cname in varchar2,cattributes in varchar2 DEFAULT NULL) is
208: begin p(htf.mapOpen(cname,cattributes)); end;
209: procedure mapClose is

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

204: cattributes in varchar2 DEFAULT NULL) is
205: begin p(htf.area(ccoords,cshape,chref,cnohref,ctarget,cattributes));end;
206:
207: procedure mapOpen(cname in varchar2,cattributes in varchar2 DEFAULT NULL) is
208: begin p(htf.mapOpen(cname,cattributes)); end;
209: procedure mapClose is
210: begin p(htf.mapClose); end;
211:
212: procedure bgsound(csrc in varchar2,

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

206:
207: procedure mapOpen(cname in varchar2,cattributes in varchar2 DEFAULT NULL) is
208: begin p(htf.mapOpen(cname,cattributes)); end;
209: procedure mapClose is
210: begin p(htf.mapClose); end;
211:
212: procedure bgsound(csrc in varchar2,
213: cloop in varchar2 DEFAULT NULL,
214: cattributes in varchar2 DEFAULT NULL) is

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

211:
212: procedure bgsound(csrc in varchar2,
213: cloop in varchar2 DEFAULT NULL,
214: cattributes in varchar2 DEFAULT NULL) is
215: begin p(htf.bgsound(csrc,cloop,cattributes));end;
216:
217: procedure para is
218: begin p(htf.para); end;
219:

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

214: cattributes in varchar2 DEFAULT NULL) is
215: begin p(htf.bgsound(csrc,cloop,cattributes));end;
216:
217: procedure para is
218: begin p(htf.para); end;
219:
220: procedure paragraph(calign in varchar2 DEFAULT NULL,
221: cnowrap in varchar2 DEFAULT NULL,
222: cclear in varchar2 DEFAULT NULL,

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

220: procedure paragraph(calign in varchar2 DEFAULT NULL,
221: cnowrap in varchar2 DEFAULT NULL,
222: cclear in varchar2 DEFAULT NULL,
223: cattributes in varchar2 DEFAULT NULL) is
224: begin p(htf.paragraph(calign,cnowrap,cclear,cattributes)); end;
225:
226: procedure div( calign in varchar2 DEFAULT NULL,
227: cattributes in varchar2 DEFAULT NULL) is
228: begin p(htf.div(calign,cattributes)); end;

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

224: begin p(htf.paragraph(calign,cnowrap,cclear,cattributes)); end;
225:
226: procedure div( calign in varchar2 DEFAULT NULL,
227: cattributes in varchar2 DEFAULT NULL) is
228: begin p(htf.div(calign,cattributes)); end;
229:
230: procedure address(cvalue in varchar2 character set any_cs,
231: cnowrap in varchar2 DEFAULT NULL,
232: cclear in varchar2 DEFAULT NULL,

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

230: procedure address(cvalue in varchar2 character set any_cs,
231: cnowrap in varchar2 DEFAULT NULL,
232: cclear in varchar2 DEFAULT NULL,
233: cattributes in varchar2 DEFAULT NULL) is
234: begin p(htf.address(cvalue, cnowrap, cclear, cattributes)); end;
235:
236: procedure comment(ctext in varchar2 character set any_cs) is
237: begin p(htf.comment(ctext)); end;
238:

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

233: cattributes in varchar2 DEFAULT NULL) is
234: begin p(htf.address(cvalue, cnowrap, cclear, cattributes)); end;
235:
236: procedure comment(ctext in varchar2 character set any_cs) is
237: begin p(htf.comment(ctext)); end;
238:
239: procedure preOpen(cclear in varchar2 DEFAULT NULL,
240: cwidth in varchar2 DEFAULT NULL,
241: cattributes in varchar2 DEFAULT NULL) is

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

238:
239: procedure preOpen(cclear in varchar2 DEFAULT NULL,
240: cwidth in varchar2 DEFAULT NULL,
241: cattributes in varchar2 DEFAULT NULL) is
242: begin p(htf.preOpen(cclear,cwidth,cattributes)); end;
243:
244: procedure preClose is
245: begin p(htf.preClose); end;
246:

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

241: cattributes in varchar2 DEFAULT NULL) is
242: begin p(htf.preOpen(cclear,cwidth,cattributes)); end;
243:
244: procedure preClose is
245: begin p(htf.preClose); end;
246:
247: procedure listingOpen is
248: begin p(htf.listingOpen); end;
249: procedure listingClose is

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

244: procedure preClose is
245: begin p(htf.preClose); end;
246:
247: procedure listingOpen is
248: begin p(htf.listingOpen); end;
249: procedure listingClose is
250: begin p(htf.listingClose); end;
251:
252: procedure nobr(ctext in varchar2 character set any_cs) is

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

246:
247: procedure listingOpen is
248: begin p(htf.listingOpen); end;
249: procedure listingClose is
250: begin p(htf.listingClose); end;
251:
252: procedure nobr(ctext in varchar2 character set any_cs) is
253: begin p(htf.nobr(ctext)); end;
254: procedure wbr is

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

249: procedure listingClose is
250: begin p(htf.listingClose); end;
251:
252: procedure nobr(ctext in varchar2 character set any_cs) is
253: begin p(htf.nobr(ctext)); end;
254: procedure wbr is
255: begin p(htf.wbr); end;
256:
257: procedure center(ctext in varchar2 character set any_cs) is

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

251:
252: procedure nobr(ctext in varchar2 character set any_cs) is
253: begin p(htf.nobr(ctext)); end;
254: procedure wbr is
255: begin p(htf.wbr); end;
256:
257: procedure center(ctext in varchar2 character set any_cs) is
258: begin p(htf.center(ctext)); end;
259:

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

254: procedure wbr is
255: begin p(htf.wbr); end;
256:
257: procedure center(ctext in varchar2 character set any_cs) is
258: begin p(htf.center(ctext)); end;
259:
260: procedure centerOpen is
261: begin p(htf.centerOpen); end;
262:

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

257: procedure center(ctext in varchar2 character set any_cs) is
258: begin p(htf.center(ctext)); end;
259:
260: procedure centerOpen is
261: begin p(htf.centerOpen); end;
262:
263: procedure centerClose is
264: begin p(htf.centerClose); end;
265:

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

260: procedure centerOpen is
261: begin p(htf.centerOpen); end;
262:
263: procedure centerClose is
264: begin p(htf.centerClose); end;
265:
266:
267:
268: procedure blockquoteOpen(cnowrap in varchar2 DEFAULT NULL,

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

267:
268: procedure blockquoteOpen(cnowrap in varchar2 DEFAULT NULL,
269: cclear in varchar2 DEFAULT NULL,
270: cattributes in varchar2 DEFAULT NULL) is
271: begin p(htf.blockquoteOpen(cnowrap,cclear,cattributes)); end;
272:
273: procedure blockquoteClose is
274: begin p(htf.blockquoteClose); end;
275:

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

270: cattributes in varchar2 DEFAULT NULL) is
271: begin p(htf.blockquoteOpen(cnowrap,cclear,cattributes)); end;
272:
273: procedure blockquoteClose is
274: begin p(htf.blockquoteClose); end;
275:
276: /* LIST tags */
277: procedure listHeader(ctext in varchar2 character set any_cs,
278: cattributes in varchar2 DEFAULT NULL) is

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

275:
276: /* LIST tags */
277: procedure listHeader(ctext in varchar2 character set any_cs,
278: cattributes in varchar2 DEFAULT NULL) is
279: begin p(htf.listHeader(ctext,cattributes)); end;
280:
281: procedure listItem(ctext in varchar2 character set any_cs DEFAULT NULL,
282: cclear in varchar2 DEFAULT NULL,
283: cdingbat in varchar2 DEFAULT NULL,

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

282: cclear in varchar2 DEFAULT NULL,
283: cdingbat in varchar2 DEFAULT NULL,
284: csrc in varchar2 DEFAULT NULL,
285: cattributes in varchar2 DEFAULT NULL) is
286: begin p(htf.listItem(ctext,cclear,cdingbat,csrc,cattributes)); end;
287:
288: procedure ulistOpen(cclear in varchar2 DEFAULT NULL,
289: cwrap in varchar2 DEFAULT NULL,
290: cdingbat in varchar2 DEFAULT NULL,

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

289: cwrap in varchar2 DEFAULT NULL,
290: cdingbat in varchar2 DEFAULT NULL,
291: csrc in varchar2 DEFAULT NULL,
292: cattributes in varchar2 DEFAULT NULL) is
293: begin p(htf.ulistOpen(cclear,cwrap,cdingbat,csrc,cattributes)); end;
294:
295: procedure ulistClose is
296: begin p(htf.ulistClose); end;
297:

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

292: cattributes in varchar2 DEFAULT NULL) is
293: begin p(htf.ulistOpen(cclear,cwrap,cdingbat,csrc,cattributes)); end;
294:
295: procedure ulistClose is
296: begin p(htf.ulistClose); end;
297:
298: procedure olistOpen(cclear in varchar2 DEFAULT NULL,
299: cwrap in varchar2 DEFAULT NULL,
300: cattributes in varchar2 DEFAULT NULL) is

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

297:
298: procedure olistOpen(cclear in varchar2 DEFAULT NULL,
299: cwrap in varchar2 DEFAULT NULL,
300: cattributes in varchar2 DEFAULT NULL) is
301: begin p(htf.olistOpen(cclear,cwrap,cattributes)); end;
302:
303: procedure olistClose is
304: begin p(htf.olistClose); end;
305:

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

300: cattributes in varchar2 DEFAULT NULL) is
301: begin p(htf.olistOpen(cclear,cwrap,cattributes)); end;
302:
303: procedure olistClose is
304: begin p(htf.olistClose); end;
305:
306: procedure dlistOpen(cclear in varchar2 DEFAULT NULL,
307: cattributes in varchar2 DEFAULT NULL) is
308: begin p(htf.dlistOpen(cclear,cattributes)); end;

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

304: begin p(htf.olistClose); end;
305:
306: procedure dlistOpen(cclear in varchar2 DEFAULT NULL,
307: cattributes in varchar2 DEFAULT NULL) is
308: begin p(htf.dlistOpen(cclear,cattributes)); end;
309:
310: procedure dlistTerm(ctext in varchar2 character set any_cs DEFAULT NULL,
311: cclear in varchar2 DEFAULT NULL,
312: cattributes in varchar2 DEFAULT NULL) is

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

309:
310: procedure dlistTerm(ctext in varchar2 character set any_cs DEFAULT NULL,
311: cclear in varchar2 DEFAULT NULL,
312: cattributes in varchar2 DEFAULT NULL) is
313: begin p(htf.dlistTerm(ctext,cclear,cattributes)); end;
314:
315: procedure dlistDef(ctext in varchar2 character set any_cs DEFAULT NULL,
316: cclear in varchar2 DEFAULT NULL,
317: cattributes in varchar2 DEFAULT NULL) is

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

314:
315: procedure dlistDef(ctext in varchar2 character set any_cs DEFAULT NULL,
316: cclear in varchar2 DEFAULT NULL,
317: cattributes in varchar2 DEFAULT NULL) is
318: begin p(htf.dlistDef(ctext,cclear,cattributes)); end;
319:
320: procedure dlistClose is
321: begin p(htf.dlistClose); end;
322:

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

317: cattributes in varchar2 DEFAULT NULL) is
318: begin p(htf.dlistDef(ctext,cclear,cattributes)); end;
319:
320: procedure dlistClose is
321: begin p(htf.dlistClose); end;
322:
323: procedure menulistOpen is
324: begin p(htf.menulistOpen); end;
325:

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

320: procedure dlistClose is
321: begin p(htf.dlistClose); end;
322:
323: procedure menulistOpen is
324: begin p(htf.menulistOpen); end;
325:
326: procedure menulistClose is
327: begin p(htf.menulistClose); end;
328:

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

323: procedure menulistOpen is
324: begin p(htf.menulistOpen); end;
325:
326: procedure menulistClose is
327: begin p(htf.menulistClose); end;
328:
329: procedure dirlistOpen is
330: begin p(htf.dirlistOpen); end;
331:

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

326: procedure menulistClose is
327: begin p(htf.menulistClose); end;
328:
329: procedure dirlistOpen is
330: begin p(htf.dirlistOpen); end;
331:
332: procedure dirlistClose is
333: begin p(htf.dirlistClose); end;
334: /* END LIST tags */

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

329: procedure dirlistOpen is
330: begin p(htf.dirlistOpen); end;
331:
332: procedure dirlistClose is
333: begin p(htf.dirlistClose); end;
334: /* END LIST tags */
335:
336: /* SEMANTIC FORMAT ELEMENTS */
337: procedure dfn(ctext in varchar2 character set any_cs,

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

335:
336: /* SEMANTIC FORMAT ELEMENTS */
337: procedure dfn(ctext in varchar2 character set any_cs,
338: cattributes in varchar2 DEFAULT NULL) is
339: begin p(htf.dfn(ctext,cattributes)); end;
340:
341: procedure cite(ctext in varchar2 character set any_cs,
342: cattributes in varchar2 DEFAULT NULL) is
343: begin p(htf.cite(ctext,cattributes)); end;

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

339: begin p(htf.dfn(ctext,cattributes)); end;
340:
341: procedure cite(ctext in varchar2 character set any_cs,
342: cattributes in varchar2 DEFAULT NULL) is
343: begin p(htf.cite(ctext,cattributes)); end;
344:
345: procedure code(ctext in varchar2 character set any_cs,
346: cattributes in varchar2 DEFAULT NULL) is
347: begin p(htf.code(ctext,cattributes)); end;

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

343: begin p(htf.cite(ctext,cattributes)); end;
344:
345: procedure code(ctext in varchar2 character set any_cs,
346: cattributes in varchar2 DEFAULT NULL) is
347: begin p(htf.code(ctext,cattributes)); end;
348:
349: procedure em(ctext in varchar2 character set any_cs,
350: cattributes in varchar2 DEFAULT NULL) is
351: begin p(htf.em(ctext,cattributes)); end;

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

347: begin p(htf.code(ctext,cattributes)); end;
348:
349: procedure em(ctext in varchar2 character set any_cs,
350: cattributes in varchar2 DEFAULT NULL) is
351: begin p(htf.em(ctext,cattributes)); end;
352:
353: procedure emphasis(ctext in varchar2 character set any_cs,
354: cattributes in varchar2 DEFAULT NULL) is
355: begin p(htf.emphasis(ctext,cattributes)); end;

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

351: begin p(htf.em(ctext,cattributes)); end;
352:
353: procedure emphasis(ctext in varchar2 character set any_cs,
354: cattributes in varchar2 DEFAULT NULL) is
355: begin p(htf.emphasis(ctext,cattributes)); end;
356:
357: procedure kbd(ctext in varchar2 character set any_cs,
358: cattributes in varchar2 DEFAULT NULL) is
359: begin p(htf.kbd(ctext,cattributes)); end;

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

355: begin p(htf.emphasis(ctext,cattributes)); end;
356:
357: procedure kbd(ctext in varchar2 character set any_cs,
358: cattributes in varchar2 DEFAULT NULL) is
359: begin p(htf.kbd(ctext,cattributes)); end;
360:
361: procedure keyboard(ctext in varchar2 character set any_cs,
362: cattributes in varchar2 DEFAULT NULL) is
363: begin p(htf.keyboard(ctext,cattributes)); end;

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

359: begin p(htf.kbd(ctext,cattributes)); end;
360:
361: procedure keyboard(ctext in varchar2 character set any_cs,
362: cattributes in varchar2 DEFAULT NULL) is
363: begin p(htf.keyboard(ctext,cattributes)); end;
364:
365: procedure sample(ctext in varchar2 character set any_cs,
366: cattributes in varchar2 DEFAULT NULL) is
367: begin p(htf.sample(ctext,cattributes)); end;

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

363: begin p(htf.keyboard(ctext,cattributes)); end;
364:
365: procedure sample(ctext in varchar2 character set any_cs,
366: cattributes in varchar2 DEFAULT NULL) is
367: begin p(htf.sample(ctext,cattributes)); end;
368:
369: procedure strong (ctext in varchar2 character set any_cs,
370: cattributes in varchar2 DEFAULT NULL) is
371: begin p(htf.strong(ctext,cattributes)); end;

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

367: begin p(htf.sample(ctext,cattributes)); end;
368:
369: procedure strong (ctext in varchar2 character set any_cs,
370: cattributes in varchar2 DEFAULT NULL) is
371: begin p(htf.strong(ctext,cattributes)); end;
372:
373: procedure variable(ctext in varchar2 character set any_cs,
374: cattributes in varchar2 DEFAULT NULL) is
375: begin p(htf.variable(ctext,cattributes)); end;

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

371: begin p(htf.strong(ctext,cattributes)); end;
372:
373: procedure variable(ctext in varchar2 character set any_cs,
374: cattributes in varchar2 DEFAULT NULL) is
375: begin p(htf.variable(ctext,cattributes)); end;
376:
377: procedure big( ctext in varchar2 character set any_cs,
378: cattributes in varchar2 DEFAULT NULL) is
379: begin p(htf.big(ctext,cattributes)); end;

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

375: begin p(htf.variable(ctext,cattributes)); end;
376:
377: procedure big( ctext in varchar2 character set any_cs,
378: cattributes in varchar2 DEFAULT NULL) is
379: begin p(htf.big(ctext,cattributes)); end;
380:
381: procedure small(ctext in varchar2 character set any_cs,
382: cattributes in varchar2 DEFAULT NULL) is
383: begin p(htf.small(ctext,cattributes)); end;

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

379: begin p(htf.big(ctext,cattributes)); end;
380:
381: procedure small(ctext in varchar2 character set any_cs,
382: cattributes in varchar2 DEFAULT NULL) is
383: begin p(htf.small(ctext,cattributes)); end;
384:
385: procedure sub( ctext in varchar2 character set any_cs,
386: calign in varchar2 DEFAULT NULL,
387: cattributes in varchar2 DEFAULT NULL) is

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

384:
385: procedure sub( ctext in varchar2 character set any_cs,
386: calign in varchar2 DEFAULT NULL,
387: cattributes in varchar2 DEFAULT NULL) is
388: begin p(htf.sub(ctext,calign,cattributes)); end;
389:
390: procedure sup( ctext in varchar2 character set any_cs,
391: calign in varchar2 DEFAULT NULL,
392: cattributes in varchar2 DEFAULT NULL) is

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

389:
390: procedure sup( ctext in varchar2 character set any_cs,
391: calign in varchar2 DEFAULT NULL,
392: cattributes in varchar2 DEFAULT NULL) is
393: begin p(htf.sup(ctext,calign,cattributes)); end;
394:
395:
396: /* END SEMANTIC FORMAT ELEMENTS */
397:

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

396: /* END SEMANTIC FORMAT ELEMENTS */
397:
398: /* PHYSICAL FORMAT ELEMENTS */
399: procedure basefont(nsize in integer) is
400: begin p(htf.basefont(nsize));end;
401:
402: procedure fontOpen(ccolor in varchar2 DEFAULT NULL,
403: cface in varchar2 DEFAULT NULL,
404: csize in varchar2 DEFAULT NULL,

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

402: procedure fontOpen(ccolor in varchar2 DEFAULT NULL,
403: cface in varchar2 DEFAULT NULL,
404: csize in varchar2 DEFAULT NULL,
405: cattributes in varchar2 DEFAULT NULL) is
406: begin p(htf.fontOpen(ccolor,cface,csize,cattributes)); end;
407:
408: procedure fontClose is
409: begin p(htf.fontClose); end;
410:

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

405: cattributes in varchar2 DEFAULT NULL) is
406: begin p(htf.fontOpen(ccolor,cface,csize,cattributes)); end;
407:
408: procedure fontClose is
409: begin p(htf.fontClose); end;
410:
411: procedure bold (ctext in varchar2 character set any_cs,
412: cattributes in varchar2 DEFAULT NULL) is
413: begin p(htf.bold(ctext,cattributes)); end;

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

409: begin p(htf.fontClose); end;
410:
411: procedure bold (ctext in varchar2 character set any_cs,
412: cattributes in varchar2 DEFAULT NULL) is
413: begin p(htf.bold(ctext,cattributes)); end;
414:
415: procedure italic (ctext in varchar2 character set any_cs,
416: cattributes in varchar2 DEFAULT NULL) is
417: begin p(htf.italic(ctext,cattributes)); end;

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

413: begin p(htf.bold(ctext,cattributes)); end;
414:
415: procedure italic (ctext in varchar2 character set any_cs,
416: cattributes in varchar2 DEFAULT NULL) is
417: begin p(htf.italic(ctext,cattributes)); end;
418:
419: procedure teletype(ctext in varchar2 character set any_cs,
420: cattributes in varchar2 DEFAULT NULL) is
421: begin p(htf.teletype(ctext,cattributes)); end;

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

417: begin p(htf.italic(ctext,cattributes)); end;
418:
419: procedure teletype(ctext in varchar2 character set any_cs,
420: cattributes in varchar2 DEFAULT NULL) is
421: begin p(htf.teletype(ctext,cattributes)); end;
422:
423: procedure plaintext(ctext in varchar2 character set any_cs,
424: cattributes in varchar2 DEFAULT NULL) is
425: begin p(htf.plaintext(ctext,cattributes)); end;

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

421: begin p(htf.teletype(ctext,cattributes)); end;
422:
423: procedure plaintext(ctext in varchar2 character set any_cs,
424: cattributes in varchar2 DEFAULT NULL) is
425: begin p(htf.plaintext(ctext,cattributes)); end;
426:
427: procedure s(ctext in varchar2 character set any_cs,
428: cattributes in varchar2 DEFAULT NULL) is
429: begin p(htf.s(ctext,cattributes)); end;

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

425: begin p(htf.plaintext(ctext,cattributes)); end;
426:
427: procedure s(ctext in varchar2 character set any_cs,
428: cattributes in varchar2 DEFAULT NULL) is
429: begin p(htf.s(ctext,cattributes)); end;
430:
431: procedure strike (ctext in varchar2 character set any_cs,
432: cattributes in varchar2 DEFAULT NULL) is
433: begin p(htf.strike(ctext,cattributes)); end;

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

429: begin p(htf.s(ctext,cattributes)); end;
430:
431: procedure strike (ctext in varchar2 character set any_cs,
432: cattributes in varchar2 DEFAULT NULL) is
433: begin p(htf.strike(ctext,cattributes)); end;
434:
435: procedure underline (ctext in varchar2 character set any_cs,
436: cattributes in varchar2 DEFAULT NULL) is
437: begin p(htf.underline(ctext,cattributes)); end;

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

433: begin p(htf.strike(ctext,cattributes)); end;
434:
435: procedure underline (ctext in varchar2 character set any_cs,
436: cattributes in varchar2 DEFAULT NULL) is
437: begin p(htf.underline(ctext,cattributes)); end;
438:
439: /* END PHYSICAL FORMAT ELEMENTS */
440:
441: /* HTML FORMS */

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

444: cmethod in varchar2 DEFAULT 'post',
445: ctarget in varchar2 DEFAULT NULL,
446: cenctype in varchar2 DEFAULT NULL,
447: cattributes in varchar2 DEFAULT NULL) is
448: begin p(htf.formOpen(curl,cmethod,ctarget,cenctype,cattributes)); end;
449:
450: procedure formCheckbox(cname in varchar2,
451: cvalue in varchar2 character set any_cs DEFAULT 'on',
452: cchecked in varchar2 DEFAULT NULL,

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

450: procedure formCheckbox(cname in varchar2,
451: cvalue in varchar2 character set any_cs DEFAULT 'on',
452: cchecked in varchar2 DEFAULT NULL,
453: cattributes in varchar2 DEFAULT NULL) is
454: begin p(htf.formCheckbox(cname,cvalue,cchecked,cattributes)); end;
455:
456: procedure formFile(cname in varchar2,
457: caccept in varchar2 DEFAULT NULL,
458: cattributes in varchar2 DEFAULT NULL) is

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

455:
456: procedure formFile(cname in varchar2,
457: caccept in varchar2 DEFAULT NULL,
458: cattributes in varchar2 DEFAULT NULL) is
459: begin p(htf.formFile(cname,caccept,cattributes)); end;
460:
461: procedure formHidden(cname in varchar2,
462: cvalue in varchar2 character set any_cs DEFAULT NULL,
463: cattributes in varchar2 DEFAULT NULL) is

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

460:
461: procedure formHidden(cname in varchar2,
462: cvalue in varchar2 character set any_cs DEFAULT NULL,
463: cattributes in varchar2 DEFAULT NULL) is
464: begin p(htf.formHidden(cname,cvalue,cattributes)); end;
465:
466: procedure formImage(cname in varchar2,
467: csrc in varchar2,
468: calign in varchar2 DEFAULT NULL,

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

466: procedure formImage(cname in varchar2,
467: csrc in varchar2,
468: calign in varchar2 DEFAULT NULL,
469: cattributes in varchar2 DEFAULT NULL) is
470: begin p(htf.formImage(cname,csrc,calign,cattributes)); end;
471:
472: procedure formPassword(cname in varchar2,
473: csize in varchar2 DEFAULT NULL,
474: cmaxlength in varchar2 DEFAULT NULL,

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

473: csize in varchar2 DEFAULT NULL,
474: cmaxlength in varchar2 DEFAULT NULL,
475: cvalue in varchar2 character set any_cs DEFAULT NULL,
476: cattributes in varchar2 DEFAULT NULL) is
477: begin p(htf.formPassword(cname,csize,cmaxlength,cvalue,cattributes)); end;
478:
479: procedure formRadio(cname in varchar2,
480: cvalue in varchar2 character set any_cs,
481: cchecked in varchar2 DEFAULT NULL,

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

479: procedure formRadio(cname in varchar2,
480: cvalue in varchar2 character set any_cs,
481: cchecked in varchar2 DEFAULT NULL,
482: cattributes in varchar2 DEFAULT NULL) is
483: begin p(htf.formRadio(cname,cvalue,cchecked,cattributes)); end;
484:
485: procedure formReset(cvalue in varchar2 character set any_cs DEFAULT 'Reset',
486: cattributes in varchar2 DEFAULT NULL) is
487: begin p(htf.formReset(cvalue,cattributes)); end;

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

483: begin p(htf.formRadio(cname,cvalue,cchecked,cattributes)); end;
484:
485: procedure formReset(cvalue in varchar2 character set any_cs DEFAULT 'Reset',
486: cattributes in varchar2 DEFAULT NULL) is
487: begin p(htf.formReset(cvalue,cattributes)); end;
488:
489: procedure formSubmit(cname in varchar2 DEFAULT NULL,
490: cvalue in varchar2 character set any_cs DEFAULT 'Submit',
491: cattributes in varchar2 DEFAULT NULL) is

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

488:
489: procedure formSubmit(cname in varchar2 DEFAULT NULL,
490: cvalue in varchar2 character set any_cs DEFAULT 'Submit',
491: cattributes in varchar2 DEFAULT NULL) is
492: begin p(htf.formSubmit(cname,cvalue,cattributes)); end;
493:
494: procedure formText(cname in varchar2,
495: csize in varchar2 DEFAULT NULL,
496: cmaxlength in varchar2 DEFAULT NULL,

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

495: csize in varchar2 DEFAULT NULL,
496: cmaxlength in varchar2 DEFAULT NULL,
497: cvalue in varchar2 character set any_cs DEFAULT NULL,
498: cattributes in varchar2 DEFAULT NULL) is
499: begin p(htf.formText(cname,csize,cmaxlength,cvalue,cattributes)); end;
500:
501: procedure formSelectOpen(cname in varchar2,
502: cprompt in varchar2 character set any_cs DEFAULT NULL,
503: nsize in integer DEFAULT NULL,

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

501: procedure formSelectOpen(cname in varchar2,
502: cprompt in varchar2 character set any_cs DEFAULT NULL,
503: nsize in integer DEFAULT NULL,
504: cattributes in varchar2 DEFAULT NULL) is
505: begin p(htf.formSelectOpen(cname,cprompt,nsize,cattributes)); end;
506:
507: procedure formSelectOption(cvalue in varchar2 character set any_cs,
508: cselected in varchar2 DEFAULT NULL,
509: cattributes in varchar2 DEFAULT NULL) is

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

506:
507: procedure formSelectOption(cvalue in varchar2 character set any_cs,
508: cselected in varchar2 DEFAULT NULL,
509: cattributes in varchar2 DEFAULT NULL) is
510: begin p(htf.formSelectOption(cvalue,cselected,cattributes)); end;
511:
512: procedure formSelectClose is
513: begin p(htf.formSelectClose); end;
514:

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

509: cattributes in varchar2 DEFAULT NULL) is
510: begin p(htf.formSelectOption(cvalue,cselected,cattributes)); end;
511:
512: procedure formSelectClose is
513: begin p(htf.formSelectClose); end;
514:
515: procedure formTextarea(cname in varchar2,
516: nrows in integer,
517: ncolumns in integer,

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

516: nrows in integer,
517: ncolumns in integer,
518: calign in varchar2 DEFAULT NULL,
519: cattributes in varchar2 DEFAULT NULL) is
520: begin p(htf.formTextarea(cname,nrows,ncolumns,calign,cattributes)); end;
521:
522:
523: procedure formTextarea2(cname in varchar2,
524: nrows in integer,

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

525: ncolumns in integer,
526: calign in varchar2 DEFAULT NULL,
527: cwrap in varchar2 DEFAULT NULL,
528: cattributes in varchar2 DEFAULT NULL) is
529: begin p(htf.formTextarea2(cname,nrows,ncolumns,calign,cwrap,cattributes)); end;
530:
531:
532: procedure formTextareaOpen(cname in varchar2,
533: nrows in integer,

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

533: nrows in integer,
534: ncolumns in integer,
535: calign in varchar2 DEFAULT NULL,
536: cattributes in varchar2 DEFAULT NULL) is
537: begin p(htf.formTextareaOpen(cname,nrows,ncolumns,calign,cattributes)); end;
538:
539:
540: procedure formTextareaOpen2(cname in varchar2,
541: nrows in integer,

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

543: calign in varchar2 DEFAULT NULL,
544: cwrap in varchar2 DEFAULT NULL,
545: cattributes in varchar2 DEFAULT NULL) is
546: begin
547: p(htf.formTextareaOpen2(cname,nrows,ncolumns,calign,cwrap,cattributes));
548: end;
549:
550: procedure formTextareaClose is
551: begin p(htf.formTextareaClose); end;

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

547: p(htf.formTextareaOpen2(cname,nrows,ncolumns,calign,cwrap,cattributes));
548: end;
549:
550: procedure formTextareaClose is
551: begin p(htf.formTextareaClose); end;
552:
553: procedure formClose is
554: begin p(htf.formClose); end;
555: /* END HTML FORMS */

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

550: procedure formTextareaClose is
551: begin p(htf.formTextareaClose); end;
552:
553: procedure formClose is
554: begin p(htf.formClose); end;
555: /* END HTML FORMS */
556:
557: /* HTML TABLES */
558: procedure tableOpen(cborder in varchar2 DEFAULT NULL,

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

559: calign in varchar2 DEFAULT NULL,
560: cnowrap in varchar2 DEFAULT NULL,
561: cclear in varchar2 DEFAULT NULL,
562: cattributes in varchar2 DEFAULT NULL) is
563: begin p(htf.tableOpen(cborder,calign,cnowrap,cclear,cattributes)); end;
564:
565: procedure tableCaption(ccaption in varchar2 character set any_cs,
566: calign in varchar2 DEFAULT NULL,
567: cattributes in varchar2 DEFAULT NULL) is

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

564:
565: procedure tableCaption(ccaption in varchar2 character set any_cs,
566: calign in varchar2 DEFAULT NULL,
567: cattributes in varchar2 DEFAULT NULL) is
568: begin p(htf.tableCaption(ccaption,calign,cattributes)); end;
569:
570: procedure tableRowOpen(calign in varchar2 DEFAULT NULL,
571: cvalign in varchar2 DEFAULT NULL,
572: cdp in varchar2 DEFAULT NULL,

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

571: cvalign in varchar2 DEFAULT NULL,
572: cdp in varchar2 DEFAULT NULL,
573: cnowrap in varchar2 DEFAULT NULL,
574: cattributes in varchar2 DEFAULT NULL) is
575: begin p(htf.tableRowOpen(calign,cvalign,cdp,cnowrap,cattributes)); end;
576:
577: procedure tableHeader(cvalue in varchar2 character set any_cs DEFAULT NULL,
578: calign in varchar2 DEFAULT NULL,
579: cdp in varchar2 DEFAULT NULL,

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

580: cnowrap in varchar2 DEFAULT NULL,
581: crowspan in varchar2 DEFAULT NULL,
582: ccolspan in varchar2 DEFAULT NULL,
583: cattributes in varchar2 DEFAULT NULL) is
584: begin p(htf.tableHeader(cvalue,calign,cdp,cnowrap,
585: crowspan,ccolspan,cattributes)); end;
586:
587: procedure tableData(cvalue in varchar2 character set any_cs DEFAULT NULL,
588: calign in varchar2 DEFAULT NULL,

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

590: cnowrap in varchar2 DEFAULT NULL,
591: crowspan in varchar2 DEFAULT NULL,
592: ccolspan in varchar2 DEFAULT NULL,
593: cattributes in varchar2 DEFAULT NULL) is
594: begin p(htf.tableData(cvalue,calign,cdp,cnowrap,
595: crowspan,ccolspan,cattributes)); end;
596:
597: procedure tableRowClose is
598: begin p(htf.tableRowClose); end;

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

594: begin p(htf.tableData(cvalue,calign,cdp,cnowrap,
595: crowspan,ccolspan,cattributes)); end;
596:
597: procedure tableRowClose is
598: begin p(htf.tableRowClose); end;
599:
600: procedure tableClose is
601: begin p(htf.tableClose); end;
602: /* END HTML TABLES */

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

597: procedure tableRowClose is
598: begin p(htf.tableRowClose); end;
599:
600: procedure tableClose is
601: begin p(htf.tableClose); end;
602: /* END HTML TABLES */
603:
604: /* BEGIN HTML FRAMES - Netscape Extensions FRAMESET, FRAME tags */
605: procedure framesetOpen( crows in varchar2 DEFAULT NULL, /* row height value list */

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

605: procedure framesetOpen( crows in varchar2 DEFAULT NULL, /* row height value list */
606: ccols in varchar2 DEFAULT NULL,
607: cattributes in varchar2 DEFAULT NULL) is /* column width list */
608: begin
609: p(htf.framesetOpen( crows, ccols, cattributes ));
610: end framesetOpen;
611:
612: procedure framesetClose is
613: begin

Line 614: p(htf.framesetClose);

610: end framesetOpen;
611:
612: procedure framesetClose is
613: begin
614: p(htf.framesetClose);
615: end framesetClose;
616:
617: procedure frame( csrc in varchar2, /* URL */
618: cname in varchar2 DEFAULT NULL, /* Window Name */

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

621: cscrolling in varchar2 DEFAULT NULL, /* yes | no | auto */
622: cnoresize in varchar2 DEFAULT NULL,
623: cattributes in varchar2 DEFAULT NULL) is /* Not resizable by user */
624: begin
625: p(htf.frame( csrc, cname, cmarginwidth, cmarginheight, cscrolling, cnoresize, cattributes ));
626: end frame;
627:
628: procedure noframesOpen is
629: begin

Line 630: p(htf.noframesOpen);

626: end frame;
627:
628: procedure noframesOpen is
629: begin
630: p(htf.noframesOpen);
631: end noframesOpen;
632:
633: procedure noframesClose is
634: begin

Line 635: p(htf.noframesClose);

631: end noframesOpen;
632:
633: procedure noframesClose is
634: begin
635: p(htf.noframesClose);
636: end noframesClose;
637:
638: /* END HTML FRAMES */
639:

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

641: procedure appletOpen( ccode in varchar2,
642: cwidth in integer,
643: cheight in integer,
644: cattributes in varchar2 DEFAULT NULL) is
645: begin p(htf.appletOpen(ccode,cwidth,cheight,cattributes));end;
646:
647: procedure param( cname in varchar2,
648: cvalue in varchar2 character set any_cs) is
649: begin p(htf.param(cname,cvalue));end;

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

645: begin p(htf.appletOpen(ccode,cwidth,cheight,cattributes));end;
646:
647: procedure param( cname in varchar2,
648: cvalue in varchar2 character set any_cs) is
649: begin p(htf.param(cname,cvalue));end;
650:
651: procedure appletClose is
652: begin p(htf.appletClose);end;
653:

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

648: cvalue in varchar2 character set any_cs) is
649: begin p(htf.param(cname,cvalue));end;
650:
651: procedure appletClose is
652: begin p(htf.appletClose);end;
653:
654: /* END SPECIAL HTML TAGS */
655:
656:

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

1832: procedure p (nbuf in number) is
1833: begin print(to_char(nbuf)); end;
1834:
1835: procedure prints(ctext in varchar2 character set any_cs) is
1836: begin p(htf.escape_sc(ctext)); end;
1837:
1838: procedure ps(ctext in varchar2 character set any_cs) is
1839: begin p(htf.escape_sc(ctext)); end;
1840:

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

1835: procedure prints(ctext in varchar2 character set any_cs) is
1836: begin p(htf.escape_sc(ctext)); end;
1837:
1838: procedure ps(ctext in varchar2 character set any_cs) is
1839: begin p(htf.escape_sc(ctext)); end;
1840:
1841: procedure escape_sc(ctext in varchar2 character set any_cs) is
1842: begin p(htf.escape_sc(ctext)); end;
1843:

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

1838: procedure ps(ctext in varchar2 character set any_cs) is
1839: begin p(htf.escape_sc(ctext)); end;
1840:
1841: procedure escape_sc(ctext in varchar2 character set any_cs) is
1842: begin p(htf.escape_sc(ctext)); end;
1843:
1844: procedure print_header (cbuf in varchar2, nline in number) is
1845: begin
1846: per_request_init;