<?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 Anlek Consulting</title>
	<atom:link href="http://anlek.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://anlek.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 17 Feb 2012 18:14:07 +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 Wicked_PDF working in Rails 3.1 by Andrew Kalek</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-1607</link>
		<dc:creator>Andrew Kalek</dc:creator>
		<pubDate>Fri, 17 Feb 2012 18:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-1607</guid>
		<description>Glad to hear it works for you and good luck with the trickiness! :)</description>
		<content:encoded><![CDATA[<p>Glad to hear it works for you and good luck with the trickiness! <img src='http://anlek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by Erwin</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-1606</link>
		<dc:creator>Erwin</dc:creator>
		<pubDate>Fri, 17 Feb 2012 18:04:26 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-1606</guid>
		<description>[SOLVED] answer was in my question....  obviously I need to have a specific layout for the pdf, where I should use : = wicked_pdf_stylesheet_link_tag &#039;templates&#039;   ( :media =&gt; :all is of no use ..)
thanks a lot for your script ... it works...   just some &#039;tricky lines&#039; to be modified in my view :
&lt;code&gt;

	%table#header.t1
		%tr
			%td.thd10
				%h6 
					SET ON: 
					%span.unbold 02/03/2012
&lt;/code&gt;
is fine w html , not with pdf.. will modify it .. thanks again !!!!</description>
		<content:encoded><![CDATA[<p>[SOLVED] answer was in my question&#8230;.  obviously I need to have a specific layout for the pdf, where I should use : = wicked_pdf_stylesheet_link_tag &#8216;templates&#8217;   ( :media =&gt; :all is of no use ..)<br />
thanks a lot for your script &#8230; it works&#8230;   just some &#8216;tricky lines&#8217; to be modified in my view :<br />
<code></p>
<p>	%table#header.t1<br />
		%tr<br />
			%td.thd10<br />
				%h6<br />
					SET ON:<br />
					%span.unbold 02/03/2012<br />
</code><br />
is fine w html , not with pdf.. will modify it .. thanks again !!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by Andrew Kalek</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-1605</link>
		<dc:creator>Andrew Kalek</dc:creator>
		<pubDate>Fri, 17 Feb 2012 17:54:15 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-1605</guid>
		<description>I tried working with the latest version of wicked_pdf and it still didn&#039;t work without the code snipped above. I did make a small change to make it work though.</description>
		<content:encoded><![CDATA[<p>I tried working with the latest version of wicked_pdf and it still didn&#8217;t work without the code snipped above. I did make a small change to make it work though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by Andrew Kalek</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-1604</link>
		<dc:creator>Andrew Kalek</dc:creator>
		<pubDate>Fri, 17 Feb 2012 17:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-1604</guid>
		<description>You do have to specify the `wicked_pdf_stylesheet_link_tag` instead of `stylesheet_link_tag`. That&#039;s why you should always create a pdf specific layout file.</description>
		<content:encoded><![CDATA[<p>You do have to specify the `wicked_pdf_stylesheet_link_tag` instead of `stylesheet_link_tag`. That&#8217;s why you should always create a pdf specific layout file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by Erwin</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-1603</link>
		<dc:creator>Erwin</dc:creator>
		<pubDate>Fri, 17 Feb 2012 17:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-1603</guid>
		<description>in my layout, should I use the specific  wicked_pdf_stylesheet_link_tag 
or the standard one:
&lt;code&gt;
!!! 5
%html{:dir =&gt; &quot;ltr&quot;, :lang =&gt; &quot;fr-FR&quot;, :class =&gt; &quot;debugs&quot;}
	%head
		%meta{&quot;http-equiv&quot; =&gt; &quot;Content-Type&quot;, :content =&gt; &quot;text/html; charset=utf-8&quot;}
		= stylesheet_link_tag &#039;print.css&#039;, :media =&gt; :all
%body
	#main-container
		= yield
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>in my layout, should I use the specific  wicked_pdf_stylesheet_link_tag<br />
or the standard one:<br />
<code><br />
!!! 5<br />
%html{:dir =&gt; "ltr", :lang =&gt; "fr-FR", :class =&gt; "debugs"}<br />
	%head<br />
		%meta{"http-equiv" =&gt; "Content-Type", :content =&gt; "text/html; charset=utf-8"}<br />
		= stylesheet_link_tag 'print.css', :media =&gt; :all<br />
%body<br />
	#main-container<br />
		= yield<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by xeviknal</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-1093</link>
		<dc:creator>xeviknal</dc:creator>
		<pubDate>Thu, 05 Jan 2012 05:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-1093</guid>
		<description>Hey! Same for me! :( Have you got any solution for that?
I see that Wicked-pdf helpers have the module Asset that has the correct implementation for rails 3.1!</description>
		<content:encoded><![CDATA[<p>Hey! Same for me! <img src='http://anlek.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Have you got any solution for that?<br />
I see that Wicked-pdf helpers have the module Asset that has the correct implementation for rails 3.1!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by Alan McNeil</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-784</link>
		<dc:creator>Alan McNeil</dc:creator>
		<pubDate>Mon, 12 Dec 2011 14:21:12 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-784</guid>
		<description>When I ran into &quot;No such file or directory - .../public/stylesheets/application.css&quot;  I hoped someone else had been there first. Thanks for helping reduce my Rails 3.1 pains.</description>
		<content:encoded><![CDATA[<p>When I ran into &#8220;No such file or directory &#8211; &#8230;/public/stylesheets/application.css&#8221;  I hoped someone else had been there first. Thanks for helping reduce my Rails 3.1 pains.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by Andrew Kalek</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-448</link>
		<dc:creator>Andrew Kalek</dc:creator>
		<pubDate>Wed, 16 Nov 2011 17:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-448</guid>
		<description>Glad I could help!</description>
		<content:encoded><![CDATA[<p>Glad I could help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicked_PDF working in Rails 3.1 by Federico Soria</title>
		<link>http://anlek.com/2011/09/wicked_pdf-working-in-rails-3-1/#comment-446</link>
		<dc:creator>Federico Soria</dc:creator>
		<pubDate>Wed, 16 Nov 2011 16:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=272#comment-446</guid>
		<description>Thank you, saved me a lot of time.</description>
		<content:encoded><![CDATA[<p>Thank you, saved me a lot of time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RVM install ruby-1.8.7-p330 fails by Olivier Henkinbrant</title>
		<link>http://anlek.com/2011/01/rvm-install-1-8-7-p330-fails/#comment-359</link>
		<dc:creator>Olivier Henkinbrant</dc:creator>
		<pubDate>Sun, 06 Nov 2011 07:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://anlek.com/?p=241#comment-359</guid>
		<description>Great post ! Thank you so much Andrew :D</description>
		<content:encoded><![CDATA[<p>Great post ! Thank you so much Andrew <img src='http://anlek.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

