Update of /cvsroot/basedb/basedb/include/web
In directory sc8-pr-cvs1:/tmp/cvs-serv16614/include/web
Modified Files:
raw_common.inc.php searchhtml.inc.php
Log Message:
Minor improvements to html output
Index: raw_common.inc.php
===================================================================
RCS file: /cvsroot/basedb/basedb/include/web/raw_common.inc.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** raw_common.inc.php 1 Feb 2003 23:04:15 -0000 1.11
--- raw_common.inc.php 18 Feb 2003 07:48:33 -0000 1.12
***************
*** 48,54 ****
{
$id = (int)$id;
! return "[<a ".href("raw_table.phtml?i_r=$id", 2).">Table</a>] ".
"[<a class=popup target=rawPlotter_$id ".
! "href='raw_plotter.phtml?i_r=$id'>HTML plot tool</a>] ".
"[<a class=popup target=rawJavaPlot_$id ".
"href='plotapplet/plot_raw.phtml?i_r=$id'>".
--- 48,54 ----
{
$id = (int)$id;
! return "[<a ".href("raw_table.phtml?i_r=$id", 2).">Table</a>]\n".
"[<a class=popup target=rawPlotter_$id ".
! "href='raw_plotter.phtml?i_r=$id'>HTML plot tool</a>]\n".
"[<a class=popup target=rawJavaPlot_$id ".
"href='plotapplet/plot_raw.phtml?i_r=$id'>".
***************
*** 117,129 ****
echo "<tr bgcolor=$tdbg[$odd]>".
"<td><a href='raw_edit.phtml?i_r=$id'>".
! html($s["name"])."</a>".remMark($s)."</td>".
"<td>".htmldate($s["addedDate"])."</td>".
"<td>".html($s["userName"])."</td>".
"<td>".groupAccessCheckbox($id)."</td>".
"<td>".groupInfo($s, $users)."</td>".
! "<td>".worldInfo($s)."</td>".
"<td>".implode(",\n", $slink)."</td>".
"<td>".$s["spots"]."</td>".
! "<td>".($s["hasLims"] ? "Yes" : "No")."</td>".
"<td>".implode(",\n", $elink)."</td>".
"<td>".rawPlotLinks($id)."</td>".
--- 117,129 ----
echo "<tr bgcolor=$tdbg[$odd]>".
"<td><a href='raw_edit.phtml?i_r=$id'>".
! html($s["name"])."</a>".remMark($s)."</td>\n".
"<td>".htmldate($s["addedDate"])."</td>".
"<td>".html($s["userName"])."</td>".
"<td>".groupAccessCheckbox($id)."</td>".
"<td>".groupInfo($s, $users)."</td>".
! "<td>".worldInfo($s)."</td>\n".
"<td>".implode(",\n", $slink)."</td>".
"<td>".$s["spots"]."</td>".
! "<td>".($s["hasLims"] ? "Yes" : "No")."</td>\n".
"<td>".implode(",\n", $elink)."</td>".
"<td>".rawPlotLinks($id)."</td>".
Index: searchhtml.inc.php
===================================================================
RCS file: /cvsroot/basedb/basedb/include/web/searchhtml.inc.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** searchhtml.inc.php 23 Jan 2003 22:16:54 -0000 1.11
--- searchhtml.inc.php 18 Feb 2003 07:48:33 -0000 1.12
***************
*** 732,736 ****
if($headerfields)
! echo "<tr>";
for(reset($headerfields); list($i, $a) = each($headerfields); )
{
--- 732,736 ----
if($headerfields)
! echo "<tr style='white-space: nowrap'>";
for(reset($headerfields); list($i, $a) = each($headerfields); )
{
|