pieforms-commit Mailing List for Pieforms
Status: Alpha
Brought to you by:
oracleshinoda
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(73) |
Dec
(83) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(16) |
Feb
(19) |
Mar
(12) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(14) |
Sep
(2) |
Oct
(1) |
Nov
(2) |
Dec
(45) |
2008 |
Jan
(20) |
Feb
(3) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
2009 |
Jan
(2) |
Feb
(2) |
Mar
|
Apr
(2) |
May
(1) |
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(7) |
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
(2) |
27
|
28
(1) |
29
|
|
From: <ora...@us...> - 2008-02-28 08:43:49
|
Revision: 291 http://pieforms.svn.sourceforge.net/pieforms/?rev=291&view=rev Author: oracleshinoda Date: 2008-02-28 00:43:47 -0800 (Thu, 28 Feb 2008) Log Message: ----------- Fixed a warning caused by not making a variable a global properly. Modified Paths: -------------- pieforms-php5/trunk/src/pieform/elements/textarea.php Modified: pieforms-php5/trunk/src/pieform/elements/textarea.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/textarea.php 2008-02-26 22:13:42 UTC (rev 290) +++ pieforms-php5/trunk/src/pieform/elements/textarea.php 2008-02-28 08:43:47 UTC (rev 291) @@ -25,6 +25,7 @@ */ // TODO: plugins as classes... +global $_PIEFORM_TEXTAREAS; $_PIEFORM_TEXTAREAS = array(); /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ora...@us...> - 2008-02-26 22:13:38
|
Revision: 290 http://pieforms.svn.sourceforge.net/pieforms/?rev=290&view=rev Author: oracleshinoda Date: 2008-02-26 14:13:42 -0800 (Tue, 26 Feb 2008) Log Message: ----------- Added 'submit' and 'cancel' classes to the buttons in the submitcancel element, making them easier to tell apart. Modified Paths: -------------- pieforms-php5/trunk/src/pieform/elements/submitcancel.php Modified: pieforms-php5/trunk/src/pieform/elements/submitcancel.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/submitcancel.php 2008-02-26 03:28:20 UTC (rev 289) +++ pieforms-php5/trunk/src/pieform/elements/submitcancel.php 2008-02-26 22:13:42 UTC (rev 290) @@ -39,8 +39,10 @@ $form->include_plugin('element', 'submit'); $form->include_plugin('element', 'cancel'); $submitelement = $element; + $submitelement['class'] = (isset($submitelement['class'])) ? $submitelement['class'] . ' submit' : 'submit'; $submitelement['value'] = $element['value'][0]; $cancelelement = $element; + $cancelelement['class'] = (isset($cancelelement['class'])) ? $cancelelement['class'] . ' cancel' : 'cancel'; $cancelelement['value'] = $element['value'][1]; if (isset($element['confirm']) && isset($element['confirm'][0])) { $submitelement['confirm'] = $element['confirm'][0]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ora...@us...> - 2008-02-26 03:28:16
|
Revision: 289 http://pieforms.svn.sourceforge.net/pieforms/?rev=289&view=rev Author: oracleshinoda Date: 2008-02-25 19:28:20 -0800 (Mon, 25 Feb 2008) Log Message: ----------- Allow the description line to be output as two cells rather than just one with a colspan if the user wants. Modified Paths: -------------- pieforms-php5/trunk/src/pieform/renderers/table.php Modified: pieforms-php5/trunk/src/pieform/renderers/table.php =================================================================== --- pieforms-php5/trunk/src/pieform/renderers/table.php 2008-01-30 02:33:29 UTC (rev 288) +++ pieforms-php5/trunk/src/pieform/renderers/table.php 2008-02-26 03:28:20 UTC (rev 289) @@ -80,7 +80,12 @@ // Description - optional description of the element, or other note that should be visible // on the form itself (without the user having to hover over contextual help if ((!$form->has_errors() || $form->get_property('showdescriptiononerror')) && !empty($element['description'])) { - $result .= "\t<tr>\n\t\t<td colspan=\"2\" class=\"description\">"; + if ($form->get_property('descriptionintwocells')) { + $result .= "\t<tr>\n\t\t<td></td><td class=\"description\">"; + } + else { + $result .= "\t<tr>\n\t\t<td colspan=\"2\" class=\"description\">"; + } $result .= $element['description']; $result .= "</td>\n\t</tr>\n"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |