<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
	>
<channel>
	<title>Comments on: Convert HTML to PDF Ruby on Rails</title>
	<atom:link href="http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/</link>
	<description>Revolutionary Teams, Organizational Transformation</description>
	<lastBuildDate>Thu, 26 Jan 2012 02:15:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: jomz</title>
		<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/comment-page-1/#comment-80</link>
		<dc:creator>jomz</dc:creator>
		<pubDate>Thu, 24 Mar 2011 23:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://integrumtech.com/?p=4715#comment-80</guid>
		<description>for the sake of people landing here from google, you should definitely have a look at PDFkit: https://github.com/jdpace/PDFKit</description>
		<content:encoded><![CDATA[<p>for the sake of people landing here from google, you should definitely have a look at PDFkit: <a href="https://github.com/jdpace/PDFKit" rel="nofollow">https://github.com/jdpace/PDFKit</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Whiteforce</title>
		<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/comment-page-1/#comment-79</link>
		<dc:creator>James Whiteforce</dc:creator>
		<pubDate>Mon, 12 Jul 2010 00:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://integrumtech.com/?p=4715#comment-79</guid>
		<description>yeah and the Prawn package maintainer, Gregory Brown is quite an arrogant prick 
who is quite up himself</description>
		<content:encoded><![CDATA[<p>yeah and the Prawn package maintainer, Gregory Brown is quite an arrogant prick<br />
who is quite up himself</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Duncan</title>
		<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/comment-page-1/#comment-78</link>
		<dc:creator>Mark Duncan</dc:creator>
		<pubDate>Wed, 07 Apr 2010 10:22:39 +0000</pubDate>
		<guid isPermaLink="false">http://integrumtech.com/?p=4715#comment-78</guid>
		<description>I&#039;ve had a lot of success using Flying Saucer
(https://xhtmlrenderer.dev.java.net/) with ruby-java bridge (http://rjb.rubyforge.org/). It&#039;s damn close to acid compliant and even includes some css3 stuff for page layout. Rjb doesn&#039;t play nicely with passenger so I had to use backgroundrb on the live servers but compared to the learning curve/limitations of itext/prawn it looks by far the easiest way to go.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve had a lot of success using Flying Saucer<br />
(<a href="https://xhtmlrenderer.dev.java.net/" rel="nofollow">https://xhtmlrenderer.dev.java.net/</a>) with ruby-java bridge (<a href="http://rjb.rubyforge.org/" rel="nofollow">http://rjb.rubyforge.org/</a>). It&#8217;s damn close to acid compliant and even includes some css3 stuff for page layout. Rjb doesn&#8217;t play nicely with passenger so I had to use backgroundrb on the live servers but compared to the learning curve/limitations of itext/prawn it looks by far the easiest way to go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kristian Mandrup</title>
		<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/comment-page-1/#comment-77</link>
		<dc:creator>Kristian Mandrup</dc:creator>
		<pubDate>Mon, 05 Apr 2010 05:10:28 +0000</pubDate>
		<guid isPermaLink="false">http://integrumtech.com/?p=4715#comment-77</guid>
		<description>I am now working on a rework of prawn-assist called 
prawn-html. Feel free to join in the effort or provide
feedback, suggestions etc ;)</description>
		<content:encoded><![CDATA[<p>I am now working on a rework of prawn-assist called<br />
prawn-html. Feel free to join in the effort or provide<br />
feedback, suggestions etc ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kristian Mandrup</title>
		<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/comment-page-1/#comment-76</link>
		<dc:creator>Kristian Mandrup</dc:creator>
		<pubDate>Mon, 05 Apr 2010 02:54:22 +0000</pubDate>
		<guid isPermaLink="false">http://integrumtech.com/?p=4715#comment-76</guid>
		<description>One of my first gems was a kind of addon to 
prawn-format which I called prawn-assist.

http://github.com/kristianmandrup/Prawn-assist

I am planning to update it one of these days, 
converting it into a gem with a nice DSL.

It functions by stripping out a some html tags 
which don&#039;t have meaning for pdf generation, then
converts certain html tags to related prawn-format 
tags and some prawn constructs. Works ok for simple
html cases. I know there are some css gems out 
there which could be used in combination to apply
css styling to the pdf...</description>
		<content:encoded><![CDATA[<p>One of my first gems was a kind of addon to<br />
prawn-format which I called prawn-assist.</p>
<p><a href="http://github.com/kristianmandrup/Prawn-assist" rel="nofollow">http://github.com/kristianmandrup/Prawn-assist</a></p>
<p>I am planning to update it one of these days,<br />
converting it into a gem with a nice DSL.</p>
<p>It functions by stripping out a some html tags<br />
which don&#8217;t have meaning for pdf generation, then<br />
converts certain html tags to related prawn-format<br />
tags and some prawn constructs. Works ok for simple<br />
html cases. I know there are some css gems out<br />
there which could be used in combination to apply<br />
css styling to the pdf&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Chaney</title>
		<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/comment-page-1/#comment-75</link>
		<dc:creator>Josh Chaney</dc:creator>
		<pubDate>Thu, 18 Feb 2010 05:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://integrumtech.com/?p=4715#comment-75</guid>
		<description>Would love to see this gemified! I have tried Prawn and it&#039;s awful. I would much rather write HTML and convert it. Have you guys tested it with large ( 50+ ) pages? I found that most applications that can convert a website to PDF ( like Paparazzi! ) tend to bomb and spit out blank pages. I know the scenario is unlikely for a typical website, but I ran into this exact problem trying to generate PDFs from large HTML reports.</description>
		<content:encoded><![CDATA[<p>Would love to see this gemified! I have tried Prawn and it&#8217;s awful. I would much rather write HTML and convert it. Have you guys tested it with large ( 50+ ) pages? I found that most applications that can convert a website to PDF ( like Paparazzi! ) tend to bomb and spit out blank pages. I know the scenario is unlikely for a typical website, but I ran into this exact problem trying to generate PDFs from large HTML reports.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rubes_mn</title>
		<link>http://integrumtech.com/2010/02/convert-html-to-pdf-ruby-on-rails/comment-page-1/#comment-74</link>
		<dc:creator>rubes_mn</dc:creator>
		<pubDate>Tue, 16 Feb 2010 04:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://integrumtech.com/?p=4715#comment-74</guid>
		<description>I could absolutely use this.  Looking at all the
options out there to convert from html:  princeXML, 
HTMLDOC, wkhtmltopdf, none are that desireable 
primarily due to cost and/or deployment issues.   I 
prefer a web service and especially since what I&#039;m 
converting has no PII or security concerns.</description>
		<content:encoded><![CDATA[<p>I could absolutely use this.  Looking at all the<br />
options out there to convert from html:  princeXML,<br />
HTMLDOC, wkhtmltopdf, none are that desireable<br />
primarily due to cost and/or deployment issues.   I<br />
prefer a web service and especially since what I&#8217;m<br />
converting has no PII or security concerns.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: integrumtech.com @ 2012-02-03 19:58:13 -->
