<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/jsdatetime/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/jsdatetime/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Thu, 23 Sep 2010 06:44:40 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/jsdatetime/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Incorrect format issue</title><link>https://sourceforge.net/p/jsdatetime/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;tracked it down to I believe this line:&lt;/p&gt;
&lt;p&gt;var res = format.split(/(dddd|ddd|dd|d|fff|ff|f|hh|h|HH|H||mm|m|MMMM|MMM|MM|M|ss|s|tt|t|yyyy|yyy|yy|y)?/);&lt;/p&gt;
&lt;p&gt;which when parsing the time format of "MM/dd/yyyy HH:mm:ss" gets split by every letter and misses a couple.  I don't know enough about how format.split works here to fix it myself.  Point being is the output is incorrect as a result.&lt;/p&gt;
&lt;p&gt;the res array looks like  {M,M,/,/,y,y,y,y,_,,:,m,m,:,s,s} the underscore is meant to be a space.&lt;/p&gt;
&lt;p&gt;I presume it should look like {MM,/,dd,/,yyyy,_,HH,:,mm,:,ss}&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 23 Sep 2010 06:44:40 -0000</pubDate><guid>https://sourceforge.nete94b511e8286e0573abd60c0a2cae16cc9e7a911</guid></item><item><title>DateTime format string error for 't' and 'tt' options</title><link>https://sourceforge.net/p/jsdatetime/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When applying a format string with the 't' or 'tt' option times such as 12:30PM will yield A or AM.&lt;/p&gt;
&lt;p&gt;data["tt"] = (hour &amp;gt; 12 ? DateTime.strings.PM : DateTime.strings.AM) ;&lt;br /&gt;
data["t"] = (hour &amp;gt; 12 ? DateTime.strings.P : DateTime.strings.A);&lt;/p&gt;
&lt;p&gt;The &amp;gt; should be changed to a &amp;gt;= for correct behavior.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 13 Apr 2010 16:31:26 -0000</pubDate><guid>https://sourceforge.netf7345f2306002b0de40f8afb4202aef630d36a27</guid></item></channel></rss>