On Feb 22, 2011, at 7:41 PM, pbreit wrote: > OK, problem was with routes.py. I needed to add: > > routers = dict( > > BASE = dict( > ... > controllers = 'DEFAULT', > ... > )
controllers = 'DEFAULT' is the system default, so that line shouldn't be necessary. If it *is* needed, it's a bug and I'd like to know more. > > Another little gotcha is that if you build URLs in a .load file, make sure to > include extension='' so it doesn't inherit the .load extension. > > Ex: URL(c='components', f='test_component', extension='')

