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 B2347E8B3 for ; Mon, 11 Feb 2013 11:12:24 +0000 (UTC) Received: (qmail 51901 invoked by uid 500); 11 Feb 2013 11:12:23 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 51324 invoked by uid 500); 11 Feb 2013 11:12:22 -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 48448 invoked by uid 99); 11 Feb 2013 11:12: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; Mon, 11 Feb 2013 11:12:15 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1CBBB3C760; Mon, 11 Feb 2013 11:12:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jan@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [18/50] [abbrv] git commit: remove whitespace from log entries Message-Id: <20130211111215.1CBBB3C760@tyr.zones.apache.org> Date: Mon, 11 Feb 2013 11:12:15 +0000 (UTC) remove whitespace from log entries Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/1edcd9ee Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/1edcd9ee Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/1edcd9ee Branch: refs/heads/fauxton Commit: 1edcd9ee3b75c1530bf1c5498d1dafb566f5cb5c Parents: 11f321f Author: Simon Metson Authored: Fri Jan 25 14:14:30 2013 +0100 Committer: Simon Metson Committed: Sat Jan 26 13:27:30 2013 +0100 ---------------------------------------------------------------------- .../app/addons/logs/templates/dashboard.html | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/1edcd9ee/src/fauxton/app/addons/logs/templates/dashboard.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/logs/templates/dashboard.html b/src/fauxton/app/addons/logs/templates/dashboard.html index 955c75c..dddad9a 100644 --- a/src/fauxton/app/addons/logs/templates/dashboard.html +++ b/src/fauxton/app/addons/logs/templates/dashboard.html @@ -13,16 +13,16 @@ <% _.each(logs, function (log) { %> - <%= log.date %> + <%= log.date.replace(/ /g,'') %> - <%= log.log_level %> + <%= log.log_level.replace(/ /g,'') %> - <%= log.pid %> + <%= _.escape(log.pid) %> - <%= log.args %> + <%= _.escape(log.args) %> <% }); %>