The Save intent is designed to give applications the ability to offer a simple mechanism to save data in their application.
An action that can handle save could be anything that the user has installed, including and not limited to specialist image tools or audio editors that need to save data in the users file locker.
The "save" protocol is intended to be a lightweight save facility.
<intent action="http://webintents.org/save" type="image/*" href="save.html" />
var intent = new Intent("http://webintents.org/save");
window.navigator.startActivity(intent);
Clients and services can only interact with each other if they both support the same intent AND the same data type. Data-types can be any arbitary string, but it is expected that client and service will pass the same data if they both agree to support the protocol.
Advisory data-schemes are described below based off MIME-Types or Activity Streams
Client and Service should expect to recieve data in any of the following formats:
[ string uri ] || string uri
[ string uri ] || string uri
[ string uri ] || string uri
Client and Service should expect to recieve data in the form of a string containing a fully formed URI