<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: jQote &#8211; client-side templating</title>
	<atom:link href="http://aefxx.com/jquery-plugins/jqote/feed/" rel="self" type="application/rss+xml" />
	<link>http://aefxx.com/jquery-plugins/jqote/</link>
	<description></description>
	<lastBuildDate>Fri, 06 Aug 2010 22:40:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: aefxx</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-719</link>
		<dc:creator>aefxx</dc:creator>
		<pubDate>Fri, 16 Apr 2010 06:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-719</guid>
		<description>@diyism

Glad you made it here. Hello.

Your plugin works without any &quot;containers&quot; you say.
But isn&#039;t &lt;code&gt;&lt;div id=&quot;test1&quot;...&lt;/code&gt; a &quot;container&quot; for your template and wouldn&#039;t that expose the HTML markup within your template to your viewers?

Besides that you&#039;ve build your plugin upon John Resig&#039;s micro templating code which has flaws and shortcomings when it comes to code that spans over multiple lines and the correct escaping of quotes.

Regards,
aefxx</description>
		<content:encoded><![CDATA[<p>@diyism</p>
<p>Glad you made it here. Hello.</p>
<p>Your plugin works without any &#8220;containers&#8221; you say.<br />
But isn&#8217;t <code>&lt;div id="test1"...</code> a &#8220;container&#8221; for your template and wouldn&#8217;t that expose the HTML markup within your template to your viewers?</p>
<p>Besides that you&#8217;ve build your plugin upon John Resig&#8217;s micro templating code which has flaws and shortcomings when it comes to code that spans over multiple lines and the correct escaping of quotes.</p>
<p>Regards,<br />
aefxx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: diyism</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-716</link>
		<dc:creator>diyism</dc:creator>
		<pubDate>Fri, 16 Apr 2010 03:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-716</guid>
		<description>Give a try to the real &quot;jquery micro template&quot;, it need no seperate template container:
plugins.jquery.com/project/micro_template

&lt;pre class=&quot;code&quot;&gt;
&lt;div id=&quot;test1&quot; class=&quot;users&quot;&gt;
     &lt;!for (var i=0;i&lt;users.length;++i)
           {!&gt;
&lt;div onMouseOver=&quot;/*=users[i].color?&#039;this.style.color=\&#039;&#039;+users[i].color+&#039;\&#039;;&#039;:&#039;&#039;*/&quot; id=&quot;user_&lt;!=i!&gt;&quot; class=&#039;user&#039;&gt;Name:&lt;a href=&quot;&lt;!=users[i].name!&gt;&quot;&gt;&lt;!=users[i].name!&gt;&lt;/a&gt;&lt;/div&gt;
           &lt;!}
     !&gt;
&lt;pre&gt;&#039;somthing&#039;
else ...&lt;/pre&gt;
&lt;/div&gt;

&lt;script&gt;
var data1={users:[{name:&#039;name1.1&#039;},
                  {name:&#039;name1.2&#039;, color:&#039;yellow&#039;}
                 ]
          };
$(&#039;#test1&#039;).drink(data1);
&lt;/script&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Give a try to the real &#8220;jquery micro template&#8221;, it need no seperate template container:<br />
plugins.jquery.com/project/micro_template</p>
<pre class="code">
&lt;div id="test1" class="users"&gt;
     &lt;!for (var i=0;i&lt;users.length;++i)
           {!&gt;
&lt;div onMouseOver="/*=users[i].color?'this.style.color=\''+users[i].color+'\';':''*/" id="user_&lt;!=i!&gt;" class='user'&gt;Name:&lt;a href="&lt;!=users[i].name!&gt;"&gt;&lt;!=users[i].name!&gt;&lt;/a&gt;&lt;/div&gt;
           &lt;!}
     !&gt;
&lt;pre&gt;'somthing'
else ...&lt;/pre&gt;
&lt;/div&gt;

&lt;script&gt;
var data1={users:[{name:'name1.1'},
                  {name:'name1.2', color:'yellow'}
                 ]
          };
$('#test1').drink(data1);
&lt;/script&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-669</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sun, 14 Mar 2010 10:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-669</guid>
		<description>Hi,
I was struggling with the problem of how to nest a template into another. my solution is now this:
&lt;pre class=&quot;code&quot;&gt;
var container = $(&#039;&lt;p&gt;&#039;); 
$(&#039;#tmpl&#039;).jqote(data_collection).appendTo(container);
&lt;/pre&gt;
you can now easily get the generated html by calling
&lt;pre class=&quot;code&quot;&gt;container.html()&lt;/pre&gt;
Since the parent elements html will not be included you can use whatever container tag you want. Of course this is a workaround but it works. It would be great to have some kind of parameter for the jqote function to tell if you want to have the result to be a jquery object or just the plain generated html...

Or have you done this already for jqote2?

Keep on rocking!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I was struggling with the problem of how to nest a template into another. my solution is now this:</p>
<pre class="code">
var container = $('&lt;p&gt;');
$('#tmpl').jqote(data_collection).appendTo(container);
</pre>
<p>you can now easily get the generated html by calling</p>
<pre class="code">container.html()</pre>
<p>Since the parent elements html will not be included you can use whatever container tag you want. Of course this is a workaround but it works. It would be great to have some kind of parameter for the jqote function to tell if you want to have the result to be a jquery object or just the plain generated html&#8230;</p>
<p>Or have you done this already for jqote2?</p>
<p>Keep on rocking!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aefxx</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-665</link>
		<dc:creator>aefxx</dc:creator>
		<pubDate>Wed, 10 Mar 2010 09:32:27 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-665</guid>
		<description>@Martin

Hello, no jQote2 hasn&#039;t been released, yet. Work just pretty much piles up right now and I won&#039;t be able to release it until the end of the week. Please bear with me.

Sorry for the delay.</description>
		<content:encoded><![CDATA[<p>@Martin</p>
<p>Hello, no jQote2 hasn&#8217;t been released, yet. Work just pretty much piles up right now and I won&#8217;t be able to release it until the end of the week. Please bear with me.</p>
<p>Sorry for the delay.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-664</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Tue, 09 Mar 2010 12:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-664</guid>
		<description>I notice that the licence has already been changed to DWTFYWTPL.

Does this mean the version 2 is released?</description>
		<content:encoded><![CDATA[<p>I notice that the licence has already been changed to DWTFYWTPL.</p>
<p>Does this mean the version 2 is released?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aefxx</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-659</link>
		<dc:creator>aefxx</dc:creator>
		<pubDate>Tue, 02 Mar 2010 10:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-659</guid>
		<description>@Eric

Glad you like it. I&#039;ve never heard of HAML before but will have a look. BUT please don&#039;t quote me on that :D</description>
		<content:encoded><![CDATA[<p>@Eric</p>
<p>Glad you like it. I&#8217;ve never heard of HAML before but will have a look. BUT please don&#8217;t quote me on that :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aefxx</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-658</link>
		<dc:creator>aefxx</dc:creator>
		<pubDate>Tue, 02 Mar 2010 10:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-658</guid>
		<description>@gazbond

I&#039;ll be soon releasing jQote2 - a major overhaul and complete rewrite of jQote&#039;s internals. This won&#039;t use any of Resig&#039;s code anymore, insofar there then shouldn&#039;t be any licensing issues.

jQote2&#039;s license will be DO WHAT THE FUCK YOU WANT TO, as is.

@Phil Oye

With the upcoming release there&#039;ll now be a git repository at Github.
Regarding the versioning issue: I never thought that jQote would make a wave and therefore didn&#039;t put much time into it - until recently. jQote2 will have proper versioning (though I&#039;m not a big fan of the &quot;jquery.jqote-x.x.x.js&quot; naming convention).</description>
		<content:encoded><![CDATA[<p>@gazbond</p>
<p>I&#8217;ll be soon releasing jQote2 &#8211; a major overhaul and complete rewrite of jQote&#8217;s internals. This won&#8217;t use any of Resig&#8217;s code anymore, insofar there then shouldn&#8217;t be any licensing issues.</p>
<p>jQote2&#8217;s license will be DO WHAT THE FUCK YOU WANT TO, as is.</p>
<p>@Phil Oye</p>
<p>With the upcoming release there&#8217;ll now be a git repository at Github.<br />
Regarding the versioning issue: I never thought that jQote would make a wave and therefore didn&#8217;t put much time into it &#8211; until recently. jQote2 will have proper versioning (though I&#8217;m not a big fan of the &#8220;jquery.jqote-x.x.x.js&#8221; naming convention).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-653</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Tue, 02 Mar 2010 00:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-653</guid>
		<description>Super cool.  I&#039;m curious if it would ever be possible to use HAML for the templates? Seems like a long shot, however worthy. Keep up the beautiful work!</description>
		<content:encoded><![CDATA[<p>Super cool.  I&#8217;m curious if it would ever be possible to use HAML for the templates? Seems like a long shot, however worthy. Keep up the beautiful work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Oye</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-650</link>
		<dc:creator>Phil Oye</dc:creator>
		<pubDate>Mon, 22 Feb 2010 23:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-650</guid>
		<description>I&#039;ll second the request for putting it up on Github so we can track your changes to this library over time. Plus, more eyes might help with bugs/enhancements.

But at the very least, can you add a version number to the releases? It sounds like you are making changes to it, but there&#039;s no way to tell.

Cheers,
p.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll second the request for putting it up on Github so we can track your changes to this library over time. Plus, more eyes might help with bugs/enhancements.</p>
<p>But at the very least, can you add a version number to the releases? It sounds like you are making changes to it, but there&#8217;s no way to tell.</p>
<p>Cheers,<br />
p.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gazbond</title>
		<link>http://aefxx.com/jquery-plugins/jqote/comment-page-1/#comment-649</link>
		<dc:creator>gazbond</dc:creator>
		<pubDate>Sat, 20 Feb 2010 09:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://onceupon.com/?p=47#comment-649</guid>
		<description>Absolutely brilliant plug-in but whats up with the license? 
I know the original script was MIT Licensed by John Resig,

From the license:

1) &#039;Version 2, December 2004&#039; - is this the date of the original John Resig script?

2) &#039;Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.&#039; - is this a bad translation or should I be I be replacing the name - Sam Hocevar, with another? John Resig perhaps?

Also are their any plans to support double quotes in expressions and statements?</description>
		<content:encoded><![CDATA[<p>Absolutely brilliant plug-in but whats up with the license?<br />
I know the original script was MIT Licensed by John Resig,</p>
<p>From the license:</p>
<p>1) &#8216;Version 2, December 2004&#8242; &#8211; is this the date of the original John Resig script?</p>
<p>2) &#8216;Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.&#8217; &#8211; is this a bad translation or should I be I be replacing the name &#8211; Sam Hocevar, with another? John Resig perhaps?</p>
<p>Also are their any plans to support double quotes in expressions and statements?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
