More .com changes

This commit is contained in:
Leonardo Murillo 2015-03-25 13:05:10 -06:00
parent c3c1d4a5ae
commit d1d183e190
6 changed files with 11 additions and 11 deletions

View file

@ -6,7 +6,7 @@
{ {
"name": "access_token", "name": "access_token",
"label": "Access Token", "label": "Access Token",
"help": "This is an access token generated on the <a href='https://metaverse.highfidelity.io/user/security' target='_blank'>My Security</a> page of your High Fidelity account.<br/>Generate a token with the 'domains' scope and paste it here.<br/>This is required to associate this domain-server with a domain in your account." "help": "This is an access token generated on the <a href='https://metaverse.highfidelity.com/user/security' target='_blank'>My Security</a> page of your High Fidelity account.<br/>Generate a token with the 'domains' scope and paste it here.<br/>This is required to associate this domain-server with a domain in your account."
}, },
{ {
"name": "id", "name": "id",
@ -30,7 +30,7 @@
}, },
{ {
"value": "disabled", "value": "disabled",
"label": "None: use the network information I have entered for this domain at metaverse.highfidelity.io" "label": "None: use the network information I have entered for this domain at metaverse.highfidelity.com"
} }
] ]
}, },

View file

@ -652,7 +652,7 @@ function chooseFromHighFidelityDomains(clickedButton) {
clickedButton.attr('disabled', 'disabled') clickedButton.attr('disabled', 'disabled')
// get a list of user domains from data-web // get a list of user domains from data-web
data_web_domains_url = "https://metaverse.highfidelity.io/api/v1/domains?access_token=" data_web_domains_url = "https://metaverse.highfidelity.com/api/v1/domains?access_token="
$.getJSON(data_web_domains_url + Settings.initialValues.metaverse.access_token, function(data){ $.getJSON(data_web_domains_url + Settings.initialValues.metaverse.access_token, function(data){
modal_buttons = { modal_buttons = {
@ -682,7 +682,7 @@ function chooseFromHighFidelityDomains(clickedButton) {
modal_buttons["success"] = { modal_buttons["success"] = {
label: 'Create new domain', label: 'Create new domain',
callback: function() { callback: function() {
window.open("https://metaverse.highfidelity.io/user/domains", '_blank'); window.open("https://metaverse.highfidelity.com/user/domains", '_blank');
} }
} }
modal_body = "<p>You do not have any domains in your High Fidelity account." + modal_body = "<p>You do not have any domains in your High Fidelity account." +
@ -708,4 +708,4 @@ function chooseFromHighFidelityDomains(clickedButton) {
title: "Access token required" title: "Access token required"
}) })
} }
} }

View file

@ -130,7 +130,7 @@ var importingSVOTextOverlay = Overlays.addOverlay("text", {
visible: false, visible: false,
}); });
var MARKETPLACE_URL = "https://metaverse.highfidelity.io/marketplace"; var MARKETPLACE_URL = "https://metaverse.highfidelity.com/marketplace";
var marketplaceWindow = new WebWindow('Marketplace', MARKETPLACE_URL, 900, 700, false); var marketplaceWindow = new WebWindow('Marketplace', MARKETPLACE_URL, 900, 700, false);
marketplaceWindow.setVisible(false); marketplaceWindow.setVisible(false);

View file

@ -21,8 +21,8 @@ modelUploader = (function () {
//svoBuffer, //svoBuffer,
mapping, mapping,
geometry, geometry,
API_URL = "https://metaverse.highfidelity.io/api/v1/models", API_URL = "https://metaverse.highfidelity.com/api/v1/models",
MODEL_URL = "http://public.highfidelity.io/models/content", MODEL_URL = "http://public.highfidelity.com/models/content",
NAME_FIELD = "name", NAME_FIELD = "name",
SCALE_FIELD = "scale", SCALE_FIELD = "scale",
FILENAME_FIELD = "filename", FILENAME_FIELD = "filename",
@ -690,4 +690,4 @@ modelUploader = (function () {
}; };
return that; return that;
}()); }());

View file

@ -158,7 +158,7 @@ var places = {};
function changeLobbyTextures() { function changeLobbyTextures() {
var req = new XMLHttpRequest(); var req = new XMLHttpRequest();
req.open("GET", "https://metaverse.highfidelity.io/api/v1/places?limit=21", false); req.open("GET", "https://metaverse.highfidelity.com/api/v1/places?limit=21", false);
req.send(); req.send();
places = JSON.parse(req.responseText).data.places; places = JSON.parse(req.responseText).data.places;

View file

@ -34,7 +34,7 @@ var usersWindow = (function () {
usersOnline, // Raw users data usersOnline, // Raw users data
linesOfUsers = [], // Array of indexes pointing into usersOnline linesOfUsers = [], // Array of indexes pointing into usersOnline
API_URL = "https://metaverse.highfidelity.io/api/v1/users?status=online", API_URL = "https://metaverse.highfidelity.com/api/v1/users?status=online",
HTTP_GET_TIMEOUT = 60000, // ms = 1 minute HTTP_GET_TIMEOUT = 60000, // ms = 1 minute
usersRequest, usersRequest,
processUsers, processUsers,