OpenSocial/spec

Replace Preload elements with Link/@rel=prefetch

Opened this issue · 1 comments

Original author: jasn...@gmail.com (April 06, 2012 20:02:55)

SPECIFICATION BUGS ONLY - Description
=====================================
The "prefetch" link relation is already defined and registered within the IANA registry of Link relations. We can eliminate the existing Preload element in favor of prefetch links. To be a complete replacement, we can add a view attribute to the Link element.

e.g. instead of...

<Module>
<ModulePrefs>
<Preload href="http://example.org/foo" authz="signed" views="home,foo" />
<Link rel="icon" href="..." />
</ModulePrefs>
</Module>
it would be..

<Module>
<ModulePrefs>
<Link rel="prefetch" href="http://example.org/foo" authz="signed" views="home,foo" />
<Link rel="icon" href="..." />
</ModulePrefs>
</Module>

Document affected:
==================
1.) Please attach a patch for the document if appropriate.
2.) Post a thread at
http://groups.google.com/group/opensocial-and-gadgets-spec/topics
linking to this issue report.
3.) Post a comment on this issue, linking back to the thread.

Original issue: http://code.google.com/p/opensocial-resources/issues/detail?id=1292