[google-appengine] Re: Sitemaps structure for large GAE site

2011-01-31 Thread Ernesto Karim Oltra
Take care there is a limit in the number of files you can upload to GAE. I have seen it somewhere in the documentation. The best solution would be Barry's one, store the info in the datastore. On 28 ene, 22:05, Ana Belén Ramón wrote: > Hi! > > I'm thinking on the best way to structure a large GAE

[google-appengine] Re: Sitemaps

2009-04-04 Thread Sargis Dallakyan
> Sitemaps can be plain text files as well:http://sitemaps.org/protocol.php Thank you for pointing this out. I meant to write that it doesn't need to be an xml file. > On Sat, Apr 4, 2009 at 10:31 PM, Sargis Dallakyan wrote: > > > > > > > > > Sitemap does need to be an xml file, however, you ne

[google-appengine] Re: Sitemaps

2009-04-04 Thread 'Αλκης Ευλογημένος
Sitemaps can be plain text files as well: http://sitemaps.org/protocol.php On Sat, Apr 4, 2009 at 10:31 PM, Sargis Dallakyan wrote: > > Sitemap does need to be an xml file, however, you need to tell GAE > that its a static file by include a statement similar to this one in > your app.yaml > > - u

[google-appengine] Re: Sitemaps

2009-04-04 Thread Sargis Dallakyan
Sitemap does need to be an xml file, however, you need to tell GAE that its a static file by include a statement similar to this one in your app.yaml - url: /sitemap static_files: sitemap upload: sitemap Replace sitemap with sitemap.xml, if needed. On Apr 4, 1:01 pm, Nora wrote: > Hello, >

[google-appengine] Re: Sitemaps

2009-04-04 Thread 'Αλκης Ευλογημένος
You need to setup a handler to serve static files: http://code.google.com/appengine/docs/python/gettingstarted/staticfiles.html On Sat, Apr 4, 2009 at 10:01 PM, Nora wrote: > > Hello, > I need to develop a sitemap for my application. I understand that it > is an xml file. Do I add a link to th