Added more useful time info
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@1507 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
@ -20,14 +20,14 @@ sub default() {
|
||||
|
||||
print h3("<center>PMD-WEB</center>");
|
||||
print "PMD is a Java source code analysis tool - it checks your code for unused fields, empty try/catch/finally/if/while blocks, unused method parameters, and stuff like that. There's much more info <a href=\"http://pmd.sf.net/\">here</a>.<p>This table contains the results of running PMD's <a href=\"http://pmd.sourceforge.net/rules/unusedcode.html\">unused code ruleset</a> against a bunch of Sourceforge projects. The JavaNCSS column contains the lines of code analyzed as reported by the excellent <a href=\"http://www.kclee.com/clemens/java/javancss/\">JavaNCSS</a> utility.";
|
||||
print "<p>Comments? Questions? Please post them <a href=\"http://sourceforge.net/forum/forum.php?forum_id=188192\">here</a>";
|
||||
print "<p><b>1/31/03: The jakarta.apache.org and xml.apache.org projects have been moved <a href=\"http://cvs.apache.org/~tcopeland/pmdweb/\">here</a></b>";
|
||||
print br();
|
||||
print "<p>Comments? Questions? Please post them <a href=\"http://sourceforge.net/forum/forum.php?forum_id=188192\">here</a>.<br>";
|
||||
open(FILE,"lastruntime.txt");
|
||||
my $lastruntime=<FILE>;
|
||||
close(FILE);
|
||||
print br();
|
||||
print "This report is run 10 minutes past the hour at midnight, 3, 6, 9, 12, 15, 18, and 21 hours U.S. Pacific Standard Time. The last run finished at ", $lastruntime;
|
||||
print "This report is run 10 minutes past the hour at midnight, 3, 6, 9, 12, 15, 18, and 21 hours U.S. Pacific Standard Time.<br>The last run finished at ", $lastruntime, ". Right now it's ", ctime(), ".";
|
||||
print "<p><b>1/31/03: The jakarta.apache.org and xml.apache.org projects have been moved <a href=\"http://cvs.apache.org/~tcopeland/pmdweb/\">here</a></b>";
|
||||
print br();
|
||||
print hr();
|
||||
|
||||
if (param("unixname")) {
|
||||
|
Reference in New Issue
Block a user