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 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
|
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename templates_parser.info
@settitle Templates Parser User's Guide
@setchapternewpage off
@syncodeindex fn cp
@iftex
@afourpaper
@end iftex
@c ----------------------------------------- MACRO
@c Macro used for all Templates_Parser examples
@c No cartouche on HTML as this is part of the css
@macro TPEXP{TXT}
@ifhtml
@smallexample
@group
\TXT\
@end group
@end smallexample
@end ifhtml
@ifnothtml
@cartouche
@smallexample
@group
\TXT\
@end group
@end smallexample
@end cartouche
@end ifnothtml
@end macro
@c ----------------------------------------- END MACRO
@titlepage
@title Templates Parser User's Guide
@subtitle Document revision level $Revision: 1.21 $
@subtitle Date: @today{}
@author AdaCore
@sp 1
@url{http://libre.act-europe.fr/aws}
@vskip 0pt plus 1filll
@page
Copyright @copyright{} 1999-2004, Pascal Obry
Copyright @copyright{} 2005, AdaCore
@*
This document may be copied, in whole or in part, in any form or by any
means, as is or with alterations, provided that (1) alterations are clearly
marked as alterations and (2) this copyright notice is included
unmodified in any copy.
@end titlepage
@ifhtml
@c title page for the HTML documentation
@html
<font size="+2">
<p>Document revision level $Revision: 1.21 $
<p>Date: @today{}
<p>AdaCore
</font>
<font size="+1">
<p>@url{http://libre.act-europe.fr/aws}
</font>
@page
@end html
@end ifhtml
@finalout
@contents
@ifinfo
@node Top
@top Templates Parser
@menu
* Introduction::
* What is a tag ?::
* Variable tags::
* Translations::
* Tag statements::
* Other services::
* Last notes::
* Templates_Parser API Reference::
* Index::
@end menu
@end ifinfo
@c ----------------------------------------------------------------------
@node Introduction
@chapter Introduction
@noindent
First of all this package is distributed under the GNAT modified GNU GPL.
@noindent
The templates parser package has been designed to parse files and to
replace some specific tags into these files by some specified values.
@noindent
The main goal was to ease the development of Web servers. In CGI
(@i{Common Gateway Interface}) mode you have to write the HTML page in
the program (in Ada or whatever other languages) by using some specific
libraries or by using only basic output functions like Ada @code{Put_Line} for
example. This is of course not mandatory but by lack of a good library
every Web development end up doing just that.
@noindent
The main problems with this approach are:
@itemize @bullet
@item It is painful to have to recompile the program each time you have
a slight change to do in the design (center an image, change the border
width of a table...)
@item You have the design and the program merged together. It means that
to change the design you must know the Ada language. And to change the
Ada program you need to understand what is going on with all these
inline HTML command.
@item You can't use the nice tools to generate your HTML.
@end itemize
@noindent
With the templates parser package these problems are gone. The code and
the design is @b{completely} separated. This is a very important
point. PHP or JSP have tried this but most of the time you have the
script embedded into the Web template. And worst you need to use another
language just for your Web development.
@itemize @bullet
@item The HTML page is separated from the program code. Then you can
change the design without changing the code. Moreover when you fix the
code you don't have to handle all the specific HTML output. And you do
not risk to break the design.
@item It is easier to work on the design and the program at the same time
using the right people for the job.
@item It reduces the number of @i{edit/build/test} cycles. Writing HTML
code from a program is error prone.
@item It is possible to use standard tools to produce the HTML.
@item You don't have to learn a new language.
@item The script is Ada, so here you have the benefit of all the Ada power.
@end itemize
@noindent
In fact, the Ada program now simply computes some values, gets some data
from a database or whatever and then calls the templates parser to output
a page with the data displayed. To the templates parser you just pass
the template filename and an associative table.
@noindent
It is even more convenient to have different displays with the same set
of data. You just have to provide as many templates as you like.
@c ----------------------------------------------------------------------
@node What is a tag ?
@chapter What is a tag ?
@noindent
A tag is a string found in the template page and surrounded by a specific set
of characters. The default is @b{@@_} at the start and @b{_@@} at the
end of the tag. This default can be changed using @code{Set_Tag_Separators}
routine, @pxref{Templates_Parser API Reference}. Note that it must be changed
as the first API call and should not be changed after that.
@noindent
The tag will be replaced by a value specified in a translation table.
@noindent
For example with the template file @file{demo.tmplt}:
@include demo.tmplt.texi
@noindent
Using the following code @file{demo.adb}:
@include demo.adb.texi
@noindent
The program will print out :
@include demo.adb.res
@noindent
This is a very simple example, but you'll see that there is a lot of
powerful construct that you can use into a template file.
@c ----------------------------------------------------------------------
@node Variable tags
@chapter Variable tags
@menu
* Discrete Boolean Composite::
* Filters and Attributes::
* Other variable tags::
@end menu
@node Discrete Boolean Composite
@section Discrete Boolean Composite
@noindent
A variable tag is a specific string to be replaced by the template
parser. There is three kinds of variable tags: @b{discrete}, @b{boolean},
@b{composite}. All variables tags are built using the @code{Assoc}
constructors, @pxref{Templates_Parser API Reference}.
@table @b
@item discrete
@cindex Tag, discrete
We have already seen the discrete variable tag. This is a variable which
has only one value. This value will replace the tag in the template
file. Discrete variable constructors are provided for String,
Unbounded_String and Integer (see Assoc routines).
@item boolean
@cindex Tag, boolean
A boolean tag as a value of TRUE or FALSE. This value will replace the
tag in the template file. These tags can also be used with the @code{IF} tag
statement.
@item composite (Tag)
@cindex Tag, composite
A composite tag is a variable which contains a set of values. These kind of
variables will be used with the @code{TABLE} tag statement
@pxref{TABLE tag statement}. Outside a table statement it will be
replaced by all values concatenated with a specified separator. See
@code{Set_Separator} routine. Such tag are variables declared on the
Ada program a @code{Templates_Parser.Tag} type.
@noindent
There is many overloaded constructors to build a composite tags (see "+"
operators). The "+" operators are used to build a Tag item from
standard types like String, Unbounded_String, Character, Integer and
Boolean.
@noindent
To add items to a Tag many overloaded operators are provided (see
"&" operators). The "&" operators add one item at the start or the end
of the tag, it is possible to add directly String, Unbounded_String,
Character, Integer and Boolean items using one of the overloaded operator.
@noindent
A tag composed of only boolean values TRUE or FALSE is called a
Boolean composite tag. This tag is to be used with a @code{IF} tag statement
inside a @code{TABLE} tag statement.
@noindent
It is possible to build a composite tag having any number of nested
level. A vector is a composite tag with only one level, a matrix is a
composite tag with two level (a Tag with a set of vector tag).
@noindent
Two aliases exists for composite tags with one or two nested level,
they are named @code{Vector_Tag} and @code{Matrix_Tag}. In the suite
of the document, we call @i{vector tag} a tag with a single nested
level and @i{matrix tag} a tag with two nested level.
@end table
@node Filters and Attributes
@section Filters and Attributes
@cindex Filters
@noindent
All kinds of variable tag can have one or more function-prefix or
filter. The function prefix is applied to the variable value. The
syntax is
@code{@@_[[FILTER_NAME[(parameter)]:]FILTER_NAME[(parameter)]:]SOME_VAR_@@}.
Filters are evaluated from right to left.
@noindent
Composite tags can also have attributes. Attributes are placed
after the tag name and preceded with a simple quote.
@code{@@_SOME_VAR['ATTRIBUTE_NAME]_@@}. It is possible to use filters
and attributes together. In that case the attribute is first evaluated and
the result is passed-through the filters.
@menu
* Filters::
* User defined filters::
* Attributes::
@end menu
@node Filters
@subsection Filters
@noindent
The current supported filters are:
@table @code
@item "+"(@i{N}) or ADD(@i{N})
@cindex Filter, "+"
Add N to variable and return the result. If the current variable value
is not a number it returns the empty string. N must be a number or a
discrete tag variable whose value is a number.
@item "-"(@i{N}) or SUB(@i{N})
@cindex Filter, "-"
Subtract N to variable and return the result. If the current variable value
is not a number it returns the empty string. N must be a number or a
discrete tag variable whose value is a number.
@item "*"(@i{N}) or MULT(@i{N})
@cindex Filter, "*"
Multiply N with variable and return the result. If the current variable value
is not a number it returns the empty string. N must be a number or a
discrete tag variable whose value is a number.
@item "/"(@i{N}) or DIV(@i{N})
@cindex Filter, "/"
Divide variable by N and return the result. If the current variable value
is not a number it returns the empty string. N must be a number or a
discrete tag variable whose value is a number.
@item ABS
@cindex Filter, ABS
Returns the absoute value.
@item ADD_PARAM(@i{NAME[=VALUE]})
@cindex Filter, ADD_PARAM
Add a parameter into an URL. This routine adds the '?' and '&'
character if needed. @i{VALUE} can be a tag variable name.
@item BR_2_EOL(@i{EOL})
@cindex Filter, BR_2_EOL
Replaces all occurrences of the @code{<br>} HTML tag by a line terminator
determined by EOL. EOL must be either CR (Carriage-Return), LF (Line-Feed),
LFCR (Line-Feed followed by Carriage-Return) or CRLF (Carriage-Return
followed by Line-Feed).
@item BR_2_LF
@cindex Filter, BR_2_LF
Shortcut for BR_2_EOL(LF).
@item CAPITALIZE
@cindex Filter, CAPITALIZE
Put all characters in the variable in lower case except characters after
a space or an underscore which are set in upper-case.
@item CLEAN_TEXT
@cindex Filter, CLEAN_TEXT
Keep only letters and digits all others characters are changed to
spaces.
@item COMA_2_POINT
@cindex Filter, COMA_2_POINT
Replaces all comas by points.
@item CONTRACT
@cindex Filter, CONTRACT
Converts any suite of spaces by a single space character.
@item DEL_PARAM(@i{NAME})
@cindex Filter, DEL_PARAM
Delete parameter NAME from the URL. This routine removes the '?' and '&'
character if needed. Returns the input string as-is if the parameter
is not found.
@item EXIST
@cindex Filter, EXIST
Returns @b{True} if variable is set and has a value different that the null
string and @b{False} otherwise.
@item FILE_EXISTS
@cindex Filter, FILE_EXISTS
Returns @b{True} if variable is set and has a value that corresponds
to a filename present on the file system and @b{False} otherwise.
@item FORMAT_DATE(@b{FORMAT})
@cindex Filter, FORMAT_DATE
Returns the date with the given format. The date must be in the ISO
format (YYYY-MM-DD) eventually followed by a space and the time with
the format HH:MM:SS. If the date is not given in the right format it
returns the date as-is. The format is using the GNU/date description
patterns as also implemented in @code{GNAT.Calendar.Time_IO}.
@table @i
@item Characters:
@table @b
@item %
a literal %
@item n
a newline
@item t
a horizontal tab
@end table
@item Time fields:
@table @b
@item %H
hour (00..23)
@item %I
hour (01..12)
@item %k
hour ( 0..23)
@item %l
hour ( 1..12)
@item %M
minute (00..59)
@item %p
locale's AM or PM
@item %r
time, 12-hour (hh:mm:ss [AP]M)
@item %s
seconds since 1970-01-01 00:00:00 UTC (a nonstandard extension)
@item %S
second (00..59)
@item %T
time, 24-hour (hh:mm:ss)
@end table
@item Date fields:
@table @b
@item %a
locale's abbreviated weekday name (Sun..Sat)
@item %A
locale's full weekday name, variable length (Sunday..Saturday)
@item %b
locale's abbreviated month name (Jan..Dec)
@item %B
locale's full month name, variable length (January..December)
@item %c
locale's date and time (Sat Nov 04 12:02:33 EST 1989)
@item %d
day of month (01..31)
@item %D
date (mm/dd/yy)
@item %h
same as %b
@item %j
day of year (001..366)
@item %m
month (01..12)
@item %U
week number of year with Sunday as first day of week (00..53)
@item %w
day of week (0..6) with 0 corresponding to Sunday
@item %W
week number of year with Monday as first day of week (00..53)
@item %x
locale's date representation (mm/dd/yy)
@item %y
last two digits of year (00..99)
@item %Y
year (1970...)
@end table
@item By default, date pads numeric fields with zeroes. GNU date recognizes the following nonstandard numeric modifiers:
@table @b
@item - (hyphen)
do not pad the field
@item _ (underscore)
pad the field with spaces
@end table
@end table
@item FORMAT_NUMBER
@cindex Filter, FORMAT_NUMBER
Returns the number with a space added between each 3 digits
blocks. The decimal part is not transformed. If the data is not a
number nothing is done.
@item IS_EMPTY
@cindex Filter, IS_EMPTY
Returns @b{True} if variable is the empty string and @b{False} otherwise.
@item LF_2_BR
@cindex Filter, LF_2_BR
Replaces all occurrences of the character LF (Line-Feed) by a
@code{<br>} HTML tag.
@item LOWER
@cindex Filter, LOWER
Put all characters in the variable in lower-case.
@item MATCH(@i{REGEXP})
@cindex Filter, MATCH
Returns @b{True} if variable match the regular expression passed as
filter's parameter. The regular expression is using a format as
found in @file{gawk}, @file{sed} or @file{grep} tools.
@item MAX(@i{N})
@cindex Filter, MAX
Returns the maximum value between the variable and the parameter.
@item MIN(@i{N})
@cindex Filter, MIN
Returns the minimum value between the variable and the parameter.
@item MOD(@i{N})
@cindex Filter, MOD
Returns variable modulo N. If the current variable value is not a
number it returns the empty string. N must be a number or a
discrete tag variable whose value is a number.
@item NEG
@cindex Filter, NEG
Change the sign of the value.
@item NO_DYNAMIC
@cindex Filter, NO_DYNAMIC
This is a special command filter which indicates that the tag must not
be searched in the dynamic tags. See @pxref{Lazy_Tag}. @code{NO_DYNAMIC} must
be the first filter. This filter returns the value as-is.
@item NO_DIGIT
@cindex Filter, NO_DIGIT
Replaces all digits by spaces.
@item NO_LETTER
@cindex Filter, NO_LETTER
Replaces all letters by spaces.
@item NO_SPACE
@cindex Filter, NO_SPACE
Removes all spaces in the variable.
@item OUI_NON
@cindex Filter, OUI_NON
If variable value is @b{True} it returns @b{Oui}, if @b{False} it
returns @b{Non}, otherwise does nothing. It keeps the way @b{True/False} is
capitalized (all upper, all lower or first letter capital).
@item POINT_2_COMA
@cindex Filter, POINT_2_COMA
Replaces all comas by points.
@item REPEAT(@i{N})
@cindex Filter, REPEAT
Returns @i{N} times the variable, @i{N} being passed as filter's parameter.
@i{N} must be a number or a discrete tag variable whose value is a number.
@item REPEAT(@i{STR})
@cindex Filter, REPEAT
This is the second @code{REPEAT} form. In this case @i{STR} is repeated
a number of time corresponding to the variable value which must be a number.
@item REPLACE(@i{REGEXP}[/@i{STR}])
@cindex Filter, REPLACE
This filter replaces @b{\n} (where @i{n} is a number) @i{STR}'s
occurences by the corresponding match from @i{REGEXP}. The first match
in @i{REGEXP} will replace @b{\1}, the second match @b{\2} and so
on. Each match in @i{REGEXP} must be parenthesized. It replaces only
the first match. @i{STR} is an optional parameter, its default value
is @b{\1}. It is possible to espace characters in @i{STR} to avoid
parsing confusions. This is required if you need to have @b{@@_} or
@b{_@@} or a parenthesis in @i{STR} for example. @i{STR} can be a tag
variable name. @i{STR} can contain the following escaped characters :
@b{\n} Carriage Return, @b{\r} Line Feed and @b{\t} for Horizontal
Tabulation.
@item REPLACE_ALL(@i{REGEXP}[/@i{STR}])
@cindex Filter, REPLACE_ALL
Idem as above but replaces all occurences.
@item REPLACE_PARAM(@i{NAME[=VALUE]})
@cindex Filter, REPLACE_PARAM
This is filter is equivalent to
ADD_PARAM(@i{NAME[=VALUE]}):DEL_PARAM(@i{NAME}). @i{VALUE} can be a
tag variable name.
@item REVERSE
@cindex Filter, REVERSE
Reverse the string.
@item SIZE
@cindex Filter, SIZE
Returns the size (number of characters) of the string value.
@item SLICE(@i{x .. y})
@cindex Filter, SLICE
Returns the sub-string starting from position x and ending to position
y. Note that the string to slice always start from position 1.
@item TRIM
@cindex Filter, TRIM
Removes leading and trailing spaces.
@item UPPER
@cindex Filter, UPPER
Put all characters in the variable in upper-case.
@item WEB_ENCODE
@cindex Filter, WEB_ENCODE
As WEB_ESCAPE and also encodes all non 7-bit characters and non
printable characters using @b{&#xxx;} HTML encoding.
@item WEB_ESCAPE
@cindex Filter, WEB_ESCAPE
Replaces characters '<', '>', '"' and '&' by corresponding HTML
sequences: < > " and &
@item WEB_NBSP
@cindex Filter, WEB_NBSP
Replaces all spaces by an HTML non breaking space.
@item WRAP(@i{N})
@cindex Filter, WRAP
Wraps lines having more N characters.
@item YES_NO
@cindex Filter, YES_NO
If variable value is @b{True} it returns @b{Yes}, if @b{False} it
returns @b{No}, otherwise does nothing. It keeps the way @b{True/False} is
capitalized (all upper, all lower or first letter capital).
@end table
@noindent
For example:
@TPEXP{If VAR is set to "@i{vector_tag}", ONE to "1" and TWO to "2" then:
@@_VAR_@@ -> vector_tag
@@_UPPER:VAR_@@ -> VECTOR_TAG
@@_CAPITALIZE:VAR_@@ -> Vector_Tag
@@_EXIST:VAR_@@ -> TRUE
@@_UPPER:REVERSE:VAR_@@ -> GAT_ROTCEV
@@_MATCH(VEC.*):UPPER:VAR_@@ -> TRUE
@@_SLICE(1..6):VAR_@@ -> vector
@@_REPLACE(([^_]+)):VAR_@@ -> vector
@@_REPLACE(([a-z]+)_([a-z]+)/\\2_\\1):VAR_@@ -> tag_vector
@@_"+"(TWO):ONE_@@ -> 3
@@_"-"(TWO):ONE_@@ -> -1}
@node User defined filters
@subsection User defined filters
@noindent
It is also possible to define a new filter by registering a callback
routine associated with the filter name. Here is the corresponding API:
@TPEXP{ type Callback is access function
(Value : in String;
Parameters : in String;
Translations : in Translate_Set) return String;
-- User's filter callback
type Callback_No_Param is access function
(Value : in String;
Translations : in Translate_Set) return String;
-- User's filter callback
procedure Register_Filter
(Name : in String;
Handler : in Callback);
-- Register user's filter Name using the specified Handler
procedure Register_Filter
(Name : in String;
Handler : in Callback_No_Param);
-- Register user's filter Name using the specified Handler}
Filters with and without parameter are supported.
@node Attributes
@subsection Attributes
@noindent
Current supported attributes are:
@table @code
@item V'length
@cindex Attribute, 'Length
Returns the number of item in the composite tag (can be applied only
to a composite tag having a single nested level - a vector).
@item V'Up_Level(n)
@cindex Attribute, 'Up_Level
Use index from the table command @b{n} level(s) upper so this attribute must
be used in a nested table command tag. @code{'Up_Level} is equivalent
to @code{'Up_Level(1)} (can be applied only to a composite tag having
a single nested level - a vector).
@item M'Line
@cindex Attribute, 'Line
Returns the number of line in the composite tag. This is identical to
'Length but can be applied only to a composite tag having two nested
level - a matrix).
@item M'Min_Column
@cindex Attribute, 'Min_Column
Returns the size of smallest composite tag in M composite tag. This attribute
can be applied only to a composite tag having two nested level - a matrix.
@item M'Max_Column
@cindex Attribute, 'Max_Column
Returns the size of largest composite tag in M composite tag. This attribute
can be applied only to a composite tag having two nested level - a matrix.
@end table
@noindent
For example:
@TPEXP{If VEC is set to "@i{<1 , 2>}" and MAT to "@i{<a, b, c> ; <2, 3, 5, 7>}" then:
@@_VEC'Length_@@ -> 2
@@_ADD(3):VEC'Length_@@ -> 5
@@_MAT'Line_@@ -> 2
@@_MAT'Min_Column_@@ -> 3
@@_MAT'Max_Column_@@ -> 4}
@node Other variable tags
@section Other variable tags
@noindent
There is some specific variables tags that can be used in any
templates. Here is a description of them:
@table @code
@item NOW
@cindex @@_NOW_@@
Current date and time with format "YYYY-MM-DD HH:MM:SS".
@item YEAR
@cindex @@_YEAR_@@
Current year number using 4 digits.
@item MONTH
@cindex @@_MONTH_@@
Current month number using 2 digits.
@item DAY
@cindex @@_DAY_@@
Current day number using 2 digits.
@item HOUR
@cindex @@_HOUR_@@
Current hour using range 0 to 23 using 2 digits.
@item MINUTE
@cindex @@_MINUTE_@@
Current minute using 2 digits.
@item SECOND
@cindex @@_SECOND_@@
Current seconds using 2 digits.
@item MONTH_NAME
@cindex @@_MONTH_NAME_@@
Current full month name (January .. December).
@item DAY_NAME
@cindex @@_DAY_NAME_@@
Current full day name (Monday .. Sunday).
@end table
@c ----------------------------------------------------------------------
@node Translations
@chapter Translations
@noindent
Associations between variable tags and the template tag names are
created with one of the @code{Assoc} routines. This set of
associations are used by the parser (@code{Parse} routine). There is
two kinds of associations set:
@itemize
@item Translate_Table
@cindex Translate_Table
an array of associations, this is easy to use when the number of
associations is known at the creation time.
@item Translate_Set
@cindex Translate_Set
a set of associations, it is possible to insert as many associations
as needed into this object.
@end itemize
@noindent
Note that this difference is only for users, the Templates_Parser
engine uses only @code{Translate_Set} objects internally as it is much more
efficient.
@c ----------------------------------------------------------------------
@node Tag statements
@chapter Tag statements
@noindent
There is three different tag statements. A tag statement is surrounded
by @code{@@@@}. The tag statements are:
@menu
* Comments tag statement::
* INCLUDE tag statement::
* IF tag statement::
* TABLE tag statement::
* SET tag statement::
* INLINE tag statement::
@end menu
@node Comments tag statement
@section Comments tag statement
@cindex Command, comments
@cindex Command, @@@@--
@noindent
Every line starting with @b{@@@@--} are comments and are completly
ignored by the parser. The resulting page will have the exact same
format and number of lines with or without the comments.
@TPEXP{@@@@-- This template is used to display the client's data
@@@@-- It uses the following tags:
@@@@--
@@@@-- @@_CID_@@ Client ID
@@@@-- @@_ITEMS_V_@@ List of items (vector tag)
<P>Client @@_CID_@@
...}
@node INCLUDE tag statement
@section INCLUDE tag statement
@cindex Command, INCLUDE
@noindent
This tag is used to include another template file. This is useful if you
have the same header and/or footer in all your HTML pages. For example:
@TPEXP{@@@@INCLUDE@@@@ header.tmplt
<P>This is by Web page
@@@@INCLUDE@@@@ footer.tmplt}
@noindent
It is also possible to pass arguments to the include file. These parameters
are given after the include filename. It is possible to reference these
parameters into the included file with the special variable names
@code{@@_$<n>_@@}, where @i{n} is the include's parameter indice (0 is
the include filename, 1 the first parameter and so on).
@TPEXP{@@@@INCLUDE@@@@ another.tmplt @@_VAR_@@ azerty}
@noindent
In file @file{another.tmplt}
@table @code
@item @@_$0_@@
is another.tmplt
@item @@_$1_@@
is the variable @@_VAR_@@
@item @@_$2_@@
is the string "azerty"
@end table
@noindent
If an include variable references a non existing include parameter the
tag is kept as-is.
@noindent
Note that it is possible to pass the include parameters using names,
a set of positional parameters can be pass first, so all following
include commands are identical:
@TPEXP{@@@@INCLUDE@@@@ another.tmplt one two three four "a text"
@@@@INCLUDE@@@@ another.tmplt (one, two, 3 => three, 4 => four, 5 => "a text")
@@@@INCLUDE@@@@ another.tmplt (one, 5 => "a text", 3 => three, 2 => two, 4 => four)}
@node IF tag statement
@section IF tag statement
@cindex Command, IF
@noindent
This is the conditional tag statement. The complete form is:
@TPEXP{@@@@IF@@@@ <expression1>
part1
@@@@ELSIF@@@@ <expression2>
part2
@@@@ELSE@@@@
part3
@@@@END_IF@@@@}
@noindent
The part1 one will be parsed if expression1 evaluate to "TRUE", part2
will be parsed if expression2 evaluate to "TRUE" and the part3 will
be parse in any other case. The @code{ELSIF} and @code{ELSE} part are
optional.
@noindent
The expression here is composed of boolean variable (or conditional
variable) and/or boolean expression. Recognized operators are:
@cindex Command, IF expression
@table @code
@item A = B
Returns TRUE if A equal B
@item A /= B
Returns TRUE if A is not equal B
@item A > B
Returns TRUE if A greater than B. If A and B are numbers it returns the
the number comparison (5 > 003 = TRUE) otherwise it returns the string
comparison (``5'' > ``003'' = FALSE).
@item A >= B
Returns TRUE if A greater than or equal to B. See above for rule about numbers.
@item A < B
Returns TRUE if A lesser than B. See above for rule about numbers.
@item A <= B
Returns TRUE if A lesser than or equal to B. See above for rule about numbers.
@item A and B
Returns TRUE if A and B is TRUE and FALSE otherwise.
@item A or B
Returns TRUE if A or B is TRUE and FALSE otherwise.
@item A xor B
Returns TRUE if either A or B (but not both) is TRUE and FALSE otherwise.
@item not A
Returns TRUE if either A is FALSE and FALSE otherwise.
@end table
@noindent
The default evaluation order is done from left to right, all operators
having the same precedence. To build an expression it is possible to
use the parentheses to change the evaluation order. A value with
spaces must be quoted as a string. So valid expressions could be:
@TPEXP{@@@@IF@@@@ (@@_VAR1_@@ > 3) or (@@_COND1_@@ and @@_COND2_@@)
@@@@IF@@@@ not (@@_VAR1_@@ > 3) or (@@_COND1_@@ and @@_COND2_@@)
@@@@IF@@@@ (@@_VAR1_@@ > 3) and not @@_COND1_@@
@@@@IF@@@@ @@_VAR1_@@ = "a value"}
@noindent
Note also that variables and values can be surrounded by quotes if needed.
Quotes are needed if a value contain spaces.
@noindent
To generate a conditional variable tag it is possible to use the
following @b{Templates_Parser} function:
@TPEXP{@b{function} Assoc (Variable : @b{in} String;
Value : @b{in} Boolean)
@b{return} Association;
@i{-- Build an Association (Variable = Value) to be added to a}
@i{-- Translate_Table. It set the variable to TRUE or FALSE depending on}
@i{-- Value.}}
@noindent
Let's see an example using an @code{IF} tag statement. With the following
template:
@include user.tmplt.texi
@noindent
The following program:
@include user1.adb.texi
@noindent
Will display:
@include user1.adb.res
@noindent
But the following program:
@include user2.adb.texi
@noindent
Will display:
@include user2.adb.res
@node TABLE tag statement
@section TABLE tag statement
@cindex Command, TABLE
@noindent
Table tags are useful to generate @code{HTML} tables for example.
Basically the code between the @code{@@@@TABLE@@@@} and
@code{@@@@END_TABLE@@@@} will be repeated as many times as the vector
tag has values. If many vector tags are specified in a table
statement, the code between the table will be repeated a number of
times equal to the maximum length of all vector tags in the
@code{TABLE} tag statement.
@noindent
A @code{TABLE} tag statement is a kind of implicit iterator. This is a very
important concept to build HTML tables. Using a composite tag variable in
a @code{@@@@TABLE@@@@} tag statement it is possible to build very
complex Web pages.
@noindent
Syntax:
@cindex Command, TERMINATE_SECTIONS
@cindex Command, REVERSE
@TPEXP{@@@@TABLE['TERMINATE_SECTIONS]['REVERSE]@@@@
...
[@@@@BEGIN@@@@]
...
[@@@@SECTION@@@@]
...
[@@@@END@@@@]
...
@@@@END_TABLE@@@@}
@noindent
Let's have an example. With the following template:
@include table.tmplt.texi
@noindent
And the following program:
@include table.adb.texi
@noindent
The following output will be generated:
@include table.adb.res
@noindent
Note that we use vector tag variables here. A discrete variable tag in a table
will be replaced by the same (the only one) value for each row. A vector
tag outside a table will be displayed as a list of values, each value
being separated by a specified separator. The default is a comma and a
space ", ".
@noindent
The complete prototype for the @code{Tag} Assoc function is:
@TPEXP{@b{function} Assoc (Variable : @b{in} String;
Value : @b{in} Tag;
Separator : @b{in} String := Default_Separator)
@b{return} Association;
@i{-- Build an Association (Variable = Value) to be added to Translate_Table.}
@i{-- This is a tag association. Separator will be used when outputting the}
@i{-- a flat representation of the Tag (outside a table statement).}}
@noindent
A table can contain many sections. The section to use will be selected
depending on the current line. For example, a table with two sections
will use different data on even and odd lines. This is useful when you
want to alternate the line background color for a better readability
when working on HTML pages.
@noindent
A table with sections can have attributes:
@table @code
@item TERMINATE_SECTIONS
This ensure that the table output will end
with the last section. If the number of data in the vector variable tag
is not a multiple of the number of sections then the remaining section
will be complete with empty tag value.
@item REVERSE
The items will be displayed in the reverse order.
@end table
@include table_section.tmplt.texi
@noindent
And the following program:
@include table_section.adb.texi
@noindent
The following output will be generated:
@include table_section.adb.res
@noindent
It is important to note that it is possible to avoid code
duplication by using the @code{@@@@BEGIN@@@@} and @code{@@@@END@@@@}
block statements. In this case only the code inside the block is part
of the section, the code outside is common to all sections. Here is
an example to generate an HTML table with different colors for each line:
@noindent
The template file above can be written this way:
@include table_block.tmplt.texi
@noindent
Into a table construct there are some additional variable tags available:
@table @code
@item @@_UP_TABLE_LINE_@@
@cindex @@_UP_TABLE_LINE_@@
This tag will be replaced by the table line number of the upper table
statement. It will be set to 0 outside a table statement or inside a
single table statement.
@item @@_TABLE_LINE_@@
@cindex @@_TABLE_LINE_@@
This tag will be replaced by the current table line number. It will be
replaced by 0 outside a table statement.
@item @@_NUMBER_LINE_@@
@cindex @@_NUMBER_LINE_@@
This is the number of line displayed in the table. It will be replaced
by 0 outside a table statement.
@item @@_TABLE_LEVEL_@@
@cindex @@_TABLE_LEVEL_@@
This is the table level number. A table construct declared in a table
has a level value of 2. It will be replaced by 0 outside a table statement.
@end table
@noindent
Let's have a look at a more complex example with mixed IF and TABLE tag
statements.
@noindent
Here is the template:
@include table_if.tmplt.texi
@noindent
And the following program:
@include table_if.adb.texi
@noindent
The following output will be generated:
@include table_if.adb.res
@noindent
Table tag statements can also be used with matrix tag or more nested
tag variables. In this case, for a tag variable with N nested levels,
the Nth closest enclosing @code{TABLE} tag statement will be used for
the corresponding indices. If there is not enough indices, the last
axis are just streamed as a single text value.
@noindent
Let's see what happens for a matrix tag:
@enumerate
@item Inside a table of level 2 (a TABLE tag statement inside a TABLE tag
statement).
@noindent
In this case the first @code{TABLE} iterates through the matrix lines.
First iteration will use the first matrix's vector, second
iteration will use the second matrix's vector and so on. And the second
@code{TABLE} will be used to iterate through the vector's values.
@item Inside a table of level 1.
@noindent
In this case the @code{TABLE} iterates through the matrix lines. First
iteration will use the first matrix's vector, second iteration will
use the second matrix's vector and so on. Each vector is then converted to
a string by concatenating all values using the specified separator
(see Assoc constructor for Tag or @code{Set_Separator} routine).
@item Outside a table statement.
@noindent
In this case the matrix is converted to a string. Each line represents
a vector converted to a string using the supplied separator (see point
2 above), and each vector is separated by an ASCII.LF character. The
separators to use for each level can be specified using @code{Set_Separator}.
@end enumerate
@noindent
Let's look at an example, with the following template:
@include matrix.tmplt.texi
@noindent
Using the program:
@include matrix.adb.texi
@noindent
We get the following result:
@include matrix.adb.res
@node SET tag statement
@section SET tag statement
@cindex Command, SET
@noindent
The @code{SET} command tag can be used to define a constant or an
alias for an include file parameter. This is especially important in
the context of reusable template files. For example, instead of having
many references to the @b{red} color in an HTML document, it is better to
define a constant @var{COLOR} with the value @b{red} and use @var{COLOR}
everywhere. It is then easier to change the color afterward.
@noindent
The first form, to define a simple constant that can be used as any
other variable in a template file, is:
@TPEXP{@@@@SET@@@@ <name> = <value>}
@noindent
The second form, to define an alias for a template file parameter, is:
@TPEXP{@@@@SET@@@@ <name> = $n [| <default_value>]}
@noindent
In this case <name> is an alias for the Nth include parameter. In this
form it is also possible to define a default value that would be used
if the Nth include parameter is not specified.
Some examples:
@TPEXP{@@@@SET@@@@ COLOR = red
@@@@SET@@@@ SIZE = $1
@@@@SET@@@@ COLOR = $4 | green}
@noindent
It is important to note that a variable is set global to a template
file. It means that constants set into an include file are visible
into the parent template. This is an important feature to be able to
have a "theme" like include template file for example.
@node INLINE tag statement
@section INLINE tag statement
@cindex Command, INLINE
@noindent
The @code{INLINE} tag statement can be used to better control the
result's layout. For example it is not possible to have the results of
a vector tag on the same line, also it is not possible to have a
conditional output in the middle of a line. The @code{INLINE} block
tag statement can be used to achieve that.
@noindent
Elements in an inlined block are separated by a single space by
default. It is possible to specify any string as the separator. The
text layout on an @code{INLINE} block has no meaning (the lines are
trimmed on both side). As part of the inline command it is possible to
specify texts to output before and after the block.
@noindent
Syntax:
@TPEXP{@@@@INLINE[(<before>)(<separator>)(<after>)]@@@@
...
@@@@END_INLINE@@@@}
@noindent
There is three supported usages:
@table @code
@item @@@@INLINE@@@@
In this case there is no text before and after the block and the
separator is a single space.
@item @@@@INLINE(<separator>)@@@@
In this case there is no text before and after the block and the
separator is the string given as parameter @i{<separator>}.
@item @@@@INLINE(<before>)(<separator>)(<after>)@@@@
In this case all three values are explicitly given.
@end table
@noindent
Let's look at an example, with the following template:
@include table_inline.tmplt.texi
@noindent
Using the program:
@include table_inline.adb.texi
@noindent
We get the following result:
@include table_inline.adb.res
@noindent
Another example with an @code{IF} tag statement:
@include if_inline.tmplt.texi
@noindent
Using the program:
@include if_inline.adb.texi
@noindent
We get the following result:
@include if_inline.adb.res
@c ----------------------------------------------------------------------
@node Other services
@chapter Other services
@menu
* Dynamic tags::
* Tag utils::
* XML representation::
* Debug::
@end menu
@node Dynamic tags
@section Dynamic tags
@cindex Dynamic tags
Dynamic tags are handled through abstract interfaces and give the
opportunity to create tags dynamically while the template is being parsed.
@menu
* Lazy_Tag::
* Cursor_Tag::
@end menu
@node Lazy_Tag
@subsection Lazy_Tag
@cindex Lazy_Tag
@noindent
The @code{Lazy_Tag} object can be used to dynamically handle tags. Such
object can be passed to the @code{Parse} routines. If a template's tag
is not found in the @code{Translate_Set} the @code{Lazy_Tag}'s Value
callback method is called by the parser. The default callback method
does nothing, it is up to the user to define it. The callback
procedure is defined as follow:
@TPEXP{@b{procedure} Value
(Lazy_Tag : @b{access} Dynamic.Lazy_Tag;
Var_Name : @b{in} String;
Translations : @b{in out} Translate_Set) @b{is abstract};
@i{-- Value is called by the Parse routines below if a tag variable was not}
@i{-- found in the set of translations. This routine must then add the}
@i{-- association for variable Name. It is possible to add other}
@i{-- associations in the translation table but a check is done to see if}
@i{-- the variable Name as been set or not. The default implementation does}
@i{-- nothing.}}
@noindent
One common usage is to handle tag variables that can be shared by
many templates are not always used (because a conditional is False for
example). If computing the corresponding value (or values for a ...)
is somewhat expensive it is better to delay building such tag at the
point it is needed. Using a @code{Lazy_Tag} object it is possible to do
so. The @code{Value} procedure will be called if the tag value is
needed. At this point, one can just add the corresponding association
into the @code{Translate_Set}. Note that it is possible to add more
than one association. If the association for @code{Var_Name} is not
given this tag has no value.
@node Cursor_Tag
@subsection Cursor_Tag
@cindex Cursor_Tag
@noindent
In some cases, data structure on the Ada side can be so complex that it is
difficult to map it into a variable tag. The @code{Cursor_Tag} object has
been designed to work around such problem. Using a @code{Cursor_Tag}
it is possible to create an iterator through a data structure without
mapping it into a variable tag. The data stays on the Ada side.
To create a @code{Cursor_Tag} it is necessary to implement the following
abstract routines:
@TPEXP{@b{function} Dimension
(Cursor_Tag : @b{access} Dynamic.Cursor_Tag;
Var_Name : @b{in} String) @b{return} Natural @b{is abstract};
@i{-- Must return the number of dimensions for the given variable name. For}
@i{-- a matrix this routine should return 2 for example.}
@b{type} Path @b{is array} (Positive @b{range} <>) @b{of} Natural;
@i{-- A Path gives the full position of a given element in the cursor tag}
@b{function} Length
(Cursor_Tag : @b{access} Dynamic.Cursor_Tag;
Var_Name : @b{in} String;
Path : @b{in} Dynamic.Path) @b{return} Natural @b{is abstract};
@i{-- Must return the number of item for the given path. The first}
@i{-- dimension is given by the Path (1), for the second column the Path is}
@i{-- (1, 2). Note that each dimension can have a different length. For}
@i{-- example a Matrix is not necessary square.}
@b{function} Value
(Cursor_Tag : @b{access} Dynamic.Cursor_Tag;
Var_Name : @b{in} String;
Path : @b{in} Dynamic.Path) @b{return} String @b{is abstract};
@i{-- Must return the value for the variable at the given Path. Note that}
@i{-- this routine will be called only for valid items as given by the}
@i{-- dimension and Length above.}}
@node Tag utils
@section Tag utils
@cindex Tag utils
@noindent
The child package @code{Utils}, @pxref{Templates_Parser.Utils}
contains a routine to encode a Tag variable into a string and the
inverse routine that build a Tag given it's string
representation. This is useful for example, in the context of AWS to
store a Tag into a session variable. See the AWS project.
@node XML representation
@section XML representation
@cindex XML
@noindent
The child package @code{XML}, @pxref{Templates_Parser.XML} contains
routines to save a @code{Translation_Set} into an XML document or to
create a @code{Translation_Set} by loading an XML document. The XML
document must conform to a specific @code{DTD} (see the Ada spec file).
@node Debug
@section Debug
@cindex Debug
@noindent
A set of routines to help to debug the @code{Templates_Parser} engine,
@pxref{Templates_Parser.Debug}. For example, @code{Debug.Print_Tree}
will display, to the standard output, a representation of the internal
semantic tree for a template file.
@c ----------------------------------------------------------------------
@node Last notes
@chapter Last notes
@noindent
The templates parser has be written to parse @code{HTML} pages but it is usable
with any kind of files. There is nothing hard coded for @code{HTML}. It is then
possible to use it with plain text files, @code{XML} files, @code{SGML} files
or whatever as long as it is not a binary file.
@noindent
All tag statements can be mixed together. A @code{TABLE} tag statement can be
put in an @code{IF} tag statement. An @code{IF} tag statement can be put
in a @code{TABLE} tag statement. Idem for the @code{INCLUDE} tag statement.
@sp 1
@c ----------------------------------------------------------------------
@node Templates_Parser API Reference
@appendix Templates_Parser API Reference
@menu
Templates_Parser User's API
* Templates_Parser::
* Templates_Parser.Debug::
* Templates_Parser.Utils::
* Templates_Parser.XML::
@end menu
@page
@node Templates_Parser
@appendixsec Templates_Parser
@cindex Templates_Parser
@include templates_parser.ads.texi
@page
@node Templates_Parser.Debug
@appendixsec Templates_Parser.Debug
@cindex Templates_Parser.Debug
@include templates_parser-debug.ads.texi
@page
@node Templates_Parser.Utils
@appendixsec Templates_Parser.Utils
@cindex Templates_Parser.Utils
@include templates_parser-utils.ads.texi
@page
@node Templates_Parser.XML
@appendixsec Templates_Parser.XML
@cindex Templates_Parser.XML
@include templates_parser-xml.ads.texi
@c ----------------------------------------------------------------------
@node Index
@unnumbered Index
@printindex cp
@bye
|