Indefero

Indefero Commit Details


Date:2012-03-08 10:50:40 (12 years 9 months ago)
Author:Simon Holywell
Branch:develop
Commit:e0da21cbf82ccfd5a3ef6b678c199a5903ed78f3
Parents: 214d035d129a31f474df1cb289fc3dc127143cbc
Message:Normalize case of the due date title across the code

Changes:

File differences

src/IDF/Form/IssueCreate.php
114114
115115
116116
117
117
118118
119119
120120
));
$this->fields['due_dtime'] = new Pluf_Form_Field_Datetime(
array('required' => false,
'label' => __('Due Date'),
'label' => __('Due date'),
'initial' => '',
'widget_attrs' => array('size' => 15,),
));
src/IDF/Form/IssueUpdate.php
105105
106106
107107
108
108
109109
110110
111111
));
$this->fields['due_dtime'] = new Pluf_Form_Field_Datetime(
array('required' => false,
'label' => __('Due Date'),
'label' => __('Due date'),
'initial' => $this->issue->due_dtime,
'widget_attrs' => array('size' => 15,),
));
src/IDF/Issue.php
9595
9696
9797
98
9899
99100
100101
array(
'type' => 'Pluf_DB_Field_Datetime',
'blank' => true,
'is_null' => true,
'verbose' => __('due date'),
),
'status' =>
src/IDF/IssueComment.php
154154
155155
156156
157
157
158158
159159
160160
case 'ow':
$out .= __('Owner:'); break;
case 'du':
$out .= __('Due Date:'); break;
$out .= __('Due date:'); break;
case 'lb':
$out .= __('Labels:'); break;
case 'rel':
src/IDF/templates/idf/issues/view.html
4040
4141
4242
43
43
4444
4545
4646
{if $i> 0 and $c.changedIssue()}
<div class="issue-changes">
{foreach $c.changes as $w => $v}
<strong>{if $w == 'su'}{trans 'Summary:'}{/if}{if $w == 'st'}{trans 'Status:'}{/if}{if $w == 'ow'}{trans 'Owner:'}{/if}{if $w == 'du'}{trans 'Due Date:'}{/if}{if $w == 'lb'}{trans 'Labels:'}{/if}{if $w == 'rel'}{trans 'Relations:'}{/if}</strong>
<strong>{if $w == 'su'}{trans 'Summary:'}{/if}{if $w == 'st'}{trans 'Status:'}{/if}{if $w == 'ow'}{trans 'Owner:'}{/if}{if $w == 'du'}{trans 'Due date:'}{/if}{if $w == 'lb'}{trans 'Labels:'}{/if}{if $w == 'rel'}{trans 'Relations:'}{/if}</strong>
{if $w == 'lb' or $w == 'rel'}
{foreach $v as $t => $ls}
{foreach $ls as $l}

Archive Download the corresponding diff file

Page rendered in 0.08868s using 13 queries.