fixed a bug in the left column layout template, which was still using RawHeadTags

This commit is contained in:
Colin Kuskie 2007-03-05 16:26:53 +00:00
parent e17e1f7e4f
commit 70e156542a
2 changed files with 92 additions and 0 deletions

View file

@ -10,6 +10,8 @@
- fix: TrashClipboard.pm (thanks to Erik Svanberg for the patch)
- fix: Manage events in time tracker goofed up (perlDreamer Consulting, LLC)
- fix: Clipboard to trash (perlDreamer Consulting, LLC)
- fix: Fixed the left column template, which still used the RawHeadTags
macro. (perlDreamer Consulting, LLC)
7.3.11
- Added an option for enabling coverage tests to testCodebase.pl.

View file

@ -0,0 +1,90 @@
#PBtmpl0000000000000125
<a name="id<tmpl_var assetId>" id="id<tmpl_var assetId>"></a>
<tmpl_if showAdmin>
<p><tmpl_var controls></p>
</tmpl_if>
<tmpl_if displayTitle>
<h1><tmpl_var title></h1>
</tmpl_if>
<tmpl_if description>
<p><tmpl_var description></p>
</tmpl_if>
<!-- begin position 1 -->
<div class="firstColumn"><div class="layoutColumnPadding">
<tmpl_if showAdmin>
<table border="0" id="position1" class="content"><tbody>
</tmpl_if>
<tmpl_loop position1_loop>
<tmpl_if showAdmin>
<tr id="td<tmpl_var id>">
<td><div id="td<tmpl_var id>_div" class="dragable">
</tmpl_if>
<div class="content"><tmpl_var dragger.icon><tmpl_var content></div>
<tmpl_if showAdmin>
</div></td>
</tr>
</tmpl_if>
</tmpl_loop>
<tmpl_if showAdmin>
</tbody></table>
</tmpl_if>
</div></div>
<!-- end position 1 -->
<!-- begin position 2 -->
<div class="secondColumn"><div class="layoutColumnPadding">
<tmpl_if showAdmin>
<table border="0" id="position2" class="content"><tbody>
</tmpl_if>
<tmpl_loop position2_loop>
<tmpl_if showAdmin>
<tr id="td<tmpl_var id>">
<td><div id="td<tmpl_var id>_div" class="dragable">
</tmpl_if>
<div class="content"><tmpl_var dragger.icon><tmpl_var content></div>
<tmpl_if showAdmin>
</div></td>
</tr>
</tmpl_if>
</tmpl_loop>
<tmpl_if showAdmin>
</tbody></table>
</tmpl_if>
</div></div>
<!-- end position 2 -->
<div class="endFloat">&nbsp;</div>
<tmpl_if showAdmin>
<table><tr id="blank" class="hidden"><td><div><div class="empty">&nbsp;</div></div></td></tr></table>
<tmpl_var dragger.init>
</tmpl_if>
~~~
<style type="text/css">
.firstColumn {
float: left;
width: 33%;
}
.secondColumn {
float: left;
width: auto;
max-width: 65%;
}
.endFloat {
clear: both;
}
</style>