[google-appengine] Re: can't deploy index.yaml

2009-01-21 Thread Geoffrey Spear
Make sure you have an indexes: line before your mappings. (see http://code.google.com/appengine/docs/python/tools/configuration.html) On Jan 21, 10:18 am, jones34 wrote: > I keep getting this error > > Cloning 3 application files. > Closing update. > Error parsing yaml file: > mapping values a

[google-appengine] Re: can't deploy index.yaml

2009-01-21 Thread jones34
i do have the indexes line. that's not the problem. On Jan 21, 10:28 am, Geoffrey Spear wrote: > Make sure you have an > indexes: > > line before your mappings. > (seehttp://code.google.com/appengine/docs/python/tools/configuration.html) > > On Jan 21, 10:18 am, jones34 wrote: > > > I keep ge

[google-appengine] Re: can't deploy index.yaml

2009-01-21 Thread Marzia Niccolai
Hi, Can you please post your entire index.yaml file? -Marzia On Wed, Jan 21, 2009 at 10:23 AM, jones34 wrote: > > i do have the indexes line. that's not the problem. > > On Jan 21, 10:28 am, Geoffrey Spear wrote: >> Make sure you have an >> indexes: >> >> line before your mappings. >> (seeh

[google-appengine] Re: can't deploy index.yaml

2009-01-21 Thread jones34
This is the whole thing: indexes: - kind: Note properties: - name: __searchable_text_index - name: create_date_time direction: desc # AUTOGENERATED # This index.yaml is automatically updated whenever the dev_appserver # detects that a new type of query is run. I

[google-appengine] Re: can't deploy index.yaml

2009-01-21 Thread Alexander Kojevnikov
The indentation looks strange, do you use tabs? AFAIK tabs are not allowed in yaml. Try this: indexes: - kind: Note properties: - name: __searchable_text_index - name: create_date_time direction: desc On Jan 22, 1:34 pm, jones34 wrote: > This is the whole thing: > > indexes: > - kind

[google-appengine] Re: can't deploy index.yaml

2009-01-22 Thread jones34
that seemed to work. thanks! On Jan 21, 9:48 pm, Alexander Kojevnikov wrote: > The indentation looks strange, do you use tabs? AFAIK tabs are not > allowed in yaml. > > Try this: > > indexes: > - kind: Note >   properties: >   - name: __searchable_text_index >   - name: create_date_time >     di