Edgewall Software

Changes between Version 43 and Version 44 of GenshiTutorial


Ignore:
Timestamp:
Aug 30, 2007, 9:10:46 PM (17 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v43 v44  
    307307        <a href="${link.url}">${link.title}</a>
    308308        posted by ${link.username}
    309         at ${link.time.strftime('%M/%d/%Y %H:%m')}
     309        at ${link.time.strftime('%x %X')}
    310310      </li>
    311311    </ol>
     
    727727        <a href="${link.url}">${link.title}</a>
    728728        posted by ${link.username}
    729         at ${link.time.strftime('%M/%d/%Y %H:%m')}
     729        at ${link.time.strftime('%x %X')}
    730730      </li>
    731731    </ol>
     
    770770      <li py:for="link in links">
    771771        <a href="${link.url}">${link.title}</a>
    772         posted by ${link.username} at ${link.time.strftime('%m/%d/%Y %H:%M')}
     772        posted by ${link.username} at ${link.time.strftime('%x %X')}
    773773        <div class="info">
    774774          <a href="${url('/info/%s/' % link.id)}">
     
    814814    <h1>${link.title}</h1>
    815815    <a href="${link.url}">${link.url}</a><br />
    816     posted by ${link.username} at ${link.time.strftime('%m/%d/%Y %H:%M')}<br />
     816    posted by ${link.username} at ${link.time.strftime('%x %X')}<br />
    817817    <a href="${url('/comment/%s/' % link.id)}">comment</a>
    818818    <ul py:if="link.comments" class="comments">
    819819      <li py:for="comment in link.comments">
    820820        <strong>${comment.username}</strong>
    821         at ${comment.time.strftime('%m/%d/%Y %H:%M')}
     821        at ${comment.time.strftime('%x %X')}
    822822        <blockquote>${comment.content}</blockquote>
    823823      </li>
     
    889889    <p py:if="comment">
    890890      In reply to <strong>${comment.username}</strong>
    891       at ${comment.time.strftime('%M/%d/%Y %H:%m')}:
     891      at ${comment.time.strftime('%x %X')}:
    892892      <blockquote>${comment.content}</blockquote>
    893893    </p>