<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">&lt;mem@mv.mv.com&gt;</a>
          <br>
        </blockquote>
        <br>
        <blockquote type="cite">&lt;starttime&gt;
          <br>
          2013-11-14T18:14:00-05:00
          <br>
          &lt;/starttime&gt;
          <br>
        </blockquote>
        <br>
        Is that actually a valid format?&nbsp; 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.&nbsp; This bit is working in
      current tests - but the fix hasn't been committed yet.
      <br>
      <br>
      John P
      <br>
    </blockquote>
    Not exactly true.&nbsp; Mark still needed to apply the TZoffset patch
    after fixing the EOL characters to get it all working.&nbsp;
    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.&nbsp;
    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&nbsp;&nbsp;&nbsp; 2013-09-23 18:09:40.000000000 -0500<br>
    +++ mythburn.py.zig&nbsp;&nbsp;&nbsp; 2013-09-26 07:50:53.479406824 -0500<br>
    @@ -1426,7 +1426,7 @@<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data.description&nbsp;&nbsp;&nbsp; = rec.description<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data.rating&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = str(rec.stars)<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data.chanid&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = rec.chanid<br>
    -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data.starttime&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = rec.starttime.isoformat()<br>
    +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data.starttime&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = rec.starttime.utcisoformat()<br>
    &nbsp;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cutlist = rec.markup.getcutlist()<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if len(cutlist):<br>
    ______________________________________________<br>
    Ziggy<br>
  </body>
</html>