frontend: prefix cdn and origin with commento
This commit is contained in:
parent
ee65be7bac
commit
d4f617a703
@ -46,8 +46,8 @@ func initStaticRouter(router *mux.Router) error {
|
||||
|
||||
prefix := ""
|
||||
if dir == "js" {
|
||||
prefix = "window.origin='" + os.Getenv("ORIGIN") + "';\n"
|
||||
prefix += "window.cdn='" + os.Getenv("CDN_PREFIX") + "';\n"
|
||||
prefix = "window.commento_origin='" + os.Getenv("ORIGIN") + "';\n"
|
||||
prefix += "window.commento_cdn='" + os.Getenv("CDN_PREFIX") + "';\n"
|
||||
}
|
||||
|
||||
asset[p] = prefix + string(contents);
|
||||
|
@ -42,7 +42,7 @@
|
||||
}
|
||||
|
||||
global.buttonDisable("#add-site-button");
|
||||
global.post(global.origin + "/api/domain/new", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/domain/new", json, function(resp) {
|
||||
global.buttonEnable("#add-site-button");
|
||||
|
||||
$("#new-domain-name").val("");
|
||||
@ -69,7 +69,7 @@
|
||||
session: global.cookieGet("session"),
|
||||
};
|
||||
|
||||
global.post(global.origin + "/api/domain/list", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/domain/list", json, function(resp) {
|
||||
if (!resp.success) {
|
||||
global.globalErrorShow(resp.message);
|
||||
return;
|
||||
@ -111,7 +111,7 @@
|
||||
domain: domain,
|
||||
};
|
||||
|
||||
global.post(global.origin + "/api/domain/update", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/domain/update", json, function(resp) {
|
||||
if (callback !== undefined)
|
||||
callback(resp.success);
|
||||
|
||||
@ -130,7 +130,7 @@
|
||||
domain: domain,
|
||||
};
|
||||
|
||||
global.post(global.origin + "/api/domain/delete", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/domain/delete", json, function(resp) {
|
||||
if (!resp.success) {
|
||||
global.globalErrorShow(resp.message);
|
||||
return;
|
||||
|
@ -18,7 +18,7 @@
|
||||
}
|
||||
|
||||
global.buttonDisable("#disqus-import-button");
|
||||
global.post(global.origin + "/api/import/disqus", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/import/disqus", json, function(resp) {
|
||||
global.buttonEnable("#disqus-import-button");
|
||||
|
||||
if (!resp.success) {
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
var html = '' +
|
||||
'<div id="commento"></div>\n' +
|
||||
'<script src="' + window.cdn + '/js/commento.js"><\/script>\n' +
|
||||
'<script src="' + window.commento_cdn + '/js/commento.js"><\/script>\n' +
|
||||
'';
|
||||
|
||||
$("#code-div").text(html);
|
||||
|
@ -29,7 +29,7 @@
|
||||
if (idx == -1) {
|
||||
data.domains[data.cd].moderators.push({"email": email, "timeAgo": "just now"});
|
||||
global.buttonDisable("#new-mod-button");
|
||||
global.post(global.origin + "/api/domain/moderator/new", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/domain/moderator/new", json, function(resp) {
|
||||
global.buttonEnable("#new-mod-button");
|
||||
|
||||
if (!resp.success) {
|
||||
@ -68,7 +68,7 @@
|
||||
|
||||
if (idx != -1) {
|
||||
data.domains[data.cd].moderators.splice(idx, 1);
|
||||
global.post(global.origin + "/api/domain/moderator/delete", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/domain/moderator/delete", json, function(resp) {
|
||||
if (!resp.success) {
|
||||
global.globalErrorShow(resp.message);
|
||||
return
|
||||
|
@ -43,7 +43,7 @@
|
||||
}
|
||||
|
||||
$(".view").hide();
|
||||
post(global.origin + "/api/domain/statistics", json, function(resp) {
|
||||
post(global.commento_origin + "/api/domain/statistics", json, function(resp) {
|
||||
$("#statistics-view").show();
|
||||
|
||||
if (!resp.success) {
|
||||
|
@ -57,7 +57,7 @@
|
||||
};
|
||||
|
||||
global.buttonDisable("#login-button");
|
||||
global.post(global.origin + "/api/owner/login", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/owner/login", json, function(resp) {
|
||||
global.buttonEnable("#login-button");
|
||||
|
||||
if (!resp.success) {
|
||||
|
@ -6,7 +6,7 @@
|
||||
"session": global.cookieGet("session"),
|
||||
};
|
||||
|
||||
global.post(global.origin + "/api/owner/self", json, function(resp) {
|
||||
global.post(global.commento_origin + "/api/owner/self", json, function(resp) {
|
||||
if (!resp.success || !resp.loggedIn) {
|
||||
document.location = "/login";
|
||||
return;
|
||||
|
@ -25,7 +25,7 @@
|
||||
};
|
||||
|
||||
global.buttonDisable("#signup-button");
|
||||
post(global.origin + "/api/owner/new", json, function(resp) {
|
||||
post(global.commento_origin + "/api/owner/new", json, function(resp) {
|
||||
global.buttonEnable("#signup-button")
|
||||
|
||||
if (!resp.success) {
|
||||
|
Loading…
Reference in New Issue
Block a user