Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
8k views

How do I parse and convert DateTime's to the RFC 3339 date-time format?

How do I convert a DateTime structure to its equivalent RFC 3339 formatted string representation and/or parse this string representation back to a DateTime structure? The RFC-3339 date-time format is ...
6
votes
6answers
2k views

Convert an RFC 3339 time to a standard Python timestamp

Is there an easy way to convert an RFC 3339 time into a regular Python timestamp? I've got a script which is reading an ATOM feed and I'd like to be able to compare the timestamp of an item in the ...
5
votes
1answer
1k views

Parsing rfc3339 dates with NSDateFormatter in iOS 4.x and MacOS X 10.6: impossible?

Parsing a rfc3339 date with NSDateFormatter appears to be impossible, in the general case. Am I wrong? A not-especially-malleable web service is feeding me dates like: 2009-12-31T00:00:00-06:00 ...
5
votes
3answers
4k views

Output RFC 3339 Timestamp in Java

I want to output a timestamp with a PST offset (e.g., 2008-11-13T13:23:30-08:00). java.util.SimpleDateFormat does not seem to output timezone offsets in the hour:minute format, it excludes the colon. ...
4
votes
3answers
105 views

Generate RFC 3339 timestamp in Python

I'm trying to generate an RFC 3339 UTC timestamp in Python. So far I've been able to do the following: >>> d = datetime.datetime.now() >>> print d.isoformat('T') ...
4
votes
5answers
2k views

RFC822 Timezone Parsing in Java

I have a JS date that is being converted by Dojo into RFC822 format. The function call - dojo.date.toRfc3339(jsDate), generates the following date - 2007-02-26T20:15:00+02:00. I have an application ...
3
votes
1answer
2k views

Howto format a boost::date_time-object as per RFC 3339

I want to use the date_time library in boost to represent time in my application. This application will generate Atom feeds, which in turn mandates time-stamps in the format specified in RFC 3339, for ...
2
votes
3answers
690 views

How do I parse RFC 3339 datetimes with Java?

I'm trying to parse the date returned as a value from the HTML5 datetime input field. Try it in Opera to see an example. The date returned looks like this: 2011-05-03T11:58:01Z. I'd like to parse ...
1
vote
1answer
29 views

What's the most simplest way to parse RFC3339 date string in iOS?

Youtube API returns date string in RFC3339 format. I found how to parse it on manual, anyway, this is too long. - (NSString *)userVisibleDateTimeStringForRFC3339DateTimeString:(NSString ...
1
vote
1answer
56 views

Zend Google Calendar API - How to Change DateTime Format?

I am using the Zend Framework Gdata for the Google Calendar API and the datetime outputs in RFC3339 (which looks like this: 2012-01-19T22:00:00.000-08:00). What php code do I need to add in order to ...
1
vote
4answers
475 views

Date format for 2008-02-01T10:03:23.793-06:00

In my project i am getting "2008-02-01T10:03:23.793-06:00" this date format in string i have to convert into NSDate i am using NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init]; ...
0
votes
4answers
31 views

Creating NSDate from NSString

I have the following NSString: NSString * dateString = @"2012-01-24T14:59:01Z"; I want to create an NSDate from that string. I looked up the NSDate Class Reference and thought of using ...
0
votes
3answers
149 views

Generate an RFC 3339 timestamp similar to Google Tasks API?

I am in the process of building an app that syncs with google tasks. As part part of the syncing, I want to compare the local task and the API task, and see which one has been changed more recently. ...
0
votes
1answer
588 views

C# DateTime - RFC 3339 format

I am trying to generate RFC 3339 compliant date strings (ie. '2008-03-19T00:00:00.0000000-04:00') however I seem to be having an issue with the offset being invalid. I am using the following: private ...
0
votes
1answer
523 views

Keep original time zone with NSDateFormatter

I have strings like 2011-01-19T20:30:00-5:00 and I'd like to parse them into an NSDate but I want to keep the original time zone. NSDateFormatter *dateFormatter = [NSDateFormatter new]; ...
0
votes
3answers
191 views

Make a video using Python+GST from a set of `YYYY-MM-DD`-dated pictures

I have a directory with a set of YYYY-MM-DD-dated files in as so: pictures/ 2010-08-14.png 2010-08-17.png 2010-08-18.png How can I use Python GStreamer to turn these files into a video? ...
0
votes
3answers
320 views

Python `YYYY-MM-DD`

In Python, what is the best way to get the RFC 3339 YYYY-MM-DD text from the output of gtk.Calendar::get_date()?
0
votes
1answer
283 views

invalid rfc 3339 timestamp format?

I inserted this timestamp as part of the blogger query: http://www.blogger.com/feeds/26861498/posts/default?published-min=1937-01-01T12:00:27.87+08:00 It returned me an invalid pub-min format ...