[google-appengine] Re: Couldn't import gdata.calendar.service

2008-09-17 Thread moparthi
hi, i am not able to follow up. Could you calrify wht u mean to say. regards, moparthi On Sep 16, 3:02 pm, aXqd <[EMAIL PROTECTED]> wrote: > I also ran into this problem: >global name '_AppEngineHttpClient__ConvertDataPart' is not defined > > you should remember to: > from gdata.alt.appengi

[google-appengine] Scalable forum design

2008-09-17 Thread Ubaldo Huerta
Suppose you have to design a high traffic forum site (let's simplify it assuming you don't need topic replies). So, you'll need two kinds. Topic title body User name 1) How to avoid contention for new topics? Should the ancestor of a new Topic entity should be the User entity? I assume t

[google-appengine] Re: SDK 1.1.3 bug: static_caching

2008-09-17 Thread Waldemar Kornewald
On 16 Sep., 23:19, "Karsten Petersen" <[EMAIL PROTECTED]> wrote: > Sounds like you're using a 1.1.3 version of dev_appserver_main.py and > an older version of dev_appserver.py.  Did you by chance manually > modify dev_appserver.py before and now for whatever reason it hasn't > been replaced with t

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Tom Kermode
Is it 12MB of code or are you using modules to store data? If it's code then it might be possible to look at only importing the modules as they're needed. If it's data it might be beter to work out how to get it into the datastore and only access the bits you need when you need them. I would firs

[google-appengine] google sitemap for site running on app-engine

2008-09-17 Thread Paul Jobs
how to prepare sitemap for an app that runs on appspot.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-appengine@googlegroups.com To uns

[google-appengine] Re: Getting warnings for high CPU usage per request... why?

2008-09-17 Thread Waldemar Kornewald
Hi Sam, On 16 Sep., 21:49, Sam G <[EMAIL PROTECTED]> wrote: > Waldemar, > > I tried requesting the home page a few times. It will give me a high > CPU warning each time. Any more than a few, and I'm not sure. > > At the same time, I haven't yet implemented caching. Our sample app definitely does

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Микола
> Is it 12MB of code or are you using modules to store data? Yes. It is code. > If it's code then it might be possible to look at only importing the modules > as they're needed. It is impossible because we pack in that way framework. Our application is little but it uses that framework. On 17 Вер

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Микола
>I would first try to find a way to avoid loading the 12MB because you can't >rely on it staying in memory between requests. Yes, but the question is - why GAE reloads application without any warnings, when application don't use many resourses, and why at the same time it don't reload http://code

[google-appengine] efficiency of filter() on ListProperty

2008-09-17 Thread Waldemar Kornewald
Hi, if I do multiple filter() calls on a ListProperty (e.g., with SearchableModel) how is the result queried, internally? Do you run multiple independent queries (one for each filter) and merge-join them or is there an optimization? Let's assume the ridiculous case that the user enters two very c

[google-appengine] Re: Updating Appengine from behind a corporate proxy

2008-09-17 Thread Sharp-Developer.Net
I've just solved usign this instructions: http://code.google.com/p/googleappengine/issues/detail?id=126&q=proxy&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary#c30 -- Alex On Sep 9, 4:57 pm, Michael Bailey <[EMAIL PROTECTED]> wrote: > It is well documented the urllib2 does not wo

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Wooble
On Sep 17, 6:04 am, Микола <[EMAIL PROTECTED]> wrote: > >I would first try to find a way to avoid loading the 12MB because you can't > >rely on it staying in memory between requests. > > Yes, but the question is - why GAE reloads application without any > warnings, when application don't use ma

[google-appengine] Roadmap for extra computing resources (& billing)

2008-09-17 Thread FreeAgent
Hello to the GAE team! I've been a fan of App Engine since launch. Last night, I attended a talk on Amazon Web Services and I got into a discussion with potential clients about using AWS to serve their needs. Afterwards, I thought of a design using App Engine. The hitch is: it's a high-bandwid

[google-appengine] filter based on Child Entity

2008-09-17 Thread Arun Shanker Prasad
Hi All, First of all let me give an idea about my sit.. I have a parent entity which is a search.SearchableModel and a child with db.Model. I have a situation in which I get the list of values from the parent entity. I need to filter the results based on a property in the child entity. Like sear

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Микола
Yes, maybe you are right. On Sep 17, 4:18 pm, Wooble <[EMAIL PROTECTED]> wrote: > On Sep 17, 6:04 am, Микола <[EMAIL PROTECTED]> wrote: > > > >I would first try to find a way to avoid loading the 12MB because you > > >can't rely on it staying in memory between requests. > > > Yes, but the questi

[google-appengine] Question on search.SearchableModel

2008-09-17 Thread Arun Shanker Prasad
I have a search.SearchableModel, all the String properties are indexed and can be queried using .search(). Is there any way to make a particular property in the model not to be searched or indexed. I need to hide a particular property when the user performs a search on it. Thanks, Arun Shanker Pr

[google-appengine] Re: Random Application Performance (and flakiness)

2008-09-17 Thread Tony Arkles
And... I have a solution. It appears that GAE resets sys.path before every invocation of main(). We were modifying the sys.path (adding a lib directory to it) at the module-level, so this would only take effect for the first request on a given Python instance. On Sep 15, 9:55 am, Tony Arkles

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Myroslav Opyr
Hi, Will there be any indication in the logs that application crashed with segmentation fault? We'll try to simulate moderate load level and see if it is GAE "unload" policy due to size of application. Regards, m. 2008/9/17 Wooble <[EMAIL PROTECTED]> > > > > On Sep 17, 6:04 am, Микола <[EMAIL

[google-appengine] 1000 query limit (needing to dump out data)

2008-09-17 Thread simultech
Hi All, A research project I am involved with is currently using GAE to perform logging of public displays around the suburbs of our local town. GAE is awesome, but the 1000 limit is becoming quite an issue. We have tried with ajax to pull out the data one after another, but due to the amount of

[google-appengine] Re: 1000 query limit (needing to dump out data)

2008-09-17 Thread simultech
Apologies, quick clarification - in terms of pulling out the data, we do not mind whether this is via http, a downloadable file, or even through the GAE admin, we would just love to be able to get the data back out so that we can analyse it :) cheers --~--~-~--~~~---~-

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Tony Arkles
This is purely for curiosity sake... what framework are you using that is 12MB zipped up? On Sep 17, 7:57 am, Микола <[EMAIL PROTECTED]> wrote: > Yes, maybe you are right. > > On Sep 17, 4:18 pm, Wooble <[EMAIL PROTECTED]> wrote: > > > On Sep 17, 6:04 am, Микола <[EMAIL PROTECTED]> wrote: > > >

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Микола
> what framework are you using that is 12MB zipped up? Zope3 it is ziped with compression level 0 for faster loading On Sep 17, 6:05 pm, Tony Arkles <[EMAIL PROTECTED]> wrote: > This is purely for curiosity sake... what framework are you using that > is 12MB zipped up? > > On Sep 17, 7:57 am, Мико

[google-appengine] Re: GAE reloads application?

2008-09-17 Thread Wooble
On Sep 17, 10:50 am, "Myroslav Opyr" <[EMAIL PROTECTED]> wrote: > Will there be any indication in the logs that application crashed with > segmentation fault? Considering the python sandbox doesn't really let you do low-level monkeying around with memory, if you're managing to segfault the thin

[google-appengine] Re: efficiency of filter() on ListProperty

2008-09-17 Thread uprise78
I can't say much on if it would help to index the list twice but internally every search on a list property basically counts as a separate 'property = :1' search so it gets pretty big if you have huge lists. On Sep 17, 3:16 am, Waldemar Kornewald <[EMAIL PROTECTED]> wrote: > Hi, > if I do multipl

[google-appengine] Google App Launcher for Windows?

2008-09-17 Thread Tyler
Does anyone know if this is in the making by chance? Or know of any 3rd party apps that are similar? I downloaded the Mac version on my old lappy and it was divine :D --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Any (event the slightest) idea when free account limits will be lifted and we will be able to pay for storage etc?

2008-09-17 Thread altden
Yes, pretty please. I think my current project would fit into free GAE, but it's already written in another framework and I don't feel like rewrting it for no benefit. My next project however will probably not fit into free GAE limits, but I can't start working on it until I know I will not hit th

[google-appengine] Re: Redirect from RPCMethod()

2008-09-17 Thread Jonk
On 17 syys, 09:03, James <[EMAIL PROTECTED]> wrote: > self.redirect() within RPC calls gives me this error: > > 'RPCMethods' object has no attribute 'response' > > Assuming that I can't redirect in this case with javascript, how I > would redirect the page using an RPC method? (I take it that y

[google-appengine] Trick for handling sort on two fields with an inequity filter

2008-09-17 Thread Maxus
Hi People, I have a simple query like this: SELECT * FROM Link WHERE createddate > :StartDate AND createddate < :EndDate ORDER BY rating_average DESC, createddate DESC Obviously I cant do this and if I swtch the order of the rating and the created date it doesn't work the way I would like, any

[google-appengine] Re: 404 Server Not Found Error?

2008-09-17 Thread Shark
Hi, I have been using for more than 5 months Google Apps, but today when I tried to access http://mail.creativemood.co.in is showing me "Server Not Found Error 404", something that is really strange, yesterday was working perfectly, also my domain is registered correctly. Now I am in a hurry, si

[google-appengine] Server Not Found Error 404

2008-09-17 Thread Shark
Hi, I have been using google apps since 5 months ago. But today while I tried to access http://mail.creativemood.co.in/ is giving me a "Server Not Found Error 404", but if I use https://www.google.com/a/creativemood.co.in it works perfect. Why is this error happening? This is really important, a

[google-appengine] Re: Couldn't import gdata.calendar.service

2008-09-17 Thread Jeff S (Google)
Hi moparthi, It looks like your app is trying to use httplib to make the requests (the default behavior for the gdata-python-client library) but when running in App Engine, you must use urlfetch to make HTTP requests. To allow the gdata-python-client library to run on App Engine, you need to incl

[google-appengine] Re: Couldn't import gdata.calendar.service

2008-09-17 Thread Jeff S (Google)
This is a known issue in the 1.2.0 release of the gdata-python-client library. If you download 1.2.1, this should be fixed. Happy coding, Jeff On Sep 16, 3:02 am, aXqd <[EMAIL PROTECTED]> wrote: > I also ran into this problem: >global name '_AppEngineHttpClient__ConvertDataPart' is not defi

[google-appengine] Re: Textproperty JSON

2008-09-17 Thread Jeff S (Google)
Hi Sambi, I think I see the issue: On Sep 15, 4:57 pm, Sambi <[EMAIL PROTECTED]> wrote: > Hello Jeff, > > I am trying to get a single comment like this > > comments = db.GqlQuery("SELECT * FROM MovieComments WHERE > movie = : > 1", title).fetch(1) > > and to check if there are

[google-appengine] Re: Couldn't upgrade session token

2008-09-17 Thread Jeff S (Google)
Hi moparthi, This thread should have the answer: http://groups.google.com/group/google-appengine/browse_thread/thread/10d8d67cbf6ba709 Cheers, Jeff On Sep 16, 4:41 am, moparthi <[EMAIL PROTECTED]> wrote: > hi, > > I'm facing problem while trying to UpgradeToSessionToken(). > I may be wrong som

[google-appengine] Re: Server Not Found Error 404

2008-09-17 Thread Marzia Niccolai
Hi Shark, >From the description of your problem, it sounds like you are discussing an issue with Google Apps, not Google App Engine. Please visit the Google Apps help center for assistance with this issue: http://www.google.com/support/a/?hl=en Thanks, Marzia On Wed, Sep 17, 2008 at 7:46 AM, Sh

[google-appengine] Re: 1000 query limit (needing to dump out data)

2008-09-17 Thread Nick Winter
Try this: http://code.google.com/p/gawsh/wiki/BulkDownload On Sep 17, 11:01 am, [EMAIL PROTECTED] wrote: > Apologies, quick clarification - in terms of pulling out the data, we > do not mind whether this is via http, a downloadable file, or even > through the GAE admin, we would just love to be

[google-appengine] Re: filter based on Child Entity

2008-09-17 Thread Marzia Niccolai
Hi, >From your description, I'm not sure that you need to use entity groups and the parent child relationship for this problem. For example, let's say you are looking for articles about 'science' by author 'jane smith'. I might model it as such: Article(search.SearchableModel) description = d

[google-appengine] Re: Question on search.SearchableModel

2008-09-17 Thread Marzia Niccolai
Hi Arun, You might just try using a ReferenceProperty to another entity in this case. -Marzia On Wed, Sep 17, 2008 at 7:28 AM, Arun Shanker Prasad < [EMAIL PROTECTED]> wrote: > > I have a search.SearchableModel, all the String properties are indexed > and can be queried using .search(). Is ther

[google-appengine] Re: efficiency of filter() on ListProperty

2008-09-17 Thread Marzia Niccolai
Hi, The section on big entities and exploding indexes describes how ListProperties are indexed quiet well: http://code.google.com/appengine/docs/datastore/queriesandindexes.html#Big_Entities_and_Exploding_Indexes In summary: Properties with multiple values, such as using a list

[google-appengine] Re: filter based on Child Entity

2008-09-17 Thread Arun Shanker Prasad
Hi Marzia, Thanks for the reply. But I made a mistake, Sorry for that, my example was wrong I was looking at something like,, Author(search.SearchableModel) name = db.StringProperty() location= db.StringProperty() AuthorProfile(db.Model) description = db.StringProperty() favGenre =

[google-appengine] Re: Question on search.SearchableModel

2008-09-17 Thread Bill
You could use my modified version of SearchableModel. I blogged about it here: http://billkatz.com/2008/8/A-SearchableModel-for-App-Engine It allows you to declare a class variable unsearchable_properties. -Bill On Sep 17, 7:28 am, Arun Shanker Prasad <[EMAIL PROTECTED]> wrote: > I have a search

[google-appengine] Re: Redirect from RPCMethod()

2008-09-17 Thread James
No, I'm pretty sure redirects can't be made server-side through the RPC handler. You can redirect the new session, but that's not the same as redirecting the page of the web browser. On Sep 17, 1:55 am, Jonk <[EMAIL PROTECTED]> wrote: > On 17 syys, 09:03, James <[EMAIL PROTECTED]> wrote: > > > se

[google-appengine] Re: filter based on Child Entity

2008-09-17 Thread Marzia Niccolai
Hi Arun, You can't filter as you've described. What you'll have to do is something like: my_author = Author.search('Roddenberry').get() profiles = AuthorProfile.filter('author =', my_author).filter('favGenre =', 'scifi') -Marzia On Wed, Sep 17, 2008 at 12:43 PM, Arun Shanker Prasad < [EMAIL P

[google-appengine] How-to on serving Dojo/Django using zips with 1.1.3

2008-09-17 Thread Adam Fisk
I just wrote a post on how to serve Dojo and Django using zip files. The 1.1.3 release makes this a possibility for Dojo's static files in particular, although you still have to break Dojo up into multiple zip files to get around the limit on file sizes. I also give brief tips on adapting Guido's

[google-appengine] Querying with ReferenceProperties

2008-09-17 Thread Ian McKellar
Hi, My application has a model that just contains two db.ReferenceProperty fields pointing to the same model type. I want to be able to test the existence of an entry in the data store for a given pair. In my app I couldn't get it working so I tried this in the local development console: class A

[google-appengine] Re: efficiency of filter() on ListProperty

2008-09-17 Thread Waldemar Kornewald
Hi, On 17 Sep., 20:59, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > The section on big entities and exploding indexes describes how > ListProperties are indexed quiet well: > > http://code.google.com/appengine/docs/datastore/queriesandindexes.htm... > > In summary: > Properties with multiple va

[google-appengine] "bogus escape: '\\xa'" error in app.yaml after migration from 1.1.2 to 1.1.3

2008-09-17 Thread kejk
Hi. I'm using Win XP with SP2. After intalling GAE SKD ver 1.1.3 this error accourde: ERROR2008-09-17 22:55:55,592 dev_appserver_main.py] Application configuration file invalid: regex does not compile: bogus escape: '\\xa' My app.yaml file: application: helloworld version: 1 runtime: python

[google-appengine] Requesting code review on UniqueModel

2008-09-17 Thread Ben
I just wrote an extension to db.Model that (I hope) ensures uniqueness of property tuples defined by classes that extend it. The project page is http://code.google.com/p/uniquemodel I fear that although I've tested this implementation, I may be overlooking something major. This is a very nontri

[google-appengine] Re: Download my Application Code

2008-09-17 Thread Barry Hunter
1) yes - another reason is that GAE seems to deploy static files seperately to code. So thats another complication in downloading (and one that the enter app doesnt address). Also its not clear that GAE actully stores a copy of your app.yaml and index.yaml -so those might never be retreiveable. GA

[google-appengine] GAE SDK Admin Console Datastore Viewer - Not Working

2008-09-17 Thread Sam G
Hey guys, I just updated to the 1.1.3 version of the SDK, and I'm having some problems. I can add an entity of the type "newsFeed", and display it using the admin console. However, when I add a second entity type ("accountToken"), the SDK gives me this stacktrace when I try to go to the admin pan

[google-appengine] Re: GAE SDK Admin Console Datastore Viewer - Not Working

2008-09-17 Thread Sam G
Alright, I've fixed the problem on my end. I redefined the accountToken model and changed "version" to a IntegerProp instead of a FloatProp. I also pulled the ".1" off the end of my version number. Now, the datastore shows it just fine. Is this a possible bug? On Sep 17, 5:37 pm, Sam G <[EMAIL

[google-appengine] Re: GAE SDK Admin Console Datastore Viewer - Not Working

2008-09-17 Thread Marzia Niccolai
Hi, This is an issue, please see the temporary workaround posted here: http://groups.google.com/group/google-appengine/browse_thread/thread/6bd24870d353f110/fbf9e6fcb35e6620 -Marzia On Wed, Sep 17, 2008 at 5:39 PM, Sam G <[EMAIL PROTECTED]> wrote: > > Alright, > > I've fixed the problem on my

[google-appengine] Re: GAE SDK Admin Console Datastore Viewer - Not Working

2008-09-17 Thread Sam G
Thanks, Marzia. Sorry for the double post. Sam On Sep 17, 5:43 pm, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > Hi, > > This is an issue, please see the temporary workaround posted here: > > http://groups.google.com/group/google-appengine/browse_thread/thread/... > > -Marzia > > On Wed, Sep 17

[google-appengine] SDK uninstaller / upgrade process bug

2008-09-17 Thread Josh Heitzman
I don't know what exactly the problem is but I upgraded from the 1.1.1 SDK to 1.1.3 SDK today. I uninstalled 1.1.1 first before installed 1.1.3, but when I tried starting my app after installing 1.1.3 SDK it failed extremely early on in the Pylons loading code. I put up a couple of messages on t

[google-appengine] Re: Denial of Service Attack on a GAE Application

2008-09-17 Thread Tony Smith
I now have a working on a script that will bring down any GAE application. You fill in the url and some post/get params if you have them then the script will simulate thousands of users with thousand of requests. Right now it takes less than 3 minutes to bring down a GAE app. It's disappointing t

[google-appengine] Re: Any (event the slightest) idea when free account limits will be lifted and we will be able to pay for storage etc?

2008-09-17 Thread g-man
If you watch Guido's Django-con video, I believe I heard him say 'before the end of the year', but I may have been mistaken... perhaps someone else could watch and confirm? On Sep 10, 10:05 am, Dado <[EMAIL PROTECTED]> wrote: > Any (event the slightest) idea when free account limits will be lifte

[google-appengine] Monitoring A Datastore For Changes

2008-09-17 Thread Owen
I'd like a pub/sub event management stunt for my application's datastore. By that I mean I'd like to have multiple users of the datastore, and when any user changes the datastore, an event would be sent to listeners for changes in the data. The particular project I'm considering is for a city wo

[google-appengine] Re: Getting warnings for high CPU usage per request... why?

2008-09-17 Thread Sam G
Waldemar, I'm still not quite sure what is causing the problem. I'll upload the sample app and see if I get the same errors. Thanks, Sam On Sep 17, 2:56 am, Waldemar Kornewald <[EMAIL PROTECTED]> wrote: > Hi Sam, > > On 16 Sep., 21:49, Sam G <[EMAIL PROTECTED]> wrote: > > > Waldemar, > > > I tr

[google-appengine] Re: Question on search.SearchableModel

2008-09-17 Thread Arun Shanker Prasad
Thanks Marzia. Thanks Bill, I might just try the custom SearchableModel :) On Sep 18, 1:20 am, Bill <[EMAIL PROTECTED]> wrote: > You could use my modified version of SearchableModel.  I blogged about > it here:http://billkatz.com/2008/8/A-SearchableModel-for-App-Engine > It allows you to declare

[google-appengine] Re: Server Not Found Error 404

2008-09-17 Thread Shark
Thank you Marzia On Sep 17, 12:09 pm, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > Hi Shark, > > From the description of your problem, it sounds like you are discussing an > issue with Google Apps, not Google App Engine.  Please visit the Google Apps > help center for assistance with this > is

[google-appengine] Re: Any (event the slightest) idea when free account limits will be lifted and we will be able to pay for storage etc?

2008-09-17 Thread Dado
All we really need is an approx date... 1 month, 3 months, 6 months, 1 year On Sep 17, 8:37 pm, g-man <[EMAIL PROTECTED]> wrote: > If you watch Guido's Django-con video, I believe I heard him say > 'before the end of the year', but I may have been mistaken... perhaps > someone else could watc

[google-appengine] upgrading to 1.1.3 causes bizarre error in app.yaml

2008-09-17 Thread Michael
I just updated to 1.1.3, and now I'm unable to start my app using dev_appserver. (I'm on Windows) It turns out that this block in my app.yaml is the problem: - url: /(.*\.xml) static_files: xml/\1 upload: xml/(.*\.xml) If this is present, I receive this error: ERROR2008-09-18 05:08:00

[google-appengine] Re: Roadmap for extra computing resources (& billing)

2008-09-17 Thread Dado
+1... I actually would be happy with even a NOT firm date... but don't hold your breath! It doesn't look like may GAE team people are really paying attention to this group. On Sep 17, 6:44 am, FreeAgent <[EMAIL PROTECTED]> wrote: > Hello to the GAE team! > > I've been a fan of App Engine since la

[google-appengine] What exactly does fetch() return?

2008-09-17 Thread Sam G
Hello GAE Group, I'm a bit confused about a key aspect of the Datastore functionality. When you use the fetch() method (and it returns multiple records), how is it returned? In a dict, or a list, or something else? I'm trying to do this in a template: {% for Message in messages %} {{ Message.

[google-appengine] Re: "bogus escape: '\\xa'" error in app.yaml after migration from 1.1.2 to 1.1.3

2008-09-17 Thread Michael
I'm having the exact same problem. I'll let you know if I find a fix. I'll also file a bug report on the AppEngine issues list. -Michael On Sep 17, 3:58 pm, kejk <[EMAIL PROTECTED]> wrote: > Hi. > I'm using Win XP with SP2. > After intalling GAE SKD ver 1.1.3 this error accourde: > > ERROR    

[google-appengine] Re: What exactly does fetch() return?

2008-09-17 Thread Alexander Kojevnikov
>From the docs: The return value is a list of model instances, possibly an empty list I have similar code and it works fine. Try debugging it, does the fetch() method return anything? Also, you need to provide the limit parameter to fetch(). On Sep 18, 4:42 pm, Sam G <[EMAIL PROTECTED]> wrot

[google-appengine] Re: Build Index Error?

2008-09-17 Thread mitnickcbc
It works when I updated the indexes separately. I also removed these auto-generated indexes and added them manually. One weird thing I notice is that it takes more than 20 hours to build or delete the 3 indexes together, but it only takes 1 or 2 hours to build each of them separately. I'm not sur

[google-appengine] Dev app server integration with HBase, Hypertable, CouchDB, etc

2008-09-17 Thread Michael Hart
Is anyone aware of any projects to integrate the development app server with any BigTable-like persistence solutions? I've seen people throwing the idea around in various threads, but I haven't seen anything concrete yet. The main advantage to users of such an integration is obviously the

[google-appengine] Re: How do I handle forms with django?

2008-09-17 Thread Peter
Anyone have an idea what is going wrong? On Sep 16, 8:01 am, Peter <[EMAIL PROTECTED]> wrote: > Still getting the same problem with the different import. > > I've put my code athttp://pastebin.com/m662c6d62. > > There's not a lot of code there, so hopefully you pros will easily > spot the problem

[google-appengine] Re: How-to on serving Dojo/Django using zips with 1.1.3

2008-09-17 Thread Peter Svensson
Thanks Adam! This is really helpful. Even though you can use both AOL and Google to load Dojo cross-domain, there are scenarios where you really want to serve everything yourself. Cheers, PS On Thu, Sep 18, 2008 at 12:05 AM, Adam Fisk <[EMAIL PROTECTED]> wrote: > > I just wrote a post on how to