Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id AF38D429E4B for ; Sat, 26 Oct 2013 15:02:20 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 2.7 X-Spam-Level: ** X-Spam-Status: No, score=2.7 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, FREEMAIL_REPLY=2.499, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uxSLY-icyxKh for ; Sat, 26 Oct 2013 15:02:15 -0700 (PDT) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 6F3B5431FD9 for ; Sat, 26 Oct 2013 15:02:15 -0700 (PDT) Received: by mail-we0-f182.google.com with SMTP id t61so5284072wes.27 for ; Sat, 26 Oct 2013 15:02:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=TPIgMbDogaGpyeiEistt96R787EJo8xiJUBQyu1ssIE=; b=iW5J7XDSN0kwDzAosiepJwl4CnYiMfYaoLPXGJ1VgYwCcwysZ9Eemo7a77Pq1YtwJn Ot6Wn/zm42WgTXgxAPYFcTo/KKJrBndlLLBtTEVAS10dEAo8uShA3pTEKsGW6U+gNMAK 7aAfRqPsiSSR6pUcdqtCKyBThCbhYzICQW1jl8v7Q7qCkQNbLh5IpVWrDP1aztRH63Ul jFHyxS+GZAsPqwvHrhdAUsPa/5ClKuAdCarXbSEHIVaMyvvYUslfbzsloNDxvTimvnAe l8+FhUZKqLeFC76RHYtn8slts3xZb2bzYpvhBVgTuYtTvT+cZ9uGcbDmwDdNWhqs52bu 7cwQ== X-Received: by 10.180.108.82 with SMTP id hi18mr3407178wib.53.1382824931957; Sat, 26 Oct 2013 15:02:11 -0700 (PDT) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPSA id d10sm19857614wic.2.2013.10.26.15.02.11 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 26 Oct 2013 15:02:11 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH 0/4] rename pick to tree Date: Sat, 26 Oct 2013 23:02:04 +0100 Message-Id: <1382824928-3771-1-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Oct 2013 22:02:21 -0000 This is a non-screwed up (I hope) version of id:1382822481-26659-1-git-send-email-markwalters1009@gmail.com It renames pick to tree (usually called tree view in documentation). See the previous cover letter for comments and how I have split it. This time all tests pass at each stage on a fresh clone, and the actual move of the notmuch-pick.el file itself to notmuch-tree.el is also included. Best wishes Mark Mark Walters (4): contrib: pick: move lisp names from pick to tree pick: Change the test names and print out for pick tests pick: rename test outputs from pick to tree pick: rename test emacs-pick to emacs-tree contrib/notmuch-pick/notmuch-pick.el | 951 -------------------- contrib/notmuch-pick/notmuch-tree.el | 951 ++++++++++++++++++++ contrib/notmuch-pick/run-tests.sh | 4 +- contrib/notmuch-pick/test/emacs-pick | 210 ----- contrib/notmuch-pick/test/emacs-tree | 210 +++++ .../pick.expected-output/notmuch-pick-show-window | 40 - .../notmuch-pick-single-thread | 6 - .../pick.expected-output/notmuch-pick-tag-inbox | 53 -- .../notmuch-pick-tag-inbox-tagged | 53 -- .../notmuch-pick-tag-inbox-thread-tagged | 53 -- .../tree.expected-output/notmuch-tree-show-window | 40 + .../notmuch-tree-single-thread | 6 + .../tree.expected-output/notmuch-tree-tag-inbox | 53 ++ .../notmuch-tree-tag-inbox-tagged | 53 ++ .../notmuch-tree-tag-inbox-thread-tagged | 53 ++ 15 files changed, 1368 insertions(+), 1368 deletions(-) delete mode 100644 contrib/notmuch-pick/notmuch-pick.el create mode 100644 contrib/notmuch-pick/notmuch-tree.el delete mode 100755 contrib/notmuch-pick/test/emacs-pick create mode 100755 contrib/notmuch-pick/test/emacs-tree delete mode 100644 contrib/notmuch-pick/test/pick.expected-output/notmuch-pick-show-window delete mode 100644 contrib/notmuch-pick/test/pick.expected-output/notmuch-pick-single-thread delete mode 100644 contrib/notmuch-pick/test/pick.expected-output/notmuch-pick-tag-inbox delete mode 100644 contrib/notmuch-pick/test/pick.expected-output/notmuch-pick-tag-inbox-tagged delete mode 100644 contrib/notmuch-pick/test/pick.expected-output/notmuch-pick-tag-inbox-thread-tagged create mode 100644 contrib/notmuch-pick/test/tree.expected-output/notmuch-tree-show-window create mode 100644 contrib/notmuch-pick/test/tree.expected-output/notmuch-tree-single-thread create mode 100644 contrib/notmuch-pick/test/tree.expected-output/notmuch-tree-tag-inbox create mode 100644 contrib/notmuch-pick/test/tree.expected-output/notmuch-tree-tag-inbox-tagged create mode 100644 contrib/notmuch-pick/test/tree.expected-output/notmuch-tree-tag-inbox-thread-tagged -- 1.7.9.1