<br />
<b>Deprecated</b>:  iconv_set_encoding(): Use of iconv.internal_encoding is deprecated in <b>/home/xorax.info/homes/library/Zend/Validate/Hostname.php</b> on line <b>514</b><br />
<br />
<b>Deprecated</b>:  iconv_set_encoding(): Use of iconv.internal_encoding is deprecated in <b>/home/xorax.info/homes/library/Zend/Validate/Hostname.php</b> on line <b>610</b><br />
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">
  <channel xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <title><![CDATA[JSXS]]></title>
    <link>https://www.xorax.info/labs/jsxs/rss</link>
    <description><![CDATA[news from JSXS compressor]]></description>
    <pubDate>Thu, 01 Jan 1970 01:00:00 +0100</pubDate>
    <managingEditor>contact@xorax.info (Xorax)</managingEditor>
    <generator>Zend_Feed</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from marlinejaquish.wordpress.com]]></title>
      <link>https://www.xorax.info/labs/jsxs/usage#comment-176</link>
      <description><![CDATA[It is perfect time to make some plans for the future and it's 
time to be happy. I've learn this publish and if I could I desire to counsel...]]></description>
      <content:encoded><![CDATA[It is perfect time to make some plans for the future and it's <br />
time to be happy. I've learn this publish and if I could I desire to counsel you few fascinating things or tips.<br />
Maybe you could write subsequent articles referring to this <br />
article. I desire to learn even more issues approximately it!]]></content:encoded>
      <pubDate>Sun, 21 May 2017 09:22:02 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Xorax]]></title>
      <link>https://www.xorax.info/labs/jsxs/about#comment-23</link>
      <description><![CDATA[Well, JSXS is now available on Github :)
https://github.com/xxorax/JSXS]]></description>
      <content:encoded><![CDATA[Well, JSXS is now available on Github :)<br />
https://github.com/xxorax/JSXS]]></content:encoded>
      <pubDate>Wed, 26 Sep 2012 02:00:02 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Fred]]></title>
      <link>https://www.xorax.info/labs/jsxs/about#comment-19</link>
      <description><![CDATA[Merci pour ce beau travail et ce partage ;)
--
Thanks for this great work and sharing it ;)

Fred]]></description>
      <content:encoded><![CDATA[Merci pour ce beau travail et ce partage ;)<br />
--<br />
Thanks for this great work and sharing it ;)<br />
<br />
Fred]]></content:encoded>
      <pubDate>Fri, 23 Dec 2011 10:59:33 +0100</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Xorax]]></title>
      <link>https://www.xorax.info/labs/jsxs/todo#comment-18</link>
      <description><![CDATA[Thanks for your fix.
I'll test it and integrate it quickly.]]></description>
      <content:encoded><![CDATA[Thanks for your fix.<br />
I'll test it and integrate it quickly.]]></content:encoded>
      <pubDate>Fri, 30 Sep 2011 15:33:28 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Loops]]></title>
      <link>https://www.xorax.info/labs/jsxs/todo#comment-17</link>
      <description><![CDATA[I discover some small issues on this tool, especially when I try to apply it on the jQuery library.


At first, the variable name generat...]]></description>
      <content:encoded><![CDATA[I discover some small issues on this tool, especially when I try to apply it on the jQuery library.<br />
<br />
<br />
At first, the variable name generation fails on a 2-digits generation.<br />
<br />
For example, it starts at "be" instead of "ba" and go out of usable character range (attempt to use variables like "b€" or "b{").<br />
<br />
This can be quickly fix on the line 535 of Jsxs.php file:<br />
<br />
( $c < 36 ? chr($c + 97) : chr($c + 65) )<br />
<br />
by using this code:<br />
<br />
( $c < 36 ? chr($c + 87) : chr($c + 29) )<br />
<br />
You see that it is just a incorrect range usage, nothing else...<br />
<br />
<br />
Also, the second bug is really more complicate.<br />
<br />
The compatibility option break some code (especially the jQuery library) by adding a semi-colon where it should not.<br />
<br />
I have found it on some declarations like "{code}(),", that turns to "{code};(),".<br />
<br />
Hopefully, this option can be deactivated and everything works fine without.<br />
<br />
NOTE: on jQuery 1.5.2, look for the string:<br />
<br />
return d}(),e="then done fail isResolved<br />
<br />
You will see than after transformation it becomes:<br />
<br />
return d};(),e="then done fail isResolved<br />
<br />
... oups<br />
<br />
Thanks for this nice tool.<br />
<br />
Loops<br />
]]></content:encoded>
      <pubDate>Fri, 30 Sep 2011 15:24:11 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[feature : make a CLI]]></title>
      <link>https://www.xorax.info/labs/jsxs/todo#ticket-13</link>
      <description><![CDATA[make a CLI
php jsxs-cli.php -f script.js]]></description>
      <content:encoded><![CDATA[<strong>make a CLI</strong><br />
php jsxs-cli.php -f script.js]]></content:encoded>
      <pubDate>Thu, 30 Jul 2009 05:02:52 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[(closed) bug : Remove semicolumn between do-while when compatibility option is actived]]></title>
      <link>https://www.xorax.info/labs/jsxs/todo#ticket-12</link>
      <description><![CDATA[this is append in v0.7.1 : Remove semicolumn between do-while when compatibility option is actived
This produce a syntax error, result is :...]]></description>
      <content:encoded><![CDATA[<u>this is append in v0.7.1</u> : <strong>Remove semicolumn between do-while when compatibility option is actived</strong><br />
This produce a syntax error, result is :
<pre>do { ... }; while (...)</pre>]]></content:encoded>
      <pubDate>Tue, 28 Jul 2009 04:59:46 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[release : JSXS v0.7.1]]></title>
      <link>https://www.xorax.info/labs/jsxs/download#v071</link>
      <description><![CDATA[new version available since 2009-07-28
download it]]></description>
      <content:encoded><![CDATA[new version available since 2009-07-28<br/>
<a href="https://www.xorax.info/labs/jsxs/files/jsxs-0.7.1.tar.gz">download it</a>]]></content:encoded>
      <pubDate>Tue, 28 Jul 2009 00:00:00 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
      <enclosure url="https://www.xorax.info/labs/jsxs/files/jsxs-0.7.1.tar.gz" type="" length=""/>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Gabriel Gilini]]></title>
      <link>https://www.xorax.info/labs/jsxs/usage#comment-8</link>
      <description><![CDATA[Well, it's not that hard if you use lookbehind assertions and/or conditional subpatterns. I just learned about your project, so if you could...]]></description>
      <content:encoded><![CDATA[Well, it's not that hard if you use lookbehind assertions and/or conditional subpatterns. I just learned about your project, so if you could point me how I can help (is it hosted on GitHub?), I'd gladly try to fix that.<br />
<br />
Cheers.]]></content:encoded>
      <pubDate>Fri, 24 Jul 2009 03:08:21 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Xorax]]></title>
      <link>https://www.xorax.info/labs/jsxs/usage#comment-7</link>
      <description><![CDATA[There is a bug for the "do-while" statement with the compatibility option. This append because it's very hard to detect difference between "...]]></description>
      <content:encoded><![CDATA[There is a bug for the "do-while" statement with the compatibility option. This append because it's very hard to detect difference between "do-while" and only "while". I'll try to fix it in the next release.<br />
<br />
Thanks you for debugging :)]]></content:encoded>
      <pubDate>Wed, 22 Jul 2009 01:21:28 +0200</pubDate>
      <comments>https://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">https://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
  </channel>
</rss>
