[mythtv] Re: [mythtv-commits] mythtv commits

Robert Tsai rtsai1111 at comcast.net
Wed Apr 20 01:34:14 UTC 2005


This patch is not quite correct. The committed patch was:

	% cvs diff -r1.3 -r1.4 programs/mythbackend/httpstatus.cpp
	Index: programs/mythbackend/httpstatus.cpp
	===================================================================
	RCS file: /var/lib/mythcvs/mythtv/programs/mythbackend/httpstatus.cpp,v
	retrieving revision 1.3
	retrieving revision 1.4
	diff -r1.3 -r1.4
	577,578c577,578
	<                             statusColor = "class=\"jobqueued";
	<                             jobColor = "class=\"jobqueued";
	---
	>                             statusColor = "class=\"jobqueued\"";
	>                             jobColor = "class=\"jobqueued\"";

The patch inadvertently omitted another leading space in front of "class=" (the
current generated HTML is "<fontclass=" instead of "<font class=". A patch
against current CVS head follows:

Index: programs/mythbackend/httpstatus.cpp
===================================================================
RCS file: /var/lib/mythcvs/mythtv/programs/mythbackend/httpstatus.cpp,v
retrieving revision 1.4
diff -u -r1.4 httpstatus.cpp
--- programs/mythbackend/httpstatus.cpp 18 Apr 2005 03:15:03 -0000      1.4
+++ programs/mythbackend/httpstatus.cpp 20 Apr 2005 01:32:56 -0000
@@ -574,8 +574,8 @@
                             break;

                         default:
-                            statusColor = "class=\"jobqueued\"";
-                            jobColor = "class=\"jobqueued\"";
+                            statusColor = " class=\"jobqueued\"";
+                            jobColor = " class=\"jobqueued\"";
                             break;
                     }

On Mon, Apr 18, 2005 at 03:20:03AM +0000, mythtv at cvs.mythtv.org wrote:
> ----------------------------------------------------------------------------
> Changes committed by cpinkham on Mon Apr 18 03:15:03 2005
> 
> Modified Files:
>    in mythtv/programs/mythbackend:
>         httpstatus.cpp 
> Log Message:
> 
> 
> * Bugfix for html typo in status webpage.  Submitted by Robert Tsai on
>   the -dev list.
> 
> ----------------------------------------------------------------------------
> Changes committed by cpinkham on Mon Apr 18 03:17:02 2005
>   on branch: release-0-18-fixes
> 
> Modified Files:
>    in mythtv/programs/mythbackend:
>         httpstatus.cpp 
> Log Message:
> 
> 
> * Bugfix for html typo in status webpage.  Submitted by Robert Tsai on
>   the -dev list.
> 
> ----------------------------------------------------------------------------

> _______________________________________________
> mythtv-commits mailing list
> mythtv-commits at mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


--Rob


More information about the mythtv-dev mailing list