1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 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 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
|
2016-10-20 Thu Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl: (POD): Fix typos.
* doc/index.html: Remove call to
http://tiny-tools.sourceforge.net/bmt-time.js
2015-10-19 Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl: (Help): emove eval and use plain
"use Pod::Man" at the beginning.
2014-03-05 Wed Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (Help::POD::FORMAT DESCRIPTION): Fix typo.
(HandleCommandLineArgs): Remove defined() test from array.
(Help::POD): Add UTF-8 encoding tag.
2012-01-11 Wed Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (XlatPicture): Improve regexp.
(XlatUrlInline): Support multiple #URL tags on line.
2010-12-17 Fri Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (XlatUrl): Fix https support.
2010-12-16 Fri Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (XlatRef): Support https.
(AcceptUrl): Ignore example.net, example.org
(XlatUrl): Support https.
2010-12-09 Thu Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (Main): Read $TITLE variable set in command line.
2010-12-05 Sun Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (HandleCommandLineArgs): Correct
--Link-check-single top --link-check-single.
2010-05-01 Sat Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (HandleCommandLineArgs): Remove
"require_order" from Getopt::Long::config().
2010-04-15 Thu Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl (Help): rewrite eval Pod::Man call.
2010-04-13 Tue Jari Aalto <jari.aalto@cante.net>
* bin/t2html.pl: Add 'use 5.10' because "Named Capture Buffers"
are used.
2010-03-24 Wed Jari Aalto <jari.aalto@cante.net>
* README (at the end): Add Copyright and License.
2010-03-13 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl: (top level): rearrange globals and "use"
commands.
(Version*): new.
2010-03-12 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl:
(top level): English qw( -no_match_vars )
2010-03-02 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl: (top level): update copyright template.
(Help): Change all mixed case options like --Link-check to
lowercase --link-check.
(DESCRIPTION): improve documentation and mention pm-doc
example page.
(FORMAT DESCRIPTION): rewrite the layout example: make sure
all the columns line up with the presented text.
* conversion/index.txt: Add index.css
* conversion/index.css: New file.
2010-02-16 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (Initialize): add "http://www.w3.org/TR/html4/loose.dtd"
to doctype to fix W3C validator informational message.
(HtmlFixes): remove duplicate <p><p> occurrences.
2010-02-13 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl (PrintEnd): at 'This file has been automatically generated'
do not surround with <P></P> tags as HTML standard does not allow it
Use only opening tag <P>.
2009-08-31 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (Help): Fix Perl 5.x problem where
Pod::Text is broken.
(HandleCommandLineArgs): Add --help-css.
Change all --help-* options to lowercase.
2009-03-16 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HtmlFixes): Correct raw HTML entity translations
&#35; => #
2009-02-11 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (XlatDirectives): Adjust #t2html-* directive handling.
Do not delete whole line, but only text starting at the directive.
This makes it possible to embed them beside lines:
example text #t2html-comment ....
=>
example text
2008-09-25 Jari Aalto <jari.aalto@cante.net>
* t2html.pl
(HELP::Special text markings): Document subscript support.
(XlatWordMarkup): Add subscript support.
(Initialize): Add subscript support.
(MakeComment): Remove extra spaces.
(PrintEnd): Fix </em ...> by removing class=...
2008-09-21 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HandleOneFile): Write proper file:/// URL.
2008-09-20 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (JavaScript): Remove EOL whitespace from output.
2008-09-19 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): Move closing qq() so that no
extra white spaces are written to EOL.
(MakeToc): <dic class=toc">, remove id=toc, because it
is already defined one line below. W3C validator error.
2008-03-25 Jari Aalto <jari.aalto@tamk.fi>
* t2html.pl (HandleCommandLineArgs): Use 3way open() call.
(WriteFile): Use 3way open() call.
(UrlInclude): Use 3way open() call.
(LinkCache): Use 3way open() call.
2007-11-08 Jari Aalto <jaalto@cante.cante.net>
* t2html.pl (MakeMetaTags): If no description was given,
do not output description http-equiv tag.
2007-10-23 Jari Aalto <jaalto@cante.cante.net>
* t2html.pl (CssData::border-width): Change value from 94% to
'thin'. This makes the dashed table display correctly in Opera.
2007-10-19 Jari Aalto <jaalto@cante.cante.net>
* t2html.pl (HtmlFixes): Correct grouping expressions
that did not catch correct $1. This was causes by recent change
where the case sensitive options were put in '(?:)' => '((?:))'
Fix column 12, 'Note:' and <strong> html tag rendering.
Change <strong> to '<span class=note>' in order to render
it as wished.
2007-10-12 Jari Aalto <jari.aalto@cante.cante.net>
* t2html.pl (HELP::Referring to local documents):
Removed documentation of option '#URL-AS-IS-'. This
is superceded by generic '#URL'
* t2html.pl (UrlInclude): Fixed reading of
function argument. This made 'raw:' include mode to
work again.
2004-08-28 Sat Jari Aalto <jari.aalto@cante.net>
* txt/conversion.txt (2.1 Preface, Jan 1997): 1.7 Removed.
The pfficial description is in t2html.pl --help.
(2.3 Other text to HTML tools): 1.7 Added t2php project.
2007-09-30 Jari Aalto <jari.aalto@cante.net>
* txt/COPYING.GNU-FDL: New.
* txt/COPYING.GNU-GPL: New.
* txt/LICENSE.txt: New.
2007-09-18 Jari Aalto <jari.aalto@cante.net>
RELEASE: 20071002
* t2html.pl (HtmlFixes): Delete trailing whitespaces.
(TestPage): Output to current directory, not $HOME/tmp.
2007-05-26 Jari Aalto <jari aalto A T cante net>
* t2html.pl (UrlInclude): Added new option $mode.x
(DoLine): Added new feature#INCLUDE-raw: to embed content
as is.
2007-05-25 Jari Aalto <jari aalto A T cante net>
* t2html.pl (MakeHeadingName): Increased word grab from 5 to 8
2007-05-24 Jari Aalto <jari aalto A T cante net>
* t2html.pl (XlatTag2html): Added few french and spanish
symbols.
2007-05-23 Jari Aalto <jari aalto A T cante net>
* t2html.pl (UrlInclude): Added calls to process the
included file: #URL substitution etc.
(XlatUrlInline): Added 'm'ultiline modifier.
2007-03-09 Jari Aalto <jari aalto A T cante net>
* t2html.pl (XlatTag2html): Added raquo, laquo
2007-03-01 Jari Aalto <jari aalto A T cante net>
* t2html.pl
-- changed some HERE documents to use qq() to that
Emacs cperl-mode fontifies the code correctly.
(DoLine): Fixed long standing bug where first paragraph
after heading was not surrounded by the usual
<p class="column8">.
(ReadLinksBasic): Improved regexp to match link's
last character better.
(DOC::HELP): Mention that XHTML strict cannot be achived,
because program was never designed for that.
(TestPage): Improved error handling.
(TestStyle): New.
(WriteFile): Accept ARRAY or SCALAR(string).
(TestPage): Added 4th test to demontrate external style file.
Removed unnecessary exmaples.
2007-02-27 Jari Aalto <jari aalto A T cante net>
* t2html.pl
(top level): added 'use locale'.
(MakeHeadingName): More words: from 5 to 8.
Also delete punctuation. Handle Latin-1 conversions
better.
(IsHeading): Use [:upper:] instead of [A-Z]
(XlatDirectives): Fixed empty #t2html-comment and number "1"
error in output.
2007-02-21 Jari Aalto <jari aalto A T cante net>
* t2html.pl (XlatUrl): If A HEREF was already handled then do
nothing. This fixes bug where XlatUrlInline() already
converted the URL.
2006-12-05 Jari Aalto <jaalto A T gamma tpu fi>
* t2html.pl (XlatWordMarkup): Corrected superscripting
in 'words[like this]'.
2006-10-27 Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (HtmlTable): EOF => "EOF". Update to new perl style.
(HtmlFixes): Add necessary double quotes for tags like:
<td class="type"> (was: <td class=type>) and
<table class="dashed"> (was: <table class=dashed>).
2006-10-26 Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl 1.178: All the <blockquote> elements were removed.
It is better to use CSS for marginal settings.
* t2html.pl (MakeToc): Moved <div class=toc> the the beginning
of '<h1>Table of contents</h1>'
(MakeToc): Move last </div> to the correct location.
2006-10-25 Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (DoLine): Added input arg $file. Use it to
contruct path name for relative #INCLUDE directive.
(Doline::#include): Parse current $file and derive
$dir to use for include.
(HandleOneFile): Send $file argument to DoLine().
(UrlInclude): Converted into HASH args. Added input arg
$dir.
2006-04-20 Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (HELP::OPTIONS): --css-font-type example
fixed. Added single quotes.
2006-02-25 Sat Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (sub MakeToc): 1.171 Added div around the TOC.
2006-02-23 Thu Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (sub CssData): 1.171 Added 2em margin to blockquote.
Added margin to PRE-tags.
2006-02-15 Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (HandleCommandLineArgs): Added missing backslash
reference-indicator to `$deleteDefault'.
2006-02-03 Fri Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (sub HandleCommandLineArgs): 1.168 Added support to
include multiple stylesheets by repeating --css-file option.
(sub MakeMetaTags): 1.168 Added \n at the end of
http-equiv="Content-Type" output.
(sub HtmlFixes): 1.168 There wa missing <p> after each paragraph,
Added fix for it.
(sub CssData): 1.168 Added CSS for 'table' element:
border: none;
width: 100%;
cellpadding: 10px;
cellspacing: 0px;
(sub HtmlTable): 1.168 Removed settings of table attributes like
cellpadding. Now controlled by stylesheet.
(sub HtmlFixes): 1.168 updated regexp, whic searched <table ...>
and attributes 'cellpadding' etc. which are now gone.
(sub DoLine): 1.168 The small !! marker that drew <hr> tag is
now defined in CSS with 'class=special'.
2006-01-25 Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (HtmlFixes): Fix double closing
</PRE></PRE> which was incorrect according to
http://validator.w3.org/
(MakeMetaTags): Use qq() instead of HERE document for
$charset.
(MakeToc): Added closing </ul> to the Table of Contents.
Now HTML 4.01 valid.
2005-05-29 Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (HELP::Embedding pictures): Corrected
'length=' to 'height=' for correct HTML picture
attribute.
2005-02-16 Jari Aalto <jari dot aalto A T cante dot net>
Updated Copyright year in all files.
2005-01-26 Wed Jari <jari dot aalto A T cante dot net>
* t2html.pl (CssData CSS:p.column6): Added Unix
font 'New Century Schoolbook'
(CssData CSS:shade-note-attrib): Added Unix
font 'New Century Schoolbook'
2005-02-08 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): Added new styles `color-blue-light',
`color-blue-medium'.
2005-02-06 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (PrintEnd): Changed lincence to Creative Commons.
2004-12-13 Mon Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub WriteFile): 1.161 Added binmode.
(LinkCache): Removed 'local *FILE', and used more modern 'open my
$FILE'Added binmode.
2004-11-30 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub MakeUrlPicture): 1.153 Picture text did not
contans spaces before the actual text. Like
'Pic 1.Text follows' => 'Pic 1. Text follows'.
2004-11-27 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl (XlatHtml2tag): Added 1/2-sign, law-sign,
pound-sign.
(XlatTag2html): Added 1/2-sign, law-sign,
pound-sign.
2004-11-16 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl
- Many, many changes. All HTMl tags are now lowercase due to
xhtml compatibility. The XHTM tags are now in a hash table
instead of hard coded to the program.
- Versions after this date are probably unstable and may produce
incorrect HTML.
(Getopt::Long): 1.153 Added proper HTML_DOCTYPE
for xhtml. Use <br /> for xhtml. Check
for simultaneous --html-frame and --Xhtml options. Only one
can be used.
(sub Initialize): 1.153 New variable %HTML_HASH.
(HELP::BUGS): 1.153 Added note that --Xhtml option is broken
and does not produce valid markup.
(sub GetFile): 1.153 Added -f $file check against accidental
directory read.
2004-11-15 Mon Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub InitArgs): 1.153 Removed `local @ARGV'.
2004-11-14 Sun Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HtmlFixes): 1.153 The special 'Note:' paragraph
at column 12 did not go through works markup substitution.
Fixed and added debug.
(HandleCommandLineArgs): 1.153 Added default value 'Note:' for
$$CSS_CODE_STYLE_NOTE.
2004-11-13 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub XlatWordMarkup): 1.147 Added staticBegQuote,
staticEndQuote.
(sub XlatWordMarkup): 1.147 Respect $type -basic.
(sub XlatWordMarkup): 1.147 Corrected $prefix to include
beginning-of-line anchor (^).
(sub XlatPicture): 1.147 Now markup can be used in #PIC
element text too. Added call to XlatWordMarkup().
2004-11-11 Thu Jari Aalto <jari dot aalto A T cante dot net>
-- output now conforms http://validator.w3.org/ as
HTML 4.01 Transitional. All checks passed.
* t2html.pl (CssData): Added `color-beige3' and changed color
of `shade-normal-attrib' color from #EFEFEF to #F1F1F1
which is slightly lighter
(HandleCommandLineArgs): 1.147 Added new global variable
`$HTML_TAG_PAGE'.
(PrintEnd): Do not output </P>, which is not legal HTML 4.01.
(MakeHeadingHtml): Do not output </P>, which is not legal
HTML 4.01.
(t2html::td:bgcolor): 1.147 Added newline after PRE tag.
Was: '<PRE> text here'.
(DoLine::staticPreMode): 1.147 Removed extra \n when html was
glued after <PRE>. This makes text to follow PRE immedately.
(sub HtmlCodeSectionStart): 1.147 Added \n after <PRE>.
(sub HtmlFixes): 1.147 The closing </PRE> tag was lost.
This was a bug in the s() operator. Now includes </PRE>
which is stored.
2004-11-06 Sat Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (ReadLinksLinkExtractor): 1.150 Added 'defined' test.
(Html2txt): 1.150 Added 'defined' test for $arrayRef.
(ReadLinksBasic): 1.150 Added 'defined' test for $arrayRef.
(LinkCheckMain): 1.150 Added 'defined' test for $arrayRef.
(PrintHtmlDoc): 1.150 Added 'defined' test for $arrayRef.
(KillToc): 1.150 Added 'defined' test for $arrayRef.
(DoLine): 1.150 Added 'defined' test for $arrayRef.
(HandleOneFile): 1.150 Added 'defined' test for $txt.
2004-11-05 Fri Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (PrintArray): 1.147 Added 'defined' test for
`$arrayRef'
(IsHTML): 1.150 Added 'defined' test
(WriteFile): 1.150 Added 'defined' test. Removed 'local *FILE' and
used new perl 'my $FILE'.
2004-11-04 Thu Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (CheckEmail): 1.147 Added debug. Removed
unnecessary variable $die.
2004-10-30 Sat Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (sub Help): 1.144 Incorrect variable name
$is => $id
2004-10-27 Wed Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub Help): 1.144 Added debug calls.
2004-10-26 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub InitArgs): Changed inpur paratemer call syntax:
now takes a HASH, nstead of ARRAY.
1.144 Check if `argvRef' is defined
before using it.
2004-10-23 Sat Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (HELP::ENVIRONMENT): 1.137 Added missing '=over
4' and +back directives.
2004-10-22 Fri Jari Aalto <jari dot aalto A T cante dot net>
* etc/makefile/vars.mk: (prefix): changed from /usr to
/usr/local which is more appropriate for 3rd party packages.
* t2html.pl (Getopt::DEBUG"): 1.137 Fixed warning
'Name Getopt::DEBUG used only once: ...'
2004-10-20 Wed Jari Aalto <jari dot aalto A T cante dot net>
* t2html.pl (sub XlatUrl): 1.137 No more add qq(target="_top")
to the A HREF, because Opera does not display it correctly.
(sub ReadLinksBasic): 1.137 BASE url compositon was wrong. Fixed.
2004-10-18 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (GetFile): Improved error message when file
couldn't be opened.
(Main): Added PANIC in case cwd() fails to return correct
directory.
2004-10-14 Jari Aalto <jari.aalto@cante.net>
* t2html.pl
(LinkCheckMain): Rename. Was LinkCheck().
(ReadLinksMain): Renamed. Was ReadLinks()
(ReadLinksBasic): Added variable $tag. Added IMG SRC and
LINK HREF checking. Added $root variable for links, that
have href=/this/page.htm. Multiple links at the same
line were not found; now fixed.
(LinkCheckExternal): Exclude example.net, .org, .biz and .info
(LinkCache): Removed $staticActive requirement from -add
Added imput parameter -code to accept HTTP return value.
Write out only URL links with code 200 (ok).
(LinkCheckLwp): Cache all URLs, so that if same URL
is seen again, no request is sent to remote site. The
previous status code is reused from cache. Return HTTP
error codes and not just 1 or 0 status code. Disabled
GET request and used solely HEAD.
2004-10-12 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub ReadLinksBasic): 1.132 Clarified regex by
introducing variables `urlset' and `quote'. Added one
more debug 5 level print.
(sub ReadLinksBasic): 1.132 Fixed mismatches like
http://example.org/links.html> => http://example.org/links.html
2004-09-11 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (PrintHtmlDoc): typos corrected in manual page.
2004-08-29 Sun Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub XlatWordMarkup): 1.131 Changed [ \t] to [\s]
which is more general. Code now uses more readable s{}{}gx and
new variable $prefix.
2004-08-12 Thu Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub ReadLinksBasic): 1.130 Incorrect regexp to find links.
Added \s to exclude characters that do not belong to address.
2004-06-28 Mon Jari Aalto <jari.aalto@cante.net>
* t2html.pl (Help): 1.129 Added more documentation to
--language option.
2004-03-30 Jari Aalto <jari.aalto@cante.net>
* t2html.pl
Extra newlines were removed from whole program. Sort of clean up work.
(CssData): Change word-small from 0.8 to 0.7, because
if the web page is zoomed 200% or more the font with 0.8 looks
too big.
(DoLine): Corrected bug, where right hand angle bracked and text
after it in tag #URL-AS-IS was not outputted. The regexp must
include >, not exclude it in output.
2004-02-11 Wed Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub IsHeading): 1.122 Wrong regexp did not
recognize heading without numbering. "Like This", but
wanter "1.1 Like This".
(HandleCommandLineArgs): 1.123 Options --css-code-bg and
--css-code-bg2 has mistakenly taken option `:s'.
Removed.
2004-02-06 Fri Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData() => .shade-note-attrib): Added
`font-family' and `font-size'. It is not 0.8 smaller.
(sub InitArgs): 1.121 Fixed local Hash() function.
Always list @values was returned and then assignef to
scalar. That caused the count of members. Now return
single scalar. This fixes E.g <TITLE>1</TITLE> problem.
2004-02-03 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub XlatTag2html): 1.121 Special HTML
entities that had number at the end, like ³
were translated incorrectly as &sup3;. Fixed.
2004-02-02 Mon Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub DoLineUserTags): 1.121 Added debug.
(sub XlatTag2htmlSpecial): 1.121 Added debug.
(sub XlatTag2html): 1.121 Added debug.
(sub XlatPicture): 1.121 Added debug.
2004-01-27 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl
- Added many new lines of debug code all over the program.
(Getopt::Long): 1.120 Option --Auto-detect
mistakenly had `:s' option request which ate the file
name following the option.
(sub IsHTML): 1.120 Searching first 100 for <HTML> is
too much. Reduced to 10 lines.
2004-01-24 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub Main): 1.117 Hash('option') CAll did not check
values correctly. It always returned try, so all user's command
line options were cleared. The Hash-function must not return
'undef' or any other values, because it is stored to an array.
The only correct value to return is empty list (). This fix
corrects e.g. option --name-uniq.
2003-12-14 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (XlatDirectives): Typo corrected
if $line = /\S/ => if $line =~ /\S/
2003-12-05 Fri Jari Aalto <jari.aalto@cante.net>
* t2html.pl (XlatDirectives): 1.116 Incorrectly required
that all #t2html-<directive> tags start from left. Regexp
included '^\s*'. The anchor is now removed.
2003-11-11 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (XlatDirectives): If the directove line was
empty line plain '#t2html-comment' the line was not
stripped. Now fixed. No directives are left in text.
2003-09-26 Fri Jari Aalto <jari.aalto@cante.net>
* t2html.pl (unless ( /\S/ )): 1.115 --script-file
no longer dies on error if file was not found.
New option --css-file to import external
2003-09-21 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (AcceptUrl($)): 'foo' excluded also valid
links like 'foorum'. Fixed by aadding \b.
2003-08-19 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub ReadLinksBasic): 1.113 the BASE value
included extra /, which made all links invalid. Now regexp
correctly removed only trailing slash. Ignore `mailto'
HREFS.
2003-08-17 Sun Jari Aalto <jari.aalto@cante.net>
* t2html.pl
(Help): New user option #INCLUDE-<url>. With this is is
possible to include other files into this current one. Either
via http://address or just plain files. The included portion
is copied to the point verbatim. No translations happen.
(sub RemoveHTMLaround): 1.109 New.
(sub UrlInclude): 1.109 New.
(sub EnvExpand): 1.112 New.
2003-08-12 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): 1.107 Changed colors to dimmer.
[samp.word] is no longer `blue', but lighter #4C9CD4 + bold.
[shade-note-attrib] is no longer #E0E0F0 but lighter #E5ECF3.
(CheckModuleLWP): Removed.
(CheckModuleLinkExtractor): Removed.
(ReadLinksLinkExtractor): New. If HTML::LinkExtractor is around,
use it and skip program's own imperfect link extracting routine.
(TestDriverLinkExtractor): 1.108 New.
2003-08-03 Sun Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub GetFile): 1.106 HTTP get did not preserve newlined.
Added for-loop to split().
(sub ReadLinks): 1.106 Whole logic rewritten. There were serious
URL link reading errors in this whole function. The current
implementation is not very robust, but should be adequate for simple
external links (http://). Added support for detecting local
'A HREF=local.html' links by prepending BASE to them.
2003-07-31 Thu Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub HandleCommandLineArgs): 1.103 Added empty HOME
test.
(Top level;): 1.103 Added qw($HOME), to satisfy Windows users,
who do not have that set. Bug reported by vimma@jippii.fi
(sub Help): 1.103 Documented new option --button-heading-top.
Added new topic `BUGS'.
(sub HandleCommandLineArgs): 1.103 New option `button-heading-top'.
(sub MakeHeadingHtml): 1.103 Added support for
$OPT_HEADING_TOP_BUTTON (The feature was previously commented out).
(sub HandleCommandLineArgs): 1.103 --Version option now prints
to stdout instead of stderr. In addition, print $PROGRAM_NAME;
full path.
(sub MakeHeadingHtml): 1.104 Now the [toc] link respects
the --Language setting.
2003-07-22 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub MakeToc): 1.102 Simplified FRAMESET main() html
file, so that there is no CSS any more, because it is only needed
in the xxxx-body.html file.
2003-05-02 Fri Jari Aalto <jari.aalto@cante.net>
RELEASED: 2003.0502
* t2html.pl (sub XlatUrlInline): 1.100 New feature, see
inline #URL from the --help section.
(sub XlatUrl): 1.100 Added Backward lookahead test so that
XlatUrlInline() cases are skipped.
2003-01-24 Fri Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub ReadLinks): 1.97 Do not check links that are
prefixed with a minus character, like -http://this.is/example.html
2003-01-12 Sun Jari Aalto <jari.aalto@cante.net>
* t2html.pl (DoLine): 1.97 Corrected #URL-AS-IS regexp. Do not
count in the last character `>', like in <#URL-AS-IS-this.html>
2003-01-02 Thu Jari Aalto <jari.aalto@cante.net>
* t2html.pl (MakeHeadingHtml): 1.97 If --as-is option is active,
do not output <HR> code at all. If --Xhtml option has been give,
output <HR></HR>
2002-12-22 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (MakeHeadingName): Multiple underscores
are squeezed to one.
2002-11-22 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): Missing required semicolon from
CSS defineition at `p.column7' => `font-weight: bold;'
2002-10-10 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (MakeUrlPicture): Changed picture ALT text. Now
display the image name instead of the description text.
2002-10-03 Thu Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): 1.95 Changed quote7 CSS spec: 0.7 => 1em.
2002-09-17 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HtmlFixes): 1.94 Remove P-tag just before
<UL> and <OL>. Not needed.
(MakeHeadingHtml): 1.94 Added special character handling to header
string. Call `XlatTag2htmlSpecial'.
(DoLine): 1.94 Fixed mysterious '--' which was not converted into
–. Added to the top of function, next to
(XlatWordMarkup): 1.94 Added return immediately if ARG is empty
(XlatTag2html): 1.94 Added return immediately if ARG is empty
(XlatTag2htmlSpecial): 1.94 Added return immediately if ARG is empty
2002-09-16 Mon Jari Aalto <jari.aalto@cante.net>
* t2html.pl (t2html::td:bgcolor): Corrected 'else if' => 'elsif'
2002-09-01 Sun Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): 1.90 Changed quote7 from
1.2em to 0.7em. The font is not that loud any more.
2002-08-31 Sat Jari Aalto <jari.aalto@cante.net>
* examples/: The other test files (2, 3) were not
identical to (1). Copied.
* t2html.pl (HandleCommandLineArgs): 1.90 Removed
non-descriptive --Butt, --Buttp, --Butt options.
Use the long names instead.
(HandleCommandLineArgs): 1.90 Removed
non-descriptive --mk and --md options. Use
--meta-description and --meta-keywords
instead.
2002-08-30 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): Added 'color: Navy;' to many
defaul CSS style. Most useful in #t2html:: code column 12
directives.
* t2html.pl (HtmlFixes): <PRE> code cleanup required
in whitespace before newline. This was incorrect. There
can be zero spac before newline. Fixed. In layout, this
causes extra newline just before CODE column 12.
2002-08-30 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (__DATA__): Changed default text: wording and
some pragraphs rewritten.
2002-08-30 Jari Aalto <jari.aalto@cante.net>
* admin.bashrc (function sfperl2html_docexamples ()):
Example 4 was not generated correctly. Bash gor mixed up
with the embedded single quotes in definition
--css-code='(?:Note|Notice)' => reduced to simple
--css-code=Note: which does not use single quotes. This
is only a problem inside bash command file, which uses `eval'.
2002-08-28 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (XlatTag2htmlSpecial): New.
2002-08-27 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HtmlFixes): Corrected <PRE> tag fix to delete
all newlines after the tag. This shortens the gap that is shown
at column from regular text.
(XlatWordMarkup): Corrected superscripting: special characters
are ignore '\"!?;,.(<> before superscript.
2002-08-19 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (CssData): Redesigned styles`table.solid',
new style `table.dashed'.
(__DATA__): Added new table rendering examples for --test-page.
(Help): Added POD documentation to new section
`Controlling CSS generation (HTML tables)'. Long story
about how <TABLE> and <TD> tags can be controlled.
* html/index.html: Added news for 2002-08-19 version, which
contains lot of impreovements.
* examples/t2html.pl-1.txt: Spell cheked file with
Emacs M-x flyspell-buffer.
(Table rendering examples): New section to demontrate the
new table controlling features.
2002-08-18 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HtmlFixes): Whent the new feature --css-code-note
was put to a test (big documnet), it had serious flaws in
regexps (too greedy). Fixed. Now coloring should be ok.
ADDEd NEW FEATURES. It is now posisble to say exactly what kind of
table redering is wanted. See manual for directive #t2html::
2002-08-18 Jari Aalto <jari.aalto@cante.net>
KIT RELEASED 2002.0818
* t2html.pl
- NEW FEATURE: It is possible to mark special 'notice' paragraphs
with option --css-code-note=REGEXP. See --test-page for
demonstration.
(DATA): Example updated.
(HtmlFixes): New features. Now render with different color
if there is special keyword.
(HtmlTable): New.
(HandleCommandLineArgs): Added documentation for
options --css-code-bg and --css-code-note=REGEXP
(HandleCommandLineArgs): Added support new option
--css-code-note=REGEXP
2002-08-14 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (Initialize): 1.76 Changed all conatant names
to uppercase. E.g. OutputSimple => OUTPUT_TYPE_SIMPLE.
Changed contant values to strings also, and removed
non-descriptive numbers (used to be type 1, now uses bareword
-simple)
2002-08-13 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (XlatHtml2tag): Added more conversion: Swedish,
Norweigian, German.
(MakeHeadingName): With foreign languages, like in Finnish the
Heading may contain non-7bit characters and the NAME tag
generated is composed form ä, which is not good.
Not substitutes ä with simple 'a'. Same for
Swedish, Norweigian, and German.
(UpdateHeaderArray): Adde dmore debug. The substitution
removed crucial & and ; characters that delimit special
HTML tokens. Do not remove those, they are handled elswhere.
(HandleCommandLineArgs): environment variable $EMAIL is
no longer used. User must supply --email EMAIL.
(HandleCommandLineArgs): New opion --Auto-detect. Only files
that 'should be converted' are converted to HTML.
(OutputDir): Check if OUTPUT_DIR is defined.
(PrintEndSimple): Check OPT_EMAIL for value, before
inderting <META HTTP-EQUIV=Made CONTENT=mailto: ... >
(MakeMetaTags): Check $email and $author for values before
using them.
(HeaderArrayClear): New.
(HandleOneFile): Added call to HeaderArrayClear()
2002-08-08 Thu Jari Aalto <jari.aalto@cante.net>
* admin.bashrc (function sfperl2html_ask ()): 1.6 New.
(function sfperl2html_ask ()): 1.6 New.
(function sfperl2html_release_check ()): 1.6 New.
(function sfperl2html_release ()): 1.6 Call
sfperl2html_release_check()
2002-08-07 Wed Jari Aalto <jari.aalto@cante.net>
* admin.bashrc (function sfperl2html_html ()): 1.5 Renamed.
(function sfperl2html_doc ()): 1.5 Renamed.
* t2html.pl
- NEW REVOLUTIONARY FEATURE ADDED.
- It is now possible to embed
command line options directly into text file. Like if you
would like to set Code sections grey-shade on, Add line:
#T2HTML-OPTION --css-code-bg
#T2HTML-OPTION --as-is
Ran through Perl 5.8.0 -w => fixed errors.
(HandleCommandLineArgs): Added
`outputUndefined' to set initial value of OUTPUT_TYPE.
(DoLine): 1.75 in 'study line' Move regexp /^( +)[^ ]/
inside if. It may not necessarily match. Initialise
$spaces to 0.
(CssData): 1.75 Initialize $ARG if not passed to function.
(JavaScript): 1.75 Check defined $JAVA_CODE.
(PrintEnd): 1.75 Check defined $file.
(PrintEnd): 1.75 Set $url to initial value.
(PrintStart): 1.75 initialise @ret;
(MakeMetaTags): 1.75 initialise variables: author, email,
kwd, desc
(CssData): 1.75 Check defined $CSS_FONT_TYPE
(PrintStart): 1.75 initialise bodyAttr, email and all %arg
parameters.
(PrintStart): 1.75
(DoLine): 1.75 Correctd staticPreMode => $staticPreMode
(XlatTag2html): 1.75 Do not translate " in PURE HTML
directives.
(Main): 1.75 Created local function Arr() to access
new data structure.
(XlatDirectives): 1.75 New data structure. The hash VALUE is
now anonymous array.
(GetFile): 1.75 Do not exit from subroutine via `next'
(PrintArray): 1.75 Wrong offset. $count must be -1, due to zero
offset.
(MakeHeadingHtml): 1.75 Initalised variable $button.
(MakeMetaTags): 1.75 Changed URL to sourceforge.
(MakeToc): 1.75 Initialised variables $stylee, $styleb
(MakeToc): 1.75 Corrected two calls to MakeMetaTags(). Must be hash.
(Main): 1.75 Fixed multiple passig of $verb to command line
parser. It must be reseted to original value in InitArgs()
(MakeToc): 1.75 Corrected <A NAME=ref> reference generation.
If there is o frame name, do not add it to the <A NAME>.
(HtmlFixes): 1.75 New. Now --css-code-bg works correctly.
(HtmlCodeSectionStart): 1.75 Added <PRE> inside <TABLE>
so that -css-code-bg works correctly.
(HandleCommandLineArgs): 1.75 Added options
--t2html-tags and turn off option --not2html-tags
(PrintHash): 1.75 Added ability to print anonymous arrays
(HandleCommandLineArgs): 1.75 Fixed bug where --options-file=FILE
was only allowed option. Now rest of the options in ARGV are merged
with the options from file.
(XlatTag2html): 1.75 Fixed << and >> shell redirection
parsing. They must be translated i <<TAG>>, but they should
not be translated in `cat >> file'.
(XlatTag2html): 1.75 Added German translations Uml and SS.
2002-08-05 Mon Jari Aalto <jari.aalto@cante.net>
* admin.bashrc (function sfperl2htmldoc ()): More better
perl file hanfling. Added two for-loops. Last one removes
unneeded POD temporary files.
(function sfperl2htmlinit ()): Added SF_UPLOAD_DIRECTORY
* t2html.pl (HandleOneFile): Changed debug to verb when
so that --Out will print where the destination file
is outputted.
(HandleCommandLineArgs): OUTPUT_AUTOMATIC (--Out) must be turned
also on if user supplies --Out-dir.
(CssData): Removed `HIDE BROWSER' tags because they interfred
in CSS handling (IE 5.5). Corrected code that added semicolon
at the end of SIZE and FONT styles. (added double ;;)
(HandleCommandLineArgs): No longer set default
CSS_FONT_SIZE, but let the browser decide font size.
* html/index.html: Removed Copyright year
from the end of page.
* /html/index.html (<H1> Links and
download ): Added CHANGELOG printing from CVS.
Rewote teh example perl commands. Had to copy files from
doc/examples/ to doc/html directory, because otherwise
it is not possible to locally browse doc/html/index.html with
the example links in the page. Updated NEWS section to mention
about new #T2HTML features. Chnages CPAN text to say, that
it no longer the primary source - warning, that the CPAN
file may not be up to date. Removed copyright year from the end
of file.
2002-08-03 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HandleCommandLineArgs): Die, if library LWP
is not available and user requests link check.
2002-08-02 Fri Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HandleCommandLineArgs): Incorect setting of $verb.
couldn't pass --verbose 3, because it was set to 0. fixed.
(HandleCommandLineArgs): Added to the documentation
Seaction about extra `Directives' that can be embedded inside
file with tag #T2HTML-<directove>
(PrintStart): Added support for many new input parameters instead
of using globals.
(PrintHtmlDoc): Added support for many new input parameters instead
of using globals.
(HandleOneFile): Added support for many new input parameters instead
of using globals.
(Main): Added reading directove codes from source file.
2002-07-26 Jari Aalto <jari.aalto@cante.net>
* t2html.pl (Help): Ran --help-man and fixed the documentation,
because too many paragraphs were too long when read through
<nroff -man t2html.1>
2002-05-07 Tue Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub XlatTag2html): 1.69 Added support for embedding
HTML code into the text. Now surround HTML code with double-
lt-gt tags in format: <<HTML>>
2002-04-28 Sun Jari Aalto <jari.aalto@cante.net>
* t2html.pl (HandleCommandLineArgs): 1.68 Added new option
--help-man
(sub Help): 1.68 Now print Unix manual page with argument
-man
* admin.bashrc (function sfperl2htmldoc): 1.2 New.
Updates the t2html.html page and now generates Unix
manuala page t2html.1
2002-04-20 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub XlatTag2html): 1.66 Added lot more HTML
token conversions. Copyright sigh (C), Registered trade
mark sign (R), Plus minus sign +-, long dash --. Added
support to embed direct html tokes like ×
2002-02-27 Wed Jari Aalto <jari.aalto@cante.net>
* t2html.pl: 1.62 Added superscript feature: Person said[1].
the Bracket MUST BE next to the word.
2002-02-04 Mon Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub OutputDir): 1.62 Corrected --Out
options. Mistakenly put files to /, now looks at
cwd().
2002-02-02 Sat Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub MakeToc): 1.61 Converted to use HASH
input parameters.
(sub LinkCheckExternal): 1.61 Converted to use HASH
input parameters.
(sub LinkCheck): 1.61 Converted to use HASH
input parameters.
(sub MakeMetaTags): 1.61 Converted to use HASH
input parameters.
(sub PrintStart): 1.61 Converted to use HASH
input parameters.
(sub PrintEnd): 1.61 Converted to use HASH
input parameters.
(sub PrintHtmlDoc): 1.61 Converted to use HASH
input parameters.
(sub MakeHeadingHtml): 1.61 Converted to use HASH
input parameters.
(sub DoLine): 1.61 Converted to use HASH
input parameters.
(sub HandleOneFile): 1.61 Converted to use HASH
input parameters.
2002-02-01 Fri Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub Main): 1.61 Split into smaller parts.
(sub GetFile): 1.61 New.
(sub OutputDir): 1.61 New.
2002-01-31 Thu Jari Aalto <jari.aalto@cante.net>
* t2html.pl
-- Many big internal changes
(sub HandleCommandLineArgs): 1.57 Added
`Link-cache' options.
(sub Help): 1.57 Wrote `Link-cache' docs.
(sub Min): 1.57 New.
(sub IsHTML): 1.57 New.
(sub LinkCache): 1.57 New. Now can use local cache for
OK checked urls.
(sub LinkHash): 1.57 New.
(sub LinkCheckLwp): 1.57 New. More abstraction.
(sub LinkCheckExternal): 1.57 Exploded function to smaller pieces.
(sub LinkCheck): 1.57 Converted to use HASH function arguments.
(sub Main): 1.57 Send more globals to HandleOneFile().
(sub HandleOneFile): 1.57 Converted to use HASH function arguments.
emoved globals due to new architechture.
2002-01-24 Thu Jari Aalto <jari.aalto@cante.net>
* t2html.pl (sub LinkCheckExternal): 1.57 Added
reegxp to exclude some non-readl links like
example.com and {foo,bar,baz}.site.com.
|