issue:17256358 - added issuetracker module

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4484 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2008-09-09 01:39:39 +00:00
parent 8f6568e5a7
commit 5cccd30a27
163 changed files with 7363 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<!--#include("source_header.html")-->
<table cellspacing="0">
<col width="180" />
<col width="100" />
<col width="150" />
<col width="*" />
<thead>
<tr>
<th>Name</th>
<th>Revision</th>
<th>Age</th>
<th>Last Change</th>
</tr>
</thead>
<tbody>
<!--@foreach($list as $item)-->
<!--@if($item->type == 'file')-->
{@ $type = 'file' }
<!--@else-->
{@ $type = '' }
<!--@end-->
<tr onmouseover="this.className='over'" onmouseout="this.className=''" >
<td class="{$item->type}"><a href="{getUrl('type',$type, path, urlencode($item->path), 'revs', $revs)}">{$item->name}</a></td>
<td class="log"><a href="{getUrl('type','log','path',urlencode($item->path),'erev',$revs?$revs:'')}">{$item->revision}</a></td>
<td class="age">{$item->gap}</td>
<td class="summaryText"><div class="close"><span class="author">{$item->author}</span> {$item->msg?': '.$item->msg:''}</div></td>
</tr>
<!--@end-->
</tbody>
</table>
<!--#include("source_footer.html")-->