Skip to content

It helps you to find out what partials were rendered for the generating html with erbs

License

Notifications You must be signed in to change notification settings

harishankar/partioprint

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Partioprint

Partioprint plugin adds partial name as a HTML comment whenever a partial is rendered from the ERBs. The purpose of this plugin is to ease the front-end web development effort when using lots of partials, if anything is broken in your page, you can quickly inspect it and can figure out which partial to look for, instead going through your logs to determine the target partial or by searching in your editor.

Other features added:

a) The partial absolute path now added to the comments. This helps to understand from where the actual partial is rendered, from within your app or one of the engines that is being used in vendor/plugins.

b) Locals being passed to the partial are also printed.

Partioprint adds two comments tag before and after the partial output. Below is the example

<!-- ERB:START partial: shared/header AND partial_absolute_path: /home/victoria7/projects/sample/app/views/shared/_header.html.erb -->
<!-- START Local variables:-->
<!-- object : null -->
<!-- header : null -->
<!-- END Local variables:-->
<div class="head">...</div>
<!-- ERB:END partial: shared/header AND partial_absolute_path: /home/victoria7/projects/sample/app/views/shared/_header.html.erb -->

Implemented upon idea by Arnab Chakraborty (@arnabc on Twitter)

Use it

Drop this plugin into your project's vendor/plugins folder. Restart the server. View the source. (If you have rendered partials in your views, it will print names of them in generated html code).

For Firebug users click on the down-arrow icon in HTML tab and enable 'Show Comments' to see the comments.

Note: This plugin might cause your webpage to render in quirks mode if you have a different partial to render DOCTYPEs.

Rave Reviews

"Looks cool. We have something similar internally at 37signals. Good to see it released." - @dhh

"It looks cool, will definitely use it for one of my client projects" - @technoweenie

"Just stumbled upon Rails plugin partioprint. Incredibly valuable 20 LOC. Gonna add it to all projects" - @codecuisine

http://railsenvy.com/2009/12/18/episode-103 - Highlighted in Rails Envy Podcast

http://afreshcup.com/home/2009/11/26/double-shot-592.html - Highlighted in Mike Gunderloy's A Fresh Cup

Author

Anil Wadghule :: anildigital@gmail.com :: @anildigital :: http://anilwadghule.com

About

It helps you to find out what partials were rendered for the generating html with erbs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Ruby 100.0%