Skip to content

sgonyea/porthole

 
 

Repository files navigation

GO AWAY

You ended up here by mistake. This project is stupid and is only valuable if you need (not "want") to use "%%foo%%" for your templates, rather than "{{foo}}".

Porthole

Inspired by ctemplate and et, Porthole is a framework-agnostic way to render logic-free views.

As ctemplates says, "It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language."

For a list of implementations (other than Ruby) and tips, see http://porthole.github.com/.

Overview

Think of Porthole as a replacement for your views. Instead of views consisting of ERB or HAML with random helpers and arbitrary logic, your views are broken into two parts: a Ruby class and an HTML template.

We call the Ruby class the "view" and the HTML template the "template."

All your logic, decisions, and code is contained in your view. All your markup is contained in your template. The template does nothing but reference methods in your view.

This strict separation makes it easier to write clean templates, easier to test your views, and more fun to work on your app's front end.

Why?

I like writing Ruby. I like writing HTML. I like writing JavaScript.

I don't like writing ERB, Haml, Liquid, Django Templates, putting Ruby in my HTML, or putting JavaScript in my HTML.

Usage

Quick example:

>> require 'porthole'
=> true
>> Porthole.render("Hello %%planet%%", :planet => "World!")
=> "Hello World!"

We've got an examples folder but here's the canonical one:

class Simple < Porthole
  def name
    "Chris"
  end

  def value
    10_000
  end

  def taxed_value
    value * 0.6
  end

  def in_ca
    true
  end
end

We simply create a normal Ruby class and define methods. Some methods reference others, some return values, some return only booleans.

Now let's write the template:

Hello %%name%%
You have just won %%value%% dollars!
%%#in_ca%%
Well, %%taxed_value%% dollars, after taxes.
%%/in_ca%%

This template references our view methods. To bring it all together, here's the code to render actual HTML;

Simple.render

Which returns the following:

Hello Chris
You have just won 10000 dollars!
Well, 6000.0 dollars, after taxes.

Simple.

Tag Types

For a language-agnostic overview of Porthole's template syntax, see the porthole(5) manpage or http://porthole.github.com/porthole.5.html.

Escaping

Porthole does escape all values when using the standard double Porthole syntax. Characters which will be escaped: & \ " < >. To disable escaping, simply use triple portholes like %%%unescaped_variable%%%.

Example: Using %%variable%% inside a template for 5 > 2 will result in 5 &gt; 2, where as the usage of %%%variable%%% will result in 5 > 2.

Dict-Style Views

ctemplate and friends want you to hand a dictionary to the template processor. Porthole supports a similar concept. Feel free to mix the class-based and this more procedural style at your leisure.

Given this template (winner.porthole):

Hello %%name%%
You have just won %%value%% bucks!

We can fill in the values at will:

view = Winner.new
view[:name] = 'George'
view[:value] = 100
view.render

Which returns:

Hello George
You have just won 100 bucks!

We can re-use the same object, too:

view[:name] = 'Tony'
view.render
Hello Tony
You have just won 100 bucks!

Templates

A word on templates. By default, a view will try to find its template on disk by searching for an HTML file in the current directory that follows the classic Ruby naming convention.

TemplatePartial => ./template_partial.porthole

You can set the search path using Porthole.template_path. It can be set on a class by class basis:

class Simple < Porthole
  self.template_path = File.dirname(__FILE__)
  ... etc ...
end

Now Simple will look for simple.porthole in the directory it resides in, no matter the cwd.

If you want to just change what template is used you can set Porthole.template_file directly:

Simple.template_file = './blah.porthole'

Porthole also allows you to define the extension it'll use.

Simple.template_extension = 'xml'

Given all other defaults, the above line will cause Porthole to look for './blah.xml'

Feel free to set the template directly:

Simple.template = 'Hi %%person%%!'

Or set a different template for a single instance:

Simple.new.template = 'Hi %%person%%!'

Whatever works.

Views

Porthole supports a bit of magic when it comes to views. If you're authoring a plugin or extension for a web framework (Sinatra, Rails, etc), check out the view_namespace and view_path settings on the Porthole class. They will surely provide needed assistance.

Helpers

What about global helpers? Maybe you have a nifty gravatar function you want to use in all your views? No problem.

This is just Ruby, after all.

module ViewHelpers
  def gravatar
    gravatar_id = Digest::MD5.hexdigest(self[:email].to_s.strip.downcase)
    gravatar_for_id(gravatar_id)
  end

  def gravatar_for_id(gid, size = 30)
    "#{gravatar_host}/avatar/#{gid}?s=#{size}"
  end

  def gravatar_host
    @ssl ? 'https://secure.gravatar.com' : 'http://www.gravatar.com'
  end
end

Then just include it:

class Simple < Porthole
  include ViewHelpers

  def name
    "Chris"
  end

  def value
    10_000
  end

  def taxed_value
    value * 0.6
  end

  def in_ca
    true
  end

  def users
    User.all
  end
end

Great, but what about that @ssl ivar in gravatar_host? There are many ways we can go about setting it.

Here's on example which illustrates a key feature of Porthole: you are free to use the initialize method just as you would in any normal class.

class Simple < Porthole
  include ViewHelpers

  def initialize(ssl = false)
    @ssl = ssl
  end

  ... etc ...
end

Now:

Simple.new(request.ssl?).render

Finally, our template might look like this:

<ul>
  %%# users%%
    <li><img src="%% gravatar %%"> %% login %%</li>
  %%/ users%%
</ul>

Sinatra

Porthole ships with Sinatra integration. Please see lib/porthole/sinatra.rb or http://github.com/defunkt/porthole/blob/master/lib/porthole/sinatra.rb for complete documentation.

An example Sinatra application is also provided: http://github.com/defunkt/porthole-sinatra-example

If you are upgrading to Sinatra 1.0 and Porthole 0.9.0+ from Porthole 0.7.0 or lower, the settings have changed. But not that much.

See this diff for what you need to do. Basically, things are named properly now and all should be contained in a hash set using set :porthole, hash.

Porthole also ships with a Rack::Bug panel. In your config.ru add the following code:

require 'rack/bug/panels/porthole_panel'
use Rack::Bug::PortholePanel

Using Rails? Add this to your initializer or environment file:

require 'rack/bug/panels/porthole_panel'
config.middleware.use "Rack::Bug::PortholePanel"

Rack::Bug

Vim

Thanks to Juvenn Woo for porthole.vim. It is included under the contrib/ directory.

See http://gist.github.com/323622 for installation instructions.

Emacs

porthole-mode.el is available at https://github.com/porthole/emacs

TextMate

Porthole.tmbundle

See http://gist.github.com/323624 for installation instructions.

Command Line

See porthole(1) man page or http://porthole.github.com/porthole.1.html for command line docs.

Installation

$ gem install porthole

Acknowledgements

Thanks to Tom Preston-Werner for showing me ctemplate and Leah Culver for the name "Porthole."

Special thanks to Magnus Holm for all his awesome work on Porthole's parser.

Contributing

Once you've made your great commits:

  1. Fork Porthole
  2. Create a topic branch - git checkout -b my_branch
  3. Push to your branch - git push origin my_branch
  4. Create an Issue with a link to your branch
  5. That's it!

You might want to checkout Resque's Contributing wiki page for information on coding standards, new features, etc.

Mailing List

To join the list simply send an email to porthole@librelist.com. This will subscribe you and send you information about your subscription, including unsubscribe information.

The archive can be found at http://librelist.com/browser/.

Meta

You can also find us in #{ on irc.freenode.net.

About

Ignore this project. It has no value for the rest of the world. *sob*

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 97.0%
  • Vim Script 3.0%