Update Vendored Erubis to 2.6.6
This commit is contained in:
parent
c18c2f988d
commit
39c2138f88
300 changed files with 207 additions and 171 deletions
42
vendor/plugins/erubis/examples/pi/example.ec
vendored
Normal file
42
vendor/plugins/erubis/examples/pi/example.ec
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
<?c
|
||||
#include <stdio.h>
|
||||
|
||||
void escape(char *str, FILE *out);
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int i;
|
||||
|
||||
?>
|
||||
<p>Hello @!{argv[0]}@!</p>
|
||||
<table>
|
||||
<tbody>
|
||||
<?c for (i = 1; i < argc; i++) { ?>
|
||||
<tr bgcolor="@{i % 2 == 0 ? "#FFCCCC" : "#CCCCFF"}@">
|
||||
<td>@!{"%d", i}@</td>
|
||||
<td>@{argv[i]}@</td>
|
||||
</tr>
|
||||
<?c } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<?c
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void escape(char *str, FILE *out)
|
||||
{
|
||||
char *pch;
|
||||
for (pch = str; *pch != '\0'; pch++) {
|
||||
switch (*pch) {
|
||||
case '&': fputs("&", out); break;
|
||||
case '>': fputs(">", out); break;
|
||||
case '<': fputs("<", out); break;
|
||||
case '"': fputs(""", out); break;
|
||||
case '\'': fputs("'", out); break;
|
||||
default: fputc(*pch, out);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue