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 7EFC0EA23 for ; Mon, 11 Feb 2013 13:51:19 +0000 (UTC) Received: (qmail 63441 invoked by uid 500); 11 Feb 2013 13:51:18 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 63359 invoked by uid 500); 11 Feb 2013 13:51:18 -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 63042 invoked by uid 99); 11 Feb 2013 13:51:16 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2013 13:51:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 79AC53C810; Mon, 11 Feb 2013 13:51:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jhs@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [18/19] git commit: Undo changes to unrelated code Message-Id: <20130211135116.79AC53C810@tyr.zones.apache.org> Date: Mon, 11 Feb 2013 13:51:16 +0000 (UTC) Undo changes to unrelated code Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/663792c2 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/663792c2 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/663792c2 Branch: refs/heads/nodejs_couchdb Commit: 663792c23a4f3265e88e2f91ae0613e5adcf8314 Parents: 7b59667 Author: Jason Smith (work) Authored: Fri Feb 8 11:31:18 2013 +0000 Committer: Jason Smith (work) Committed: Fri Feb 8 11:31:18 2013 +0000 ---------------------------------------------------------------------- share/www/verify_install.html | 2 -- src/ibrowse/ibrowse_http_client.erl | 7 ------- 2 files changed, 0 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/663792c2/share/www/verify_install.html ---------------------------------------------------------------------- diff --git a/share/www/verify_install.html b/share/www/verify_install.html index ce85c03..7e3a7a7 100644 --- a/share/www/verify_install.html +++ b/share/www/verify_install.html @@ -75,8 +75,6 @@ specific language governing permissions and limitations under the License. // temporary view var resp = db.query(function(doc) { - if(doc.a) - debugger if(doc.a) { emit(doc.a, doc.a); } http://git-wip-us.apache.org/repos/asf/couchdb/blob/663792c2/src/ibrowse/ibrowse_http_client.erl ---------------------------------------------------------------------- diff --git a/src/ibrowse/ibrowse_http_client.erl b/src/ibrowse/ibrowse_http_client.erl index 5acf52f..c01385a 100644 --- a/src/ibrowse/ibrowse_http_client.erl +++ b/src/ibrowse/ibrowse_http_client.erl @@ -244,13 +244,6 @@ handle_info({trace, Bool}, State) -> put(my_trace_flag, Bool), {noreply, State}; -handle_info({take_stream, Pid}, #state{socket=Socket, reply_buffer=Body}=State) -> - io:format("Send socket ~p to ~p\n", [Socket, Pid]), - io:format(" rep=~p: ~p\n", [State#state.rep_buf_size, State#state.reply_buffer]), - gen_tcp:controlling_process(Socket, Pid), - catch Pid ! {permission, Socket, Body}, - {noreply, State}; - handle_info(Info, State) -> io:format("Unknown message recvd for ~1000.p:~1000.p -> ~p~n", [State#state.host, State#state.port, Info]),