Created
January 11, 2013 17:02
Beschreibung eines Wetter Gadgets welches das OpenSocial API nutzt.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Module> | |
<ModulePrefs title="My Weather"> | |
<Locale lang="en" country="us" /> | |
<Require feature="opensocial-0.8" /> | |
<Icon>http://remote/favicon.ico</Icon> | |
</ModulePrefs> | |
<Userprefs name="forecast_period" | |
display_name="Forecast period" | |
datatype="enum" | |
default_value="3"> | |
<EnumValue value="3" displayValue="3 day outlook" /> | |
<EnumValue value="5" displayValue="5 day outlook" /> | |
<EnumValue value="7" displayValue="7 day outlook" /> | |
</UserPrefs> | |
<Content type="html" view="home"> | |
<![CDATA[ | |
<script type="text/javascript"> | |
/*...*/ | |
</script> | |
<div id="main"> | |
My Weather gaadget | |
</div> | |
]]> | |
</Content> | |
</Module> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment