Hi guys, To avoid one additional level of indirection, it to display the content of a URL in a gadget, please create a gadget of type url. A iGoogle gadget is rendered in its own iframe, and the gadget spec allows to specify an externally rendered url for this iframe content.
For more details, please read the documentation here about Choosing a Content Type: http://code.google.com/apis/gadgets/docs/legacy/fundamentals.html#Content_Type Your gadget content tag should be limited to the following: <Content type="url" href="http://www.example.com/params.php"/> I hope this helps, Jerome On Jan 6, 10:10 am, Yonatan <[email protected]> wrote: > iGoolge is a gadgets container, and therefore, if you like to show > content in it, you need to write a gadget for it. > > Because the gadget you need is very static (no logic, no javascript, > just "show an iframe"), the task is quite simple. Please see the > gadget's documentation page athttp://code.google.com/apis/gadgets/ > for details, but the code basically should look like: > > <?xml version="1.0" encoding="UTF-8" ?> > <Module> > <ModulePrefs title="My Page" scrolling="true"/> > <Content type="html"> > <![CDATA[ > <iframe src="http://yoursite.com" ></iframe> > ]]> > </Content> > </Module> > > Yonatan > On Jan 5, 10:27 pm, "Andryha Choulga [Andrei Choulga]" > > <[email protected]> wrote: > > Good day everyone... > > > I like iGoogle as my homepage - but I need to show some of my own > > personal info - I can do that by showing my own http resource (.php > > page on my site) as an iFrame ... > > > how can I make my very own personal gadget (or it can be shared) to > > show an iframe of a page hosted my site... > > > Thank you... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iGoogle Developer Forum" 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-Gadgets-API?hl=en -~----------~----~----~----~------~----~------~--~---
