Always print the name of the current CVS tree.

This commit is contained in:
Wolfram Schneider 1998-08-13 10:35:26 +00:00
parent 65cbcbd87e
commit 0d88a0eb49
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=3335

View file

@ -28,7 +28,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE. # SUCH DAMAGE.
# #
# $Id: cvsweb.cgi,v 1.21 1998-07-23 09:42:40 wosch Exp $ # $Id: cvsweb.cgi,v 1.22 1998-08-13 10:35:26 wosch Exp $
# #
@ -173,8 +173,9 @@ if (-d $fullname) {
print $shortinstr; print $shortinstr;
} }
print "<p>"; print "<p>";
print "Current CVS tree: <b>$cvstree</b><br>\n" print "Current CVS tree: <b>",
if $cvstree ne $cvstreedefault; ($CVSROOTdescr{"$cvstree"} ? $CVSROOTdescr{"$cvstree"} :
$cvstree), "</b><br>\n";
print "Current directory: <b>/$where</b>\n"; print "Current directory: <b>/$where</b>\n";
print "<P><HR NOSHADE>\n"; print "<P><HR NOSHADE>\n";
# Using <MENU> in this manner violates the HTML2.0 spec but # Using <MENU> in this manner violates the HTML2.0 spec but