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
27
vendor/plugins/erubis/test/data/users-guide/example.ec
vendored
Normal file
27
vendor/plugins/erubis/test/data/users-guide/example.ec
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
<%
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int i;
|
||||
|
||||
%>
|
||||
<html>
|
||||
<body>
|
||||
<p>Hello <%= "%s", argv[0] %>!</p>
|
||||
<table>
|
||||
<tbody>
|
||||
<% for (i = 1; i < argc; i++) { %>
|
||||
<tr bgcolor="<%= i % 2 == 0 ? "#FFCCCC" : "#CCCCFF" %>">
|
||||
<td><%= "%d", i %></td>
|
||||
<td><%= "%s", argv[i] %></td>
|
||||
</tr>
|
||||
<% } %>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
<%
|
||||
return 0;
|
||||
}
|
||||
%>
|
Loading…
Add table
Add a link
Reference in a new issue