[Lipog-commit] net.heilancoo.portal.examples/templates export.html, NONE, 1.1 main.html, 1.1, 1.2
Status: Beta
Brought to you by:
jbu
From: Joerg B. <jb...@us...> - 2009-05-10 19:51:47
|
Update of /cvsroot/lipog/net.heilancoo.portal.examples/templates In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25741/templates Modified Files: main.html Added Files: export.html Log Message: easier controller changing: @ChangeControllers annotation --- NEW FILE: export.html --- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>This is ${s.user}'s Exports</title> </head> <body> <h1>My exports</h1> <p>user = ${s.user}</p> <p>serial = ${s.getSerial()}</p> <p>access count = ${s.getAccess()}</p> <p>Go back to <a href="main">main</a>.</p> <p>Or: change your <a href="prefs">preferences</a>.</p> <p>Or: <a href="logout">Log out</a>.</p> </body> </html> Index: main.html =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal.examples/templates/main.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** main.html 1 May 2009 13:42:47 -0000 1.1 --- main.html 10 May 2009 19:51:40 -0000 1.2 *************** *** 3,16 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> ! <title>This is ${s.getUser()}</title> </head> <body> <h1>My Session</h1> ! <p>user = ${s.getUser()}</p> ! <p>serial = ${s.getSerial()}</p> ! <p>access count = ${s.getAccess()}</p> <p>Try this page again in <a href="main">HTML</a>.</p> <p>Try the other page in <a href="other.html">HTML</a>.</p> <p>Try the other page as <a href="other">plain text</a>.</p> <p>Or: change your <a href="prefs">preferences</a>.</p> <p>Or: <a href="logout">Log out</a>.</p> --- 3,17 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> ! <title>This is ${s.user}</title> </head> <body> <h1>My Session</h1> ! <p>user = ${s.user}</p> ! <p>serial = ${s.serial}</p> ! <p>access count = ${s.access}</p> <p>Try this page again in <a href="main">HTML</a>.</p> <p>Try the other page in <a href="other.html">HTML</a>.</p> <p>Try the other page as <a href="other">plain text</a>.</p> + <p>Or: visit your <a href="export">export</a>.</p> <p>Or: change your <a href="prefs">preferences</a>.</p> <p>Or: <a href="logout">Log out</a>.</p> |