On Jun 22, 2012, at 10:02 AM, Alec Taylor wrote:
>
> I got a syntax error on your last code modification (pointing out the
> = on social=).
My dumb mistake; you need a comma after the BASE dict:
routers = dict(
BASE=dict(
default_application='social',
),
social=dict(
functions = ['index', 'profile', 'user'],
)
)
I'll try adding your case to the unit tests and see what's what. I might not be
able to do it right away, but soon.
>
> And yes, I have restarted the server. (I even rebooted my machine [for
> an unrelated reason])
>
> Still being directed to http://brian.com/default/profile#_=_ rather
> than http://brian.com/profile
>
> On Sat, Jun 23, 2012 at 12:32 AM, Jonathan Lundell <[email protected]> wrote:
>> On Jun 22, 2012, at 7:29 AM, Alec Taylor wrote:
>>>
>>> I modified the route.py as you suggested:
>>>
>>> routers = dict(
>>> BASE=dict(
>>> default_application='social',
>>> functions = ['index', 'profile', 'user'],
>>> )
>>> )
>>>
>>> Yet the URL continues to present at: http://brian.com/default/profile#_=_
>
--