Add a class attribute to your tag for each part of the page’s path in the URL. E.g.: The page http://example.com/about/history should have a body tag that looks like <body class="about history">
. It makes styling those sections of your site nice and simple.
Often times, specific styling/formatting is shared between similar pages. The traditional way to deal with this is to include additional CSS files when special formatting is needed. I’ve found body classing to be more useful and more efficient.1
Since the pages that share styling often also share a path in the url, it’s really simple to add the path parts as classes to the body tag. For example, say the about section of a web site needs special formatting because it has an extra sidebar or maybe some sort of widget. I would add the class ‘about’ to the body tag of all of the about pages. This method continues down the hierarchy. The page at /about/history would have a body class of ‘about history’, and so on. It’s very simple and very handy.
It’s also very simple to add this functionality to your layouts whether you’re using Rails or any other framework. My PHP framework, Phooey, does it for you automatically.
For Rails, you can include this in your layout:
<body class="<%= controller_name -%> <%= action_name -%>">
…or, if you’re using Haml (which I highly recommend):
%body{:class => "#{controller_name} #{action_name}"}
Agree? Disagree? Confused? Let me know down there in the comments.
named_scope :all, {
:order => 'last_name',
:conditions => 'activated_at IS NOT NULL'
}
Thoughts, corrections and objections welcome in the comments.
]]>I had originally left out the step where you create the ‘rails’ directory inside the container directory. I thought that the mtr add utility might do that automatically, but it doesn’t look it. So, make sure you do #8 of Step 1 if you’re starting from scratch.
When I first wrote this article, WordPress was converting my double hyphens to en dashes (like a hyphen/dash but longer). Consequently, copy/pasting the command line input didn’t work. Now, it should be fixed and copy/pasting the commands should work. When in doubt, re-type it.
…easy as pie! You could even call it a recipe for pie!
I had the pleasure of deploying a Rails site on Media Temple’s new Grid Server recently. I have to say, it’s probably the easiest set up I’ve used for Rails.
There are basically three simple steps to setting up and deploying once you have the account set up: installing the container and rails; configuring your Capistrano recipe; and deploying.
I have created my own deploy.rb recipe which makes things even easier than the default MT recipe.
The following is mostly taken straight from MT’s Server Guide. The part that differs is in Step 2 and 3.
Rails is pretty much ready for an app now.
This is standard Capistrano procedure except for the specialized gem and deploy recipe.
[UPDATE] I should mention that the rest of this procedure takes place on your local (development) machine.
Now, your app is properly set up.
The above worked for me. Unless I’ve mis-documented something, it should work for you, but I can’t guarantee it. Please don’t blame me for any damage, and let me know if you find errors. I’ll do my best to address questions in the comments.
]]>So, about a month ago, not long after Lighty had settled into its little corner of the new server and was happily churning out web sites, I decided to shut it down. Lightttpd is a great web server, but my new CRAM setup feels so much better.
I’m talking about Capistrano, Rails, Apache, Mongrel. Coda Hale wrote a great article on setting it up. I used his basic procedure, tailored it to my specific needs/personality, and voila! CRAM!
See, Apache + FastCGI was sketchy at best, but Apache + Mongrel seems to be delightful. Now that Apache’s back in the mix, it’s a lot easier to run my PHP-based sites (and sites that rely on .htaccess files) alongside my Rails apps. And, even though Apache 2.2 wasn’t my favorite thing to install (nor was it my least favorite), I’m feeling darn good about my decision. Not only have I had much success with CRAM so far, there’s plenty of evidence that the Mongrel will be around for a bit. Edge Rails now uses Mongrel by default, and it’ll even be a part of Leopard’s Rails setup.
Speaking of Rails in Leopard. Nothing surprised me more that that news. I’m still a bit dumbfounded.
So, if you are developing in Rails and are trying to decide what sort of server stack/deployment you want to use, try CRAM.
]]>