|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
18 | | -# $Id: htmltemplate.py,v 1.50 2002-01-05 02:35:10 richard Exp $ |
| 18 | +# $Id: htmltemplate.py,v 1.51 2002-01-10 10:02:15 grubert Exp $ |
19 | 19 |
|
20 | 20 | __doc__ = """ |
21 | 21 | Template engine. |
@@ -457,8 +457,9 @@ def do_history(self, **args): |
457 | 457 | _('<td><span class="list-item"><strong>Args</strong></span></td>')] |
458 | 458 |
|
459 | 459 | for id, date, user, action, args in self.cl.history(self.nodeid): |
| 460 | + date_s = str(date).replace("."," ") |
460 | 461 | l.append('<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>'%( |
461 | | - date, user, action, args)) |
| 462 | + date_s, user, action, args)) |
462 | 463 | l.append('</table>') |
463 | 464 | return '\n'.join(l) |
464 | 465 |
|
@@ -885,6 +886,9 @@ def render(self, form): |
885 | 886 |
|
886 | 887 | # |
887 | 888 | # $Log: not supported by cvs2svn $ |
| 889 | +# Revision 1.50 2002/01/05 02:35:10 richard |
| 890 | +# I18N'ification |
| 891 | +# |
888 | 892 | # Revision 1.49 2001/12/20 15:43:01 rochecompaan |
889 | 893 | # Features added: |
890 | 894 | # . Multilink properties are now displayed as comma separated values in |
|
0 commit comments