User:Thunder: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(→People) |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[User:Thunder/Distribution Customizations Feature Proposal]] | == Firefox 3 == | ||
[[ | |||
[[User:Thunder/Distribution Customizations Feature Proposal|Firefox 3.0 distribution customizations feature proposal]] | |||
== Weave == | |||
[[User:Thunder/Incremental_Sync|Incremental Sync]] | |||
== People == | |||
Here's some sample people data. To use it, copy the whole thing (including the JS) and paste it into the error console: | |||
<pre> | |||
Components.utils.import("resource://people/modules/people.js"); | |||
People.add( | |||
[{ | |||
guid: "guid0", | |||
schema: "http://labs.mozilla.com/schemas/people/1", | |||
displayName: "The Dolskenator", | |||
givenName: "Justin", | |||
familyName: "Dolske", | |||
emails: [ | |||
{value: "dolske@mozilla.com"} | |||
], | |||
documents: { | |||
default: { | |||
moz_schema: "http://portablecontacts.net/draft-spec.html", | |||
displayName: "The Dolskenator", | |||
name: { | |||
givenName: "Justin", | |||
familyName: "Dolske" | |||
}, | |||
emails: [ | |||
{value: "dolske@mozilla.com"} | |||
] | |||
} | |||
} | |||
}, | |||
{ | |||
guid: "guid1", | |||
schema: "http://labs.mozilla.com/schemas/people/1", | |||
displayName: "Dan Mills", | |||
givenName: "Dan", | |||
familyName: "Mills", | |||
emails: [ | |||
{value: "thunder@mozilla.com"} | |||
], | |||
documents: { | |||
default: { | |||
moz_schema: "http://portablecontacts.net/draft-spec.html", | |||
displayName: "Dan Mills", | |||
name: { | |||
givenName: "Dan", | |||
familyName: "Mills" | |||
}, | |||
emails: [ | |||
{value: "thunder@mozilla.com"} | |||
] | |||
} | |||
} | |||
}, | |||
{ | |||
guid: "guid2", | |||
schema: "http://labs.mozilla.com/schemas/people/1", | |||
displayName: "Myk Melez", | |||
givenName: "Myk", | |||
familyName: "Melez", | |||
emails: [ | |||
{value: "myk@mozilla.com"} | |||
], | |||
documents: { | |||
default: { | |||
moz_schema: "http://portablecontacts.net/draft-spec.html", | |||
displayName: "Myk Melez", | |||
name: { | |||
givenName: "Myk", | |||
familyName: "Melez" | |||
}, | |||
emails: [ | |||
{value: "myk@mozilla.com"} | |||
] | |||
} | |||
} | |||
}, | |||
{ | |||
guid: "guid3", | |||
schema: "http://labs.mozilla.com/schemas/people/1", | |||
displayName: "Anant", | |||
givenName: "Anant", | |||
familyName: "Narayanan", | |||
emails: [ | |||
{value: "anant@mozilla.com"} | |||
], | |||
documents: { | |||
default: { | |||
moz_schema: "http://portablecontacts.net/draft-spec.html", | |||
displayName: "Anant", | |||
name: { | |||
givenName: "Anant", | |||
familyName: "Narayanan" | |||
}, | |||
emails: [ | |||
{value: "anant@mozilla.com"} | |||
] | |||
} | |||
} | |||
}, | |||
{ | |||
guid: "guid4", | |||
schema: "http://labs.mozilla.com/schemas/people/1", | |||
displayName: "Fred", | |||
emails: [ | |||
{value: "fred@example.com"}, | |||
{value: "fred2@example.com"} | |||
], | |||
documents: { | |||
default: { | |||
moz_schema: "http://portablecontacts.net/draft-spec.html", | |||
displayName: "Fred", | |||
emails: [ | |||
{value: "fred@example.com"}, | |||
{value: "fred2@example.com"} | |||
] | |||
} | |||
} | |||
}, | |||
{ | |||
guid: "guid5", | |||
schema: "http://labs.mozilla.com/schemas/people/1", | |||
displayName: "Barney", | |||
documents: { | |||
default: { | |||
moz_schema: "http://portablecontacts.net/draft-spec.html", | |||
displayName: "Barney" | |||
} | |||
} | |||
}]); | |||
</pre> | |||
To then verify the contacts were added correctly, run these in the error console: | |||
Find all contacts: | |||
<pre> | |||
Components.utils.import("resource://people/modules/people.js"); | |||
People.find({}); | |||
</pre> | |||
Find all contacts and output raw data as JSON: | |||
<pre> | |||
Components.utils.import("resource://people/modules/people.js"); | |||
JSON.stringify(People.find({})); | |||
</pre> | |||
Find all contacts with display name "Barney" | |||
<pre> | |||
Components.utils.import("resource://people/modules/people.js"); | |||
JSON.stringify(People.find({displayName: "Barney"})); | |||
</pre> | |||
Find all contacts with "thunder@mozilla.com" emails: | |||
<pre> | |||
Components.utils.import("resource://people/modules/people.js"); | |||
JSON.stringify(People.find({emails: ["thunder@mozilla.com"]})); | |||
</pre> |
Latest revision as of 00:16, 7 August 2009
Firefox 3
Firefox 3.0 distribution customizations feature proposal
Weave
People
Here's some sample people data. To use it, copy the whole thing (including the JS) and paste it into the error console:
Components.utils.import("resource://people/modules/people.js"); People.add( [{ guid: "guid0", schema: "http://labs.mozilla.com/schemas/people/1", displayName: "The Dolskenator", givenName: "Justin", familyName: "Dolske", emails: [ {value: "dolske@mozilla.com"} ], documents: { default: { moz_schema: "http://portablecontacts.net/draft-spec.html", displayName: "The Dolskenator", name: { givenName: "Justin", familyName: "Dolske" }, emails: [ {value: "dolske@mozilla.com"} ] } } }, { guid: "guid1", schema: "http://labs.mozilla.com/schemas/people/1", displayName: "Dan Mills", givenName: "Dan", familyName: "Mills", emails: [ {value: "thunder@mozilla.com"} ], documents: { default: { moz_schema: "http://portablecontacts.net/draft-spec.html", displayName: "Dan Mills", name: { givenName: "Dan", familyName: "Mills" }, emails: [ {value: "thunder@mozilla.com"} ] } } }, { guid: "guid2", schema: "http://labs.mozilla.com/schemas/people/1", displayName: "Myk Melez", givenName: "Myk", familyName: "Melez", emails: [ {value: "myk@mozilla.com"} ], documents: { default: { moz_schema: "http://portablecontacts.net/draft-spec.html", displayName: "Myk Melez", name: { givenName: "Myk", familyName: "Melez" }, emails: [ {value: "myk@mozilla.com"} ] } } }, { guid: "guid3", schema: "http://labs.mozilla.com/schemas/people/1", displayName: "Anant", givenName: "Anant", familyName: "Narayanan", emails: [ {value: "anant@mozilla.com"} ], documents: { default: { moz_schema: "http://portablecontacts.net/draft-spec.html", displayName: "Anant", name: { givenName: "Anant", familyName: "Narayanan" }, emails: [ {value: "anant@mozilla.com"} ] } } }, { guid: "guid4", schema: "http://labs.mozilla.com/schemas/people/1", displayName: "Fred", emails: [ {value: "fred@example.com"}, {value: "fred2@example.com"} ], documents: { default: { moz_schema: "http://portablecontacts.net/draft-spec.html", displayName: "Fred", emails: [ {value: "fred@example.com"}, {value: "fred2@example.com"} ] } } }, { guid: "guid5", schema: "http://labs.mozilla.com/schemas/people/1", displayName: "Barney", documents: { default: { moz_schema: "http://portablecontacts.net/draft-spec.html", displayName: "Barney" } } }]);
To then verify the contacts were added correctly, run these in the error console:
Find all contacts:
Components.utils.import("resource://people/modules/people.js"); People.find({});
Find all contacts and output raw data as JSON:
Components.utils.import("resource://people/modules/people.js"); JSON.stringify(People.find({}));
Find all contacts with display name "Barney"
Components.utils.import("resource://people/modules/people.js"); JSON.stringify(People.find({displayName: "Barney"}));
Find all contacts with "thunder@mozilla.com" emails:
Components.utils.import("resource://people/modules/people.js"); JSON.stringify(People.find({emails: ["thunder@mozilla.com"]}));