Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 90B81F3B6 for ; Tue, 1 Oct 2013 13:47:11 +0000 (UTC) Received: (qmail 82689 invoked by uid 500); 1 Oct 2013 13:46:47 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 81671 invoked by uid 500); 1 Oct 2013 13:46:31 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 80558 invoked by uid 99); 1 Oct 2013 13:46:15 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Oct 2013 13:46:15 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 622C78AC84A; Tue, 1 Oct 2013 13:46:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: deathbear@apache.org To: commits@couchdb.apache.org Date: Tue, 01 Oct 2013 13:47:00 -0000 Message-Id: In-Reply-To: <088b553bf2854e5f8b45d967c847f1e2@git.apache.org> References: <088b553bf2854e5f8b45d967c847f1e2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [50/50] [abbrv] git commit: updated refs/heads/replicator-redesign to 066d69b Remove app.temphost Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/62f86842 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/62f86842 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/62f86842 Branch: refs/heads/replicator-redesign Commit: 62f86842bcdbdee2126716827e8155243e86cb1a Parents: 62e6dac Author: suelockwood Authored: Thu Sep 26 14:57:55 2013 -0400 Committer: suelockwood Committed: Mon Sep 30 16:25:47 2013 -0400 ---------------------------------------------------------------------- src/fauxton/app/addons/replication/views.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/62f86842/src/fauxton/app/addons/replication/views.js ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/replication/views.js b/src/fauxton/app/addons/replication/views.js index 3366937..6c504f1 100644 --- a/src/fauxton/app/addons/replication/views.js +++ b/src/fauxton/app/addons/replication/views.js @@ -24,7 +24,6 @@ function(app, FauxtonAPI, Components, replication) { intervalId: null }; - app.temphost ="http://deathbear.cloudant.com"; _.extend(Events, Backbone.Events); // NOTES: http://wiki.apache.org/couchdb/Replication @@ -189,7 +188,7 @@ function(app, FauxtonAPI, Components, replication) { setAuthHeaders: function(source,user,pass){ var basicHeader = new FauxtonAPI.session.createBasicAuthHeader(user,pass), json = {}; - json.url = app.temphost+"/"+source; + json.url = app.host+"/"+source; json.headers = { "Authorization": basicHeader.basicAuthHeader };