<?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 for Jan Jonas&#039; blog</title> <atom:link href="http://blog.janjonas.net/comments/feed" rel="self" type="application/rss+xml" /><link>http://blog.janjonas.net</link> <description>Howtos &#38; Tutorials</description> <lastBuildDate>Tue, 21 Feb 2012 21:11:18 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Comment on Windows 7: How to edit hosts file by admin</title><link>http://blog.janjonas.net/2011-06-17/windows_7-how-to-edit-hosts-file/comment-page-1#comment-779</link> <dc:creator>admin</dc:creator> <pubDate>Tue, 21 Feb 2012 21:11:18 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=1176#comment-779</guid> <description>Hi stylinred,
how does your hosts file exactly look like?</description> <content:encoded><![CDATA[<p>Hi stylinred,<br
/> how does your hosts file exactly look like?</p> ]]></content:encoded> </item> <item><title>Comment on Windows 7: How to edit hosts file by stylinred</title><link>http://blog.janjonas.net/2011-06-17/windows_7-how-to-edit-hosts-file/comment-page-1#comment-778</link> <dc:creator>stylinred</dc:creator> <pubDate>Tue, 21 Feb 2012 17:14:52 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=1176#comment-778</guid> <description>Hi ive had to do this everytime i reinstall windows but i keep forgetting how to correctly edit my hosts file
-_- this method doesnt work for me it seems windows ends up ignoring the hosts file entirely after i changed it
open as admin edit as admin saves as a host file (not a txt file) registry is pointing to the hosts file correctly
but when i ping the entry it doesnt change; any clues?</description> <content:encoded><![CDATA[<p>Hi ive had to do this everytime i reinstall windows but i keep forgetting how to correctly edit my hosts file</p><p>-_- this method doesnt work for me it seems windows ends up ignoring the hosts file entirely after i changed it</p><p>open as admin edit as admin saves as a host file (not a txt file) registry is pointing to the hosts file correctly</p><p>but when i ping the entry it doesnt change; any clues?</p> ]]></content:encoded> </item> <item><title>Comment on Debian/Ubuntu &amp; Apache 2: Transparent reverse proxy with mod_proxy by admin</title><link>http://blog.janjonas.net/2010-10-09/debian-ubuntu-apache_2-transparent-reverse-proxy-mod_proxy/comment-page-1#comment-773</link> <dc:creator>admin</dc:creator> <pubDate>Mon, 13 Feb 2012 18:53:28 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=628#comment-773</guid> <description>Thanks for you comment. The typo is fixed...</description> <content:encoded><![CDATA[<p>Thanks for you comment. The typo is fixed&#8230;</p> ]]></content:encoded> </item> <item><title>Comment on Debian/Ubuntu &amp; Apache 2: Transparent reverse proxy with mod_proxy by Joshua</title><link>http://blog.janjonas.net/2010-10-09/debian-ubuntu-apache_2-transparent-reverse-proxy-mod_proxy/comment-page-1#comment-772</link> <dc:creator>Joshua</dc:creator> <pubDate>Mon, 13 Feb 2012 16:58:21 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=628#comment-772</guid> <description>Thank you for the quick and simple outline of doing this in Debian.   I did find a typo... to restart Apache on my machine at least it is
sudo /etc/init.d/apache2 restart</description> <content:encoded><![CDATA[<p>Thank you for the quick and simple outline of doing this in Debian.   I did find a typo&#8230; to restart Apache on my machine at least it is<br
/> sudo /etc/init.d/apache2 restart</p> ]]></content:encoded> </item> <item><title>Comment on ASP.NET MVC 3: Using jQuery .ajax() function to submit Ajax Form supporting (unobtrusive) Client Side Validation and Server Side Validation by Anton</title><link>http://blog.janjonas.net/2011-08-07/asp_net-mvc_3-jquery-ajax-submit-ajax-form-supporting-unobtrusive-client-side-validation-and-server-side-validation/comment-page-1#comment-771</link> <dc:creator>Anton</dc:creator> <pubDate>Sun, 12 Feb 2012 22:39:49 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=1275#comment-771</guid> <description>Ok, I found the answer myself: looks like submit event is not executed im my case, so I just added: $(&quot;form&quot;).trigger(&#039;submit&#039;) to checkbox click and it works now.</description> <content:encoded><![CDATA[<p>Ok, I found the answer myself: looks like submit event is not executed im my case, so I just added: $(&#8220;form&#8221;).trigger(&#8216;submit&#8217;) to checkbox click and it works now.</p> ]]></content:encoded> </item> <item><title>Comment on ASP.NET MVC 3: Using jQuery .ajax() function to submit Ajax Form supporting (unobtrusive) Client Side Validation and Server Side Validation by Anton</title><link>http://blog.janjonas.net/2011-08-07/asp_net-mvc_3-jquery-ajax-submit-ajax-form-supporting-unobtrusive-client-side-validation-and-server-side-validation/comment-page-1#comment-770</link> <dc:creator>Anton</dc:creator> <pubDate>Sun, 12 Feb 2012 22:16:31 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=1275#comment-770</guid> <description>Thank you for your post!
Your solution works perfectly when using submit button, but I have to submit a form on checkbox click. Something like this:
@using (Html.BeginForm(&quot;Act&quot;, &quot;Contr&quot;, FormMethod.Post))
{
@Html.CheckBoxFor(model =&gt; model.BoolValue, new { @id = &quot;chk1&quot; , @onchange = &quot;this.form.submit()&quot; })
}
In this case your script is not working, I assumme it should be the same submit event for any control. So what is wrong here?
Thanks.</description> <content:encoded><![CDATA[<p>Thank you for your post!<br
/> Your solution works perfectly when using submit button, but I have to submit a form on checkbox click. Something like this:</p><p>@using (Html.BeginForm(&#8220;Act&#8221;, &#8220;Contr&#8221;, FormMethod.Post))<br
/> {<br
/> @Html.CheckBoxFor(model =&gt; model.BoolValue, new { @id = &#8220;chk1&#8243; , @onchange = &#8220;this.form.submit()&#8221; })<br
/> }<br
/> In this case your script is not working, I assumme it should be the same submit event for any control. So what is wrong here?<br
/> Thanks.</p> ]]></content:encoded> </item> <item><title>Comment on svndumpfilter &amp; svndumpfilter2: Extract svn paths to separated repository by akash dubey</title><link>http://blog.janjonas.net/2010-02-16/svndumpfilter-svndumpfilter2-extract-svn-paths-to-separated-repository/comment-page-1#comment-764</link> <dc:creator>akash dubey</dc:creator> <pubDate>Sat, 04 Feb 2012 06:44:50 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=169#comment-764</guid> <description>Thanks mate for the nice tutorial , i was quite interested to used tool https://github.com/TNG/svnfiltereddump.
i was able to install it using &quot;sudo easy_install svnfiltereddump&quot; ( i am on python-2.6) .. well it was damn easy to do  :) .. however the man pages never came along with that not sure how .. &amp; i am not abale to pave my wya using svnfiltereddump -h ( it gives the info, but does not spoonfeed :/)so i do have a huge repo to filter and svndumpfilter/2/3/4 have not been helpful and i am kind of counting on your tool.. can you please enlighten me bud!</description> <content:encoded><![CDATA[<p>Thanks mate for the nice tutorial , i was quite interested to used tool <a
href="https://github.com/TNG/svnfiltereddump" rel="nofollow">https://github.com/TNG/svnfiltereddump</a>.</p><p>i was able to install it using &#8220;sudo easy_install svnfiltereddump&#8221; ( i am on python-2.6) .. well it was damn easy to do <img
src='http://blog.janjonas.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. however the man pages never came along with that not sure how .. &amp; i am not abale to pave my wya using svnfiltereddump -h ( it gives the info, but does not spoonfeed :/)so i do have a huge repo to filter and svndumpfilter/2/3/4 have not been helpful and i am kind of counting on your tool.. can you please enlighten me bud!</p> ]]></content:encoded> </item> <item><title>Comment on ASP.NET development: Features, tips &amp; tricks you should know about by admin</title><link>http://blog.janjonas.net/2011-12-28/asp_net-development-features-tips-tricks/comment-page-1#comment-760</link> <dc:creator>admin</dc:creator> <pubDate>Wed, 01 Feb 2012 16:30:10 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=1394#comment-760</guid> <description>Hi Virendra,
thanks for your comment. The &quot;&lt;em&gt;SpecifiedPickupDirectory&lt;/em&gt;&quot; option described above is only for debugging purposes; if you would like to send the e-mails instead of creating &lt;em&gt;.eml&lt;/em&gt; files you should set &quot;&lt;em&gt;deliveryMethod=network&lt;/em&gt;&quot; and configure your smtp server in the &lt;em&gt;&lt;mailSettings&gt;&lt;/em&gt; section (see &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms164240.aspx&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt; for more details).</description> <content:encoded><![CDATA[<p>Hi Virendra,<br
/> thanks for your comment. The &#8220;<em>SpecifiedPickupDirectory</em>&#8221; option described above is only for debugging purposes; if you would like to send the e-mails instead of creating <em>.eml</em> files you should set &#8220;<em>deliveryMethod=network</em>&#8221; and configure your smtp server in the <em>&lt;mailSettings&gt;</em> section (see <a
href="http://msdn.microsoft.com/en-us/library/ms164240.aspx" target="_blank" rel="nofollow">here</a> for more details).</p> ]]></content:encoded> </item> <item><title>Comment on CakePHP: Simple Google Analytics integration by Andrzej</title><link>http://blog.janjonas.net/2010-01-31/cakephp-google-analytics-integration/comment-page-1#comment-758</link> <dc:creator>Andrzej</dc:creator> <pubDate>Wed, 01 Feb 2012 10:27:53 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=93#comment-758</guid> <description>Thank you very much!!! It is a very usefull tip.</description> <content:encoded><![CDATA[<p>Thank you very much!!! It is a very usefull tip.</p> ]]></content:encoded> </item> <item><title>Comment on ASP.NET development: Features, tips &amp; tricks you should know about by Virendra Bhoriwal</title><link>http://blog.janjonas.net/2011-12-28/asp_net-development-features-tips-tricks/comment-page-1#comment-734</link> <dc:creator>Virendra Bhoriwal</dc:creator> <pubDate>Sun, 29 Jan 2012 14:34:27 +0000</pubDate> <guid
isPermaLink="false">http://blog.janjonas.net/?p=1394#comment-734</guid> <description>Hello Sir ! The Article above is appreeciatable. After implemeting the above concepts..further I got stuck in my project. Actually the problem is... after getting all those mails in a particular folder.... how I will send those mails having .eml extension onto the network i.e. client&#039;s mail ID. Either I  will need to configure the SMTP server or programatically without configuring SMTP server... any help, will be appreciated.
Thanks
Regards
Virendra Bhoriwal
Video Game Programmer</description> <content:encoded><![CDATA[<p>Hello Sir ! The Article above is appreeciatable. After implemeting the above concepts..further I got stuck in my project. Actually the problem is&#8230; after getting all those mails in a particular folder&#8230;. how I will send those mails having .eml extension onto the network i.e. client&#8217;s mail ID. Either I  will need to configure the SMTP server or programatically without configuring SMTP server&#8230; any help, will be appreciated.</p><p>Thanks</p><p>Regards<br
/> Virendra Bhoriwal</p><p>Video Game Programmer</p> ]]></content:encoded> </item> </channel> </rss>
