Thanks for replying.  i got it to work.  :)  but i have to scope the
folder itselft.

(r'^sign$', 'mytest.views.sign'),

On Nov 20, 5:08 pm, Waldemar Kornewald <[EMAIL PROTECTED]> wrote:
> Hi!
>
> On Nov 20, 5:18 pm,yinDojo<[EMAIL PROTECTED]> wrote:
>
> > #--------------------  urls.py
> > -------------------------------------------------
> > # this urls.py is located under mytest folder
> > from django.conf.urls.defaults import *
>
> > urlpatterns = patterns('',
>
> >   (r'^$', 'views.index'),
> >    (r'^sign$', 'views.sign'),
> > )
>
> Please try this:
>
> urlpatterns = patterns('mytest.views',
>     (r'^$', 'index'),
>     (r'^sign$', 'sign'),
> )
>
> BTW, the admin interface doesn't work out of the box on App Engine.
> There's some code floating around that makes it work, but I don't know
> if it works with Django 
> 1.0.2:http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> Bye,
> Waldemar Kornewald
> --
> Shameless plug :)
> app-engine-patch: Use Django on App Engine - with lots of 
> goodieshttp://code.google.com/p/app-engine-patch/
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to