<?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/is-webstart/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/is-webstart/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sun, 19 Jun 2011 08:21:56 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/is-webstart/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Space (#20) does not need conversion</title><link>https://sourceforge.net/p/is-webstart/bugs/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In class function TJSONObject.quote(s: string): string; Space (#20) gets converted to "\u0020", which is unnecessary, because JSON allows spaces.&lt;br /&gt;
Adding ' ' to the NoConversion-array results in a much better human-readable string.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nils Achterholt</dc:creator><pubDate>Sun, 19 Jun 2011 08:21:56 -0000</pubDate><guid>https://sourceforge.netcb5fd19035718395a06cd19868a79dbd60965094</guid></item><item><title>Incorrect toString for _double</title><link>https://sourceforge.net/p/is-webstart/bugs/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The function toString:string of _Double returns the value in quotationmarks, which is not standard JSON.&lt;br /&gt;
It also loses precision, since formatFloat is used with a formatstring which has only 2 digits after the decimal point.&lt;/p&gt;
&lt;p&gt;Solution:&lt;br /&gt;
function _Double.toString: string;&lt;br /&gt;
begin&lt;br /&gt;
result := StringReplace(FloatToStr(fvalue),',','.',[rfReplaceAll]);&lt;br /&gt;
end;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nils Achterholt</dc:creator><pubDate>Mon, 30 May 2011 10:57:15 -0000</pubDate><guid>https://sourceforge.netcf08e2627dbc0adf410dd3643af939b562d97b6b</guid></item><item><title>Memory Leak</title><link>https://sourceforge.net/p/is-webstart/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;function TJSONObject.toString(indentFactor, indent: integer): string;&lt;br /&gt;
This function has a line:  _keys := keys();  The _keys not free until the function exit.&lt;/p&gt;
&lt;p&gt;Please add a try .. finally _keys.Free end; for this function.&lt;/p&gt;
&lt;p&gt;The line:  key := x.nextValue().toString();  will cause a memory leak, too.&lt;br /&gt;
Please write in this way:&lt;/p&gt;
&lt;p&gt;with x.nextValue() do&lt;br /&gt;
begin&lt;br /&gt;
key := toString();&lt;br /&gt;
Free;  //Fix memory leak. By creation_zy&lt;br /&gt;
end;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Yi Zhang</dc:creator><pubDate>Thu, 12 Nov 2009 14:54:31 -0000</pubDate><guid>https://sourceforge.net6bc1c1b231bf1c97375a780ea702623808c02b61</guid></item><item><title>escaped utf strings doesn't work </title><link>https://sourceforge.net/p/is-webstart/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've got response from server which looks like&lt;/p&gt;
&lt;p&gt;{"string":"\u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439&lt;br /&gt;
\u0437\u0430\u0439\u0434\u0438 \u043f\u043e\u0434&lt;br /&gt;
\u043b\u043e\u0433\u0438"} &lt;/p&gt;
&lt;p&gt;and such \uXXXX strings returns to me like uXXXX&lt;/p&gt;
&lt;p&gt;I had found a problem (required code was commented and&lt;br /&gt;
was not right) and now problem resolved &lt;/p&gt;
&lt;p&gt;Where can i put a patch?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 14 Jun 2006 09:07:10 -0000</pubDate><guid>https://sourceforge.net41d7d46907dbe20796a7fb458908953cbd070f89</guid></item></channel></rss>