[google-appengine] Re: AppEngine + Eclipse ?= auto complete

2009-05-31 Thread Felipe

Auto complete works for me on a mac with ganymede. Check your settings.

On May 30, 2009, at 11:51 PM, Brandon Watson blwat...@gmail.com wrote:


 Just to add to this:

 the line:

 import cgi

 appears to give me what I need.  When I type cgi. I get all of the
 auto complete.  However, the lines:

 from google.appengine.api import users
 from google.appengine.ext import webapp
 from google.appengine.ext.webapp.util import run_wsgi_app
 from google.appengine.ext import db

 don't give me any auto complete.  If I type users. there is no auto
 complete.

 On May 30, 8:44 pm, Brandon blwat...@gmail.com wrote:
 I was doing some beginner AppEngine dev on a Windows box and  
 installed
 Eclipse for that. I liked the autocompletion I got with the objects
 and functions.  Very helpful.

 Last night, I moved my dev environment over to my Macbook, and
 installed Eclipse Ganymede. I installed the AppEngine SDK and Eclipse
 plug in. However, when I am typing out code on my Mac, the
 autocomplete isn't functioning. Did I miss a step?  Call me a lazy
 programmer, but having the functions available in that dropdown list
 is missed.

 Any help?
 

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Expando + SearchableModel = ?

2009-05-31 Thread sunabozu

Hi.
I need a model with full text search and dynamic properties. It is
possible?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Helloworld content does not preserve returns

2009-05-31 Thread thebrianschott

It looks like I am wrong about this.
The returns are there in the datastore,
but do not show up in the output html
(for obvious reasons).

I apologize for wasting your time.

Brian in Atlanta
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Building index stucked

2009-05-31 Thread akisute

Thank you Jeff! Tried vacuum_indexes again and it worked! Now I can
handle this myself.

Following is the error message when I've tried vacuum_indexes first
time. I hope this may help you...


akisute $ appcfg.py --force vacuum_indexes .
Fetching index definitions diff.
Deleting selected index definitions.
2009-05-02 12:48:33,476 WARNING appcfg.py:670 An index was not
deleted.  Most likely this is because it no longer exists.

kind: Article
properties:
- name: is_duplicated
- direction: desc
  name: date_update


Thanks again!

Masashi Ono

On 5月27日, 午前3:25, Jeff S (Google) j...@google.com wrote:
 Hi it looks like the stuck index has been moved into the error state.
 You should now be able to vacuum this index. When you mention that the
 vacuum index failed, what was the error message?

 Thank you,

 Jeff

 On May 24, 5:54 am,akisuteakisutes...@gmail.com wrote:

  Hi,
  I've got a problem while building a new index for my applicaiton.
  index.yaml is correctly uploaded but its status is stacked in
  Building for a month. Something must be wrong.
  I've tried vaccuming the index by appcfg.py but failed... I need some
  help. My application ID is nikkeiphone.
  Thanks.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: encode textProperty into email body

2009-05-31 Thread Wooble



On May 30, 12:30 pm, thebrianschott schott.br...@gmail.com wrote:
 [12:16pm brian~/googleapps/howsmy]% cd
 [12:16pm brian~]% /Applications/GoogleAppEngineLauncher.app/Contents/
 Resources/GoogleAppEngine-default.bundle/Contents/Resources/
 google_appengine/dev_appserver.py --enable_sendmail howsmy
 ERROR:root:Application configuration file not found in howsmy

This error has nothing to do with sendmail; you're running appcfg.py
from your home directory, and howsmy isn't in that directory.  The
error is telling you it can't find your app.yaml.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: AppEngine + Eclipse ?= auto complete

2009-05-31 Thread Wooble

I don't use Eclipse so I could be way off, but I'd guess this is
because the google modules aren't in the default PYTHONPATH so Eclipse
won't know where to find them.

On May 30, 11:51 pm, Brandon Watson blwat...@gmail.com wrote:
 Just to add to this:

 the line:

 import cgi

 appears to give me what I need.  When I type cgi. I get all of the
 auto complete.  However, the lines:

 from google.appengine.api import users
 from google.appengine.ext import webapp
 from google.appengine.ext.webapp.util import run_wsgi_app
 from google.appengine.ext import db

 don't give me any auto complete.  If I type users. there is no auto
 complete.

 On May 30, 8:44 pm, Brandon blwat...@gmail.com wrote:

  I was doing some beginner AppEngine dev on a Windows box and installed
  Eclipse for that. I liked the autocompletion I got with the objects
  and functions.  Very helpful.

  Last night, I moved my dev environment over to my Macbook, and
  installed Eclipse Ganymede. I installed the AppEngine SDK and Eclipse
  plug in. However, when I am typing out code on my Mac, the
  autocomplete isn't functioning. Did I miss a step?  Call me a lazy
  programmer, but having the functions available in that dropdown list
  is missed.

  Any help?


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: encode textProperty into email body

2009-05-31 Thread thebrianschott

Geoff,

Yes, thanks. I found that I needed to expand the howsmy part of the
command line input as below (really all one line).

/Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/
dev_appserver.py --port=8084 --enable_sendmail ~/googleapps/howsmy/

I would really like to find an abbreviation for that long prefix on
the first
two lines above. Any Mac folks out there who know one?

On May 31, 9:58 am, Wooble geoffsp...@gmail.com wrote:
 This error has nothing to do with sendmail; you're running appcfg.py
 from your home directory, and howsmy isn't in that directory.  The
 error is telling you it can't find your app.yaml.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: AppEngine + Eclipse ?= auto complete

2009-05-31 Thread Brandon Watson

We appear to be on the right path, but I have tried for the alst hour
of searching to figure this one out, and I am at a loss.  From the
shell, I typed:

echo $PYTHONPATH

and it comes back empty.  Trying:

echo $PATH

results in:

/Library/Frameworks/Python.framework/Versions/2.6/bin:/Library/
Frameworks/Python.framework/Versions/Current/bin:/Library/Frameworks/
Python.framework/Versions/Current/bin:/opt/local/bin:/opt/local/sbin:/
usr/local/bin:/Users/bwatson/django-trunk/django/bin:/usr/bin:/bin:/
usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

I am running Python 2.6.  So, the question:

1) which file am I editing?
2) what exactly am I adding?

I looked in .bashrc, and .bash_profile, but don't know what I need to
add for App Engine.  I search and cannot determine the default
location for the App Engine libraries.

Thanks, and sorry for the seemingly lame question.

-B

On May 31, 7:03 am, Wooble geoffsp...@gmail.com wrote:
 I don't use Eclipse so I could be way off, but I'd guess this is
 because the google modules aren't in the default PYTHONPATH so Eclipse
 won't know where to find them.

 On May 30, 11:51 pm, Brandon Watson blwat...@gmail.com wrote:

  Just to add to this:

  the line:

  import cgi

  appears to give me what I need.  When I type cgi. I get all of the
  auto complete.  However, the lines:

  from google.appengine.api import users
  from google.appengine.ext import webapp
  from google.appengine.ext.webapp.util import run_wsgi_app
  from google.appengine.ext import db

  don't give me any auto complete.  If I type users. there is no auto
  complete.

  On May 30, 8:44 pm, Brandon blwat...@gmail.com wrote:

   I was doing some beginner AppEngine dev on a Windows box and installed
   Eclipse for that. I liked the autocompletion I got with the objects
   and functions.  Very helpful.

   Last night, I moved my dev environment over to my Macbook, and
   installed Eclipse Ganymede. I installed the AppEngine SDK and Eclipse
   plug in. However, when I am typing out code on my Mac, the
   autocomplete isn't functioning. Did I miss a step?  Call me a lazy
   programmer, but having the functions available in that dropdown list
   is missed.

   Any help?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: AppEngine + Eclipse ?= auto complete

2009-05-31 Thread Brandon Watson

Further followup:

I read this:

http://code.google.com/appengine/articles/eclipse.html

but that's for Windows.  I see the step about the PYTHONPATH, but I'm
not sure what to do on Mac.

On May 31, 8:11 am, Brandon Watson blwat...@gmail.com wrote:
 We appear to be on the right path, but I have tried for the alst hour
 of searching to figure this one out, and I am at a loss.  From the
 shell, I typed:

 echo $PYTHONPATH

 and it comes back empty.  Trying:

 echo $PATH

 results in:

 /Library/Frameworks/Python.framework/Versions/2.6/bin:/Library/
 Frameworks/Python.framework/Versions/Current/bin:/Library/Frameworks/
 Python.framework/Versions/Current/bin:/opt/local/bin:/opt/local/sbin:/
 usr/local/bin:/Users/bwatson/django-trunk/django/bin:/usr/bin:/bin:/
 usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

 I am running Python 2.6.  So, the question:

 1) which file am I editing?
 2) what exactly am I adding?

 I looked in .bashrc, and .bash_profile, but don't know what I need to
 add for App Engine.  I search and cannot determine the default
 location for the App Engine libraries.

 Thanks, and sorry for the seemingly lame question.

 -B

 On May 31, 7:03 am, Wooble geoffsp...@gmail.com wrote:

  I don't use Eclipse so I could be way off, but I'd guess this is
  because the google modules aren't in the default PYTHONPATH so Eclipse
  won't know where to find them.

  On May 30, 11:51 pm, Brandon Watson blwat...@gmail.com wrote:

   Just to add to this:

   the line:

   import cgi

   appears to give me what I need.  When I type cgi. I get all of the
   auto complete.  However, the lines:

   from google.appengine.api import users
   from google.appengine.ext import webapp
   from google.appengine.ext.webapp.util import run_wsgi_app
   from google.appengine.ext import db

   don't give me any auto complete.  If I type users. there is no auto
   complete.

   On May 30, 8:44 pm, Brandon blwat...@gmail.com wrote:

I was doing some beginner AppEngine dev on a Windows box and installed
Eclipse for that. I liked the autocompletion I got with the objects
and functions.  Very helpful.

Last night, I moved my dev environment over to my Macbook, and
installed Eclipse Ganymede. I installed the AppEngine SDK and Eclipse
plug in. However, when I am typing out code on my Mac, the
autocomplete isn't functioning. Did I miss a step?  Call me a lazy
programmer, but having the functions available in that dropdown list
is missed.

Any help?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Job's and ReferenceProperty and KindError in django on appengine

2009-05-31 Thread roderic

To answer the questions from the replies. Yes I'm using app-engine-
patch.

So far so good here guys. I've added the import and pushed the
changes. Cron seems to be running correctly.

I guess the lesson here is that the cron process does not follow this
definition in app.yaml

- url: /.*
  script: common/appenginepatch/main.py


I thought this was quite interesting.


thanks for everyone's help.


On May 30, 5:59 am, Waldemar Kornewald wkornew...@gmail.com wrote:
 Hi,
 if you're using app-engine-patch just import
 common.appenginepatch.main at the top of your cron script, so Django/
 GAE is initialized correctly.

 Bye,
 Waldemar Kornewald
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Sender e-mail addresses travesty

2009-05-31 Thread David Wilson

Hi there,

I appear to have gotten myself thoroughly confused as to how I go
about setting up extra sender addresses for an application. Back when
I last looked at this, it was apparently as simple as inviting those
extra addresses to develop the application, but now it seems I need
SMS verification for each account.

So I seem to have the choice of:

1. Use some pokey unreliable external service.
2. Reuse a completely irrelevant-but-nonetheless-authorized address
from a previous application, much to the confusion of anyone who
receives e-mail from my app.
3. Use my own, personal, private e-mail address to send
otherwise-completely-unrelated-to-me mail.
4. Continue to borrow mobile phones from family members to authorize accounts.
5. Beg on the group for an admin to 'sort me out' every time I have to do this.

These options universally suck, and I shouldn't have to choose between
them. What am I missing, or are things really this bad?


David

-- 
It is better to be wrong than to be vague.
  — Freeman Dyson

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: AppEngine + Eclipse ?= auto complete

2009-05-31 Thread tabularasa

This might help you:
http://daily.profeth.de/2008/04/google-app-engine-eclipse-pydev.html

On May 31, 8:31 am, Brandon Watson blwat...@gmail.com wrote:
 Further followup:

 I read this:

 http://code.google.com/appengine/articles/eclipse.html

 but that's for Windows.  I see the step about the PYTHONPATH, but I'm
 not sure what to do on Mac.

 On May 31, 8:11 am, Brandon Watson blwat...@gmail.com wrote:



  We appear to be on the right path, but I have tried for the alst hour
  of searching to figure this one out, and I am at a loss.  From the
  shell, I typed:

  echo $PYTHONPATH

  and it comes back empty.  Trying:

  echo $PATH

  results in:

  /Library/Frameworks/Python.framework/Versions/2.6/bin:/Library/
  Frameworks/Python.framework/Versions/Current/bin:/Library/Frameworks/
  Python.framework/Versions/Current/bin:/opt/local/bin:/opt/local/sbin:/
  usr/local/bin:/Users/bwatson/django-trunk/django/bin:/usr/bin:/bin:/
  usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

  I am running Python 2.6.  So, the question:

  1) which file am I editing?
  2) what exactly am I adding?

  I looked in .bashrc, and .bash_profile, but don't know what I need to
  add for App Engine.  I search and cannot determine the default
  location for the App Engine libraries.

  Thanks, and sorry for the seemingly lame question.

  -B

  On May 31, 7:03 am, Wooble geoffsp...@gmail.com wrote:

   I don't use Eclipse so I could be way off, but I'd guess this is
   because the google modules aren't in the default PYTHONPATH so Eclipse
   won't know where to find them.

   On May 30, 11:51 pm, Brandon Watson blwat...@gmail.com wrote:

Just to add to this:

the line:

import cgi

appears to give me what I need.  When I type cgi. I get all of the
auto complete.  However, the lines:

from google.appengine.api import users
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from google.appengine.ext import db

don't give me any auto complete.  If I type users. there is no auto
complete.

On May 30, 8:44 pm, Brandon blwat...@gmail.com wrote:

 I was doing some beginner AppEngine dev on a Windows box and installed
 Eclipse for that. I liked the autocompletion I got with the objects
 and functions.  Very helpful.

 Last night, I moved my dev environment over to my Macbook, and
 installed Eclipse Ganymede. I installed the AppEngine SDK and Eclipse
 plug in. However, when I am typing out code on my Mac, the
 autocomplete isn't functioning. Did I miss a step?  Call me a lazy
 programmer, but having the functions available in that dropdown list
 is missed.

 Any help?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: AppEngine + Eclipse ?= auto complete

2009-05-31 Thread Brandon Watson

Thanks for that pointer, but it's a reprint of the article I pointed
to.

On May 31, 10:07 am, tabularasa elliott.valent...@gmail.com wrote:
 This might help 
 you:http://daily.profeth.de/2008/04/google-app-engine-eclipse-pydev.html

 On May 31, 8:31 am, Brandon Watson blwat...@gmail.com wrote:

  Further followup:

  I read this:

 http://code.google.com/appengine/articles/eclipse.html

  but that's for Windows.  I see the step about the PYTHONPATH, but I'm
  not sure what to do on Mac.

  On May 31, 8:11 am, Brandon Watson blwat...@gmail.com wrote:

   We appear to be on the right path, but I have tried for the alst hour
   of searching to figure this one out, and I am at a loss.  From the
   shell, I typed:

   echo $PYTHONPATH

   and it comes back empty.  Trying:

   echo $PATH

   results in:

   /Library/Frameworks/Python.framework/Versions/2.6/bin:/Library/
   Frameworks/Python.framework/Versions/Current/bin:/Library/Frameworks/
   Python.framework/Versions/Current/bin:/opt/local/bin:/opt/local/sbin:/
   usr/local/bin:/Users/bwatson/django-trunk/django/bin:/usr/bin:/bin:/
   usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

   I am running Python 2.6.  So, the question:

   1) which file am I editing?
   2) what exactly am I adding?

   I looked in .bashrc, and .bash_profile, but don't know what I need to
   add for App Engine.  I search and cannot determine the default
   location for the App Engine libraries.

   Thanks, and sorry for the seemingly lame question.

   -B

   On May 31, 7:03 am, Wooble geoffsp...@gmail.com wrote:

I don't use Eclipse so I could be way off, but I'd guess this is
because the google modules aren't in the default PYTHONPATH so Eclipse
won't know where to find them.

On May 30, 11:51 pm, Brandon Watson blwat...@gmail.com wrote:

 Just to add to this:

 the line:

 import cgi

 appears to give me what I need.  When I type cgi. I get all of the
 auto complete.  However, the lines:

 from google.appengine.api import users
 from google.appengine.ext import webapp
 from google.appengine.ext.webapp.util import run_wsgi_app
 from google.appengine.ext import db

 don't give me any auto complete.  If I type users. there is no auto
 complete.

 On May 30, 8:44 pm, Brandon blwat...@gmail.com wrote:

  I was doing some beginner AppEngine dev on a Windows box and 
  installed
  Eclipse for that. I liked the autocompletion I got with the objects
  and functions.  Very helpful.

  Last night, I moved my dev environment over to my Macbook, and
  installed Eclipse Ganymede. I installed the AppEngine SDK and 
  Eclipse
  plug in. However, when I am typing out code on my Mac, the
  autocomplete isn't functioning. Did I miss a step?  Call me a lazy
  programmer, but having the functions available in that dropdown list
  is missed.

  Any help?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: AppEngine + Eclipse ?= auto complete

2009-05-31 Thread Brandon Watson

I can see that there is a PyDev - PYTHONPATH option under my File -
Properties for my project.  What needs to be in there?  Where are the
AppEngine SDK files?  I know where I put the GAE Launcher, but I don't
know what I need to tell Eclipse about the location of the SDK or how
to do it.  This is frustrating.  Thanks for all the help so far.  I
used to fancy myself somewhat competent.

On May 31, 11:13 am, Brandon Watson blwat...@gmail.com wrote:
 Thanks for that pointer, but it's a reprint of the article I pointed
 to.

 On May 31, 10:07 am, tabularasa elliott.valent...@gmail.com wrote:

  This might help 
  you:http://daily.profeth.de/2008/04/google-app-engine-eclipse-pydev.html

  On May 31, 8:31 am, Brandon Watson blwat...@gmail.com wrote:

   Further followup:

   I read this:

  http://code.google.com/appengine/articles/eclipse.html

   but that's for Windows.  I see the step about the PYTHONPATH, but I'm
   not sure what to do on Mac.

   On May 31, 8:11 am, Brandon Watson blwat...@gmail.com wrote:

We appear to be on the right path, but I have tried for the alst hour
of searching to figure this one out, and I am at a loss.  From the
shell, I typed:

echo $PYTHONPATH

and it comes back empty.  Trying:

echo $PATH

results in:

/Library/Frameworks/Python.framework/Versions/2.6/bin:/Library/
Frameworks/Python.framework/Versions/Current/bin:/Library/Frameworks/
Python.framework/Versions/Current/bin:/opt/local/bin:/opt/local/sbin:/
usr/local/bin:/Users/bwatson/django-trunk/django/bin:/usr/bin:/bin:/
usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

I am running Python 2.6.  So, the question:

1) which file am I editing?
2) what exactly am I adding?

I looked in .bashrc, and .bash_profile, but don't know what I need to
add for App Engine.  I search and cannot determine the default
location for the App Engine libraries.

Thanks, and sorry for the seemingly lame question.

-B

On May 31, 7:03 am, Wooble geoffsp...@gmail.com wrote:

 I don't use Eclipse so I could be way off, but I'd guess this is
 because the google modules aren't in the default PYTHONPATH so Eclipse
 won't know where to find them.

 On May 30, 11:51 pm, Brandon Watson blwat...@gmail.com wrote:

  Just to add to this:

  the line:

  import cgi

  appears to give me what I need.  When I type cgi. I get all of the
  auto complete.  However, the lines:

  from google.appengine.api import users
  from google.appengine.ext import webapp
  from google.appengine.ext.webapp.util import run_wsgi_app
  from google.appengine.ext import db

  don't give me any auto complete.  If I type users. there is no 
  auto
  complete.

  On May 30, 8:44 pm, Brandon blwat...@gmail.com wrote:

   I was doing some beginner AppEngine dev on a Windows box and 
   installed
   Eclipse for that. I liked the autocompletion I got with the 
   objects
   and functions.  Very helpful.

   Last night, I moved my dev environment over to my Macbook, and
   installed Eclipse Ganymede. I installed the AppEngine SDK and 
   Eclipse
   plug in. However, when I am typing out code on my Mac, the
   autocomplete isn't functioning. Did I miss a step?  Call me a lazy
   programmer, but having the functions available in that dropdown 
   list
   is missed.

   Any help?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---