so, fb is using a preprocessor to replace their <fb:*> tags with their internal denotation of that widget. What you'd need to do is write some jsp (or jsf, or whatever) tags and would output a certain tag format (such as class is "xx" and it is a div with an text box with classes "xy" and "zz") and then write for gwt functionality to locate all the corresponding tag structures (on the client side) and wrap/ replace them with their appropriately initialized widgets.
On Apr 29, 4:54 am, "[email protected]" <[email protected]> wrote: > I want to develop an application that parse custom xml tags inside my > webpage. Something like xfbml . > > example: > > <fb:login-button></fb:login-button> > > <div id="fb-root"></div> > <script src="http://connect.facebook.net/en_US/all.js"></script> > <script> > FB.init({appId: 'your app id', status: true, cookie: true, xfbml: > true}); > FB.Event.subscribe('auth.sessionChange', function(response) { > if (response.session) { > // A user has logged in, and a new cookie has been saved > } else { > // The user has logged out, and the cookie has been cleared > } > }); > </script> > > seehttp://developers.facebook.com/docs/guides/web > > Anyone knows where to start? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
