[google-appengine] my ae don't support unicode, why i submit Chinese, now homepage err, how to rollback database?

2009-12-26 Thread benzrad
the app don't support Chinese as forum title, but i mistakenly created
a Chinese forum, now homepage can't display correctly, but formerly
built forums can list posts, posting within the sub-forum also works.
for the app was open source, and don't improved it, my only solution
to the broken page is to rollback my dataset, deleted recent submitted
data, which wrongly creating a UNIcode forum title.
help me out! TIA.

--

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-appeng...@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: Configuring Friend Connect

2009-01-13 Thread benzrad

thx. i found ur answer on ur blog, and its works well. too nice!
now i hope i have a script to switch different friend connect script
according visiting url. u know, my appspot with custom domain mapping
blocked in China surveillance, while native appspot, like 
http://app21zh.appspot.com
, accessible in China. i had setup both domain, http://forum.be21zh.org
, and http://app21zh.appspot.com with my google friend connect. i hope
my appspot can returned respectively according visiting url.
thx again.

--~--~-~--~~~---~--~~
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: Configuring Friend Connect

2009-01-06 Thread benzrad

could u help me, with what u asked?
TIA.
--~--~-~--~~~---~--~~
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: Configuring Friend Connect

2009-01-05 Thread benzrad

app.yaml:

application: app21zh
version: 1
runtime: python
api_version: 1

handlers:
- url: /static
  static_dir: static

- url: /img
  static_dir: img

- url: .*
  script: main.py

file structure:
-img
-skins
--default
-static

TIA. hope i can get a answer.
btw, do u think if google soon will add native support of friend
connect with its app engine, which render my endeavor to add friend
connect to my appspot a vain?

--~--~-~--~~~---~--~~
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: Googe App Engine and Friend Connect...

2009-01-03 Thread benzrad

so great to hear from u, dear Mangar,
i will trie the code asap. but i want to know if upload: static/*.*
mandatory? where is upload from? i didn't see a folder in that
title.
TIA.
--~--~-~--~~~---~--~~
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: Configuring Friend Connect

2009-01-03 Thread benzrad

i tried the code, but it don't work on my app at http://app21zh.appspot.com
.in friend connect in the process to setup the site, it still reported
can't find the 2 files, which i had place all over including static
folder.
i need more instruction.TIA.


On Dec 4 2008, 6:28 am, Andi Albrecht albrecht.a...@googlemail.com
wrote:
 Hi Rajiv,

 here's how I did it... I copied the two files in a directory called
 static (where all my CSS and images live). Then I'd added the
 following lines to app.yaml:

 - url: /rpc_relay.html
   static_files: static/rpc_relay.html
   upload: static/rpc_relay.html

 - url: /canvas.html
   static_files: static/canvas.html
   upload: static/canvas.html

 I'm not sure if you can omit the upload directive. But the relevant
 part is to point the urls to the files you've downloaded from the
 friend connect page.

 Hope that helps,

 AndiOn Wed, Dec 3, 2008 at 8:37 PM, Rajiv R rajsp...@gmail.com wrote:

  am trying to use friend connect for my app engine application. I am
  told to place 2 .html files in the app's home url i.e
  http://appname.appspot.com/filename.html.

  I tried a few options in app.yaml but they all result in 404-Not
  Found.

  any suggestions?

  Cheers!
  Rajiv
--~--~-~--~~~---~--~~
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: Googe App Engine and Friend Connect...

2009-01-03 Thread benzrad

i tried the code, but it don't work on my app at http://app21zh.appspot.com
.in friend connect in the process to setup the site, it still reported
can't find the 2 files, which i had place all over including static
folder.
i need more instruction.TIA.



On Jan 1, 3:56 pm, Shalin Shekhar Mangar shalinman...@gmail.com
wrote:
 You can add them inside the static directory. You must also map them to
 '/' (root) by adding the following in your app.yaml file.

 - url: /canvas.html
   static_files: static/canvas.html
   upload: static/canvas.html

 - url: /rpc_relay.html
   static_files: static/rpc_relay.html
   upload: static/rpc_relay.html

 Hope that helps.

 On Mon, Dec 29, 2008 at 7:21 AM, benzrad dab...@gmail.com wrote:

  dear sir,
  i also want to add google friend connect onto my GAE, but where
  directory should i place the 2 file google asked for uploading, ie.,
  canvas.htmlrpc_relay.html ? i place them on the root folder of my
  app, also place them in the static folder with other html files, but
  neither working, ie, the setup process of google friend connect can't
  find them. where and how to setup in the py file to let the 2 html
  files can be found on root folder? i absolutely bland on python code,
  but i try to learn.p help me out.

 --
 Regards,
 Shalin Shekhar Mangar.
--~--~-~--~~~---~--~~
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: Googe App Engine and Friend Connect...

2008-12-30 Thread benzrad

could some experts drop some comments here, upon my foolish requests?
TIA.


On Dec 16, 10:00 am, bvelasquez bvelasq...@gmail.com wrote:
 I added Google's Friend Connect to my GAE application.  Now, there are
 two sign in steps on my site.  One to authenticate using GAE users and
 the other for Friend Connect.  This is not desirable and I was
 wondering if anyone knew of the method for integrating the two so
 there is only one sign-in.  I should be able to pass the Google
 Authentication through Friend Connect to the GAE application.
--~--~-~--~~~---~--~~
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: Googe App Engine and Friend Connect...

2008-12-28 Thread benzrad

dear sir,
i also want to add google friend connect onto my GAE, but where
directory should i place the 2 file google asked for uploading, ie.,
canvas.htmlrpc_relay.html ? i place them on the root folder of my
app, also place them in the static folder with other html files, but
neither working, ie, the setup process of google friend connect can't
find them. where and how to setup in the py file to let the 2 html
files can be found on root folder? i absolutely bland on python code,
but i try to learn.p help me out.
--~--~-~--~~~---~--~~
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: Googe App Engine and Friend Connect...

2008-12-28 Thread benzrad

i also need to python code to judge the url to redircct respectively.
u know, my domain blocked in China, whose surveillance now absolutely
banned my domain, be21zh.org. i had some appspot sites bonded with
custom domain under be21zh.org, like forum.be21zh.org ,
guestbook.be21zh.ort , etc. while google friend connect setup require
the site url, i want friend connect on my GAE, like Http://app21zh.appspot.com
,can adoptive to the coming url, if the url is from appspot.com , then
my friend connect gadget for registered site of app21zh.appspot.com in
use, otherwise, if visitor from http://forum.be21zh.org , then frined
connect code for registered site, forum.be21zh.org in use.
i have no knowledge on python, but i would like to learn in this way.
could anyone help me to offer the needed code to setup my fourm
working with friend connect, within surveillance China and within the
freedom world?

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---