Changeset 12899
- Timestamp:
- 10/27/11 11:38:57 (7 months ago)
- Location:
- trunk/ActionTrackerPlugin
- Files:
-
- 3 edited
-
data/System/ActionTrackerPlugin.txt (modified) (2 diffs)
-
lib/Foswiki/Plugins/ActionTrackerPlugin.pm (modified) (1 diff)
-
lib/Foswiki/Plugins/ActionTrackerPlugin/Format.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ActionTrackerPlugin/data/System/ActionTrackerPlugin.txt
r12623 r12899 450 450 | =ACTIONTRACKERPLUGIN_CLOSEBUTTONCLOSED= | =Closed= | 451 451 452 ---+++ Formatting dates produced by the pop-up editor 453 454 ActionTrackerPlugin will use the extension [[Foswiki:Extensions/JSCalendarContrib]] for displaying the calendar popup allowing for date selection when editing actions. It will format the selected date according to the settings specified for JSCalendarContrib. 455 456 Refer to the System.JSCalendarContrib documentation to learn [[System.JSCalendarContrib#CustomizingTheAppearance][how to customize]] these settings system-wide, for a web or topic using the available date [[System.JSCalendarContrib#FormatSpecifiers][format specifiers]] for this extension. 457 452 458 ---+++ Known Limitations and Debugging 453 459 … … 487 493 | License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) | 488 494 | Change History: | | 495 | 2.4.7 (27 Oct 2011) | Foswiki:Tasks/Item11155: Use Foswiki date format settings for rendering the pop-up calendar dates instead of hardcoding them - Foswiki:Main.RaulFRodriguez | 489 496 | 2.4.6 (24 Sep 2011) | Foswiki:Tasks/Item11141: corrected problem with rendering $link in view | 490 497 | 2.4.5 (26 May 2011) | Foswiki:Tasks/Item2021: added a ink to the text mail notification format | -
trunk/ActionTrackerPlugin/lib/Foswiki/Plugins/ActionTrackerPlugin.pm
r12622 r12899 10 10 11 11 our $VERSION = '$Rev$'; 12 our $RELEASE = '2.4. 6';12 our $RELEASE = '2.4.7'; 13 13 our $SHORTDESCRIPTION = 14 14 'Adds support for action tags in topics, and automatic notification of action statuses'; -
trunk/ActionTrackerPlugin/lib/Foswiki/Plugins/ActionTrackerPlugin/Format.pm
r12622 r12899 401 401 eval 'use Foswiki::Contrib::JSCalendarContrib'; 402 402 unless ($@) { 403 my $dateformat = Foswiki::Func::getPreferencesValue('JSCALENDARCONTRIB_FORMAT') || 404 $Foswiki::cfg{JSCalendarContrib}{format} || 405 '%e %B %Y'; 403 406 @extras = ( id => "date_$attrname" ); 404 407 $content = CGI::image_button( 405 408 -name => 'calendar', 406 409 -onclick => 407 "return showCalendar('date_$attrname',' %e %B %Y')",410 "return showCalendar('date_$attrname','$dateformat')", 408 411 -src => Foswiki::Func::getPubUrlPath() . '/' 409 412 . $Foswiki::cfg{SystemWebName}
Note: See TracChangeset
for help on using the changeset viewer.
