Re: [google-appengine] Re: java two request/thread that interact on the same session

2012-05-10 Thread Davide
. However, it sounds to me like you should really explore the Channel API to accomplish your goal: https://developers.google.com/appengine/docs/java/channel/overview On Thursday, May 10, 2012 9:21:02 AM UTC-4, Davide Montesin wrote: Hi, I like to develop a Rich User Interface. To obtain this on

Re: [google-appengine] Re: java two request/thread that interact on the same session

2012-05-10 Thread Davide
Hi, is possible that session is not replicated until the end of the http request is reached? How is possible to replicate DURING the http request? I am on the wrong way? On 05/10/2012 10:07 PM, Davide wrote: Hi Michael, thanks for the reply! Is possible to test a case in which two HTTP

Re: [google-appengine] Re: java two request/thread that interact on the same session

2012-05-10 Thread Davide
is? On 05/10/2012 11:22 PM, Michael Hermus wrote: It is definitely NOT written until the end of the request. You cannot use the session object that way. Memcache would be your best alternative, but it is possible you are attempting to implement a flawed pattern. On Thursday, May 10, 2012 5:12:01

Re: [google-appengine] Re: java two request/thread that interact on the same session

2012-05-11 Thread Davide
Hi Michael, I have clicked on the link you provide and read the documentation. I have created a small project to test channel api. I can make it running. From the "main" request I can send a message to the client using the channel. The client can then respond to me. But I have seen that the re

[google-appengine] Re: Checkout/Download Version Source?

2008-09-03 Thread Davide
Unfortunately I had the same problem of postmeridiem. I was thinking that the "project data loss" scenario is not the only one to be considered. Think of a multiple developer environment. A checkout feature will be very useful for sharing changes, while in this way the two (or more) devs must exch

[google-appengine] error OR-CBAT-15

2022-05-02 Thread davide vieira
hello, im trying to activate my free credit 300$ but afther all succeful step came an erro "OR-CBAT-15" i try many times, and whit olther payment card but still the same error. any know abaut this error? -- You received this message because you are subscribed to the Google Groups "Google App E

[google-appengine] java two request/thread that interact on the same session

2012-05-10 Thread Davide Montesin
Hi, I like to develop a Rich User Interface. To obtain this on user interaction I need two thread: one for action processing, and one for incrementally update the client side (html). I generate two http requests from the client. The two request must communicate. The "update" request must exchan

[google-appengine] Re: HTTP request

2008-08-27 Thread Davide Rognoni
Hi Jiang, see this link http://code.google.com/appengine/docs/webapp/requesthandlerclass.html get() post() put() head() delete() On Aug 27, 10:22 am, Jiang <[EMAIL PROTECTED]> wrote: > Hi, > > I have a quick question: does app engine support form "PUT" and > "DELETE"? > > They are covered in on

[google-appengine] Re: HTTP request

2008-08-28 Thread Davide Rognoni
see --> self.request.method def get(self): logging.info("" + self.request.method) self.response.out.write('get') def post(self): logging.info("" + self.request.method) self.response.out.write('post') def put(self): logging.info("" + self.request.met

[google-appengine] javascriptrun - server-side JavaScript

2008-08-28 Thread Davide Rognoni
javascriptrun allows you to build web applications by server-side JavaScript. This idea is inspired to Netscape and based on SpiderMonkey. javascriptrun: One syntax for client and server. http://pyoohtml.appspot.com/javascriptrun --~--~-~--~~~---~--~~ You receive

[google-appengine] Re: cpedialog v1.0 released

2008-08-28 Thread Davide Rognoni
I like it :-) Can you create a WIKI system based on CPEDIA ? On Aug 28, 5:56 pm, cpedia <[EMAIL PROTECTED]> wrote: > I'm very glad to announce the first release of cpedialog. > cpedialog is a blog tool for appengine user. It's an open source > program that distributed under the terms of the Apac

[google-appengine] Re: how to upload/download CSV file on Google App Engine

2008-08-28 Thread Davide Rognoni
Downloading Data From GAE Using Pickle http://groups.google.com/group/google-appengine/browse_thread/thread/b480610aa0eddfac/84e3606f3e8e1f0e?lnk=gst&q=davide+rognoni+pickle#84e3606f3e8e1f0e On Aug 28, 5:05 am, VV <[EMAIL PROTECTED]> wrote: > Hi, > I'm new for Python and

[google-appengine] Re: javascriptrun - server-side JavaScript

2008-08-28 Thread Davide Rognoni
ing on a non-JS > platform (http://erlyjs.googlecode.com) > > regards > Roberto > > On Aug 28, 3:39 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > javascriptrun allows you to build web applications by server-side > > JavaScript. > > This idea is inspired to Netscape and

[google-appengine] Re: GQL Query issue

2008-08-28 Thread Davide Rognoni
Only one? per query?? On Aug 28, 9:07 pm, fdezjose <[EMAIL PROTECTED]> wrote: > Hello! I'm new in the App Engine world and I've run into an issue > that's driving me crazy. I need to compare two properties (ex. > propertyA > 4 AND propertyB > 8) But by doing that I've discovered > that only one p

[google-appengine] Re: GQL Query issue

2008-08-28 Thread Davide Rognoni
t;, >).. On Aug 28, 9:51 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Only one? per query?? > > On Aug 28, 9:07 pm, fdezjose <[EMAIL PROTECTED]> wrote: > > > Hello! I'm new in the App Engine world and I've run into an issue > > that's driv

[google-appengine] Re: GQL Query issue

2008-08-28 Thread Davide Rognoni
For your local application you can comment these checks :-) if operator in self.INEQUALITY_OPERATORS: if self.__inequality_prop and property != self.__inequality_prop: raise datastore_errors.BadFilterError( 'Only one property per query may have inequality filters (%s).

[google-appengine] Re: GQL Query issue

2008-08-28 Thread Davide Rognoni
Why this limitation? On Aug 28, 10:17 pm, Nevin Freeman <[EMAIL PROTECTED]> wrote: > José, > > Many different workarounds are available, depending on your > circumstances. The simplest (not ideal) thing to do would be to run > two queries and then take the intersection of the two results, i.e.: >

[google-appengine] Re: user objects different based on email case?

2008-08-28 Thread Davide Rognoni
str(user1).lower() == str(user2).lower() On Aug 28, 6:35 pm, Savraj Singh <[EMAIL PROTECTED]> wrote: > Hi everyone, quick question. > > class Tests(webapp.RequestHandler): >         def get(self): >                 user1 = users.User(email="[EMAIL PROTECTED]") >                 user2 = users.User

[google-appengine] Re: GQL Query issue

2008-08-28 Thread Davide Rognoni
acent > to one another in the index table, to avoid having to scan the entire > table for results. A single index table cannot represent multiple > inequality filters on multiple properties while maintaining that all > results are consecutive in the table." > > Nevin > &

[google-appengine] GAE and AWS

2008-08-28 Thread Davide Rognoni
Amazon Web Services http://aws.amazon.com/ The best way is the cooperation, but I don't see Python http://docs.amazonwebservices.com/AmazonSimpleDB/2007-11-07/GettingStartedGuide/index.html?ListAllItems.html Java C# Perl PHP VB.NET and my Python :-( --~--~-~--~~~---~

[google-appengine] Re: javascriptrun - server-side JavaScript

2008-08-28 Thread Davide Rognoni
ffic sites with hundreds of thousands of dynamic pages per day. The Austrian Broadcasting Corporation, popular weblog hosting sites such as antville.org, twoday.net, and blogger.de, among many others, have successfully been deploying Helma for several years.""" On Aug 28, 8:39 pm, Da

[google-appengine] Re: javascriptrun - server-side JavaScript

2008-08-29 Thread Davide Rognoni
No, javascriptrun is my secret framework to build back-end by JavaScript. I see the future of my javascriptrun: billion over billion of dollars. On Aug 29, 6:15 am, "Peter Svensson" <[EMAIL PROTECTED]> wrote: > Davide, I assume that your page was a wishlist page, for a featu

[google-appengine] GAE and PayPal

2008-08-29 Thread Davide Rognoni
Exists? See this other: "GAE and AWS" http://groups.google.com/group/google-appengine/browse_thread/thread/1ff1434f0331959e/abea7cd156772940?lnk=gst&q=davide+rognoni#abea7cd156772940 --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] Re: The Newbie Doubts on Django Template

2008-08-29 Thread Davide Rognoni
allow me to re-use snippets, but it looks like most template languages don't work on appengine""" PyOoHtml works! On Aug 24, 7:07 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Here another problem "parsing xml in the > template"http://groups.google.

[google-appengine] Re: Re-using Template Snippets - Where's my {%with%}?

2008-08-29 Thread Davide Rognoni
PyOoHtml works! On Jul 28, 1:12 am, Nick Retallack <[EMAIL PROTECTED]> wrote: > In Django, I was able to re-use template snippets like this: > > {% with your_things as those_things %} > {% include 'things_gallery.html' %} {# displays those_things #} > {% endwith %} > > {% with my_things as those_

[google-appengine] Re: Having doubts about AppEngine

2008-08-30 Thread Davide Rognoni
Doubts about Django Template http://groups.google.com/group/google-appengine/browse_thread/thread/3503204aed78e934# On Aug 28, 12:09 am, javaDinosaur <[EMAIL PROTECTED]> wrote: > I am starting to have doubts about continuing to develop my > applications for GAE. My concerns are not technical alth

[google-appengine] Re: Re-using Template Snippets - Where's my {%with%}?

2008-08-30 Thread Davide Rognoni
...because is 100% pure Python code :-) On Aug 29, 11:59 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > PyOoHtml works! > > On Jul 28, 1:12 am, Nick Retallack <[EMAIL PROTECTED]> wrote: > > > In Django, I was able to re-use template snippets like this: > > &

[google-appengine] InPyTut - Interactive Python Tutorial

2008-08-30 Thread Davide Rognoni
This tutorial is useful for the Python newbie http://pyoohtml.appspot.com/IronBrowser/static/InPyTut/index.html For the scripts execution you must open the URL using IronBrowser (Iron Python Web Browser) http://pyoohtml.appspot.com/IronBrowser/download IronBrowser depend from IronPython (the imp

[google-appengine] Re: Having doubts about AppEngine

2008-08-30 Thread Davide Rognoni
n""" Django is free, no investment. On Aug 30, 9:05 pm, Michael Schreifels <[EMAIL PROTECTED]> wrote: > Davide, > > I really don't see the Django template language being a valid concern > at all. It is just a library that Google provides, no one is forcing >

[google-appengine] Re: GAE and AWS

2008-08-30 Thread Davide Rognoni
or working with amazon's web services.  A big caveat is > that you will have to substitute google's urlfetch where appropriate. > > On Aug 28, 6:09 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > Amazon Web Serviceshttp://aws.amazon.com/ > >

[google-appengine] Re: The Newbie Doubts on Django Template

2008-08-30 Thread Davide Rognoni
"""it's not only _() that doesn't work as expected but it also happens with the {% trans %} template tag.""" On Aug 29, 11:29 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Here another problem: "Re-using Template Snippets - Where's my

[google-appengine] Re: newbie doubt:TemplateDoesNotExist in live

2008-08-30 Thread Davide Rognoni
See here http://www.djangobook.com/en/1.0/chapter04/ or send me your project source (a ZIP file, please) On Aug 30, 7:27 pm, v4vijayakumar <[EMAIL PROTECTED]> wrote: > I am getting TemplateDoesNotExist error when I access my app. It was > working fine with dev_appserver. > > raise TemplateDoesN

[google-appengine] Re: select and filter by date

2008-08-30 Thread Davide Rognoni
Can you make this test, using: query = Game.all() query.filter('time >=', datetime.datetime.strptime("2008-08-29", "%Y- %m-%d")) print query.count() On Aug 30, 9:58 am, Kjartan <[EMAIL PROTECTED]> wrote: > Hi gang. > > I'm having some problems selecting data from the datastore  and filter > it

[google-appengine] Re: GAE and PayPal

2008-08-30 Thread Davide Rognoni
June 10th, 2008 Google intentionally blocking PayPal from App Engine? http://blogs.zdnet.com/Google/?p=1067 Why? (no money no code :-) Has GAE a Pay system? On Aug 29, 11:21 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Exists? > > See this other: "GAE and > AWS&q

[google-appengine] Re: Having doubts about AppEngine

2008-08-30 Thread Davide Rognoni
Not Google but: “Guido just pronounced: Django is the [Python] web framework http://www.cmlenz.net/archives/2006/08/the-python-web-framework On Aug 30, 11:09 pm, Roberto Saccon <[EMAIL PROTECTED]> wrote: > Davide, nobody cares about your personal concerns around Google’s > commitme

[google-appengine] Re: Having doubts about AppEngine

2008-08-30 Thread Davide Rognoni
n Aug 30, 11:09 pm, Roberto Saccon <[EMAIL PROTECTED]> wrote: > Davide, nobody cares about your personal concerns around Google’s > commitment to Django templates. There are plenty of other frameworks > and template languages, choose the one which fits your needs or if > none fits

[google-appengine] Re: The Newbie Doubts on Django Template

2008-08-30 Thread Davide Rognoni
See the post http://groups.google.com/group/google-appengine/browse_thread/thread/674849930bd256da/db07511d3c79af0c#db07511d3c79af0c Generic doubts and Django template system doubts. On Aug 30, 9:52 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Another problem: "Intern

[google-appengine] Re: Having doubts about AppEngine

2008-08-30 Thread Davide Rognoni
OK, Django Template System is not GAE but a part of GAE, then? On Aug 31, 12:18 am, Michael Schreifels <[EMAIL PROTECTED]> wrote: > Not to start a flame war, but... > > On Aug 30, 2:34 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > 2) """Here on

[google-appengine] Re: Having doubts about AppEngine

2008-08-30 Thread Davide Rognoni
OK, I will go on the big Django Community http://www.djangoproject.com/community/ Bye bye :-D On Aug 31, 12:36 am, Michael Schreifels <[EMAIL PROTECTED]> wrote: > On Aug 30, 4:25 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > Not Google but: > > > “Gui

[google-appengine] Re: Having doubts about AppEngine

2008-08-31 Thread Davide Rognoni
31, 2:08 am, "Noah Gift" <[EMAIL PROTECTED]> wrote: > On Sat, Aug 30, 2008 at 6:36 PM, Michael Schreifels <[EMAIL PROTECTED]> wrote: > > > On Aug 30, 4:25 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > >> Not Google but: > > >> "Gui

[google-appengine] Pure Python Template System for GAE

2008-08-31 Thread Davide Rognoni
http://wiki.python.org/moin/Templating I see many systems, what is the best? - Engines Mixing Logic into Templates - Engines with Annotated Templates - HTML Shorthand Processors - HTML Generation Packages - Others? --~--~-~--~~~---~--~~ You received this message

[google-appengine] Re: Pure Python Template System for GAE

2008-08-31 Thread Davide Rognoni
oogle.com/p/pyxer/source/browse/#svn/trunk/src/pyxer/tem... > > Cheers > Dirk > > Davide Rognoni schrieb: > > >http://wiki.python.org/moin/Templating > > > I see many systems, what is the best? > > > - Engines Mixing Logic into Templates > > - Engin

[google-appengine] Re: Pure Python Template System for GAE

2008-08-31 Thread Davide Rognoni
Now you can vote your engine here: "Best Template Engine" http://pyoohtml.appspot.com/best-template-engine On Aug 31, 1:05 pm, Dirk Holtwick <[EMAIL PROTECTED]> wrote: > Davide Rognoni schrieb: > > > Why is Genshi not supported? Is not in pure Python? > > B

[google-appengine] Re: javascriptrun - server-side JavaScript

2008-08-31 Thread Davide Rognoni
. I once started myself to write a JS framework running on a non-JS > platform (http://erlyjs.googlecode.com) > > regards > Roberto > > On Aug 28, 3:39 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > javascriptrun allows you to build web applications by server-s

[google-appengine] Re: Pure Python Template System for GAE

2008-08-31 Thread Davide Rognoni
Django template system (4) Pyxer Templating (1) PyOoHtml (1) Genshi (1) Airspeed (1) from "Best Template Engine" http://pyoohtml.appspot.com/best-template-engine On Aug 31, 3:53 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Now you can vote your engine here: > > &

[google-appengine] Re: Template : looping over a list of lists

2008-08-31 Thread Davide Rognoni
You could use another templating engine. -- "Best Template Engine" http://pyoohtml.appspot.com/best-template-engine On Aug 31, 10:12 pm, jorgian <[EMAIL PROTECTED]> wrote: > I want to update the defaulttags.py file on appengine so that i loop > over a list of lists. I got it working on my machi

[google-appengine] Re: Template : looping over a list of lists

2008-08-31 Thread Davide Rognoni
rating the HTML code. On Aug 31, 10:35 pm, jorgian <[EMAIL PROTECTED]> wrote: > Which one do you suggest? > > On Aug 31, 10:23 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > You could use another templating engine. > > > -- > > "Best Template E

[google-appengine] Re: Template : looping over a list of lists

2008-08-31 Thread Davide Rognoni
I waiting for more votes, before to take a final decision. -- "Best Template Engine" http://pyoohtml.appspot.com/best-template-engine On Aug 31, 10:35 pm, jorgian <[EMAIL PROTECTED]> wrote: > Which one do you suggest? > > On Aug 31, 10:23 pm, Davide Rognoni <[EMAIL

[google-appengine] Best Template Engine (14 votes)

2008-09-01 Thread Davide Rognoni
You can vote a engine: http://pyoohtml.appspot.com/best-template-engine Django template system (6) PyOoHtml (2) Genshi (2) Airspeed (2) Pyxer Templating (1) Spyce (1) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Best Template Engine (14 votes)

2008-09-02 Thread Davide Rognoni
; There is no best, it depends on the project requirements, it's scope and > more important taste of the people involved. > > On Mon, Sep 1, 2008 at 1:22 PM, Davide Rognoni <[EMAIL PROTECTED]>wrote: > > > > > You can vote a engine: > >http://pyoohtml.a

[google-appengine] Re: newbie doubt:TemplateDoesNotExist in live

2008-09-02 Thread Davide Rognoni
Good :-) -- "Best Template Engine" http://pyoohtml.appspot.com/best-template-engine On Sep 2, 6:12 pm, v4vijayakumar <[EMAIL PROTECTED]> wrote: > On Aug 30, 10:27 pm, v4vijayakumar <[EMAIL PROTECTED]> > wrote: > ...> I just can't wait to see my app online, any quick help would be > > great. :)

[google-appengine] Re: server time zone: datetime.utcnow() or now()?

2008-09-02 Thread Davide Rognoni
Yes, more docs and more examples, please :-) (you conquest the developers and you will conquest the web) -- "Best Template Engine" http://pyoohtml.appspot.com/best-template-engine On Sep 2, 8:11 am, Waldemar Kornewald <[EMAIL PROTECTED]> wrote: > Hi Ryan, > > On 2 Sep., 00:44, ryan <[EMAIL PROT

[google-appengine] Mako Templates for Python

2008-09-03 Thread Davide Rognoni
http://www.makotemplates.org Mako is a template library written in Python. Insanely Fast. An included bench suite, adapted from a suite included with Genshi, has these results for a simple three-sectioned layout: Mako: 1.10 ms Myghty: 4.52 ms Cheetah:1.10 ms Genshi: 11.

[google-appengine] Re: Mako Templates for Python

2008-09-03 Thread Davide Rognoni
Because I'm looking for alternatives to Django template system. On Sep 3, 9:52 pm, "Andrew Badera" <[EMAIL PROTECTED]> wrote: > Why are you posting this to this list? > > On Wed, Sep 3, 2008 at 3:49 PM, Davide Rognoni <[EMAIL PROTECTED]>wrote: > > >

[google-appengine] Re: Mako Templates for Python

2008-09-03 Thread Davide Rognoni
- First aim: performance; On Sep 3, 9:57 pm, "Andrew Badera" <[EMAIL PROTECTED]> wrote: > Perhaps you need to elucidate your purpose better instead of posting > seemingly random performance stats. > > On Wed, Sep 3, 2008 at 3:56 PM, Davide Rognoni <[EMAIL PROTECTE

[google-appengine] Re: Mako Templates for Python

2008-09-03 Thread Davide Rognoni
python-like conditionals; No > "ifnotequal" and such sillyness. Important to note that it is however > NOT embedded python. > > http://jinja.pocoo.org/2/ > > On Sep 3, 9:49 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > >http://www.makotemplat

[google-appengine] Re: Mako Templates for Python

2008-09-03 Thread Davide Rognoni
But on GAE cookbook I don't see the right category for no-django- template-system. On Sep 3, 10:49 pm, "Noah Gift" <[EMAIL PROTECTED]> wrote: > On Wed, Sep 3, 2008 at 4:48 PM, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > Then you can vote this templat

[google-appengine] Re: Mako Templates for Python

2008-09-03 Thread Davide Rognoni
Noah Gift wrote: > > > On Wed, Sep 3, 2008 at 4:48 PM, Davide Rognoni <[EMAIL PROTECTED]> wrote: > >> Then you can vote this template :-) > > > Hopefully, people using other templates would be kind enough to post a > > how to on getting it working on the co

[google-appengine] Re: Fixed: admin pages, is_current_user_admin, and sending mail as admin

2008-09-03 Thread Davide Rognoni
Thank you :-) -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine On Sep 3, 10:30 pm, "Jeff S (Google)" <[EMAIL PROTECTED]> wrote: > Hi all, > > We recently rolled out a new version which contained a bug in > users.is_current_user_admin() which caused it to always return Fal

[google-appengine] Re: Mako Templates for Python

2008-09-03 Thread Davide Rognoni
The vote is similar to the rating: show the best on top. -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine On Sep 3, 11:43 pm, Brian Clapper <[EMAIL PROTECTED]> wrote: > On 9/3/08 5:23 PM, Davide Rognoni wrote: > > > Yes, but the vote indicates the dev

[google-appengine] Re: Mako Templates for Python

2008-09-03 Thread Davide Rognoni
I can not study all egines http://wiki.python.org/moin/Templating -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine On Sep 3, 11:52 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > The vote is similar to the rating: show the best on top. > > -- Best Temp

[google-appengine] Re: Django 1.0?

2008-09-04 Thread Davide Rognoni
What are the new features of Django? -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine On Sep 4, 6:07 am, Nico <[EMAIL PROTECTED]> wrote: > I think the question is not if, but when. > I hope it will happen very soon, now that 1.0 final is out... > > On 4 Sep., 02:40, DaNma

[google-appengine] Re: Django 1.0?

2008-09-05 Thread Davide Rognoni
Very Good :-) ***NEWS*** Jython compatibility http://docs.djangoproject.com/en/dev/howto/jython/#howto-jython ***ISSUES*** Caveats with support of certain databases http://docs.djangoproject.com/en/dev/ref/databases/#mysql-notes http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-notes

[google-appengine] Re: When is GAE going to support Django 1.0?

2008-09-05 Thread Davide Rognoni
I like "Jython compatibility" http://docs.djangoproject.com/en/dev/howto/jython/#howto-jython -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine On Aug 27, 3:40 pm, "Damien Hou" <[EMAIL PROTECTED]> wrote: > I've been using my own copy of django svn version along with my app

[google-appengine] Re: Upload Post image app engine

2008-09-06 Thread Davide Rognoni
Post here your main "app.py" file: def main(): application = webapp.WSGIApplication([ ('/', home.handler.Home), ... -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine On Sep 5, 3:23 pm, rive <[EMAIL PROTECTED]> wrote: > I do an multipart post to "http:

[google-appengine] Re: I18N and google app engine

2008-09-06 Thread Davide Rognoni
Try this :-D http://babelfish.yahoo.com/translate_url?doit=done&tt=url&intl=1&fr=bf-home&trurl=http%3A%2F%2Fpyoohtml.appspot.com%2Fbest-template-engine&lp=en_fr&btnTrUrl=Translate -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine On Sep 4, 10:57 pm, Pierre <[EMAIL PROTECT

[google-appengine] Re: Internationalize GAE webapp

2008-09-06 Thread Davide Rognoni
"Le meilleur moteur de calibre" http://babelfish.yahoo.com/translate_url?doit=done&tt=url&intl=1&fr=bf-home&trurl=http%3A%2F%2Fpyoohtml.appspot.com%2Fbest-template-engine&lp=en_fr&btnTrUrl=Translate . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . On Jul 18, 9:5

[google-appengine] Re: Internationalize GAE webapp

2008-09-06 Thread Davide Rognoni
ci, > > Pierre > > On 6 sep, 12:02, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > "Le meilleur moteur de > > calibre"http://babelfish.yahoo.com/translate_url?doit=done&tt=url&intl=1&fr=b... > > . > > . > > . > > -- Bes

[google-appengine] Re: Internationalize GAE webapp

2008-09-06 Thread Davide Rognoni
. . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . On Sep 6, 12:16 pm, A.TNG <[EMAIL PROTECTED]> wrote: > On Sat, Sep 6, 2008 at 6:15 PM, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > Yes, the message is relevant, because this is the best way

[google-appengine] Re: How can I support multilingual interfaces in GAE?

2008-09-06 Thread Davide Rognoni
In Python you can use the dictionary (IT = italian): >>> TRANS = { ... "IT" : { ... "hello" : "ciao", ... "apple" : "mela", ... } ... } >>> TRANS {'IT': {'hello': 'ciao', 'apple': 'mela'}} . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . On Sep

[google-appengine] Re: Internationalize GAE webapp

2008-09-06 Thread Davide Rognoni
on probably isn't a great solution.  I'd argue > it's probably worse than doing nothing. > > On Sep 6, 6:28 am, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > Ok, my is a provocation :-) > > > But, for example, I can't make a chinese translation

[google-appengine] Language Tools and GAE

2008-09-06 Thread Davide Rognoni
Hi, how can I use the language tools with GAE? http://www.google.com/language_tools?hl=en . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

[google-appengine] Re: Language Tools and GAE

2008-09-06 Thread Davide Rognoni
Googling I see "Google AJAX Language API" http://code.google.com/apis/ajaxlanguage/ On Sep 6, 2:48 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Hi, > how can I use the language tools with > GAE?http://www.google.com/language_tools?hl=en > . > . &g

[google-appengine] Re: Language Tools and GAE

2008-09-06 Thread Davide Rognoni
onditions of Google Adsense. We apologize for the inconvenience. :-( On Sep 6, 2:48 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Hi, > how can I use the language tools with > GAE?http://www.google.com/language_tools?hl=en > . > . > . >

[google-appengine] Re: Sample code of i18n on GAE+Django

2008-09-06 Thread Davide Rognoni
How can you add "i18sample.zip" to the post? On Sep 6, 4:21 pm, A.TNG <[EMAIL PROTECTED]> wrote: > Hi All, > > Finally, I could make i18n work on GAE now (with built-in Django > 0.96.1). Please check attached ZIP file. Set LANGUAGE_CODE in > settings.py to get different locale. > > Enjoy. :-) > >

[google-appengine] Re: GAE and PayPal

2008-09-06 Thread Davide Rognoni
Ok I read now http://groups.google.com/group/google-appengine/browse_thread/thread/9059b0750c45703b/b1d0611dd4b04273?lnk=gst&q=translate#b1d0611dd4b04273 Then I can build my business :-) On Aug 30, 11:04 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > June 10th, 2008 > Goog

[google-appengine] Re: Sample code of i18n on GAE+Django

2008-09-06 Thread Davide Rognoni
Yes you can :-) but I don't know where is the [button] to add files. I'm posting from web... On Sep 6, 5:01 pm, A.TNG <[EMAIL PROTECTED]> wrote: > On 9/6/08, Davide Rognoni <[EMAIL PROTECTED]> wrote: > > > > > How can you add "i18sample.zip" to

[google-appengine] Re: Online development environment for GAE

2008-09-06 Thread Davide Rognoni
I like your web-based idea but can you build this evolute web application using the GAE framework? . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . On Sep 5, 7:35 pm, windchess <[EMAIL PROTECTED]> wrote: > Has anybody heard if Google is planning on creating an o

[google-appengine] Re: Sample code of i18n on GAE+Django

2008-09-07 Thread Davide Rognoni
Ok, but you could send your file here: http://groups.google.com/group/google-appengine/files . . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . . On Sep 7, 4:12 am, A.TNG <[EMAIL PROTECTED]> wrote: > On Sun, Sep 7, 2008 at 5:29 AM, Davide Rognon

[google-appengine] Re: Upload Post image app engine

2008-09-09 Thread Davide Rognoni
I see the mapping for ('/', MainPage) but where is the mapping for "CountriesService", for example: ('/countries', CountriesService) and can you use only "get" and "post" in the "CountriesService" handler? . . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . . O

[google-appengine] Re: A Very Specific AJAX RPC App Engine Question

2008-09-09 Thread Davide Rognoni
JSON-P example: function foo(json) { alert( json["responseData"]["translatedText"] ); } http://ajax.googleapis.com/ajax/services/language/ translate?v=1.0&q=hello%20world&langpair=en%7Cit&callback=foo"> // - see the link http://ajax.googleapis.com/

[google-appengine] Re: unterminated string literal

2008-09-09 Thread Davide Rognoni
ESCAPEJS http://www.djangoproject.com/documentation/templates/#escapejs . . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . . On Sep 9, 10:38 pm, thepopeofantelope <[EMAIL PROTECTED]> wrote: > I understand that. The line of failure in my original posting was > ge

[google-appengine] Re: debugging application

2008-09-09 Thread Davide Rognoni
Now you can use the logging :-) http://docs.python.org/lib/module-logging.html . . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . . On Sep 9, 9:45 pm, Aramaki <[EMAIL PROTECTED]> wrote: > Hi. Firstable say i'm absolutly new in python so maybe my question > will

[google-appengine] Re: Can I use Python script in the HTML just like the javascript?

2008-09-11 Thread Davide Rognoni
Yes, but you must use this danger browser http://pyoohtml.appspot.com/IronBrowser On Sep 11, 10:05 am, Allen <[EMAIL PROTECTED]> wrote: > Hey guys, > > I am newcommer of Google App > > Can I use Python script in the HTML just like the javascript? > > Thanks --~--~-~--~~~--

[google-appengine] Re: Can I use Python script in the HTML just like the javascript?

2008-09-11 Thread Davide Rognoni
Rodney Dangerfield? > > On Thu, Sep 11, 2008 at 2:20 PM, Davide Rognoni <[EMAIL PROTECTED]>wrote: > > > > > > > > > Yes, but you must use this danger browser > >http://pyoohtml.appspot.com/IronBrowser > > > On Sep 11, 10:05 am, Allen <[EMAIL

[google-appengine] Eclipse & GAE

2008-09-11 Thread Davide Rognoni
Hi, this post is very very good: "debugging application" http://groups.google.com/group/google-appengine/browse_thread/thread/ab9a557d28bc2240/a16a74a70b665ca9#a16a74a70b665ca9 Alexander Kojevnikov Did you use this guide? http://code.google.com/appengine/articles/eclipse.html Debugging, includi

[google-appengine] Re: Eclipse & GAE

2008-09-11 Thread Davide Rognoni
And thanks to Joscha :-) On Sep 11, 10:26 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Hi, > this post is very very good: > > "debugging > application"http://groups.google.com/group/google-appengine/browse_thread/thread/... > > Alexander Koj

[google-appengine] Re: Eclipse & GAE

2008-09-12 Thread Davide Rognoni
Do you like GAE on Eclipse? . . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . . On Sep 11, 10:34 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > And thanks to Joscha :-) > > On Sep 11, 10:26 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: &g

[google-appengine] Re: Can I use Python script in the HTML just like the javascript?

2008-09-12 Thread Davide Rognoni
My new web browser is danger but powerful. On Sep 11, 8:26 pm, "Andrew Badera" <[EMAIL PROTECTED]> wrote: > Danger browser? > > Is that the browser Danger Mouse uses? > > Or perhaps the browser preferred by Rodney Dangerfield? > > On Thu, Sep 11, 2008 at 2:20

[google-appengine] Re: Eclipse & GAE

2008-09-13 Thread Davide Rognoni
Others powerful Open Source IDE for GAE/Python ? (breakpoints, code completion, code navigation, ...) On Sep 12, 9:37 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Do you like GAE on Eclipse? > . > . > . > . > --

[google-appengine] The Best IDE for GAE/Python

2008-09-13 Thread Davide Rognoni
Hi, what is the powerful IDE ? (breakpoints, code complation, code navigation, ..., ..., ..., ..., ...) Eclipse & Pydev? http://pydev.sourceforge.net/features.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Go

[google-appengine] Re: The Best IDE for GAE/Python

2008-09-13 Thread Davide Rognoni
Yes, but I think that the GAE Team uses a particular IDE... On Sep 13, 10:32 pm, Ovnicraft <[EMAIL PROTECTED]> wrote: > 2008/9/13 Davide Rognoni <[EMAIL PROTECTED]> > > > > > Therefore the GAE Team uses this IDE ? > > IDE use is your chioce, i use e

[google-appengine] Re: Fwd: New Admin Console Released

2008-09-18 Thread Davide Rognoni
Hi Marzia, before this new release my app version was 2.40 Now is 2 Is it right? On Sep 18, 7:30 pm, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > Hi, > > This morning we released a new Admin Console which includes a more > descriptive accounting of your application's CPU stats.  We now display

[google-appengine] Re: The Best IDE for GAE/Python

2008-09-19 Thread Davide Rognoni
Yes yes, VIM :-) Back to the Future http://wiki.python.org/moin/PythonEditors On Sep 19, 4:20 am, "Jorge Vargas" <[EMAIL PROTECTED]> wrote: > On Sat, Sep 13, 2008 at 3:23 AM, Davide Rognoni<[EMAIL PROTECTED]> wrote: > > > Hi, > > what is the powerful I

[google-appengine] Re: How to create SOAP server in GAE

2008-09-24 Thread Davide Rognoni
Yes, saving our time, please :-) QUICK START http://pywebsvcs.sourceforge.net/soappy.txt A simple "Hello World" http SOAP server: import SOAPpy def hello(): return "Hello World" server = SOAP.SOAPServer(("localhost", 8080)) server.registerFunction(hello)

[google-appengine] Re: Google Apps, Python & C++

2008-09-24 Thread Davide Rognoni
With a pure Python implementation ;-) http://code.google.com/appengine/docs/python/purepython.html On Sep 24, 8:35 pm, Jason <[EMAIL PROTECTED]> wrote: > What is the best way for a calculation hungry app (video processing) > which I have already in C++ to be ported to google apps? > > I'm no pyt

[google-appengine] Warning 1221mcycles /!\ 0kb

2008-09-28 Thread Davide Rognoni
Why I see this warning? 09-28 12:44PM 34.736 / 302 371ms 1221mcycles /!\ 0kb 80.104.73.53 - - [28/09/2008:12:44:35 -0700] "GET / HTTP/1.1" 302 0 - - This request used a high amount of CPU, and was roughly 1.2 times over the average request CPU limit. High CPU requests have a small quota, and if y

[google-appengine] Re: Caching images

2008-09-28 Thread Davide Rognoni
Using the same URL. "HTTP Caching" http://httpwatch.com/httpgallery/caching/ This is not a GAE question :-) On Sep 28, 10:10 pm, fedekun <[EMAIL PROTECTED]> wrote: > Is there a way to store dynamic images in the browser cache? > > -- > Best Regards. > fedekun --~--~-~--~~--

[google-appengine] Re: Warning 1221mcycles /!\ 0kb

2008-09-29 Thread Davide Rognoni
n Sep 28, 10:05 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Why I see this warning? > > 09-28 12:44PM 34.736 / 302 371ms 1221mcycles /!\ 0kb > 80.104.73.53 - - [28/09/2008:12:44:35 -0700] "GET / HTTP/1.1" 302 0 - > - > This request used a high amount of CPU, and

[google-appengine] Re: Warning 1221mcycles /!\ 0kb

2008-09-29 Thread Davide Rognoni
n Sep 28, 10:05 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Why I see this warning? > > 09-28 12:44PM 34.736 / 302 371ms 1221mcycles /!\ 0kb > 80.104.73.53 - - [28/09/2008:12:44:35 -0700] "GET / HTTP/1.1" 302 0 - > - > This request used a high amount of CPU, and

  1   2   >