Warning: Attempt to read property "date" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Warning: Attempt to read property "msg" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home/www/websvn.26th.net/html/blame.php on line 247
WebSVN – general – Blame – /SimpleChat/trunk/webapp/display.jsp – Rev 938

Subversion Repositories general

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
938 dev 1
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
2
<%@ taglib uri="/WEB-INF/struts-bean.tld"  prefix="bean"  %>
3
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
4
<%@ taglib uri="/WEB-INF/struts-html.tld"  prefix="html"  %>
5
<html>
6
 
7
<head>
8
  <title><bean:message key="title.display" /></title>
9
  <meta http-equiv="refresh" content="5; URL=display.do">
10
</head>
11
 
12
<body>
13
 
14
<logic:iterate name="messages" id="message">
15
  <bean:write name="message" property="user" ignore="true" />
16
  [<bean:write name="message" property="stamp" format="HH:mm:ss" />]
17
  <bean:write name="message" property="message" ignore="true" /><br>
18
</logic:iterate>
19
 
20
</body>
21
 
22
</html>