jquery.strftime 1.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News jquery.strftime 1.0 (Default branch)
# 1  
Old 12-07-2008
jquery.strftime 1.0 (Default branch)

jquery.strftime is a JQuery plugin that implements a limited strftime() function. This function can be directly applied to HTML elements or called from inside JavaScript code. The plugin has limited support for internationalization; while no direct way of specifying a locale exists, it is possible to modify the strings used by the plugin for month names and day names, as well as the default format. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help on awk strftime

cat file 41285.000034722223 41285.000567129631 41285.000069444446 41285.001122685186 41285.000092592592 41285.001620370371 41285.000138888892 41285.00340277778 41285.000185185185 41285.000405092593 41285.000196759262 41285.000856481478 41285.000208333331 41285.000717592593... (5 Replies)
Discussion started by: phpshell
5 Replies

2. Programming

strftime equivalent in c++

HI, i wish to convert a millsec value to a readable string format. the one option is to use strftime. However this is a bit costly (1-5 micros). is there a a faster way to do so with just string manipulation (Note i have the date object which has the time details but wish o avoid strftime) (2 Replies)
Discussion started by: wojtyla
2 Replies

3. Shell Programming and Scripting

perl replace awk strftime

Hi Everyone i have a perl file below, one of the line is convert the pcho time to human readable format. $value=`awk 'BEGIN{print strftime("%c",1273236600)}' | tr -d '\n'`; if image, if i have lots of pcho time value in a file, if i use this awk, strftime, then tr -d to remove the \n,... (2 Replies)
Discussion started by: jimmy_y
2 Replies

4. Shell Programming and Scripting

gawk and strftime()

Strange behaviour of the strftime() function from gawk (3.1.5): $ awk 'BEGIN{print strftime("%T", 3600)}' > 02:00:00 $ awk 'BEGIN{print strftime("%T", 0)}' > 01:00:00 Obviously something with DST but I can not figure out why? To me 3600 epoch seconds remains 01:00, DST or not. From... (2 Replies)
Discussion started by: ripat
2 Replies
Login or Register to Ask a Question
HTML::FormFu::Deflator::Strftime(3pm)			User Contributed Perl Documentation		     HTML::FormFu::Deflator::Strftime(3pm)

NAME
HTML::FormFu::Deflator::Strftime - Strftime deflator SYNOPSIS
$form->deflator( Strftime => 'start_time' ) ->strftime( '%d/%m/%Y' ); --- elements: - type: Text inflators: - type: DateTime parser: strptime: "%Y/%m/%d" deflator: - type: Strftime strftime: "%Y/%m/%d" DESCRIPTION
Strftime deflator for DateTime objects. When you redisplay a form to the user following an invalid submission, any fields with DateTime inflators will stringify to something like '1970-01-01T00:00:00'. In most cases it makes more sense to use the same format you've asked the user for. This deflator allows you to specify a more suitable and user-friendly format. This deflator calls DateTime's "strftime" method. Possible values for the format string are documented at <http://search.cpan.org/dist/DateTime/lib/DateTime.pm#strftime_Patterns>. If you set the form's locale (see "locale" in HTML::FormFu) this is set on the DateTime object. Now you can use %x to get the default date or %X for the default time for the object's locale. AUTHOR
Carl Franks, "cfranks@cpan.org" LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 HTML::FormFu::Deflator::Strftime(3pm)