[google-appengine] Re: 网页中有汉字 ,就会产生错误,不知是啥原因

2009-02-01 Thread yu ping322
在这里混的中国人挺多的,只是很多人的英语也很牛,说英语显摆。 2009/2/2 kang : > 一直有中文的啊,新年快乐~ > > 2009/1/31 trydofor >> >> 哥们们, >> >> 总算在列表里看到中文啦 :) >> 兴奋啊,祝新年快乐,牛年牛B >> >> kang wrote: >> > 在文件开始加上#coding=utf-8 >> > >> > 2009/1/22 网页中有汉字,就会产生错误,不知是啥原因 > > > >> > >> > >> > this code right in local

[google-appengine] Re: filesystem virtualization on top of datastore

2008-12-19 Thread yu ping322
you can refer attach file with this test code. poem = '\ Programming is fun When the work is done if you wanna make your work also fun: use Python! ' f = file('poem.txt', 'w') # open for 'w'riting f.write(poem) # write text

[google-appengine] Re: Announcing: System Status Dashboard, Quota Details Page, and a Preview of Billing

2008-12-18 Thread yu ping322
Thank you very much. On 12/19/08, James Ashley wrote: > > > > On Dec 18, 11:33 am, Marzia Niccolai wrote: > > Hi, > > > > Support for end-user uploading of large files (>1MB) is definitely something > > we are working on supporting. > > Sweet! Thank you > > -- James > > > > -Marzia > > > > > >

[google-appengine] Re: Announcing: System Status Dashboard, Quota Details Page, and a Preview of Billing

2008-12-16 Thread yu ping322
is it restrict all the data must store in datastore,and datastore is limit every record less than 1M? that means a big PNG image and Mp3 file is not store.if i use S3 , every time i use urlfetch to get file and return to user if I use S3 bing domain,it's public to everyone not need to pass

[google-appengine] Re: host info

2008-12-04 Thread yu ping322
request.url can get domain names. 2008/12/5, lws68825 <[EMAIL PROTECTED]>: > > Hi, > Can anyone help me on getting host info in a cgi script? I want to set > different mapping parameters to wsgiapplication for different domain > names. > > > --~--~-~--~~~---~--~~

[google-appengine] Re: how to do text search in GAE?

2008-12-04 Thread yu ping322
from google.appengine.ext import db from google.appengine.ext import search class Article(search.SearchableModel): title = db.TextProperty() publishDate = db.DateTimeProperty(auto_now_add=True) text = db.TextProperty() # should NOT be returned article = Article(text ='''Thi

[google-appengine] Re: 有个想法,想写 个工具帮助自动生成AppEngine的项目文件

2008-11-13 Thread yu ping322
我不同意思,主要看你要做一个什么东东了,比如你写一个blog,你加一堆别人写的包有什么用,和你做的主题不相关啊。。。你有什么想法快速实现就好,不要加一堆不相关的,除丰你是想做一个门户网站之类,有很多栏目。很多功能。 2008/11/13 A. TNG <[EMAIL PROTECTED]>: > > Hi, > > Sorry guys. Make a mistake and send to wrong email address. > > -- > Best Regards, > TANG Jiyu > > > > --~--~-~--~~---

[google-appengine] Re: will google think of to support app own unique IP

2008-10-31 Thread yu ping322
because "ghs.google.com" can not access in my country. 2008/10/31 David Symonds <[EMAIL PROTECTED]>: > > On Thu, Oct 30, 2008 at 10:03 PM, yu ping322 <[EMAIL PROTECTED]> wrote: > >> will google think of to support app own unique IP? > > I hope

[google-appengine] will google think of to support app own unique IP

2008-10-30 Thread yu ping322
will google think of to support app own unique IP? --~--~-~--~~~---~--~~ 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 fro

[google-appengine] Re: App Engineでの ファイル取�zみ

2008-10-14 Thread yu ping322
可以把文件放在DataStore的BlobProperty里。但是请注意每个文件不能超过1M.google有限制。 例子: model: class UploadFile(db.Model): data = db.BlobProperty() orig_name = db.StringProperty() ext = db.StringProperty() date = db.DateTimeProperty(auto_now_add=True) 上传: class Upload(BaseRequestHandler): @requires_admin