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
WCSFTIME(3)						   BSD Library Functions Manual 					       WCSFTIME(3)

NAME
wcsftime, wcsftime_l -- convert date and time to a wide-character string LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <wchar.h> size_t wcsftime(wchar_t *restrict wcs, size_t maxsize, const wchar_t *restrict format, const struct tm *restrict timeptr); #include <wchar.h> #include <xlocale.h> size_t wcsftime_l(wchar_t *restrict wcs, size_t maxsize, const wchar_t *restrict format, const struct tm *restrict timeptr, locale_t loc); DESCRIPTION
The wcsftime() function is equivalent to the strftime() function, except for the types of its arguments. Refer to strftime(3) for a detailed description. While the wcsftime() function uses the current locale, the wcsftime_l() function may be passed a locale directly. See xlocale(3) for more information. COMPATIBILITY
Some early implementations of wcsftime() had a format argument with type const char *, instead of const wchar_t *. SEE ALSO
strftime(3), xlocale(3) STANDARDS
The wcsftime() function conforms to ISO/IEC 9899:1999 (``ISO C99''). BSD
September 8, 2002 BSD