<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000001">
<br>
<div class="moz-cite-prefix">On 11/19/2013 2:37 AM, John Pilkington
wrote:<br>
</div>
<blockquote cite="mid:528B234E.30207@tesco.net" type="cite">On
19/11/13 06:34, Jay Ashworth wrote:
<br>
<blockquote type="cite">----- Original Message -----
<br>
<blockquote type="cite">From: "Mark E. Mallett"
<a class="moz-txt-link-rfc2396E" href="mailto:mem@mv.mv.com"><mem@mv.mv.com></a>
<br>
</blockquote>
<br>
<blockquote type="cite"><starttime>
<br>
2013-11-14T18:14:00-05:00
<br>
</starttime>
<br>
</blockquote>
<br>
Is that actually a valid format? I don't expect a colon in the
TZoffset.
<br>
<br>
[ looks ]
<br>
<br>
I see that 8601 permits that in the ASCII representation, but is
it possible
<br>
that the code parsing it is unhappy about it?
<br>
<br>
Cheers,
<br>
-- jra
<br>
<br>
</blockquote>
<br>
It's now clear that the TZoffset wasn't the problem. That was the
presence of (End-of-Line) etc characters. This bit is working in
current tests - but the fix hasn't been committed yet.
<br>
<br>
John P
<br>
</blockquote>
Not exactly true. Mark still needed to apply the TZoffset patch
after fixing the EOL characters to get it all working.
Mythtranscode does not seem to understand having a timezone offset
appended to the command line.<br>
<br>
And by the way, the currently committed TZoffset patch that was just
pushed to master and fixes is still missing one of the corrections.
The following one line patch still needs to be applied to the
currently shipping mythburn.py to make it work:<br>
<br>
______________________________________________<br>
--- mythburn.py 2013-09-23 18:09:40.000000000 -0500<br>
+++ mythburn.py.zig 2013-09-26 07:50:53.479406824 -0500<br>
@@ -1426,7 +1426,7 @@<br>
data.description = rec.description<br>
data.rating = str(rec.stars)<br>
data.chanid = rec.chanid<br>
- data.starttime = rec.starttime.isoformat()<br>
+ data.starttime = rec.starttime.utcisoformat()<br>
<br>
cutlist = rec.markup.getcutlist()<br>
if len(cutlist):<br>
______________________________________________<br>
Ziggy<br>
</body>
</html>