/[H9]/trunk/tntnet/dynamic/header.ecpp
ViewVC logotype

Diff of /trunk/tntnet/dynamic/header.ecpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 72 by torben, Tue Nov 27 21:59:04 2007 UTC revision 101 by torben, Thu Nov 29 13:59:21 2007 UTC
# Line 1  Line 1 
1  <%args>  <%args>
2  title;  title;
3  </%args>  </%args>
4    <%session scope="global">
5    std::string userName;
6    bool isAdmin;
7    </%session>
8  <{  <{
9    
10    //reply.setContentType("text/html; charset=UTF-8");
11    
12  if (title.size() > 0)  if (title.size() > 0)
13  {  {
14          title = std::string(" - ") + title;          title = std::string(" - ") + title;
15  }  }
16    
17    //Cache control
18    reply.setHeader("Cache-Control", "no-cache, must-revalidate"); // Http/1.1
19    reply.setHeader("Expires",  "Mon, 26 Jul 1997 05:00:00 GMT"); //date in the past
20  }>  }>
21    
22  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
23  <html>  <html>
24  <head>  <head>
25  <title>Serren boiler monitor system<$ title $> </title>  <title>Serren furnace monitor system<$ title $> </title>
26    <link rel="stylesheet" type="text/css" href="/stylesheet.css">
27    
28  <style type="text/css">  </head>
29  .menublock {  <body>
 /*      margin-left: 10px;*/  
         color: #ffffff;  
 }  
30    
31  .menucell {  <!-- Menu stuff -->
32          padding-left: 10px;  <div id="menubg">
33  }   <div id="menubox">
34      <br><br><br>
35      <p style='font-size: 120%;'><b>Serren AB</b></p>
36      
37      <a class="menu" href="index">Index</a><br>
38      <a class="menu" href="critical">Critical systems</a><br>
39      <a class="menu" href="customerlist">Customers & installations</a><br>
40      
41      <br>
42    
43  h1      {  <{
44          text-align: center;      if (userName.size() > 0) {
45  }        }>
46      <p class="menu">Logged in as <$ userName $></p>
47      <a class="menu" href="adm_customer_list">Customer admin</a><br>
48      <{
49      if (isAdmin) {
50      }>
51      <a class="menu" href="adm_user_list">User admin</a><br>
52      <{
53      } else {
54      }>
55      <div class="menu">User admin</div><br>
56      <{
57      } // end if/else isadmin
58      }>
59    
60  h2 {    <br>
61          text-align: center;    <a class="menu" href="logout">Logout</a><br>
 }  
62    
63  </style>  <{
64    } else {
65    }>
66      <a class="menu" href="login">Login</a>
67    <{
68    } //endif
69    }>
70    
71  </head>    <br><br><br><br><br>
72  <body bgcolor="white">   </div>
73    </div>
74    
75  <!-- Menu stuff -->  <!-- end of menu -->
 <br>  
 <table border=0 width='100%'>  
 <tr>  
   <td width=180 bgcolor='red' valign="top" class='menucell'>  
     <br><br><br>  
     <p class="menublock"><b>Serren AB</b></p>  
     
     <a class="menublock" href="index">Index</a><br>  
     <a class="menublock" href="critical">Critical systems</a><br>  
     <a class="menublock" href="customerlist">Customers & installations</a><br>  
       
     <br><br><br>  
   
     <br><br><br><br><br>  
   </td>  
   <td valign="top">  

Legend:
Removed from v.72  
changed lines
  Added in v.101

  ViewVC Help
Powered by ViewVC 1.1.20