[PythonReports-checkins] htdocs footer.shtml, 1.2, 1.3 header.shtml, 1.5, 1.6 index.shtml, 1.7, 1.8
Brought to you by:
a1s
Update of /cvsroot/pythonreports/htdocs
In directory vz-cvs-3.sog:/tmp/cvs-serv16314
Modified Files:
index.shtml prp.shtml prt.shtml style.css
Added Files:
footer.shtml header.shtml
Removed Files:
footer.html header.html
Log Message:
Fix paths in header and footer
--- footer.html DELETED ---
--- header.html DELETED ---
--- NEW FILE: header.shtml ---
<div class="header">
<div class="container">
<a class="logo" href="<!--#echo var="relative_path" -->index.shtml">
<img src="<!--#echo var="relative_path" -->logo.png"/>
</a>
<ul class="navigation">
<li><a href="http://sourceforge.net/projects/pythonreports/">Project page</a></li>
<li><a href="<!--#echo var="relative_path" -->prt.shtml">Templates</a></li>
<li><a href="<!--#echo var="relative_path" -->prp.shtml">Printouts</a></li>
<li><a href="<!--#echo var="relative_path" -->api/index.shtml">API</a></li>
</ul>
</div>
</div>
Index: prp.shtml
===================================================================
RCS file: /cvsroot/pythonreports/htdocs/prp.shtml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** prp.shtml 15 May 2012 12:55:07 -0000 1.1
--- prp.shtml 16 May 2012 12:42:13 -0000 1.2
***************
*** 10,14 ****
<body>
! <!--#include virtual="header.html" -->
<div class="main container">
--- 10,15 ----
<body>
! <!--#set var="relative_path" value="./" -->
! <!--#include virtual="header.shtml" -->
<div class="main container">
***************
*** 687,691 ****
</div>
! <!--#include virtual="footer.html" -->
</body>
--- 688,692 ----
</div>
! <!--#include virtual="footer.shtml" -->
</body>
--- NEW FILE: footer.shtml ---
<div class="footer container">
<div class="logos">
<a href="http://www.python.org/"><img src="<!--#echo var="relative_path" -->python-powered-w-120x40.png"
width="120" height="40" alt="[Python Powered]"/></a>
<a href="http://sourceforge.net/projects/pythonreports/"><img
src="http://sflogo.sourceforge.net/sflogo.php?group_id=181233&type=12"
width="120" height="30" border="0"
alt="Get PythonReports at sourceforge.net. Fast, secure and Free Open Source software downloads"/></a>
</div>
</div>
Index: prt.shtml
===================================================================
RCS file: /cvsroot/pythonreports/htdocs/prt.shtml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** prt.shtml 15 May 2012 14:16:06 -0000 1.3
--- prt.shtml 16 May 2012 12:42:13 -0000 1.4
***************
*** 10,14 ****
<body>
! <!--#include virtual="header.html" -->
<div class="main container">
--- 10,15 ----
<body>
! <!--#set var="relative_path" value="./" -->
! <!--#include virtual="header.shtml" -->
<div class="main container">
***************
*** 1515,1519 ****
</div>
! <!--#include virtual="footer.html" -->
</body>
--- 1516,1520 ----
</div>
! <!--#include virtual="footer.shtml" -->
</body>
Index: index.shtml
===================================================================
RCS file: /cvsroot/pythonreports/htdocs/index.shtml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** index.shtml 15 May 2012 14:16:06 -0000 1.7
--- index.shtml 16 May 2012 12:42:13 -0000 1.8
***************
*** 9,13 ****
<body>
! <!--#include virtual="header.html" -->
<div class="main container">
--- 9,15 ----
<body>
! <!--#config errmsg="[Fuck this stupid SSI]" -->
! <!--#set var="relative_path" value="./" -->
! <!--#include virtual="header.shtml" -->
<div class="main container">
***************
*** 62,66 ****
</div>
! <!--#include virtual="footer.html" -->
</body>
--- 64,68 ----
</div>
! <!--#include virtual="footer.shtml" -->
</body>
Index: style.css
===================================================================
RCS file: /cvsroot/pythonreports/htdocs/style.css,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** style.css 15 May 2012 14:29:05 -0000 1.7
--- style.css 16 May 2012 12:42:13 -0000 1.8
***************
*** 69,74 ****
}
.main {
! padding:50px 10px 10px 10px;
border-bottom:1px solid #cacaca;
}
.container .list {
--- 69,76 ----
}
.main {
! margin-top: 20px;
! padding:30px 10px 10px 10px;
border-bottom:1px solid #cacaca;
+ border-top:1px solid #cacaca;
}
.container .list {
|