<ModulePrefs ...>
...
<link rel="gadget help" href="mailto:sup...@example.com"/>
<link rel="gadget support" href="http://www.example.com/support.html"/>
</ModulePrefs>
On Fri, Mar 28, 2008 at 11:09:26AM -0700, Amar Gandhi wrote:
> in orkut, we have need for users to find help and support for apps.
>
> the gadget spec at
> http://code.google.com/apis/gadgets/docs/reference.html#Moduleprefs_Ref
> doesn't have these fields. there is author info but i'd imagine most app
> developers wouldn't want the author_email to be flooded with support issues.
>
> so, the proposal is to add two fields to ModulePrefs:
>
> * <help> - Url to help and FAQ about the app
> * <support_URL> - Url to page for users to contact the app about
> issues
> * <support_email> - email address to send mail to
>
> feedback welcome.
>
> You received this message because you are subscribed to the Google Groups "OpenSocial and Gadgets Specification Discussion" group.
> To post to this group, send email to opensocial-an...@googlegroups.com
> To unsubscribe from this group, send email to opensocial-and-gadg...@googlegroups.com
> For more options, visit this group at http://groups.google.com/group/opensocial-and-gadgets-spec?hl=en
> -~----------~----~----~----~------~----~------~--~---
>
--
Paul Lindner ||||| | | | | | | | | |
lin...@inuus.com
For example, the tag naming style is <screenshot> and not <img rel="gadget
screenshot" href="url" />
-----Original Message-----
From: opensocial-an...@googlegroups.com
[mailto:opensocial-an...@googlegroups.com] On Behalf Of Paul
Lindner
Sent: Friday, March 28, 2008 4:33 PM
To: opensocial-an...@googlegroups.com
Cc: 'Shauna O'Brien'
Subject: Re: Adding fields to ModulePrefs - help page and support page
I proposed this before but how about using <link> tags. These are very
versatile. In addition to specifying favicons
<ModulePrefs ...>
...
<link rel="gadget help" href="mailto:sup...@example.com"/>
<link rel="gadget support" href="http://www.example.com/support.html"/>
</ModulePrefs>
On Fri, Mar 28, 2008 at 11:09:26AM -0700, Amar Gandhi wrote:
> in orkut, we have need for users to find help and support for apps.
>
> the gadget spec at
> http://code.google.com/apis/gadgets/docs/reference.html#Moduleprefs_Re
> f doesn't have these fields. there is author info but i'd imagine
-----Original Message-----
From: opensocial-an...@googlegroups.com
[mailto:opensocial-an...@googlegroups.com] On Behalf Of Paul
Lindner
Sent: Friday, March 28, 2008 4:33 PM
To: opensocial-an...@googlegroups.com
Cc: 'Shauna O'Brien'
Subject: Re: Adding fields to ModulePrefs - help page and support page
I proposed this before but how about using <link> tags. These are very
versatile. In addition to specifying favicons
<ModulePrefs ...>
...
<link rel="gadget help" href="mailto:sup...@example.com"/>
<link rel="gadget support" href="http://www.example.com/support.html"/>
</ModulePrefs>
On Fri, Mar 28, 2008 at 11:09:26AM -0700, Amar Gandhi wrote:
> in orkut, we have need for users to find help and support for apps.
>
> the gadget spec at
> http://code.google.com/apis/gadgets/docs/reference.html#Moduleprefs_Re
> f doesn't have these fields. there is author info but i'd imagine
<xs:attribute name="help" type="xs:string" use="optional"/>
<xs:attribute name="support_url" type="xs:string" use="optional"/>
<xs:attribute name="support_email" type="xs:string" use="optional"/>
<xs:element name="Link">
<xs:complexType>
<xs:attribute name="rel" type="xs:string" use="required"/>
<xs:attribute name="href" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="SupportUrl">
<xs:complexType>
<xs:attribute name="href" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
etc etc
<xs:element name="Link">
<xs:complexType>
<xs:attribute name="rel" type="xs:string" use="required"/>
<xs:attribute name="href" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
Where "gadget help" and "gadget support" would be two rel values that
Orkut would support (and hopefully others).
Anybody else want to chime in?
- Cassie
I also like the idea of migrating named elements in <ModulePrefs> to
<Link> tags.