User/BobZoller

Bob Zoller

I write the code.

personal site at: http://www.kludgebox.com/


Notes gathered while traversing Mojavi's code:

  • Controller
    • get{Action,Model,View} doesn't check to make sure it's valid first.. we'll hit an ugly require error if this gets called with bunk data.

Itches

  • Individual Controllers
    • one class with methods, each representing an action
    • do we really need all of those Action classes??
  • Routes (yes, rails style)
    • define URL patterns rather than relying on mod_rewrite/etc.
  • Decorator
    • not nestable - can't echo slot content in anything other than the decorator template
    • instead, provide an easy way to fetch the output of another action, without affecting the ActionStack?