Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions mds/code/basic/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/blockscan/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
6 changes: 5 additions & 1 deletion mds/code/bonds/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ var MDS = {

MDS.log("MDS FILEHOST : https://"+host+":"+port+"/");

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/bridge/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
6 changes: 5 additions & 1 deletion mds/code/cevt/payment/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ var MDS = {

MDS.log("MDS FILEHOST : https://"+host+":"+port+"/");

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
6 changes: 5 additions & 1 deletion mds/code/cevt/terminal/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ var MDS = {

MDS.log("MDS FILEHOST : https://"+host+":"+port+"/");

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/chainmail/miniweb/libs/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
6 changes: 5 additions & 1 deletion mds/code/chatter/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ var MDS = {

MDS.log("MDS FILEHOST : https://"+host+":"+port+"/");

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/coincheck/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
12 changes: 10 additions & 2 deletions mds/code/dexxed/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ var MDS = {
//The ports..
var mainport = port+1;

MDS.filehost = "https://"+host+":"+port+"/";
if(port == 0){
MDS.filehost = "https://"+host+"/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
}
MDS.log("MDS FILEHOST : "+MDS.filehost);

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/ethwallettest/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
6 changes: 5 additions & 1 deletion mds/code/files/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ var MDS = {

MDS.log("MDS FILEHOST : https://"+host+":"+port+"/");

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
6 changes: 5 additions & 1 deletion mds/code/htlc/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ var MDS = {

MDS.log("MDS FILEHOST : https://"+host+":"+port+"/");

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
12 changes: 10 additions & 2 deletions mds/code/htlc/rescue/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ var MDS = {
//The ports..
var mainport = port+1;

MDS.filehost = "https://"+host+":"+port+"/";
if(port == 0){
MDS.filehost = "https://"+host+"/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
}
MDS.log("MDS FILEHOST : "+MDS.filehost);

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/linux/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
12 changes: 10 additions & 2 deletions mds/code/lotto/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ var MDS = {
//The ports..
var mainport = port+1;

MDS.filehost = "https://"+host+":"+port+"/";
if(port == 0){
MDS.filehost = "https://"+host+"/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
}
MDS.log("MDS FILEHOST : "+MDS.filehost);

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/maxchat/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
6 changes: 5 additions & 1 deletion mds/code/maxsolo/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ var MDS = {

MDS.log("MDS FILEHOST : https://"+host+":"+port+"/");

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/mdsapi/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
10 changes: 8 additions & 2 deletions mds/code/minifs/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,14 @@ var MDS = {
MDS.log("No MiniDAPP UID specified.. using test value");
}

MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
//Are we on a standard port (443/80)?
if(port == 0){
MDS.filehost = "https://"+host+"/";
MDS.mainhost = "https://"+host+"/mdscommand_/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
MDS.mainhost = "https://"+host+":"+port+"/mdscommand_/";
}
MDS.log("MDS HOST : "+MDS.filehost);

//Store this for poll messages
Expand Down
12 changes: 10 additions & 2 deletions mds/code/minihub/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ var MDS = {
//The ports..
var mainport = port+1;

MDS.filehost = "https://"+host+":"+port+"/";
if(port == 0){
MDS.filehost = "https://"+host+"/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
}
MDS.log("MDS FILEHOST : "+MDS.filehost);

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
12 changes: 10 additions & 2 deletions mds/code/minimaide/js/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ var MDS = {
//The ports..
var mainport = port+1;

MDS.filehost = "https://"+host+":"+port+"/";
if(port == 0){
MDS.filehost = "https://"+host+"/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
}
MDS.log("MDS FILEHOST : "+MDS.filehost);

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
12 changes: 10 additions & 2 deletions mds/code/minimaide/mds.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ var MDS = {
//The ports..
var mainport = port+1;

MDS.filehost = "https://"+host+":"+port+"/";
if(port == 0){
MDS.filehost = "https://"+host+"/";
}else{
MDS.filehost = "https://"+host+":"+port+"/";
}
MDS.log("MDS FILEHOST : "+MDS.filehost);

MDS.mainhost = "https://"+host+":"+mainport+"/";
if(port == 0){
MDS.mainhost = "https://"+host+"/";
}else{
MDS.mainhost = "https://"+host+":"+mainport+"/";
}
MDS.log("MDS MAINHOST : "+MDS.mainhost);

//Store this for poll messages
Expand Down
Loading