Displaying 20 results from an estimated 8000 matches similar to: "Voicemail.conf: where to fin strftime manual entry ?"
2003 Sep 19
1
VoiceMail fromstring?
I'm having tons of trouble getting the fromstring to work in
voicemail.conf. I've tried both voicemail and voicemail2 but the emails
still seem to be coming from asterisk pbx. Has anyone had any luck with
this?
=================
Here's my voicemail.conf:
;
; Voicemail Configuration
;
[general]
; Default formats for writing Voicemail
;format=g723sf|wav49|wav
format=wav49|gsm|wav
;
2010 Jul 13
3
STRFTIME function declared in globals context
I'm trying to declare a few date-related global variables to ease my
dialplan. When I declare the following in the [globals] context of
extensions.conf, I get unexpected results:
YEAR = ${STRFTIME(${EPOCH},,%Y)}
MONTH = ${STRFTIME(${EPOCH},,%m)}
DAY = ${STRFTIME(${EPOCH},,%d)}
TIMESTAMP = ${STRFTIME(${EPOCH},,%Y%m%d-%H%M%S)}
If I evaluate these variables in the dialplan later, using
exten
2013 May 16
1
strftime
Hello,
I'm a little surprised about the result of strftime for my data.
> str(time)
chr [1:315504] "2006-01-01 00:10:00" "2006-01-01 00:20:00" "2006-01-01
00:30:00" ...
> str(strftime(time,format="%Y-%m-%d %H:%M:%S"))
chr [1:315504] "2006-01-01 00:00:00" "2006-01-01 00:00:00" "2006-01-01
00:00:00" ...
Why
2008 Feb 04
1
strftime fails on POSIXct objects (PR#10695)
R 2.6.1 on a Thinkpad T60 running up-to-date Gentoo:
Despite the documentation, which says:
'strftime' is an alias for 'format.POSIXlt', and 'format.POSIXct'
first converts to class '"POSIXlt"' by calling 'as.POSIXlt'. Note
that only that conversion depends on the time zone.
strftime fails on POSIXct objects:
> foo <-
2011 Mar 10
1
Timezone issue with strftime/strptime and %z and %Z
Hello!
I've been trying to get this right for quite a while now and fear
there is an easy solution I just don't see. I did not have this
problem in Linux, and I searched r-help and Google but did not find a
solution, but of course I am grateful for and resources I might not
have found our not understood yet.
I try to parse a time stamp with time zone. I essentially just want to
parse the
2012 Feb 03
3
strftime - Dates from Excel files
Hi
I have many excel files were the Date field was not declared as date,
so the dates look like this: 1/2/1978
I know that the format is day/month/year
How can I make R change this to Date format?
If I use strftime, I get wrong dates:
dataset=c("1/2/1978")
strftime(dataset,"%d/%m/%Y")
"19/02/0001"
Thanks in advance.
2010 Oct 29
2
strftime vs strptime ??
Hello
Could anyone explain me the difference between strftime vs strptime, please
?
I've read the help but it's a little bit cionfusing for me.
cheers
--
View this message in context: http://r.789695.n4.nabble.com/strftime-vs-strptime-tp3018865p3018865.html
Sent from the R help mailing list archive at Nabble.com.
2006 Jul 28
6
STRFTIME() why is it not defined
I am trying to take the input from a field in wich the user enters a
date, and formatting it to my time format
if params[:gotcha] != ''''
gotc = params[:date].to_a
gotc.strftime("%m/%d/%y")
end
Yet I get this error:
NoMethodError in AddController#add
undefined method `strftime? for ["00000"]
What''s wrong. I''m positive this method is
2006 May 13
1
undefined method `strftime'', being called from a partial.
Hi,
I''m having an issue with calling a function that I''ve defined in
ApplicationHelper called format_time:
module ApplicationHelper
def format_time(time)
time.strftime("%a %b %d, %I:%M%p")
end
end
I use this function in my views to format the Time.now that I would have
stored in my tables as a DATETIME. I''m able to use this function, without
any
2005 Feb 11
1
Asterisk-MySQL: Not loading voicemail config from MySQL
Folks,
I'm trying to get Asterisk to load my voicemail
configuration from MySQL. I've followed the
instructions at:
http://www.voip-info.org/wiki-Asterisk+voicemail+database
I restarted Asterisk, but no luck: the voicemail.conf
does not get updated. I started with a sample
voicemail.conf that I found on the Wiki. Or was it
from Voicepulse? I can't remember. For initial
testing, I
2012 Jun 26
4
ActionView::Template::Error (undefined method `strftime' for nil:NilClass)
Hello, I''m a newbie. I need help resolving this issue. I recently added a
pdf to the newsletter admin section of the website and now I can no longer
view page 2 of the list of pdf''s. Nor can I login to see the newsletters as
a student. I''m using Ruby 1.9.3, Rails 3.2.1.
Here''s the information from the log file.
ActionView::Template::Error (undefined
2012 Jun 25
1
ActionView::Template::Error (undefined method `strftime' for nil:NilClass):
Hello, I''m a newbie. I need help resolving this issue. I recently added a
pdf to the newsletter admin section of the website and now I can no longer
view page 2 of the list of pdf''s. Nor can I login to see the newsletters as
a student. I''m using Ruby 1.9.3, Rails 3.2.1.
Here''s the information from the log file.
ActionView::Template::Error (undefined
2008 Dec 09
1
Voicemail.conf : concise hour prompts
Hi,
In voicemail.conf:
; Supported values:
; 'filename' filename of a soundfile (single ticks around the filename
; required)
; ${VAR} variable substitution
; A or a Day of week (Saturday, Sunday, ...)
; B or b or h Month name (January, February, ...)
; d or e numeric day of month (first, second, ..., thirty-first)
; Y Year
; I or l
2011 Mar 21
7
wrong time retrieved from system command
${STRFTIME(${EPOCH},GMT+8,%G%m%d-%H%M%S)}
I use the above command to get the system date and time
it returns 20110321-034329
but it is exactly 8 hours early than the system time when I type date in
linux terminal
Mon Mar 21 19:43:35 HKT 2011
I am looking for help.
CK
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2008 Oct 29
1
strptime and strftime
Dear R experts..
I am trying to understand what exactly strptime and strftime do...
Where can I look for the detailed notes on these two functions? In addition,
how POSIX functions like POSIXct and POSIXlt are used in these functions?
Regards,
Santosh
[[alternative HTML version deleted]]
2007 Apr 05
1
Extent of time zone vulerability for POSIX date and time classes
Hi.
I frequently convert date and time data to and from character
representations. I'm frustrated with chron, because 'seconds' are
required to create a time object (my input data never has seconds).
More importantly, I cannot make chron print the format 12/30/2006 (which
my output data requires).
I really like the format flexibility of strftime() and strptime(), but
of course
2008 Jan 10
2
how to calculate time offset between timezones?
#QUESTION#
Is there a way to calculate the offset between timezones, e.g. from "AST" to
"GMT"?
#DETAILS#
I am working with data files that use local time, and that indicate the
timezone by e.g. "AST" (Atlantic Standard Time, my local time) in a header.
I was guessing that
> ISOdatetime(2008,1,1,1,0,0,tz="GMT") -
>
2006 May 16
4
question about strftime when called from partial.
Hi,
I''m calling a helper I''ve written - format_time() that is called from my
views with a given time that was selected from my database and was returned
to the view via an instance variable. When I call format_time from a
partial, I see that I get some kind of String error and the partial won''t
render. Basically, the object being passed in to format_time is already a
2007 Aug 16
0
created_at Column and strftime
I am trying to format the created_at value of an object for display in
the view.
Just for testing purposes, right now I''m doing -
puts @the_object.created_at.strftime(''%B %e, %G'')
puts @the_object.created_at.to_date.strftime(''%B %e, %G'')
The first line doesn''t output anything, while the second one outputs the
date in the correct format. Why
2001 May 09
1
OpenSSH 2.9p1 on 4.3BSD based system
Dear developpers,
I successfully compiled OpenSSH 2.9p1 which I get via CVS with a
little modification. Patch is available at
http://www.rc.tutrp.tut.ac.jp/~nakaji/install/NEWS/utils/ref/openssh_cvs-news4.diff.gz
But one problem remains.
In config.h.in, there is a definition about strftime function
/* Define if you have the `strftime' function. */
#undef HAVE_STRFTIME
but this