[google-appengine] Re: What's wrong with this??

2009-03-06 Thread Gipsy Gopinathan
How are you linking your css in you template? probably something messed up there.Did you checked the html source generated and verified the css link is working by directly accessing it? cheers gipsy On Fri, Mar 6, 2009 at 7:49 AM, arnie parvez...@rediffmail.com wrote: I have moved the media

[google-appengine] Re: What's wrong with this??

2009-03-06 Thread Gipsy Gopinathan
Most likely you are missing a '/' in front of the css link like '/media/yourcss.css' versus 'media/yourcss.css' On Fri, Mar 6, 2009 at 8:05 AM, Gipsy Gopinathan gipsy.ra...@gmail.comwrote: How are you linking your css in you template? probably something messed up there.Did you checked

[google-appengine] Re: Dev_appserver.py opening not helloworld

2009-02-13 Thread Gipsy Gopinathan
I guess on you machine the file association for *.py files are set to notepad.exe. Either cahnge that or try running python dev_appserver.py helloworld\ On Fri, Feb 13, 2009 at 11:35 AM, Bob wowirap...@nyc.rr.com wrote: python 2.5 google sdk First i have to say I have had this issue twice

[google-appengine] Re: Fetch callback

2009-01-18 Thread Gipsy Gopinathan
I think you have to use the absolute path in your fetch call ie test = urlfetch.fetch('http://yourappid.appspot.com/check'+check) On Sun, Jan 18, 2009 at 7:54 PM, ehmo disku...@gmail.com wrote: Hey guys, i'm trying to do something like this class check(webapp.RequestHandler): def

[google-appengine] Re: typical scenario

2009-01-12 Thread Gipsy Gopinathan
I guess you can use the import statement in the other directories to access anything from DB floder lets say if you have models.py in DB folder contains your data model classes then in the other directories you can access it by from DB import models On Mon, Jan 12, 2009 at 9:09 AM,

[google-appengine] Re: External database dump

2009-01-11 Thread Gipsy Gopinathan
I think one other wired way of achieving this will be to go for a javascript Ajax solution. Let the javascript in browser do the xml parsing and hit appengine for each entities via an Ajax request. in this case you have the control of including a wait period between your calls. cheeers gipsy

[google-appengine] Re: user login URLs in html/javascript

2009-01-11 Thread Gipsy Gopinathan
%3Fcontinue%3Dhttp://carpoolfinder.appspot.com/%26service%3Dah Thank you, again for your help. On Jan 10, 11:05 pm, Gipsy Gopinathan gipsy.ra...@gmail.com wrote: go tohttp://dpaste.com/107358/ You should be able create the logout link by just changing it to users.create_logout_url(/) instead

[google-appengine] Re: Interaction with other server

2009-01-10 Thread Gipsy Gopinathan
Do you have access to install appengine sdk on your hosting server? If yes then you can do an appcfg update to your appengine app from the hosting server for updating your static or any other files.. On Tue, Jan 6, 2009 at 4:50 AM, gabon nuthink...@googlemail.com wrote: Tired of the

[google-appengine] Re: user login URLs in html/javascript

2009-01-10 Thread Gipsy Gopinathan
go to http://dpaste.com/107358/ You should be able create the logout link by just changing it to users.create_logout_url(/) instead of users.create_login_url(/) On Sat, Jan 10, 2009 at 9:43 PM, thebrianschott schott.br...@gmail.comwrote: Believe it or not, I now need a link like the other

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
by users.create_login_url(/) as the link location, and display the link only if users.get_current_user() is None. [snip] On Jan 9, 1:21 pm, Gipsy Gopinathan gipsy.ra...@gmail.com wrote: I guess you can just do a redirect to the url generated by users.create_login_url(/) from your

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
is not empty it would be Ok for them to be sent on /? place=value of place but that is more than I expect. Brian in Atlanta On Jan 9, 5:57 pm, Gipsy Gopinathan gipsy.ra...@gmail.com wrote: I assume that,your requirement is ,when the user submit the form: form method=get action=/ input type=text

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
the below html snippet htmlbody onload='location.replace('+users.create_login_url(/)+')/body/html On Fri, Jan 9, 2009 at 6:04 PM, thebrianschott schott.br...@gmail.comwrote: yes, Gipsy. On Jan 9, 6:35 pm, Gipsy Gopinathan gipsy.ra...@gmail.com wrote: Brian, So you want your home page

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
Brian, If you let your users click the url generated by users.create_login_url('/xyz') it will take the users to the google' account login page and after successfull completion of login , google automatically redirect the user to the url you have provided ('xyz' in this case). I think this

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
I think now I understood what you want . You want to provide a link in your home page for your users to login if they want to. And if the user is logged in, the application may behave differently. Is my understanding is right? If yes. Then i don't understand why you are not able provide the login

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
check http://kangchenchunga.appspot.com/ is this what you want ? On Fri, Jan 9, 2009 at 11:28 PM, thebrianschott schott.br...@gmail.comwrote: Gipsy, Could you just run the sample on your webpage and tell me what you get? Thanks, Brian On Jan 10, 12:19 am, Gipsy Gopinathan gipsy.ra

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
no that is my appspot On Fri, Jan 9, 2009 at 11:41 PM, thebrianschott schott.br...@gmail.comwrote: Yes, that's what I want. Your appspot is not kangchenchunga, is it. You just found it for me, right? That's great. Thanks a bunch. On Jan 10, 12:35 am, thebrianschott schott.br...@gmail.com

[google-appengine] Re: user login URLs in html/javascript

2009-01-09 Thread Gipsy Gopinathan
You can find the sample code here http://dpaste.com/107358/ On Fri, Jan 9, 2009 at 11:43 PM, Gipsy Gopinathan gipsy.ra...@gmail.comwrote: no that is my appspot On Fri, Jan 9, 2009 at 11:41 PM, thebrianschott schott.br...@gmail.comwrote: Yes, that's what I want. Your appspot