Home | History | Annotate | Download | only in projectName

Lines Matching refs:row

75 $row = mysql_fetch_row($count);
76 $rows = $row[0];
88 while ($row = mysql_fetch_assoc($result))
90 $file = basename($row["cvsname"], ",v");
91 $row["cvsname"] = preg_replace("#^/cvsroot/[^\/]+/(.+),v$#", "$1", $row["cvsname"]);
93 print "<div>{$row['date']}</div>";
94 print ($row["bugid"] ? "[<a href=\"https://bugs.eclipse.org/bugs/show_bug.cgi?id={$row['bugid']}\">{$row['bugid']}</a>] " : "");
95 print "<a href=\"" . cvsfile($row["cvsname"]) . "\"><abbr title=\"{$row['cvsname']}\">$file</abbr></a> ({$row['branch']} " . showrev($row['revision'], $row["cvsname"]) . ")";
97 print "<li><div>{$row['author']}</div>" . pretty_comment($row["message"], $q) . "</li>";