create or replace procedure url_test1_b is begin src_b.header; x.p('

', 'I''m in a standalone procedure'); x.p('

', 'r.prog=' || r.prog); x.p('

', 'r.pack=' || r.pack); x.p('

', 'r.proc=' || r.proc); x.p('

', 'r.getc(''y$static'')=' || r.getc('y$static')); x.t('


'); x.p('

', '>>> link to servlet demo'); x.p('

', x.a('', 'link to "pack.proc" pattern from standalone procedure', './easy_url_b.d')); x.p('

', x.a('', 'link to standalone proc(for demo, self) pattern from standalone procedure', './url_test1_b')); x.p('

', '>>> link to static demo'); x.p('

', 'this is my plsql unit(standalone procedure)''s img ' || x.i('', '@b/USA.gif')); x.p('

', 'this is some package(easy_url_b)''s img ' || x.i('', '^packs/easy_url_b/CHN.gif')); x.p('

', 'this is some standalone procedure(url_test1_b)''s img ' || x.i('', '^packs/url_test1_b/USA.gif')); x.p('

', 'this is img/nations/''s img ' || x.i('', '^img/nations/JPN.gif')); x.p('

', 'this is img directly under static root' || x.i('', '^GER.gif')); end url_test1_b; /