AUBBC

 view release on metacpan or  search on metacpan

AUBBC.pm  view on Meta::CPAN

234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
$msg =~ s/\[(?:c|code)=(.+?)\](?s)(.+?)\[\/(?:c|code)\]/code_tag($2, $1)/ge;
 $do_f[9] = '' if $do_f[9];
 
 $msg =~ s/\[(img|right_img|left_img)\](.+?)\[\/img\]/fix_image($1, $2)/ge if ! $AUBBC{no_img};
 
 $msg =~ s/\[email\](?![\w\.\-\&\+]+\@[\w\.\-]+).+?\[\/email\]/\[<font color=red>$BAD_MESSAGE<\/font>\]email/g;
 $AUBBC{protect_email}
  ? $msg =~ s/\[email\]([\w\.\-\&\+]+\@[\w\.\-]+)\[\/email\]/protect_email($1)/ge
  : $msg =~ s/\[email\]([\w\.\-\&\+]+\@[\w\.\-]+)\[\/email\]/link_check("mailto:$1",$1,'','')/ge;
 
 $msg =~ s/\[color=([\w#]+)\](?s)(.+?)\[\/color\]/<span style="color:$1;">$2<\/span>/g;
 
 1 while $msg =~
  s/\[quote=([\w\s]+)\](?s)(.+?)\[\/quote\]/<div$AUBBC{quote_class}><small><strong>$1:<\/strong><\/small><br$AUBBC{html_type}>
$2<\/div>$AUBBC{quote_extra}/g;
 1 while $msg =~
  s/\[quote\](?s)(.+?)\[\/quote\]/<div$AUBBC{quote_class}>$1<\/div>$AUBBC{quote_extra}/g;
 
 $msg =~ s/\[(left|right|center)\](?s)(.+?)\[\/\1\]/<div style=\"text-align: $1;\">$2<\/div>/g;
 $msg =~ s/\[li=(\d+)\](?s)(.+?)\[\/li\]/<li value="$1">$2<\/li>/g;
 $msg =~ s/\[u\](?s)(.+?)\[\/u\]/<span style="text-decoration: underline;">$1<\/span>/g;
 $msg =~ s/\[strike\](?s)(.+?)\[\/strike\]/<span style="text-decoration: line-through;">$1<\/span>/g;
 $msg =~ s/\[([bh]r)\]/<$1$AUBBC{html_type}>/g;
 $msg =~ s/\[list\](?s)(.+?)\[\/list\]/fix_list($1)/ge;
 
 1 while $msg =~
  s/\[(blockquote|big|h[123456]|[ou]l|li|em|pre|s(?:mall|trong|u[bp])|[bip])\](?s)(.+?)\[\/\1\]/<$1>$2<\/$1>/g;
  
 $msg =~ s/(<\/?(?:ol|ul|li|hr)\s?\/?>)\r?\n?<br(?:\s?\/)?>/$1/g;
 
 $msg =~ s/\[url=(\w+\:\/\/$long_regex)\](.+?)\[\/url\]/link_check($1,fix_message($2),'',1)/ge;
 $msg =~ s/(?<!["=\.\/\'\[\{\;])((?:\b\w+\b\:\/\/)$long_regex)/link_check($1,$1,'',1)/ge;

AUBBC.pod  view on Meta::CPAN

326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
Default is 'html' and the only other support is 'xhtml'
 
=head2 fix_amp
 
Default is 1 Enabled and the only other setting is 0 to Disable.
This setting finds all the & that need to covert to the amp; html code name
so the w3c xhtml validation checks ok.
 
=head2 line_break
 
Enable line_break "<br>\n" Default 1 , 2 is for the "<br>" older style
that has no new line, 0 is Disable.
 
This will turn any new line \n to the HTML line break <br>\n or <br> by the script_escape method and the other way around
with the html_to_text method.
 
=head2 code_class
 
Default is '' and this allows a custom class, style and/or JavaScript to be used in any of the [code] [c] tags.
 
must have a space before the text.
 
example:
 
 code_class => ' class="quote"',
 
 code_class => ' class="quote" onclick="....."',
 
=head2 code_extra
 
Default is '' and this is for a custom message, code, image, est.. to be used after the [code] [c] tags.
 
example:
 
 code_extra => 'Codes may not reflect what is in the current version.',
 
 code_extra => '<div style="clear: left"> </div>',
 
=head2 code_download
 
Default is '^Download above code^' this message will
be the links name. the link will open a JavaScript popup window and write the
code in it to be copyed or printed. A new JavaScript function was
added to the js_print method called MyCodePrint.
 
To turn off set this to ''
 
example:
 
 code_download => 'Click here to get above code.',
 
 code_download => '',
  
=head2 href_class
 
Default is '' and this allows a custom class, style and/or JavaScript to be used in the [url] tags.
 
must have a space before the text.
 
example:
 
 href_class => ' class="url"',
 href_class => ' class="url" onclick="....."',
 
=head2 quote_class
 
Default is '' and this allows a custom class, style and/or JavaScript to be used in the [quote] tags.
 
must have a space before the text.
 
example:
 
  quote_class => ' class="quote"',
  quote_class => ' class="quote" onclick="....."',
 
=head2 quote_extra
 
Default is '' and this is for a custom message, code, image, est.. to be used after a [quote] tags.
 
example:
 
  quote_extra => 'QUOTES AND SAYINGS DISPLAYED ON THIS BLOG ARE NOT WRITTEN BY THE AUTHOR OF THE BLOG.',
  quote_extra => '<div style="clear: left"> </div>',
 
=head2 script_escape
 
This will turn on or off the sanitizer/escape security for the hole message.
 
Default is 1 on and 0 for Disable.
 
Notes: 1)The code highlighter works best with an escaped character format like the
script_escape => 1 setting can provide.

AUBBC.pod  view on Meta::CPAN

515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
pattern - limited to 'all' or 'l,n,-,:,_,s'
 
    'all' = anything but [ or ]
    'l' = 'a-z'
    'n' = '0-9'
    's' = ' '
    '-' = '-'
    ':' = ':'
    '_' = '_'
 
type - 1 is style [name://pattern], 2 is style [name]pattern[/name], 3 is style [name],
the next setting for type the function will not be used to run Perl subroutines and
will replace the text with what text is defined in the function setting, the setting is
type 4 this will use style [name] but will work different then the other built settings
see function below on how type 4 works
 
function - a pre-defined subroutine that receives the matched pattern, tag name and returns what you want,
unless type is set to 4 then it will replace the tag with what text is in the function.
 
   Note: if the function returns undefined, '' or 0 the tag will not be changed.
 
level - the array number of the security level
 
error - the text or HTML to show if user has no access

AUBBC.pod  view on Meta::CPAN

724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
v4.03 - 02/03/2011
 
Addition - New Object method aubbc_error . Developers can now controle if or when
to handle errors, see the POD 'Error Message' for usage.
 
Fixed - All built-in tags only convert balanced tags so no unbalanced HTML can
be produced
 
Fixed - Bug in code_highlight a highlight regex needed to be changed after
version 4.01 to support the Parser style.
 
Improvement - Small restructure of add_build_tag and change the 'all' setting
of 'pattern' to allow more.
 
v4.02 - 11/28/2010
 
Fixed - The element ID for the code download started at 1 for every instance this
will force the browser to take priority to load the first ID it reads. The fix
starts the counter at 'time.$$.000' to try to produce a more unique ID for each
instance.

AUBBC.pod  view on Meta::CPAN

785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
Addition - AUBBC::make_link($link,$name,$javascript,$target) this is useful enough
to mention once.
 
Improvement - After lots of testing I have removed all /o in the regex. One main
reason is Memoize provides enough speed.
 
v3.13 - 09/30/2010
 
Addition - do_ubbc New built-in tag [list][*=1]... [*]... [/list], This will
follow XHTML or HTML Transitional element style and XHTML or HTML Strict will not
support the elements that tag [*=1] in the [list] will produce
(use the other enumerated List Block tags for XHTML or HTML Strict).
 
Addition - do_ubbc New built-in tag [em]Hello[/em]
 
Addition - New value for setting line_break 2 for old <br style. This effects script_escape.
 
Addition - This module now uses Memoize for a massive speed improvement.
If you thought it was fast before, I hope your sitting down when you bench this version. LOL
 
Addition - added setting highlight_function to replace the highlighting method
of AUBBC with a costume one.
 
Fixed - in do_ubbc the line breaks was invalidating HTML for List Block elements
 
Improvement - in do_all_ubbc changed defining $msg each time. there could have

AUBBC.pod  view on Meta::CPAN

833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
of all the Perl BBcode modules. BBCode::Parser Parse::BBCode HTML::BBCode HTML::BBReverse
 
Fixed - fixed a line break and new line sandbox bug
 
Improvement - Massive speed improvement to the hole module and no features lost.
changed new for faster loading, the module uses vars for some variables,
re-spaced the hole code.
 
v2.10 - 08/31/2010 11:17:13
 
Addition - adding type 4 to add_build_tag this will use style 3 but will work
different then the other built functions. Type 4 will print the text defined in
function and not point to a defined Perl subroutine.
 
Addition - added line_break setting to have control over the script_escape and
html_to_text methods converting html line break <br> and new line \n
 
Addition - added fix_amp this setting finds all the & that need to covert to the amp; html code name
so the w3c xhtml validation checks ok.
 
Addition - added no_img this setting will allow some control for using [img] tags

AUBBC.pod  view on Meta::CPAN

917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
v1.20 - 09/07/2008 09:23:09
 
Fixed bug that bypassed utf tag converter if square bracket wasn't detected
 
Fixed Makefile.PL
 
v1.10 - 09/02/2008 09:49:46
 
Added two more tags [big]..[/big] and [small]..[/small].
 
Removed utf tag style [ux23] and [u://0931] to make more tag names available.
 
Changed add_build_tag() to use hash variable, see "Build your own tags" for the new style.
 
Changed the way functions should work for built tags, the custom function for built tags will receive the tag name and data of the tag. This is so one function can handle many tags.
 
Removed other site tags and setting other_sites_pattern, an example of them are in "Build your own tags"
 
Removed [time] tag, example in "Build your own tags".
 
Email now allows names with & sign
 
Now every message that is passed to do_all_ubbc() gets escaped before being returned if script_escape is Enabled.

CHANGES  view on Meta::CPAN

27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
v4.03 - 02/03/2011
 
Addition - New Object method aubbc_error . Developers can now controle if or when
to handle errors, see the POD 'Error Message' for usage.
 
Fixed - All built-in tags only convert balanced tags so no unbalanced HTML can
be produced
 
Fixed - Bug in code_highlight a highlight regex needed to be changed after
version 4.01 to support the Parser style.
 
Improvement - Small restructure of add_build_tag and change the 'all' setting
of 'pattern' to allow more.
 
v4.02 - 11/28/2010
 
Fixed - The element ID for the code download started at 1 for every instance this
will force the browser to take priority to load the first ID it reads. The fix
starts the counter at 'time.$$.000' to try to produce a more unique ID for each
instance.

CHANGES  view on Meta::CPAN

88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Addition - AUBBC::make_link($link,$name,$javascript,$target) this is useful enough
to mention once.
 
Improvement - After lots of testing I have removed all /o in the regex. One main
reason is Memoize provides enough speed.
 
v3.13 - 09/30/2010
 
Addition - do_ubbc New built-in tag [list][*=1]... [*]... [/list], This will
follow XHTML or HTML Transitional element style and XHTML or HTML Strict will not
support the elements that tag [*=1] in the [list] will produce
(use the other enumerated List Block tags for XHTML or HTML Strict).
 
Addition - do_ubbc New built-in tag [em]Hello[/em]
 
Addition - New value for setting line_break 2 for old <br style. This effects script_escape.
 
Addition - This module now uses Memoize for a massive speed improvement.
If you thought it was fast before, I hope your sitting down when you bench this version. LOL
 
Addition - added setting highlight_function to replace the highlighting method
of AUBBC with a costume one.
 
Fixed - in do_ubbc the line breaks was invalidating HTML for List Block elements
 
Improvement - in do_all_ubbc changed defining $msg each time. there could have

CHANGES  view on Meta::CPAN

136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
of all the Perl BBcode modules. BBCode::Parser Parse::BBCode HTML::BBCode HTML::BBReverse
 
Fixed - fixed a line break and new line sandbox bug
 
Improvement - Massive speed improvement to the hole module and no features lost.
changed new for faster loading, the module uses vars for some variables,
re-spaced the hole code.
 
v2.10 - 08/31/2010 11:17:13
 
Addition - adding type 4 to add_build_tag this will use style 3 but will work
different then the other built functions. Type 4 will print the text defined in
function and not point to a defined Perl subroutine.
 
Addition - added line_break setting to have control over the script_escape and
html_to_text methods converting html line break <br> and new line \n
 
Addition - added fix_amp this setting finds all the & that need to covert to the amp; html code name
so the w3c xhtml validation checks ok.
 
Addition - added no_img this setting will allow some control for using [img] tags

CHANGES  view on Meta::CPAN

220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
v1.20 - 09/07/2008 09:23:09
 
Fixed bug that bypassed utf tag converter if square bracket wasn't detected
 
Fixed Makefile.PL
 
v1.10 - 09/02/2008 09:49:46
 
Added two more tags [big]..[/big] and [small]..[/small].
 
Removed utf tag style [ux23] and [u://0931] to make more tag names available.
 
Changed add_build_tag() to use hash variable, see "Build your own tags" for the new style.
 
Changed the way functions should work for built tags, the custom function for built tags will receive the tag name and data of the tag. This is so one function can handle many tags.
 
Removed other site tags and setting other_sites_pattern, an example of them are in "Build your own tags"
 
Removed [time] tag, example in "Build your own tags".
 
Email now allows names with & sign
 
Now every message that is passed to do_all_ubbc() gets escaped before being returned if script_escape is Enabled.

README  view on Meta::CPAN

326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
Default is 'html' and the only other support is 'xhtml'
 
=head2 fix_amp
 
Default is 1 Enabled and the only other setting is 0 to Disable.
This setting finds all the & that need to covert to the amp; html code name
so the w3c xhtml validation checks ok.
 
=head2 line_break
 
Enable line_break "<br>\n" Default 1 , 2 is for the "<br>" older style
that has no new line, 0 is Disable.
 
This will turn any new line \n to the HTML line break <br>\n or <br> by the script_escape method and the other way around
with the html_to_text method.
 
=head2 code_class
 
Default is '' and this allows a custom class, style and/or JavaScript to be used in any of the [code] [c] tags.
 
must have a space before the text.
 
example:
 
 code_class => ' class="quote"',
 
 code_class => ' class="quote" onclick="....."',
 
=head2 code_extra
 
Default is '' and this is for a custom message, code, image, est.. to be used after the [code] [c] tags.
 
example:
 
 code_extra => 'Codes may not reflect what is in the current version.',
 
 code_extra => '<div style="clear: left"> </div>',
 
=head2 code_download
 
Default is '^Download above code^' this message will
be the links name. the link will open a JavaScript popup window and write the
code in it to be copyed or printed. A new JavaScript function was
added to the js_print method called MyCodePrint.
 
To turn off set this to ''
 
example:
 
 code_download => 'Click here to get above code.',
 
 code_download => '',
 
=head2 href_class
 
Default is '' and this allows a custom class, style and/or JavaScript to be used in the [url] tags.
 
must have a space before the text.
 
example:
 
 href_class => ' class="url"',
 href_class => ' class="url" onclick="....."',
 
=head2 quote_class
 
Default is '' and this allows a custom class, style and/or JavaScript to be used in the [quote] tags.
 
must have a space before the text.
 
example:
 
  quote_class => ' class="quote"',
  quote_class => ' class="quote" onclick="....."',
 
=head2 quote_extra
 
Default is '' and this is for a custom message, code, image, est.. to be used after a [quote] tags.
 
example:
 
  quote_extra => 'QUOTES AND SAYINGS DISPLAYED ON THIS BLOG ARE NOT WRITTEN BY THE AUTHOR OF THE BLOG.',
  quote_extra => '<div style="clear: left"> </div>',
 
=head2 script_escape
 
This will turn on or off the sanitizer/escape security for the hole message.
 
Default is 1 on and 0 for Disable.
 
Notes: 1)The code highlighter works best with an escaped character format like the
script_escape => 1 setting can provide.

README  view on Meta::CPAN

515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
pattern - limited to 'all' or 'l,n,-,:,_,s'
 
    'all' = anything but [ or ]
    'l' = 'a-z'
    'n' = '0-9'
    's' = ' '
    '-' = '-'
    ':' = ':'
    '_' = '_'
 
type - 1 is style [name://pattern], 2 is style [name]pattern[/name], 3 is style [name],
the next setting for type the function will not be used to run Perl subroutines and
will replace the text with what text is defined in the function setting, the setting is
type 4 this will use style [name] but will work different then the other built settings
see function below on how type 4 works
 
function - a pre-defined subroutine that receives the matched pattern, tag name and returns what you want,
unless type is set to 4 then it will replace the tag with what text is in the function.
 
   Note: if the function returns undefined, '' or 0 the tag will not be changed.
 
level - the array number of the security level
 
error - the text or HTML to show if user has no access

README  view on Meta::CPAN

724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
v4.03 - 02/03/2011
 
Addition - New Object method aubbc_error . Developers can now controle if or when
to handle errors, see the POD 'Error Message' for usage.
 
Fixed - All built-in tags only convert balanced tags so no unbalanced HTML can
be produced
 
Fixed - Bug in code_highlight a highlight regex needed to be changed after
version 4.01 to support the Parser style.
 
Improvement - Small restructure of add_build_tag and change the 'all' setting
of 'pattern' to allow more.
 
v4.02 - 11/28/2010
 
Fixed - The element ID for the code download started at 1 for every instance this
will force the browser to take priority to load the first ID it reads. The fix
starts the counter at 'time.$$.000' to try to produce a more unique ID for each
instance.

README  view on Meta::CPAN

785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
Addition - AUBBC::make_link($link,$name,$javascript,$target) this is useful enough
to mention once.
 
Improvement - After lots of testing I have removed all /o in the regex. One main
reason is Memoize provides enough speed.
 
v3.13 - 09/30/2010
 
Addition - do_ubbc New built-in tag [list][*=1]... [*]... [/list], This will
follow XHTML or HTML Transitional element style and XHTML or HTML Strict will not
support the elements that tag [*=1] in the [list] will produce
(use the other enumerated List Block tags for XHTML or HTML Strict).
 
Addition - do_ubbc New built-in tag [em]Hello[/em]
 
Addition - New value for setting line_break 2 for old <br style. This effects script_escape.
 
Addition - This module now uses Memoize for a massive speed improvement.
If you thought it was fast before, I hope your sitting down when you bench this version. LOL
 
Addition - added setting highlight_function to replace the highlighting method
of AUBBC with a costume one.
 
Fixed - in do_ubbc the line breaks was invalidating HTML for List Block elements
 
Improvement - in do_all_ubbc changed defining $msg each time. there could have

README  view on Meta::CPAN

833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
of all the Perl BBcode modules. BBCode::Parser Parse::BBCode HTML::BBCode HTML::BBReverse
 
Fixed - fixed a line break and new line sandbox bug
 
Improvement - Massive speed improvement to the hole module and no features lost.
changed new for faster loading, the module uses vars for some variables,
re-spaced the hole code.
 
v2.10 - 08/31/2010 11:17:13
 
Addition - adding type 4 to add_build_tag this will use style 3 but will work
different then the other built functions. Type 4 will print the text defined in
function and not point to a defined Perl subroutine.
 
Addition - added line_break setting to have control over the script_escape and
html_to_text methods converting html line break <br> and new line \n
 
Addition - added fix_amp this setting finds all the & that need to covert to the amp; html code name
so the w3c xhtml validation checks ok.
 
Addition - added no_img this setting will allow some control for using [img] tags

README  view on Meta::CPAN

917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
v1.20 - 09/07/2008 09:23:09
 
Fixed bug that bypassed utf tag converter if square bracket wasn't detected
 
Fixed Makefile.PL
 
v1.10 - 09/02/2008 09:49:46
 
Added two more tags [big]..[/big] and [small]..[/small].
 
Removed utf tag style [ux23] and [u://0931] to make more tag names available.
 
Changed add_build_tag() to use hash variable, see "Build your own tags" for the new style.
 
Changed the way functions should work for built tags, the custom function for built tags will receive the tag name and data of the tag. This is so one function can handle many tags.
 
Removed other site tags and setting other_sites_pattern, an example of them are in "Build your own tags"
 
Removed [time] tag, example in "Build your own tags".
 
Email now allows names with & sign
 
Now every message that is passed to do_all_ubbc() gets escaped before being returned if script_escape is Enabled.

examples/tag_list.cgi  view on Meta::CPAN

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#use lib '../';
use AUBBC;
my $aubbc = AUBBC->new();
 
# Change some default settings
$aubbc->settings(
        protect_email => 4,
        html_type => 'xhtml',
        code_class => ' class="codepost"',
        code_extra => '<div style="clear: left"> </div>',
        quote_class => ' class="quote"',
        quote_extra => '<div style="clear: left"> </div>',
        highlight_class1 => ' class="highlightclass1"',
        highlight_class2 => ' class="highlightclass2"',
        highlight_class3 => ' class="highlightclass1"',
        highlight_class4 => ' class="highlightclass1"',
        highlight_class5 => ' class="highlightclass5"',
        highlight_class6 => ' class="highlightclass6"',
        highlight_class7 => ' class="highlightclass7"',
        highlight_class8 => ' class="highlightclass5"',
        highlight_class9 => ' class="highlightclass5"',
        );

examples/tag_list.cgi  view on Meta::CPAN

140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>AUBBC.pm Tag List</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<script type="text/javascript" src="?js_print">
</script>
<style type="text/css">
.codepost {
background-color: #ffffff;
 width: 80%;
 height: auto;
 white-space: nowrap;
 overflow: scroll;
 padding-left: 2px;
 padding-bottom: 5px;
 margin: 0;
 top: 0;

examples/tag_list.cgi  view on Meta::CPAN

177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
color : #990000;
 font-weight : normal;
 font-size : 10pt;
 text-decoration : none;
 font-family : Courier New, Latha, sans-serif;
}
.highlightclass2 {
 color : #0000CC;
 font-weight : normal;
 font-size : 10pt;
 font-style: italic;
 text-decoration : none;
 font-family : Courier New, Latha, sans-serif;
}
.highlightclass5 {
 color : #0000CC;
 font-weight : normal;
 font-size : 10pt;
 text-decoration : none;
 font-family : Courier New, Latha, sans-serif;
}

examples/tag_list.cgi  view on Meta::CPAN

202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
text-decoration : none;
 font-family : Courier New, Latha, sans-serif;
}
.highlightclass7 {
 color : #009900;
 font-weight : normal;
 font-size : 10pt;
 text-decoration : none;
 font-family : Courier New, Latha, sans-serif;
}
</style>
$message
</body>
</html>
HTML
exit;
}
 
sub other_sites {
 my ($tag_name, $text_from_AUBBC) = @_;



( run in 0.290 second using v1.01-cache-2.11-cpan-bb97c1e446a )