svn commit: r47839 - head/en_US.ISO8859-1/htdocs/cgi

Benjamin Kaduk bjk at FreeBSD.org
Thu Dec 10 04:44:50 UTC 2015


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:"),


More information about the svn-doc-all mailing list