Skip to navigation

Web Directions site launches

Published May 22, 2006

The Web Directions site has just been launched with all the juicy details and online registration.

The registration system was built with Rails and thanks to the kind folk that are WD I’ll be releasing a few extracted plugins in the coming weeks: SimpleAuthorisation, AccessibleFormBuilder and eMatters support for ActiveMerchant.

SimpleAuthorisation allows you to add simple, HTTP-based, app-wide password protection for the initial stages of your application’s development. Using it is a matter of:

class ApplicationController < ActionController::Base
  include SimpleAuthorisable
  before_filter :simple_auth_required
end

and setting the username and password in your environment.rb.

AccessibleFormBuilder is a Rails 1.1 form builder that help output input labels which respect a model’s validation. It’ll allow you to use code such as:

<dl class="horizontal-form billing">
  <dt><%= f.label :name, :required => true %></dt>
  <dd><%= f.text_field :name %></dd>
  <dt><%= f.label :company %></dt>
  <dd><%= f.text_field :company %></dd>
  <dt><%= f.label :email, :required => true %></dt>
  <dd><%= f.text_field :email %></dd>
  <dt class="last">
    <%= f.label :phone_number,
                :required => true,
                :value => "Ph. number" %>
  </dt>
  <dd class="last"><%= f.text_field :phone_number %></dd>
</dl>

It also ships with a few view helpers: accessible_form_for and accessible_fields_for.

If you haven’t already done so, go grab your ticket for WD06. If you’re involved with web development you’d be crazy to miss this year’s killer lineup.

Archived comments

Comments were previously allowed on articles. Though no new comments are being accepted you can see the old comments below.

  1. Tim Lucas

    maiha on the caboo.se blog just released a Htpasswd Plugin which is more comprehensive than SimpleAuthorisation, so I’ve no longer any plans on releasing SimpleAuthorisation. Go grab his instead!

More reading…

Previously: Yellow pants and racks of plastic

Next up: Blogging for Sitepoint

Articles

toolmantim

I'm Tim Lucas, a user experience designer and developer currently in Sydney Australia.

I run a web application design and development company Agency Rainford, present on various technical topics, snap the occasional photo, tweet my going-ons, share teh codes and post other tid-bits to the tumble.

Most recently I published LAN hacking with Bananajour (June 11, 2009)

Shoot an email to and say hello.

Powered by web2.0 koolaid