[google-appengine] A really easy question

2010-05-31 Thread Massimiliano
main.html {% block centro %} {% for elemento in lista %} {{elemento.Food}} ({{elemento.Nick}}) {% endfor %} {% endblock %} I can't display nothing. Please, this is driving me crazy! Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@g

Re: [google-appengine] Re: A really easy question

2010-06-01 Thread Massimiliano
Dear Geoffrey, I need to pass to the render() three information: the main.hmtl, the logout URL (lgourl) and the list of element in need to be displayed in the html. How can I do this? is it this method wrong? Can't I give to the render() two dicts? Regards Massimiliano 2010/5/31 Geoffrey

[google-appengine] Another easy question

2010-06-02 Thread Massimiliano
Dear All, in filter(property_operator, value) could the property_operator be a var? Could you please tell me how it must be done? http://code.google.com/intl/it-IT/appengine/docs/python/datastore/queryclass.html#Query_filter I can't find more details. Regards Massimiliano -- My

Re: [google-appengine] Another easy question

2010-06-02 Thread Massimiliano
he page you link to says, it takes a string as the first argument -- > so, yes. It can take a variable. > > myvar = "prop >" > Kind.all().filter(myvar, 5) > > > Robert > > > > On Jun 2, 2010, at 3:39, Massimiliano > wrote: > > Dear All, >

Re: [google-appengine] Another easy question

2010-06-02 Thread Massimiliano
I have read it. And i was serching where he is talking about this, but I can't find!!! I'm searching again! Thanks Massimiliano 2010/6/2 Robert Kluin > I suggest you have a look an introductory programming resouce. For > starters, see the python getting started guide: > ht

Re: [google-appengine] Another easy question

2010-06-02 Thread Massimiliano
Oh sorry, it was really easy... field = field + " = " lista = db.Query(FOOD).filter(field,food).order('-Date').fetch(limit=30) Now it's working.... thanks Massimiliano 2010/6/2 andreas schmid > i think what you are missing in your code is the operator after t

Re: [google-appengine] Another easy question

2010-06-02 Thread Massimiliano
Thanks! But... The "=" checks if the string is equal of what I have in the datastore. I need to check if the string is in the string in the datastore. Uhm. Can you help me? Massimiliano 2010/6/2 Rafael Sierra > On Wed, Jun 2, 2010 at 3:49 PM, Massimiliano > wrote: > > O

Re: [google-appengine] Re: Another easy question

2010-06-02 Thread Massimiliano
I'm using this filter() to build a search engine in the datastore. So I don't only want to show the exact result. 2010/6/2 Geoffrey Spear > > > On Jun 2, 3:10 pm, Massimiliano > wrote: > > Thanks! > > But... The "=" checks if the string is equal of

Re: [google-appengine] Re: Another easy question

2010-06-02 Thread Massimiliano
I can't find nothing. 2010/6/2 Rafael Sierra > On Wed, Jun 2, 2010 at 4:34 PM, Massimiliano > wrote: > > I'm using this filter() to build a search engine in the datastore. So I > > don't only want to show the exact result. > > There's already som

Re: [google-appengine] Re: Another easy question

2010-06-02 Thread Massimiliano
It sounds strange to me that there isn't nothing in GAE to check this, without using a third part class... 2010/6/2 Rafael Sierra > http://gae-full-text-search.appspot.com/ > > On Wed, Jun 2, 2010 at 4:50 PM, Massimiliano > wrote: > > I can't find nothing. &g

Re: [google-appengine] Re: Buying a new domain...

2010-06-03 Thread Massimiliano
Dear Prashant, there are many providers that can fit your needs. I'm using name.com and it works great. Regards Massimiliano 2010/6/3 Timofey Danshin > You can by one from webnames.ru, i suppose. They have a free DNS service, > which can be configured to point your domain to you

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
I need just something like *myvar* so I will accept any carachters before and after the var... Or I have to divide the strings in list (each word an elment of the list) and use the operator IN. Thinking 2010/6/3 Rafael Sierra > On Wed, Jun 2, 2010 at 5:06 PM, Massimiliano > wrote:

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
So there isn't a scalable solution! 2010/6/3 Geoffrey Spear > > > On Jun 3, 4:58 am, Massimiliano > wrote: > > I need just something like *myvar* so I will accept any carachters before > > and after the var... > > Or I have to divide the strings in li

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
Dear Ikai, I want to search in the datastore "Pizza" and obtain "Pizza with tomatoes", "Pizza with Mushrooms", I don't care about "abcpizza" or "123pizza". Massimiliano 2010/6/3 Ikai L (Google) > The reason search engines work is b

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
Which one? 2010/6/3 Rafael Sierra > On Thu, Jun 3, 2010 at 2:51 PM, Rafael Sierra > wrote: > > On Thu, Jun 3, 2010 at 2:40 PM, Massimiliano > > wrote: > >> Dear Ikai, > >> I want to search in the datastore "Pizza" and obtain "Pizza with >

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
I was thinking to tokenize the elments. 2010/6/3 Massimiliano > Which one? > > 2010/6/3 Rafael Sierra > > On Thu, Jun 3, 2010 at 2:51 PM, Rafael Sierra >> wrote: >> > On Thu, Jun 3, 2010 at 2:40 PM, Massimiliano >> > wrote: >> >> Dear Ikai,

Re: [google-appengine] Re: Another easy question

2010-06-04 Thread Massimiliano
I have tokenized it, but now I have to untokenize... :-))) Thanks! Massimiliano 2010/6/4 bsb > Purely for academic reasons, I'd like to point out that the > computationally efficient way to find exact substrings (ie "cat" in > "merecats") is a Suffix

[google-appengine] Help Blobstore!

2010-06-20 Thread Massimiliano
I want to have something like that: {% for img in immagini %} {% endfor %} Can someone help me? Regards Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewave.com -- You received this message because you are subscribed to the Google Gr

Re: [google-appengine] Help Blobstore!

2010-06-21 Thread Massimiliano
my understanding I have always to have a link to the app that will elaborate everything. Right? Thanks Max 2010/6/21 Nick Johnson (Google) > Hi Massimiliano, > > Have you examined the example app in the documentation? This provides most > of what you need: > http://code.go

Re: [google-appengine] Help Blobstore!

2010-06-21 Thread Massimiliano
Hi Tomas, thank you very much, but I can't understand Java, as I know just Python. Regards Massimiliano 2010/6/21 Tomas Petersson > Hello, I made a simple app to evaluate App Engine and I solved it like > this. > Hope it helps. > > Cheers, Tomas > >

Re: [google-appengine] Help Blobstore!

2010-06-21 Thread Massimiliano
Dear Tom, this is really clear to me know. I have to recall for each file the app and make a download. But I'm still trying to understand how to store the key of the blob. (Always in Python). Regards Massimiliano 2010/6/21 Tomas Petersson > Ahh, sorry Max , didnt notice it was pyt

Re: [google-appengine] Help Blobstore!

2010-06-21 Thread Massimiliano
Dear Nick, I thought was easyier to use the blobstore, but I see that there is something I can't understand. I will check everything deeper and then I will ask what doesn't work to me. thanks. Max 2010/6/21 Nick Johnson (Google) > Hi Massimiliano, > > On Mon, Jun

[google-appengine] Image Handler in Python

2010-06-23 Thread Massimiliano
Dear All, I'm trying to handle pictures in my app. I'm trying to do it with the blobstore but I can't understand how it works. I just need to have a sidebar on the app where people can upload immagine and the app just shows thumbnails of these and clicking on it just links to the imagine page (old

[google-appengine] Help

2010-07-11 Thread Massimiliano
Hi all, I'm trying to check the password of my user. But it doesn't want to work. class PAGAMENTI(db.Expando): data = db.DateTimeProperty(auto_now_add=True) class BIG(db.Expando): data = db.DateTimeProperty(auto_now_add=True) class BigHandler(webapp.RequestHandler): def get(self): .. def

Re: [google-appengine] Help

2010-07-11 Thread Massimiliano
you received an unsolicited email from by mistake that wasn't of your > matter please delete immediately. All E-mail sent from Alon Carmel is > copyrighted to Alon Carmel 2008. Any details revealed in e-mails sent by > Alon Carmel are owned by the Author only. Any attempt to duplic

Re: [google-appengine] Help

2010-07-11 Thread Massimiliano
There is a space! 2010/7/11 Robert Kluin > Hey Max, > Try adding a space between your property name and the operation. > > db.Query(PAGAMENTI).filter('password =', password).fetch(limit=1) > > > Robert > > > > On Jul 11, 2010, at 10:41, Massimil

Re: [google-appengine] Help

2010-07-12 Thread Massimiliano
Could be the Exapando model? Have I to set something? Could you help me? 2010/7/11 Massimiliano > There is a space! > > 2010/7/11 Robert Kluin > > Hey Max, >> Try adding a space between your property name and the operation. >> >> db.Query(PAGAMENTI).fil

Re: [google-appengine] Re: Query.filter() questions

2010-07-26 Thread Massimiliano
Hi, I want to add a question. Can I do something like that: filtro = PRINC.all() filtro.filter('code= ', self.request.get('var')) and if I can't how can I do it? * var *is the input of a text box. Massimiliano 2010/7/26 Geoffrey Spear > > > On Jul

[google-appengine] XML

2010-07-30 Thread Massimiliano
Dear All, I'm building an application and I need to manage an XML connection. This is firt time doing this for me, can some you help in understand how to learn it? There is a GAE library (I can't find nothing in the GAE guides). Regards Massimiliano -- My email: massimil

Re: [google-appengine] Re: XML

2010-07-30 Thread Massimiliano
ome other xml (what ever you mean ) service. > > Are you looking for a java or python solution > > There isn't a GAE library as such in the sdk, unless you mean xmpp > which is a xml based data protocol delivered over the http network > protocol ;-). > > Rgds > > T

[google-appengine] SMS

2010-08-12 Thread Massimiliano
Dear All, is there a way to receive a SMS in a App? I need my clients to send me a info by their mobile and forward it to an email address (or a mobile). (Can you inform me if there is method to send sms too?) Regards Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave

Re: [google-appengine] SMS

2010-08-12 Thread Massimiliano
The views expressed in > this email are, unless otherwise stated, those of the author > > > > > > > -- > *From:* Massimiliano > *To:* google-appengine@googlegroups.com > *Sent:* Thu, 12 August, 2010 11:23:50 > *Subject:* [google-appengine] SMS > > Dear All, >

[google-appengine] blob_info.key()

2010-08-18 Thread Massimiliano
Hi, can someone help me with this? class UploadHandler(blobstore_handlers.BlobstoreUploadHandler): def post(self): upload_files = self.get_uploads('foto') blob_info = upload_files[0] foto = FOTO.all() foto.fotokey = blob_info.key() foto.put() self.redirect('/foto') Why it's not working? (It sto

Re: [google-appengine] blob_info.key()

2010-08-25 Thread Massimiliano
Thank you very much!!! 2010/8/23 Nick Johnson (Google) > Hi Massimiliano, > > On Wed, Aug 18, 2010 at 7:36 PM, Massimiliano < > massimiliano.pietr...@gmail.com> wrote: > >> Hi, >> can someone help me with this? >> >> class UploadHandler(blobstore_

[google-appengine] CSS3

2010-09-09 Thread Massimiliano
Hi, I don't know if this is an Off Topic. In one Google's video on youtube there is "css3 animation editor", do you know something more? Has Adobe released it? Thanks for the info. Max -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewave.com -- You re

[google-appengine] Error

2010-09-18 Thread Massimiliano
Dear All, is appengine working? My app displays: Traceback (most recent call last): File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/__init__.py", line 511, in __call__ handler.get(*groups) File "/base/data/home/apps/pallavoloalbafenice/prima.3448933355504188

Re: [google-appengine] Error

2010-09-18 Thread Massimiliano
ine/docs/python/datastore/queriesandindexes.html#Defining_Indexes_With_Configuration > > > > > On Sat, Sep 18, 2010 at 9:42 AM, Massimiliano < > massimiliano.pietr...@gmail.com> wrote: > >> Dear All, >> is appengine working? >> My app displays: >> >

[google-appengine] URL manage

2010-10-16 Thread Massimiliano
e as a var. Regards Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewave.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng

Re: [google-appengine] Re: URL manage

2010-10-17 Thread Massimiliano
on classes. Back- > references to grouped matches (e.g. \1) are supported, as are these > Perl extensions: \w \W \s \S \d \D > (This is similar to Codesite search, plus back-reference support.) > > cheers. > > On Oct 16, 9:09 pm, Massimiliano > wrote: > > Dear All, > >

Re: [google-appengine] Re: URL manage

2010-10-17 Thread Massimiliano
Yes! Thanks!!! Max 2010/10/17, sodso : > www.urapp.com/urldomainname > > 1) your app.yaml file will have this handler > > handlers: > - url: /.+ > script: code.py > > 2) code.py will have something like this > > class URLHandler(webapp.RequestHandler): > def get(self): > var1 = self.r

Re: [google-appengine] Re: URL manage

2010-10-18 Thread Massimiliano
e) 2010/10/18 sodso > Thanks Robert !!! > > Massimiliano - That is the BEST method of accessing the parts of a URL > using regex groups and is highly flexible. Pls use what Robert suggested. > > Cheers ! > > -- > You received this message because you are subscribed to the Googl

Re: [google-appengine] Re: URL manage

2010-10-18 Thread Massimiliano
of course with different SomeActionHandler (Can I manage domain like a string?) Thanks 2010/10/18 Massimiliano > I can change it like this: > > application = webapp.WSGIApplication([(r'/(.*)/someaction', > SomeActionHandler), >

Re: [google-appengine] Re: URL manage

2010-10-18 Thread Massimiliano
Ok, just to understand everything. 2010/10/18 sodso > yes exactly > > '/(.*)/(.*) > r'/(.*)/someaction', SomeActionHandler I need a "r" before the line? > > the content between those two ( ) will be passed to ur RequestHandler as > second param(string), third param(string), and so on The

[google-appengine] ID/Name

2010-10-20 Thread Massimiliano
Dear All, in the datastore viewer I see that all the record are stored with a ID/Name, how can I refer to it? I mean I want to use this to refer to the user of my website, in the file manager the reference is element.what??? I'm searching in the documentation but I can't understand. Thanks Ma

Re: [google-appengine] ID/Name

2010-10-20 Thread Massimiliano
Thanks! 2010/10/20 Robert Kluin > In python: > entity.key().id() > entity.key().name() > entity.key().id_or_name() > > > > Robert > > > > > > > > On Wed, Oct 20, 2010 at 06:47, Massimiliano > wrote: > > Dear All, > > in the da

[google-appengine] Image Upload

2010-10-22 Thread Massimiliano
Dear All, I'm building a gallery and I'm allowing users to upload their images, but I want all the images with a specific width in the blobstore. I'm trying to using the Image Api, but I can't understand how. This is my code, could someone help me? class UploadHandler(blobstore_handlers.Blobstore

[google-appengine] Urgent Help

2010-10-24 Thread Massimiliano
Dear All, I have created an application and offline it's working well. The app.yalm is: application: prova version: prima runtime: python api_version: 1 handlers: - url: /static static_dir: static - url: /.* script: main.py When I try to change the application name with "fanpagemax" the nam

[google-appengine] Re: Urgent Help

2010-10-24 Thread Massimiliano
Sorry, solved. Thanks. 2010/10/24 Massimiliano > Dear All, > I have created an application and offline it's working well. > The app.yalm is: > > application: prova > version: prima > runtime: python > api_version: 1 > > handlers: > - url: /static > sta

[google-appengine] Fwd: Image Upload

2010-10-26 Thread Massimiliano
Dear All, could someone help me with this? Regards Massimiliano -- Forwarded message -- From: Massimiliano Date: 2010/10/22 Subject: Image Upload To: google-appengine@googlegroups.com Dear All, I'm building a gallery and I'm allowing users to upload their images,

Re: [google-appengine] Re: Image Upload

2010-10-26 Thread Massimiliano
Great! Thanks! This is really easy to be used! 2010/10/26 Stephen > > > On Oct 22, 10:11 pm, Massimiliano > wrote: > > Dear All, > > I'm building a gallery and I'm allowing users to upload their images, but > I > > want all the images with a spe

Re: [google-appengine] Re: Image Upload

2010-10-27 Thread Massimiliano
I have understand very well the Stephen solution. I'm just fighting with the serve part of the code... 2010/10/27 ego008 > you can do it step by step here > > > http://code.google.com/intl/en/appengine/docs/python/images/usingimages.html > > >

Re: [google-appengine] Re: Image Upload

2010-10-27 Thread Massimiliano
I'm trying to serve the images with this code, but it's not working class ServeHandler(webapp.RequestHandler): def get(self, resource): self.response.headers['Content-Type'] = "image/png" self.response.out.write(images.get_serving_url(resource, 32)) Could you hel

Re: [google-appengine] Re: Image Upload

2010-10-27 Thread Massimiliano
> > self.response.out.write(''%images.get_serving_url(resource, > 32)) > > > > On 27 October 2010 19:28, Massimiliano > wrote: > > I'm trying to serve the images with this code, but it's not working > > class ServeHandler(webapp.RequestH

Re: [google-appengine] Re: Image Upload

2010-10-28 Thread Massimiliano
l get_serving_url in the code that renders the > template. You don't need a 'Serve' handler at all :) > > > > On 27 October 2010 22:22, Massimiliano > wrote: > > I do understand this, but my html is: > > > > How have I to modify the html

Re: [google-appengine] Re: Image Upload

2010-10-28 Thread Massimiliano
nk = images.get_serving_url(frasi.link, 400) frasi.put() self.redirect("/" + self.request.get('domain') + "/fanpage") 2010/10/28 Massimiliano > I can't understand. > I have removed my serve class and I have added the lines as for your > example: >

[google-appengine] Questions

2011-04-23 Thread Massimiliano
k the number of emails just sent in the day? Thanks Massimiliano -- www.themaxbuddies.com <http://goo.gl/WoxEN> -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine

[google-appengine] Images upload help

2011-04-25 Thread Massimiliano
Hi, Can some one help me? *I have this error: * File "/base/data/home/apps/maxfotoservice/1.349974609984865274/main.py", line 28, in post fotos.Tlink = images.get_serving_url(fotos.link, 94) NameError: global name 'images' is not defined *This is my code:* from google.appengine.ext import

[google-appengine] Re: Images upload help

2011-04-25 Thread Massimiliano
Sorry, now It's working. 2011/4/25 Massimiliano > Hi, Can some one help me? > > *I have this error: * > > File "/base/data/home/apps/maxfotoservice/1.349974609984865274/main.py", > line 28, in post > fotos.Tlink = images.get_serving_url(fotos.link,

[google-appengine] Dashboard

2011-04-26 Thread Massimiliano
monitor the app without this info? Can someone of Google tell me if there is a bug? This is not the first time I'm facing this situation, but this is my first real public app. Regards Massimiliano -- www.themaxbuddies.com <http://goo.gl/WoxEN> -- You received this message beca

[google-appengine] Dates

2011-05-02 Thread Massimiliano
Hi, I'm building app where some data in the datastore have an expiring date. How do you manage dates? I need to check it, to sum days, Max -- www.themaxbuddies.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group

[google-appengine] Re: Dates

2011-05-02 Thread Massimiliano
I don't know anything about dates in python! So evrything is a good idea! Il giorno lunedì 2 maggio 2011, Robert Kluin ha scritto: > Hey Massimiliano,  Maybe I don't get the question, but I just put a date on > the entities.  Then to find old stuff, I query for it. >   Pe

[google-appengine] Doc File

2011-05-20 Thread Massimiliano
Hi to all, I have been requested to develop an app to manage an address list. The app must be have two features, the first is that the app have to send email to selected address (and this is quite easy for me), the second is that the app must have a function to export a .doc file with personalized

[google-appengine] Error

2011-06-28 Thread Massimiliano
Hi, I'm trying to access my applications, but I'm displaying the message below. Please help. Server Error A server error has occurred. Return to Applications screen » -- www.themaxbuddies.com Ti serve dr

[google-appengine] Forum

2011-09-26 Thread Massimiliano
Hi, I have made a really easy gadget. I took few minutes. It's a forum where people can post a comment or a comment with picture. Now when they post something the page refresh, but if they don't post anything the page obviusly don't refresh. How Can I show the new post to the people? I want to add

Re: [google-appengine] Re: Django Library

2011-11-18 Thread Massimiliano
e-appengine+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > -- How to contact me: protocol.by/Massimiliano Sito: www.themaxbuddies.com <http://goo.gl/WoxEN> Twitter: www.twitter.com/grostein Skype: m

Re: [google-appengine] Re: Django Library

2011-11-18 Thread Massimiliano
ode > compatible with current GAE SDK and you will solve the problem since sooner > or later 0.96 will be deprecated since it is old and it is over. > > Regards, > Niklas > > > On Fri, Nov 18, 2011 at 11:59 AM, Massimiliano < > massimiliano.pietr...@gmail.com> wrote:

Re: [google-appengine] From PDF to Image

2012-01-30 Thread Massimiliano
gle Groups > "Google App Engine" group. > To post to this group, send email to google-appengine@googlegroups.com. > To unsubscribe from this group, send email to > google-appengine+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.goo

Re: [google-appengine] Re: Storing from PDF to IMG

2012-04-25 Thread Massimiliano
Hi Mike, I'm sorry but the conversion Api doesn't work. I'm working on a alternative way, but appengine is facing big problem with the PDF management. Max Il giorno 25/apr/2012 03:39, "Mike" ha scritto: > Max > > Have you figured this out? I am looking for someone to build me a PDF to > Image c

Re: [google-appengine] Re: Uploading static files without redeploying whole app?

2010-02-08 Thread Massimiliano
Hi, I'm new and I'm trying to understand how app-engine works. When I'm deploying something, is it uploading all the directory? So it is not going to upload only the ,py files. Thanks Febo 2010/2/8 Wooble > No, you can't. There's no way to write to the filesystem without > deploying a new ver

[google-appengine] Easy request

2010-02-08 Thread Massimiliano
Hi, I'm new and I'm trying to understand how app-engine works. When I'm deploying something, is it uploading all the directory? So it is not going to upload only the ,py files. Where can I find a list of the webapp fuctions? Where can I find a guide for the template instructions? Thanks Febo --

[google-appengine] pygooglechart

2010-02-18 Thread Massimiliano
Dear All, I'm trying to learn using python and Google App Engine. Can I use this library on the appengine? Just importing this in the python application (from pygooglechart import *)? Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.

Re: [google-appengine] Re: pygooglechart

2010-02-19 Thread Massimiliano
did not have the time to document the code but feel > free to examine the page source code and the relative javascript > files. > > Happy coding;) > > > > On Feb 18, 2:30 pm, Massimiliano > wrote: > > Dear All, > > I'm trying to learn using python and Googl

Re: [google-appengine] Re: pygooglechart

2010-02-20 Thread Massimiliano
r PC - follow the instructions of the library for that so > > you ca test it with the local server. > > Also include the whole library on your project files so it will be > > uploaded in GAE. > > > > On Feb 19, 10:21 pm, nickmilon wrote: > > > > &

[google-appengine] Server

2010-02-27 Thread Massimiliano
Hi to all! The Google server is down. Are you facing this problem? -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewave.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, s

[google-appengine] XML

2010-03-05 Thread Massimiliano
Dear All, I can't find documents concerning the XML handling in appengine. Could you help me? Is there a documentations somewhere? Can I use self.request.get()? (How?) Thanks Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewav

Re: [google-appengine] Re: XML

2010-03-05 Thread Massimiliano
ive me the contents through XML. (http://docs.python.org/library/xml.dom.minidom.html) Massimiliano 2010/3/5 Adam > There is absolutely nothing special about App Engine's handling of > XML. The input to or output from App Engine can be XML. You can parse > and generate XML with

[google-appengine] User

2010-03-09 Thread Massimiliano
Dear All, using the Users Google library, I can have my own users or it refer only to the Google Users. (I trying to understand if there is an easy way to manage the users, I don't want wave too many code lines and I need to have specif field in the registration form). Regards Massimi

Re: [google-appengine] Re: User

2010-03-09 Thread Massimiliano
ed some sort of custom auth (whether you > write it yourself or find an existing library). > > On Mar 9, 6:07 am, Massimiliano > wrote: > > Dear All, > > using the Users Google library, I can have my own users or it refer only > to > > the Google Users. (I trying to

Re: [google-appengine] Re: User

2010-03-09 Thread Massimiliano
Someone knows if there is tutorial concerning the session key managing? 2010/3/9 Massimiliano > I hoped that Google User library could help me with the sessions and so > on... (Just to have one line, instead many lines, I will work to how to do > my User "library". >

Re: [google-appengine] User

2010-03-09 Thread Massimiliano
> > On Tue, Mar 9, 2010 at 1:07 PM, Massimiliano < > massimiliano.pietr...@gmail.com> wrote: > >> Dear All, >> using the Users Google library, I can have my own users or it refer only >> to the Google Users. (I trying to understand if there is an easy way to >

Re: [google-appengine] User

2010-03-09 Thread Massimiliano
eevan Dongre > manually u need to assign the id's,only thing is you can store it in the > data store,that will be more advantage to you. > > Warm Regards, > Jeevan Dongre. > > || Wisdom is Power || > > > On Tue, Mar 9, 2010 at 6:05 PM, Massimiliano < > massimi

Re: [google-appengine] User

2010-03-09 Thread Massimiliano
But wow can I create random id (is there something in python?)? 2010/3/9 Jeevan Dongre > you got it right > > Warm Regards, > Jeevan Dongre. > > || Wisdom is Power || > > > On Tue, Mar 9, 2010 at 6:28 PM, Massimiliano < > massimiliano.pietr...@gmail.com

Re: [google-appengine] User

2010-03-10 Thread Massimiliano
Sorry to bother you. And if I need to have a script working every night at the same hour (to work on the datastore changing some values). How can I do this? Thanks 2010/3/9 drew einhorn > On Tue, Mar 9, 2010 at 4:07 AM, Massimiliano > wrote: > > Dear All, > > using the Users

[google-appengine] Night script

2010-03-10 Thread Massimiliano
Dear All, I hope someone can help me with those p. I need to have a script working every night at the same hour (to work on the datastore changing some values). How can I do this? Thanks Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr

Re: [google-appengine] Re: Night script

2010-03-10 Thread Massimiliano
normal request. > > Mark > > On Mar 10, 10:01 am, Massimiliano > wrote: > > Dear All, > > I hope someone can help me with those p. > > > > I need to have a script working every night at the same hour (to work on > the > > datastore chan

Re: [google-appengine] Re: Night script

2010-03-10 Thread Massimiliano
Just one more information. cron: - description: daily summary job url: /tasks/summary schedule: every 24 hours I can just add a class in my main python file and route this url to this class and I will use the GET method, right? 2010/3/10 Massimiliano > Thanks > > 2010/3/

[google-appengine] USB/Online Google App Engine SDK for Python

2010-03-17 Thread Massimiliano
Dear all, could someone inform me if I can install the Google App Engine SDK for Python on a USB pen (and how I can do it)? Or is there an online resource? (I could be really better and faster for me to have everything online) Regards Massimiliano -- My email: massimiliano.pietr

Re: [google-appengine] Re: Few questions about commercial use

2010-03-17 Thread Massimiliano
Hi, what means: "You can point your domain name to the app *by making it a Google Apps domain *and then adding your application to it. " Thanks. 2010/3/17 Wooble > > > On Mar 16, 3:50 pm, Michal M wrote: > > Hi, > > > > I would like to use GAE to set up web service for company I work for. > > I

[google-appengine] Google Domain

2010-03-29 Thread Massimiliano
have email addresses (like someth...@mydomain.com)? Regards Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewave.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post

Re: [google-appengine] Google Domain

2010-03-29 Thread Massimiliano
And I can have all the mail I want? 2010/3/30 Robert Kluin > Yes. > Yes. > > Robert > > > > > > > On Mon, Mar 29, 2010 at 3:22 PM, Massimiliano > wrote: > > Dear All, > > I'm developing a web site on GAE and I want to register a domain with

Re: [google-appengine] Google Domain

2010-03-30 Thread Massimiliano
> Robert > > > > On Mar 30, 2010, at 1:54, Massimiliano > wrote: > > And I can have all the mail I want? > > 2010/3/30 Robert Kluin < robert.kl...@gmail.com> > >> Yes. >> Yes. >> >> Robert >> >> >> >> >> >

[google-appengine] List

2010-04-02 Thread Massimiliano
Dear All, do you know if I can store in the datastore a list where each element of the list is a Google ID? I want to use ListProperty(), is it enough? Regards Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewave.com -- You received

Re: [google-appengine] List

2010-04-02 Thread Massimiliano
think it is ok. But searching would be timeconsuming I guess... > > > > > > > > On Fri, Apr 2, 2010 at 8:23 AM, Massimiliano > > wrote: > >> Dear All, > >> do you know if I can store in the datastore a list where each element of > the > &g

Re: [google-appengine] Re: List

2010-04-02 Thread Massimiliano
And then can I handle them as ID (I need them to link users)? 2010/4/2 Tim Hoffman > Yes. > > You just need to convert the keys to strings before you stick them in > the list. > > T > > On Apr 2, 8:23 pm, Massimiliano > wrote: > > Dear All, > > do you

[google-appengine] Youtube API

2010-04-10 Thread Massimiliano
ad page (I want my user to load their video with their tags), a video search page and I want that the video to be linked to my users. I want to use the youtube rank system to show them in the first page as a contest. I DON'T KNOW WHERE TO START WITH THIS. Thanks. Massimiliano -- My email

Re: [google-appengine] Youtube API

2010-04-10 Thread Massimiliano
Dear Ross, there I can't find a Youtube Api group!!!!! Massimiliano 2010/4/10 Ross M Karchner > Hi Massimiliano-- > > This group is for discussion of Google App Engine ( > http://code.google.com/appengine/ ) and you're unlikely to find many > people here who know m

[google-appengine] Blobstore

2010-05-10 Thread Massimiliano
ile not lager than a specific quota. How can I do this? Regards Massimiliano -- My email: massimiliano.pietr...@gmail.com My Google Wave: massimiliano.pietr...@googlewave.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

Re: [google-appengine] Blobstore

2010-05-10 Thread Massimiliano
how I can reject the upload? I don't want to start the upload, but display a message error. Massimiliano 2010/5/10 Jaroslav Záruba > 1) Enabling billing does not mean your free quote goes away. I have billing > enabled and I'm still in "a free mode". (I'm

Re: [google-appengine] Blobstore

2010-05-10 Thread Massimiliano
>> data into it, which lets you write to response. >> This is how I actually do it on my app, save for the content-length check >> as I don't let upload anyone else.. >> >> On Mon, May 10, 2010 at 5:58 PM, Massimiliano < >> massimiliano.pietr...@gmail.com

Re: [google-appengine] Blobstore

2010-05-10 Thread Massimiliano
on server. > > On Mon, May 10, 2010 at 7:42 PM, Massimiliano < > massimiliano.pietr...@gmail.com> wrote: > >> Isn't there a HTML way? >> >> 2010/5/10 Jaroslav Záruba >> >>> Oh and in case you were asking about *client-side* rejecting >

  1   2   >