Confirmed users
1,136
edits
(→Q&A: removed batching requests) |
(Adding more info) |
||
| Line 1: | Line 1: | ||
= Server = | |||
== Codebase == | |||
http://svn.mozilla.org/projects/pfs2/trunk/ | |||
== Schema == | == Schema == | ||
* [http://svn.mozilla.org/addons/trunk/site/app/config/sql/remora.sql Checked in here] | * [http://svn.mozilla.org/addons/trunk/site/app/config/sql/remora.sql Checked in here] | ||
| Line 4: | Line 8: | ||
* mimes | * mimes | ||
* plugins_mimes | * plugins_mimes | ||
== Environments == | |||
Dev - local | |||
== Request == | == Request == | ||
| Line 24: | Line 31: | ||
appABI=x86-gcc3 | appABI=x86-gcc3 | ||
locale=en-US | locale=en-US | ||
PFS 2 Example call - GET to: | |||
http://pfs2.mozilla.org/?appID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}&mimetype=application/x-shockwave-flash&appVersion=2008052906&appRelease=3.0&clientOS=Windows%20NT%205.1&chromeLocale=en-US&callback=later | |||
* callback - optional, makes the output JSONP instead of JSON | |||
== Response == | == Response == | ||
| Line 54: | Line 66: | ||
} ] | } ] | ||
= | = Client = | ||
* | == Codebases == | ||
* | * [http://svn.mozilla.org/projects/mozilla.com/ mozilla.com] | ||
* | * [http://github.com/ozten/Perfidies-of-the-Web/tree Perfidies of the Web] | ||
** | |||
** | Perfidies is the PFS2 client. It will be usable for plugin page, web badges, etc. | ||
* | |||
** | == PFS2 inputs == | ||
* App ID is hardcoded in the JS. We'll update this script when a new appId is available. Firefox always uses the same app id and it won't change any time soon. | |||
* appID={ec8030f7-c20a-464f-9b0e-13a3a9e97384} | |||
* mimetype - navigator.plugins[x].type roughly | |||
* appVersion = navigator.buildid roughly | |||
* appRelease = navigator.appVersion roughly | |||
* clientOS = navigator.oscpu roughly | |||
* chromeLocale = navigator.language | |||
== Environments == | |||
* dev - I have a dev instance up | |||
* trunk - https://www-trunk.stage.mozilla.com/ | |||
* stage - https://www.authstage.mozilla.com/ | |||
* prod - http://www.mozilla.com/ | |||