Community
Participate
Working Groups
We have extension points for simple properties in user profile, but within managing openids comes a need to add more complicated plugins to user profile. The easiest idea would be probably creating an iframe.
The extention is done, is can be mixed with the "regular" extentions for the profile. window.onload = function() { var provider = new eclipse.PluginProvider(); provider.registerServiceProvider("profilePlugin", { info : function() { return { name : "Manage OpenIds", }; }, getDivContent: function() { var content = {"sections" : [ {"id": "openids", "name": "Manage External Accounts", "type": "iframe", "data" : {"src": "/openids/manageOpenids.html", "style" : "border: 0px; width: 500px"}} ] }; return content; } }); provider.connect(); };