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
45
vendor/plugins/erubis/examples/pi/example.ejava
vendored
Normal file
45
vendor/plugins/erubis/examples/pi/example.ejava
vendored
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?java
|
||||
import java.util.*;
|
||||
|
||||
public class example {
|
||||
|
||||
public static void main(String[] args) {
|
||||
String user = "Erubis";
|
||||
String[] list = { "<aaa>", "b&b", "\"ccc\"" };
|
||||
StringBuffer _buf = new StringBuffer();
|
||||
?>
|
||||
<p>Hello @{user}@!</p>
|
||||
<table>
|
||||
<tbody>
|
||||
<?java for (int i = 0; i < list.length; i++) { ?>
|
||||
<tr bgcolor="@{i % 2 == 0 ? "#FFCCCC" : "#CCCCFF"}@">
|
||||
<td>@!{i + 1}@</td>
|
||||
<td>@{list[i]}@</td>
|
||||
</tr>
|
||||
<?java } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<?java
|
||||
System.out.print(_buf.toString());
|
||||
}
|
||||
|
||||
public static String escape(String s) {
|
||||
StringBuffer sb = new StringBuffer();
|
||||
for (int i = 0; i < s.length(); i++) {
|
||||
char ch = s.charAt(i);
|
||||
switch (ch) {
|
||||
case '<': sb.append("<"); break;
|
||||
case '>': sb.append(">"); break;
|
||||
case '&': sb.append("&"); break;
|
||||
case '"': sb.append("""); break;
|
||||
default: sb.append(ch);
|
||||
}
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
public static String escape(int i) {
|
||||
return Integer.toString(i);
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue