<?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>http://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 Fred]]></title>
      <link>http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Xorax]]></title>
      <link>http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Loops]]></title>
      <link>http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[feature : make a CLI]]></title>
      <link>http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://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>http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://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>http://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="http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
      <enclosure url="http://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>http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Xorax]]></title>
      <link>http://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>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Evandro Myller]]></title>
      <link>http://www.xorax.info/labs/jsxs/usage#comment-6</link>
      <description><![CDATA[Hey, Xorax.
d'oh. I really missed a semicolon there (and in some parts of the code). Now, there are semicolons and I just tested again.

...]]></description>
      <content:encoded><![CDATA[Hey, Xorax.<br />
d'oh. I really missed a semicolon there (and in some parts of the code). Now, there are semicolons and I just tested again.<br />
<br />
Now, for some reason, it's adding a semicolon to a do{} block; so the interpreter is now asking for a while statement.<br />
<br />
note: i just removed this semicolon and the compressed script is working perfectly. And, regardless of this little problem, this is now the official compressor of my JavaScript project, since it did the best job with compression. Thanks. ;)]]></content:encoded>
      <pubDate>Tue, 21 Jul 2009 11:41:30 +0200</pubDate>
      <comments>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
    <item xmlns:wfw="http://wellformedweb.org/CommentAPI/">
      <title><![CDATA[comment from Xorax]]></title>
      <link>http://www.xorax.info/labs/jsxs/usage#comment-5</link>
      <description><![CDATA[@Evandro Myller
After testing, I think it's missing semicolumn before break in your code (yes, in javascript standard, it's not required if...]]></description>
      <content:encoded><![CDATA[@Evandro Myller<br />
After testing, I think it's missing semicolumn before break in your code (yes, in javascript standard, it's not required if there is end of line after it)<br />
<br />
@Kyle Simpson<br />
There are many differences. Soon I'll write a table comparaison between JSXS and the other tools.]]></content:encoded>
      <pubDate>Fri, 17 Jul 2009 21:39:00 +0200</pubDate>
      <comments>http://www.xorax.info/labs/jsxs/todo#comments</comments>
      <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.xorax.info/labs/jsxs/rss</wfw:commentRss>
    </item>
  </channel>
</rss>

