GithubHelp home page GithubHelp logo

timezone support for strftime about time HOT 4 CLOSED

time-rs avatar time-rs commented on May 13, 2024 1
timezone support for strftime

from time.

Comments (4)

afandian avatar afandian commented on May 13, 2024

It looks like named timezones are just ignored in parse.rs. The comment suggests that the C's original strptime is broken.

println!("{}", time::strptime("Tue Jan 01 12:37:48 GMT 2013", "%a %b %d %T %Z %Y").unwrap() == 
               time::strptime("Tue Jan 01 12:37:48 ETC 2013", "%a %b %d %T %Z %Y").unwrap());
=> true

However using time offsets does work

println!("{}", time::strptime("Tue Jan 01 12:37:48 +00:00 2013", "%a %b %d %T %z %Y").unwrap() == 
               time::strptime("Tue Jan 01 12:37:48 +05:00 2013", "%a %b %d %T %z %Y").unwrap());

My workaround's going to be string replacement (for now).

Perhaps there could be another parse function that does what's expected?

from time.

jhpratt avatar jhpratt commented on May 13, 2024

My current thought is to drop the "support" for %Z in 0.2. That specific formatting option requires knowledge of the actual timezone, not just the offset, and this info isn't stored anywhere. Parsing may happen, though it isn't likely.

from time.

jhpratt avatar jhpratt commented on May 13, 2024

The minimal support for %Z has been completely dropped for 0.2.

from time.

jhpratt avatar jhpratt commented on May 13, 2024

Closing in favor of #193, which would include this.

from time.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.