<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: tztab file format in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921544#M286010</link>
    <description>&amp;gt;Clay: It is state-of-the-art dumb to read tztab directly.&lt;BR /&gt;&lt;BR /&gt;Exactly.  I wrote this attached C source years ago to check out my Y2K changes.  There are assumptions about when it changes that may have to be adjusted for other timezones/hemispheres.</description>
    <pubDate>Fri, 05 Jan 2007 22:23:53 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2007-01-05T22:23:53Z</dc:date>
    <item>
      <title>tztab file format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921539#M286005</link>
      <description>In our application, we are making use of "/usr/lib/tztab" file like reading the file to get DST start and end dates based on the year and timezone. If the tztab format changes in future, then it affects our application.&lt;BR /&gt;&lt;BR /&gt;We would like to know whether any chances in changing the tztab file format in future? If so is there any other way to get the spring ahead and fall back dates for the year and timezone(any system calls)?</description>
      <pubDate>Fri, 05 Jan 2007 10:58:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921539#M286005</guid>
      <dc:creator>Sharada</dc:creator>
      <dc:date>2007-01-05T10:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: tztab file format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921540#M286006</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;There is a patch for the DST changes.  It will installed an updated tztab file. Hp is quite good about keeping it current&lt;BR /&gt;&lt;BR /&gt;refer to the following link for the patch numbers&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1087883" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1087883&lt;/A&gt;</description>
      <pubDate>Fri, 05 Jan 2007 11:03:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921540#M286006</guid>
      <dc:creator>DCE</dc:creator>
      <dc:date>2007-01-05T11:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: tztab file format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921541#M286007</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;HP is author of the tztab and it can always be changed if needed. However the basic format will remain the same.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;See&lt;BR /&gt;&lt;A href="http://www.chronos-st.org/Discovering%20the%20Local%20Time%20Zone--Why%20It's%20a%20Hard%20Problem.html" target="_blank"&gt;http://www.chronos-st.org/Discovering%20the%20Local%20Time%20Zone--Why%20It's%20a%20Hard%20Problem.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;           Steve Steel</description>
      <pubDate>Fri, 05 Jan 2007 11:09:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921541#M286007</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2007-01-05T11:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: tztab file format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921542#M286008</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Daylight Saving rules are political rules.  Thus, I would suspect that you would hear about pending changes in many ways.&lt;BR /&gt;&lt;BR /&gt;I doubt that there would be a change in the internal format of the file as used by HP-UX.  The manpages for 'tztab(4)' offers the details you need.&lt;BR /&gt;&lt;BR /&gt;If a change in rules occurs for any official would timezone, HP's ITRC patch database will hold an updated patch providing the new rule addendum.  Search for a patch using the keyword 'tztab'.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 05 Jan 2007 11:10:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921542#M286008</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-01-05T11:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: tztab file format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921543#M286009</link>
      <description>It is state-of-the-art dumb to read tztab directly. It's possible for the format to change (though doubtful) but tztab is only found on HP-UX so portability just went out the window. What you should do is simply use the standard ctime() functions and search for when the time transitions occur. You will then know that all applications are okay. The attached perl script, dst.pl, uses localtime() to quickly home in on the time transitions via a binary search starting of epoch seconds within a year. It should be quite simple to convert the perl algorthihms to C or C++ or simply call the perl script from your application. Invoke as "dst.pl -u" for full usage.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Jan 2007 13:04:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921543#M286009</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-01-05T13:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: tztab file format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921544#M286010</link>
      <description>&amp;gt;Clay: It is state-of-the-art dumb to read tztab directly.&lt;BR /&gt;&lt;BR /&gt;Exactly.  I wrote this attached C source years ago to check out my Y2K changes.  There are assumptions about when it changes that may have to be adjusted for other timezones/hemispheres.</description>
      <pubDate>Fri, 05 Jan 2007 22:23:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tztab-file-format/m-p/3921544#M286010</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-01-05T22:23:53Z</dc:date>
    </item>
  </channel>
</rss>

