[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-08-03 Thread Haisheng HU
Thank you Holger! Holger wrote: Hi Haisheng Hu maybe you work on open source code and don't fear anything being stolen. Partial* download capability can be implement easy into Google appengine. Just add the zipme script to your code:

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread Haisheng HU
In my case I just lost the source code of a project, although it is not a big one. (So I didn't get it into SVN or something like that.) It would be great to be able to download the source code from app engine. Gasp! Haisheng from Beijing On Jul 23, 5:02 pm, Nick Johnson (Google)

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread djidjadji
Is the GAE SDK causing more harddisk failures then average? Am I at risk having the SDK on my harddisk? I have it now for almost a year on my computer. Possible solutions for all coders losing there code. 1) use an SVN/GIT/SCCS/CVS/RCS/... version control system, repository on a different

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread Nick Johnson (Google)
On Thu, Jul 30, 2009 at 12:54 PM, djidjadji djidja...@gmail.com wrote: Is the GAE SDK causing more harddisk failures then average? Am I at risk having the SDK on my harddisk? I have it now for almost a year on my computer. No, nothing the SDK does could conceivably cause your hard disk to

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread Holger
Hi Haisheng Hu maybe you work on open source code and don't fear anything being stolen. Partial* download capability can be implement easy into Google appengine. Just add the zipme script to your code: http://www.manatlan.com/blog/zipme___download_sources_of_your_gae_website__as_a_zip_file

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread djidjadji
Another solution proposed in this group was to put the appcfg.py update myappdir in a script/batch file and before the appcfg.py call a commandline version of a zip tool that zips up the whole myappdir (except *.pyc files). Move the file to myappdir. In a static file directory, or create a

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread Holger
It is possible. Is it possible to create a static file dir that has login:admin in app.yaml? Supposed you have got a first level folder 'mystat' containing the 'list.txt' file, add the following to your app.yaml file: - url: /mystat static_dir: mystat login: admin After upload (appcfg.py

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread Wooble
On Jul 30, 7:54 am, djidjadji djidja...@gmail.com wrote: Possible solutions for all coders losing there code. 1) use an SVN/GIT/SCCS/CVS/RCS/... version control system, repository on a different computer/harddisk (use an editor that can handle this VCS, have a look at emacs, never to late

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-30 Thread Pete
The best bet would be a SVN driven App Engine where instead of app version one would choose a revision number. Uploading source twice seems very redundant to me. Pete On Jul 23, 11:02 am, Nick Johnson (Google) nick.john...@google.com wrote: Hi Jungang, Using a version control system such as

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-23 Thread Nick Johnson (Google)
Hi Jungang, Using a version control system such as SVN or Git is your best bet. App Engine is not intended to be used as version control. -Nick Johnson On Wed, Jul 22, 2009 at 11:46 PM, Juguang XIAO jugu...@gmail.com wrote: This is not a usual case, but people at times may still need it. I