Update of /cvsroot/babeldoc/babeldoc/modules/web/build/console
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5883/modules/web/build/console
Added Files:
main.vm navigation.vm index.html site.css velocity.properties
logon.vm
Log Message:
Minor update
--- NEW FILE: index.html ---
<FRAMESET cols="100,*">
<FRAME name="navigation" src="navigation.vm" noresize frameborder=0>
<FRAME name="main" src="main.vm" noresize frameborder=0>
</FRAMESET>
--- NEW FILE: main.vm ---
<html>
<head>
<title>Main</title>
<link rel=stylesheet type="text/css" href="$babel.mapUrl('/site.css')">
</head>
<body bgcolor="#ffffff">
#if($req.getParameter("logout") == "logout")
$req.getSession().invalidate()
#end
<table width="600" align="center">
<tr>
<td><center><h2>babel: universal document processor</h2></center></td>
</tr>
<tr>
<td valign="center" align="center">
<img src="$babel.image('babeldoc-small.png')">
</td>
</tr>
<tr>
<td><center><small><i>copyright 2002, see release documentation</i></small></center></td>
</tr>
</table>
</body>
</html>
--- NEW FILE: velocity.properties ---
#
# we are taking advantage of the fact that the file
# resource loader is the default loader
#
file.resource.loader.path = .
runtime.log = velocity.log
--- NEW FILE: logon.vm ---
<html>
<head>
<title>Logon</title>
<link rel=stylesheet type="text/css" href="$babel.mapUrl('/site.css')">
</head>
<body bgcolor="#ffffff">
<form action="$babel.mapUrl($req.getSession().getAttribute('logonBounce'))">
<table width="700" align="center">
<tr>
<td colspan="2">
<center><h2>babel: universal document processor</h2></center>
</td>
</tr>
<tr>
<td colspan="2" valign="center" align="center">
<img src="$babel.image('babeldoc-small.png')">
</td>
</tr>
<tr>
<td bgcolor="#eeeeee">name</td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td bgcolor="#eeeeee">password</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td></td>
<td><input name="submit" type="submit"></td>
</tr>
</table>
</form>
</body>
</html>
--- NEW FILE: site.css ---
body {font-family: arial, sans-serif, helvetica;}
h2 {color: #aa3333;}
--- NEW FILE: navigation.vm ---
<html>
<head>
<title>navigation</title>
<link rel=stylesheet type="text/css" href="$babel.mapUrl('site.css')">
</head>
<body bgcolor="#eeeeee">
<center>
<table>
<tr>
<td><a href="journal/index.vm" target="main"><strong>journal</strong></a></td>
</tr>
<tr>
<td><a href="pipeline/index.vm" target="main"><strong>pipeline</strong></a></td>
</tr>
<tr>
<td><a href="modules/index.vm" target="main"><strong>modules</strong></a></td>
</tr>
##if($req.getSession().getAttribute("userContext"))
<tr bgcolor="#aaaaaa">
<td><a href="$babel.mapUrl('/main.vm?logout=logout')" target="main"><strong>logout</strong></a></td>
</tr>
##end
</table>
</center>
</body>
</html>
|