I don't see ifpc module support listed at 
http://code.google.com/apis/gadgets/docs/reference/

I do see rpc listed there.  Is this for type URL gadgets?  I don't
know of any spec that required a <Require feature="ifpc"/> anywhere...

In any case what's it going to be?  Lots of feature requests have been
shot down because they were not listed in the spec.  If this is
important for gmodules.com, but is not part of the gadgets spec then
perhaps it's something that can be maintained separately.

We probably need to chew through this and other issues on the phone or
in a chat room.  Perhaps I just don't understand the use cases...

Are you free tomorrow?  I'll adjust my schedule to yours.


On Wed, Feb 20, 2008 at 06:22:45PM -0800, Kevin Brown wrote:
> You can't remove the ifpc files yet -- some existing code still depends on
> it (notably most existing containers that use shindig), which is why we have
> the useLegacyProtocol flag. The changes to the sample pages are fine,
> though. Please revert the other part of the change. This workaround is
> critical for making the transition of existing sites that used google
> infrastructure (gmodules.com) to using shindig less painful. Without it, we
> wind up requiring all the existing sites to upgrade to rpc immediately,
> which isn't viable at the moment.
> 
> On Wed, Feb 20, 2008 at 6:16 PM, <[EMAIL PROTECTED]> wrote:
> 
> > Author: lindner
> > Date: Wed Feb 20 18:16:49 2008
> > New Revision: 629675
> >
> > URL: http://svn.apache.org/viewvc?rev=629675&view=rev
> > Log:
> > move everything over to gadgets.rpc instead of ifpc
> >
> > Removed:
> >    incubator/shindig/trunk/features/ifpc/
> >    incubator/shindig/trunk/javascript/container/ifpc_relay.html
> > Modified:
> >    incubator/shindig/trunk/features/features.txt
> >    incubator/shindig/trunk/javascript/README
> >    incubator/shindig/trunk/javascript/container/sample2.html
> >    incubator/shindig/trunk/javascript/container/sample4.html
> >    incubator/shindig/trunk/javascript/container/sample5.html
> >    incubator/shindig/trunk/javascript/container/sample6.html
> >    incubator/shindig/trunk/javascript/container/sample7.html
> >
> > Modified: incubator/shindig/trunk/features/features.txt
> > URL:
> > http://svn.apache.org/viewvc/incubator/shindig/trunk/features/features.txt?rev=629675&r1=629674&r2=629675&view=diff
> >
> > ==============================================================================
> > +++ incubator/shindig/trunk/features/features.txt Wed Feb 20 18:16:49 2008
> > @@ -4,7 +4,6 @@
> >  features/core/feature.xml
> >  features/dynamic-height/feature.xml
> >  features/flash/feature.xml
> > -features/ifpc/feature.xml
> >  features/minimessage/feature.xml
> >  features/opensocial-reference/feature.xml
> >  features/opensocial-samplecontainer/feature.xml
> >
> > Modified: incubator/shindig/trunk/javascript/README
> > URL:
> > http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/README?rev=629675&r1=629674&r2=629675&view=diff
> >
> > ==============================================================================
> > +++ incubator/shindig/trunk/javascript/README Wed Feb 20 18:16:49 2008
> > @@ -18,7 +18,7 @@
> >
> >    A) Create an HTML file including the following <head> boilerplate:
> >       <script type="text/javascript" src="json.js"></script>
> > -      <script type="text/javascript" src="ifpc.js"></script>
> > +      <script type="text/javascript" src="../../js/rpc.js?c=1"></script>
> >       <script type="text/javascript" src="cookies.js"></script>
> >       <script type="text/javascript" src="gadgets.js"></script>
> >
> >
> > Modified: incubator/shindig/trunk/javascript/container/sample2.html
> > URL:
> > http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/container/sample2.html?rev=629675&r1=629674&r2=629675&view=diff
> >
> > ==============================================================================
> > +++ incubator/shindig/trunk/javascript/container/sample2.html Wed Feb 20
> > 18:16:49 2008
> > @@ -16,7 +16,6 @@
> >   'http://www.labpixies.com/campaigns/todo/todo.xml'
> >  ];
> >
> > -var containerParentUrl = 'ifpc_relay.html';
> >
> >  // This container lays out and renders gadgets itself.
> >
> > @@ -32,7 +31,6 @@
> >  };
> >
> >  my.init = function() {
> > -  gadgets.container.setParentUrl(containerParentUrl);
> >   gadgets.container.layoutManager = new my.LayoutManager();
> >  };
> >
> >
> > Modified: incubator/shindig/trunk/javascript/container/sample4.html
> > URL:
> > http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/container/sample4.html?rev=629675&r1=629674&r2=629675&view=diff
> >
> > ==============================================================================
> > +++ incubator/shindig/trunk/javascript/container/sample4.html Wed Feb 20
> > 18:16:49 2008
> > @@ -14,7 +14,6 @@
> >   gadgets.container.layoutManager =
> >       new gadgets.FloatLeftLayoutManager('gadget-parent');
> >
> > -  gadgets.container.setParentUrl('ifpc_relay.html');
> >   gadgets.container.addGadget(
> >       gadgets.container.createGadget({specUrl: specUrl0}));
> >  };
> >
> > Modified: incubator/shindig/trunk/javascript/container/sample5.html
> > URL:
> > http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/container/sample5.html?rev=629675&r1=629674&r2=629675&view=diff
> >
> > ==============================================================================
> > +++ incubator/shindig/trunk/javascript/container/sample5.html Wed Feb 20
> > 18:16:49 2008
> > @@ -14,7 +14,6 @@
> >   gadgets.container.layoutManager =
> >       new gadgets.FloatLeftLayoutManager('gadget-parent');
> >
> > -  gadgets.container.setParentUrl('ifpc_relay.html');
> >   var gadget = gadgets.container.createGadget({specUrl: specUrl0});
> >   gadgets.container.addGadget(gadget);
> >  };
> >
> > Modified: incubator/shindig/trunk/javascript/container/sample6.html
> > URL:
> > http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/container/sample6.html?rev=629675&r1=629674&r2=629675&view=diff
> >
> > ==============================================================================
> > +++ incubator/shindig/trunk/javascript/container/sample6.html Wed Feb 20
> > 18:16:49 2008
> > @@ -14,7 +14,6 @@
> >   gadgets.container.layoutManager =
> >       new gadgets.FloatLeftLayoutManager('gadget-parent');
> >
> > -  gadgets.container.setParentUrl('ifpc_relay.html');
> >   var gadget = gadgets.container.createGadget({specUrl: specUrl0});
> >   gadgets.container.addGadget(gadget);
> >  };
> >
> > Modified: incubator/shindig/trunk/javascript/container/sample7.html
> > URL:
> > http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/container/sample7.html?rev=629675&r1=629674&r2=629675&view=diff
> >
> > ==============================================================================
> > +++ incubator/shindig/trunk/javascript/container/sample7.html Wed Feb 20
> > 18:16:49 2008
> > @@ -14,7 +14,6 @@
> >   gadgets.container.layoutManager =
> >       new gadgets.FloatLeftLayoutManager('gadget-parent');
> >
> > -  gadgets.container.setParentUrl('ifpc_relay.html');
> >   var gadget = gadgets.container.createGadget({specUrl: specUrl0});
> >   gadgets.container.addGadget(gadget);
> >  };
> >
> >
> >
> 
> 

-- 
Paul Lindner
hi5 Architect
[EMAIL PROTECTED]

Attachment: pgpQ5t4CZiL7v.pgp
Description: PGP signature

Reply via email to