svn commit: r47839 - head/en_US.ISO8859-1/htdocs/cgi
Benjamin Kaduk <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.doc |
|---|---|
| Message-ID | <[email protected]> |
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:"),
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-doc-all
To unsubscribe, send any mail to "[email protected]"