[google-appengine] Re: Googe App Engine and Friend Connect...

2009-01-27 Thread anand

Thanks sir!

It worked for me. It was great help.

Regards
Anand

On Jan 11, 6:13 am, Jove jovezh...@gmail.com wrote:
 Hi benzrad,

 Go ahead adding that code to your app.yaml. It works for my site on
 GAE.

 Few more informations:
 * I put the canvas.htmland rpc_relay.htmlon %AppHome%/media/ folder
 * Add the following code at the begining of app.yaml. Make sure those
 handles are registered **before** other python/django handlers
 - url: /canvas.html
   static_files: media/canvas.html
   upload: media/canvas.html

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

 * test on your local server. It should work. Then upload to GAE to
 check the live gadget

 On Jan 4, 10:12 am, benzrad dab...@gmail.com wrote:

  i tried the code, but it don't work on my app athttp://app21zh.appspot.com
  .in friend connect in the process to setup the site, it still reported
  can't find the 2files, which i had place all over includingstatic
  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 thestaticfolder with otherhtmlfiles, 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 2html
   filescan 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...

2009-01-11 Thread Jove

Hi benzrad,

Go ahead adding that code to your app.yaml. It works for my site on
GAE.

Few more informations:
* I put the canvas.html and rpc_relay.html on %AppHome%/media/ folder
* Add the following code at the begining of app.yaml. Make sure those
handles are registered **before** other python/django handlers
- url: /canvas.html
  static_files: media/canvas.html
  upload: media/canvas.html

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

* test on your local server. It should work. Then upload to GAE to
check the live gadget

On Jan 4, 10:12 am, benzrad dab...@gmail.com wrote:
 i tried the code, but it don't work on my app athttp://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...

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: 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...

2009-01-01 Thread Shalin Shekhar Mangar
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
-~--~~~~--~~--~--~---



[google-appengine] Re: Googe App Engine and Friend Connect...

2008-12-16 Thread Andrew Badera
You might benefit from checking out Microsoft's Provider Models in .NET.
They address exactly this sort of abstraction. For this, you want the role
and/or membership providers.

Thanks-
- Andy Badera
- and...@badera.us
- (518) 641-1280
- Google me: http://www.google.com/search?q=andrew+badera



On Tue, Dec 16, 2008 at 1:18 PM, bvelasquez bvelasq...@gmail.com wrote:


 I see your point.  Up until now, I've been relying on Google Account
 Login, but this is the limiting factor.  I should provide my own
 mechanism and then link to the various providers.  Much more
 flexible.  Too bad there isn't a python library to open all this up in
 GAE, abstracting the authentication piece in a reusable way.  Anyone
 know if this exists?

 Barry

 On Dec 16, 3:57 am, conman constantin.christm...@googlemail.com
 wrote:
  I amnot quite sure if I unserstand your question but I guess you need
  to manage your own User Login status which can be triggered by either
  Google Account Login or by FriendConnect or Facebook Connect or OpenId
  etc...
 
  That way a user would have the possibility to log in via different
  auth providers and different accounts but link this different logins
  to one user profile in your application.
 
  Hope that helps.
 
  On 16 Dez., 03:00, 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-16 Thread conman

I amnot quite sure if I unserstand your question but I guess you need
to manage your own User Login status which can be triggered by either
Google Account Login or by FriendConnect or Facebook Connect or OpenId
etc...

That way a user would have the possibility to log in via different
auth providers and different accounts but link this different logins
to one user profile in your application.

Hope that helps.

On 16 Dez., 03:00, 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
-~--~~~~--~~--~--~---