Skip to content
Snippets Groups Projects
Commit fd1ea892 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

rp and ip now use 'browserid.org' domain

parent e8c6faf8
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ exports.setup = function(server) {
var week = (7 * 24 * 60 * 60 * 1000);
server.use(sessions({
secret: COOKIE_SECRET,
session_key: "eyedeeme_state",
session_key: "browserid_state",
path: '/'
}));
}
......@@ -3,9 +3,9 @@
<XRD xmlns='http://docs.oasis-open.org/ns/xri/xrd-1.0'
xmlns:hm='http://host-meta.net/xrd/1.0'>
<hm:Host xmlns='http://host-meta.net/xrd/1.0'>eyedee.me</hm:Host>
<hm:Host xmlns='http://host-meta.net/xrd/1.0'>browserid.org</hm:Host>
<Link rel='lrdd' template='https://eyedee.me/users/{uri}.xml'></Link>
<Link rel='lrdd' template='https://browserid.org/users/{uri}.xml'></Link>
<Link rel='other' value='something-different'></Link>
</XRD>
......@@ -120,7 +120,7 @@
url: '/wsapi/set_key?email=' + encodeURIComponent(email) + '&pubkey=' + encodeURIComponent(keypair.pub),
success: function() {
// update emails list and commit to local storage, then go do the next email
persistAddressAndKeyPair(email, keypair, "eyedee.me:443");
persistAddressAndKeyPair(email, keypair, "browserid.org:443");
addNextEmail();
},
error: function() {
......@@ -297,9 +297,9 @@
// 'pending' - a registration is in progress
// 'noRegistration' - no registration is in progress
if (status === 'complete') {
// this is a secondary registration from eyedee.me, persist
// this is a secondary registration from browserid.org, persist
// email, keypair, and that fact
persistAddressAndKeyPair(email, keypair, "eyedee.me:443");
persistAddressAndKeyPair(email, keypair, "browserid.org:443");
// and tell the user that everything is really quite awesome.
runConfirmedEmailDialog(email, onsuccess, onerror);
......
......@@ -7,7 +7,7 @@ if (!navigator.id) {
if (!navigator.id.getVerifiedEmail || navigator.id._getVerifiedEmailIsShimmed)
{
var ipServer = "https://eyedee.me";
var ipServer = "https://browserid.org";
// local embedded copy of jschannel: http://github.com/mozilla/jschannel
var Channel = (function() {
......
......@@ -79,7 +79,7 @@ a:hover { border-bottom: 2px solid black ; }
</body>
<script src="jquery-min.js"></script>
<script src="https://eyedee.me/include.js"></script>
<script src="https://browserid.org/include.js"></script>
<script>
function dumpObject(obj) {
var htmlRep = "";
......
......@@ -81,7 +81,7 @@ a:hover { border-bottom: 2px solid black ; }
</body>
<script src="jquery-min.js"></script>
<script src="https://eyedee.me/include.js"></script>
<script src="https://browserid.org/include.js"></script>
<script>
function dumpObject(obj) {
var htmlRep = "";
......
......@@ -143,7 +143,7 @@ var dirs = [
path: path.join(__dirname, "rp")
},
{
name: "https://eyedee.me",
name: "https://browserid.org",
path: path.join(__dirname, "authority")
}
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment