[Lxr-commits] CVS: lxr/templates html-ident-refs.html,NONE,1.1 lxr.conf,1.10,1.11
Brought to you by:
ajlittoz
|
From: Malcolm B. <mb...@us...> - 2002-03-07 15:44:35
|
Update of /cvsroot/lxr/lxr/templates
In directory usw-pr-cvs1:/tmp/cvs-serv16133/templates
Modified Files:
lxr.conf
Added Files:
html-ident-refs.html
Log Message:
Implement separate templates for the declarations and the references in the
ident display.
This helps speed up getting the results to the client browser, since the
declarations can be sent before the references query is completed.
Fixes bug 526807
--- NEW FILE: html-ident-refs.html ---
<p>
<table>
<tr><td colspan='2'><b>References:</b></td></tr>
$uses{<tr>
<td width='30'> </td><td>$fileref</td>
</tr>}
</table>
Index: lxr.conf
===================================================================
RCS file: /cvsroot/lxr/lxr/templates/lxr.conf,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- lxr.conf 26 Feb 2002 16:18:47 -0000 1.10
+++ lxr.conf 7 Mar 2002 15:44:32 -0000 1.11
@@ -68,8 +68,9 @@
# Templates used for headers and footers
'htmlhead' => 'html-head.html',
'htmltail' => 'html-tail.html',
- 'htmldir' => 'html-dir.html',
- 'htmlident' => 'html-ident.html',
+ 'htmldir' => 'html-dir.html',
+ 'htmlident' => 'html-ident.html',
+ 'htmlident_refs' => 'html-ident-refs.html',
'sourcehead' => 'html-head.html',
'sourcedirhead' => 'html-head.html',
|