Changes between Initial Version and Version 1 of Ticket #12156, comment 3


Ignore:
Timestamp:
Jan 21, 2015, 3:33:47 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12156, comment 3

    initial v1  
    1 I am running :
    2 Trac    1.1.3dev
     1I am running Trac 1.1.3dev.
    32
    4 After looing through your code and my environment, it appears that there is an intersting issue with regard to the date/time formatting.  In lue of an actual fix for the issue :
     3After looking through your code and my environment, it appears that there is an interesting issue with regard to the date/time formatting.  In lue of an actual fix for the issue :
    54Code of issue :
     5{{{#!python
    66class RequiredFieldValidator(Component):
    77    """Basic ticket validator for required fields"""
     
    2222
    2323        return False
     24}}}
    2425
    25 Change I made inorder to allow the date/time format currently being used :
     26Change I made in order to allow the date/time format currently being used :
     27
     28{{{#!python
    2629class RequiredFieldValidator(Component):
    2730    """Basic ticket validator for required fields"""
     
    4245
    4346        return False
     47}}}
    4448
    45 Once commented out, there are no additional issues whatsoever, I've spent the better part of the night testing, and found no instance inwhich it was an issue.
     49Once commented out, there are no additional issues whatsoever, I've spent the better part of the night testing, and found no instance in which it was an issue.