Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Dec 2015 04:44:48 +0000 (UTC)
From:      Benjamin Kaduk <bjk@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r47839 - head/en_US.ISO8859-1/htdocs/cgi
Message-ID:  <201512100444.tBA4imTH060318@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bjk
Date: Thu Dec 10 04:44:48 2015
New Revision: 47839
URL: https://svnweb.freebsd.org/changeset/doc/47839

Log:
  A couple simple tweaks to the status report generator
  
  The description for URLs is no longer optional, and the indentation
  depth should be multiplied by two, not three, to yield the appropriate
  number of spaces.

Modified:
  head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi

Modified: head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi	Wed Dec  9 20:48:51 2015	(r47838)
+++ head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi	Thu Dec 10 04:44:48 2015	(r47839)
@@ -53,7 +53,7 @@ sub xmltext
 {
 	my($Indent, @Text) = @_;
 
-	my $Spaces = " " x ($Indent*3);
+	my $Spaces = " " x ($Indent*2);
 
 	return map { "$Spaces$_\n" } @Text;
 }
@@ -241,7 +241,7 @@ print
 					 "COLS"   => 2,
 					 "NOSAVE" => 1},
 					TR(td("Url"),
-					   td("Description (optional)")),
+					   td("Description")),
 					@LinksTable)),
 
    h3("Present status:"),



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512100444.tBA4imTH060318>