In previous article we have seen that how pdf is generated using act_as_flying_saucer plugin. Following code snippets is used for generating pdf with bookmark . <bookmark name=”section 1″ href=”#section_1″> tag is used to generate bookmark. which contains name attribute for displaying name of bookmark. href attribute is used for navigation purpose. <bookmark> tag can be nested so it can be used for generating nested bookmark <bookmark> tag is wrapper with <bookmarks> tag. This tag placed in html header. Now in …
Tag: rails3.0
Pdf with password protected in rails In previous article we have seen that how pdf is generated using act_as_flying_saucer plugin. Now act_flying_saucer has added support for password protected pdf. To generate PDF with password protection just pass :password=>”xxx” to render_pdf method. You can install act_as_flying_saucer plugin For further details you can visit article or visit http://github.com/amardaxini/act_as_flying_saucer …
Today, I have started testing Beta release of Rails 3.0.By Default Rails 3.0 start with webrick.To start with mongrel do following steps. 1)Install mongrel gem 2) After installing mongrel gem go to config/boot.rb file and add following line 3) Start server as rails server …