Allow reasonable default dates in ISO 9601 format. Fixes bug #12165.
This commit is contained in:
parent
7e8ae8fe9a
commit
e3a4afe5c3
4 changed files with 98 additions and 9 deletions
|
|
@ -1042,18 +1042,22 @@ sub getFieldValue {
|
|||
my $dateFormat = shift || "%z";
|
||||
my $dateTimeFormat = shift;
|
||||
my $processedValue = $value;
|
||||
my $dbh = $self->session->db->dbh;
|
||||
my $session = $self->session;
|
||||
my $dbh = $session->db->dbh;
|
||||
|
||||
if (lc $field->{fieldType} eq "date"){
|
||||
$processedValue = $self->session->datetime->epochToHuman($value,$dateFormat);
|
||||
my $fieldType = lc $field->{fieldType};
|
||||
if ($fieldType eq "date"){
|
||||
my $dt = WebGUI::DateTime->new($session, $value);
|
||||
$processedValue = $dt->webguiDate($dateFormat);
|
||||
}
|
||||
elsif (lc $field->{fieldType} eq "datetime"){
|
||||
$processedValue = $self->session->datetime->epochToHuman($value,$dateTimeFormat);
|
||||
elsif ($fieldType eq "datetime"){
|
||||
my $dt = WebGUI::DateTime->new($session, $value);
|
||||
$processedValue = $dt->webguiDate($dateTimeFormat);
|
||||
}
|
||||
# TODO: The otherThing field type is probably also handled by getFormPlugin, so the elsif below can probably be
|
||||
# safely removed. However, this requires more testing than I can provide right now, so for now this stays the
|
||||
# way it was.
|
||||
elsif ($field->{fieldType} =~ m/^otherThing/x) {
|
||||
elsif ($field->{fieldType} =~ m/^otherthing/x) {
|
||||
my $otherThingId = $field->{fieldType};
|
||||
$otherThingId =~ s/^otherThing_//x;
|
||||
my $tableName = 'Thingy_'.$otherThingId;
|
||||
|
|
@ -2112,7 +2116,7 @@ sub www_editThing {
|
|||
$self->session->style->setLink($self->session->url->extras('wobject/Thingy/thingy.css'), {type
|
||||
=>'text/css', rel=>'stylesheet'});
|
||||
|
||||
$tab = $tabForm->getTab('fields');
|
||||
$session->log->warn("one");
|
||||
foreach my $fieldType ( keys %{ WebGUI::Form::FieldType->new($session)->getTypes }) {
|
||||
my $form = eval { WebGUI::Pluggable::instanciate("WebGUI::Form::".$fieldType, "new", [$session]) };
|
||||
if ($@) {
|
||||
|
|
|
|||
|
|
@ -456,8 +456,8 @@ ipAddress etc?|,
|
|||
|
||||
'default value description' => {
|
||||
message => q|Enter the default value (if any) for the field. If you have defined the possible values for
|
||||
this field using a hash, then the default value has to be a key in that hash, and not a value. For Yes/No fields, enter "yes" to select "Yes" and "no" to select "No".|,
|
||||
lastUpdated => 1223372150,
|
||||
this field using a hash, then the default value has to be a key in that hash, and not a value. For Yes/No fields, enter "yes" to select "Yes" and "no" to select "No". For Date and Date/Time fields, enter an epoch date, or a date in YYYY-MM-DD HH:MM:SS, the ISO 9601 format with optional time|,
|
||||
lastUpdated => 1309814047,
|
||||
},
|
||||
|
||||
'default value subtext' => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue