Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Not all gadgets need the full weight of the current gadget spec. This proposal creates a simplified format that may be used.

Code Block
titleExample
langxmltitleExample
<?xml version='1.0' encoding='utf-8'?>
<Module title="Simple Gadget">
<Data>
<os:ViewerRequest key='vwr' />
</Data>
<Templates>
<Template tag="my:foo">
<div>

<img src="${My.person.thumbnailUrl}" /> <br/>

(Picture of ${My.person.displayName})
</div>
</Template>
</Templates>


<Content type='osml' >
<h1>Hello, ${vwr.displayName}</h1>
<my:foo person="${vwr}" />
</Content>
</Module>

...