[google-appengine] Re: datastore query ignoring filter argument.

2009-04-05 Thread OliWeiD
dated with a single operation instead of a big loop. Grace to the initial concern it's a poor workaround. On 2 Apr., 20:39, OliWeiD wrote: > Hi Jeff, > > Example: I'm looking at picture 1, so I pass 1 to img_next. > I want to have the next sequence > 1 (e.g. 2) > an

[google-appengine] Re: datastore query ignoring filter argument.

2009-04-02 Thread OliWeiD
Hi Jeff, Example: I'm looking at picture 1, so I pass 1 to img_next. I want to have the next sequence > 1 (e.g. 2) and of cause it's ordered ascending. As long as the filter "sequence > " or "sequence < " is in, the result is empty. Hope that answers your

[google-appengine] Re: Google app engine ... how to access website of company?

2009-04-02 Thread OliWeiD
n the book link above. > > I looked at the websites html files and I see alot of <%  things. I > try to look at the html file in my browser and I see only text not a > website. YES, that the django template system (I was told others are similar) I hope that helps OliWeiD --~--~-

[google-appengine] Re: Google app engine ... how to access website of company?

2009-04-02 Thread OliWeiD
p://code.google.com/intl/de/appengine/articles/django.html May be you find some of the code in your application code (to understand). I hope the links can speed up your progress. OliWeiD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] datastore query ignoring filter argument.

2009-04-01 Thread OliWeiD
the filter(sequence >) is not in, the first image is retrieved. Thanks in advance for any hint..OliWeiD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send e

[google-appengine] Re: Datastore newbie question

2009-03-23 Thread OliWeiD
t have the INFO message about trying, may be there aren't any datastore files. Otherwise the message should tell you, where it is searching for the files. Hope that helps OliWeiD. On 23 Mrz., 16:18, Nora wrote: > Could you please tell me where is this datastore storedI tried to >

[google-appengine] Re: Google app engine ... how to access website of company?

2009-03-23 Thread OliWeiD
that helps anyhow. OliWeiD On 21 Mrz., 16:08, Aaron wrote: > Hi, I just got hired in a company that claims they use google as their > web hosting service. > > I currently never knew google has hosting services. They told me that > they are using google apps engine. > > Now I am

[google-appengine] Re: App Engine SDK Cheat Sheet

2009-03-13 Thread OliWeiD
Well done, it saves me some time in switching through the appengin docs. On Mar 11, 7:44 pm, John wrote: > Hi All, > > Not sure if you saw the blog post this morning, but we created a cheat > sheet: > > http://googleappengine.googlecode.com/files/google_app_engine_cheat_s... > > We'd love your f

[google-appengine] Re: HTTPS pages with some unencrypted information

2009-03-06 Thread OliWeiD
> On Mar 6, 1:22 am, OliWeiD wrote: > > > Hi, > > > I have setup some pages in app.yaml with secure: always and some few > > are getting the following warn message in e.g. Firefox (IE7 is > > similar): > > You have requested an encrypted page that contains so

[google-appengine] HTTPS pages with some unencrypted information

2009-03-05 Thread OliWeiD
Hi, I have setup some pages in app.yaml with secure: always and some few are getting the following warn message in e.g. Firefox (IE7 is similar): You have requested an encrypted page that contains some unencrypted information. Information that you see or enter on this page could easily be read by

[google-appengine] Re: Is there a handler for logout?

2009-03-05 Thread OliWeiD
te.com/logout?url=/somethingit will redirect to > /something .. thats probably more useful in login situations though where > you obviously want the user to be returned to exactly where he was... > > On Thu, Mar 5, 2009 at 10:37 AM, OliWeiD > > wrote: > > > what is the di

[google-appengine] Re: Is there a handler for logout?

2009-03-05 Thread OliWeiD
tHandler(BaseHandler): >       def get(self ): >           self.redirect( users.create_logout_url( self.request.get > ( 'uri', '/' ) ) ) > > On Mar 4, 1:45 pm, OliWeiD wrote: > > > > > Hi Paul, > > > after multiple trials I found a way which is wo

[google-appengine] Re: Is there a handler for logout?

2009-03-04 Thread OliWeiD
ep well turns out this is exactly what im doing. but i dont see this   > as "generating a blank page". i have to try out the code i suggested   > yesterday. > > and i did make it home, thx :) > > Sent from my iPhone > > On 09-03-04, at 01:28, OliWeiD   > wrote: >

[google-appengine] Re: Is there a handler for logout?

2009-03-03 Thread OliWeiD
code i use exactly.. ;) > > ps i actually just missed my stop! lol.. damn you google!! (shakes fist) > > Sent from my iPhone > > On 09-03-04, at 00:01, OliWeiD   > wrote: > > > > > Hi everybody, > > > due to security reasons a

[google-appengine] Is there a handler for logout?

2009-03-03 Thread OliWeiD
Hi everybody, due to security reasons and for efficiency some sort of logout handler is needed. That means, when the user is clicking on the created logout link (users.create_logout_url) During that logout I want to delete a session cookie and delete the memcache entries for that user. Any idea?

[google-appengine] Re: Munich or how to setup a multi-language project

2009-03-01 Thread OliWeiD
with in the get routine the self.request.path variable to distinguish between the two languages and set a user preference. So the static way is solved, but for dynamically mapping paths I'm still searching. OliWeiD. On 28 Feb., 17:56, OliWeiD wrote: > Hi > > Given a directory a

[google-appengine] Munich or how to setup a multi-language project

2009-02-28 Thread OliWeiD
Hi Given a directory and file /germany/munich.py to display ???.appspot.com/germany/munich . In German language that would be either ???.appspot.com/deutschland/ münchen or ???.appspot.com/deutschland/muenchen . Now i want to use the same code and the same directory. Is there a possibility to ma