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 5C4FB431FBC for ; Wed, 16 May 2012 00:09:32 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[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 i9ctYFMjIdmj for ; Wed, 16 May 2012 00:09:31 -0700 (PDT) Received: from mail-qa0-f46.google.com (mail-qa0-f46.google.com [209.85.216.46]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 659DE431FB6 for ; Wed, 16 May 2012 00:09:31 -0700 (PDT) Received: by qadb17 with SMTP id b17so5395627qad.5 for ; Wed, 16 May 2012 00:09:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:in-reply-to:references:user-agent:date:message-id :mime-version:content-type:x-gm-message-state; bh=PmZQGjmIfdBpweGr8p+sBiDeAwrlFbUgUcCh7o9LByo=; b=OG1KmFzLUYJxySOtsEEtGyh0b0nMmQhAb1h4JTUgS1ai4/wYVDAeuCzQ+q/pLNqIII ZWVz+FC6p8CI9D5Oy7lXXm2SpLajdXZWXEipwNouCoidS9wr2uFt8LmLzZapqvrtzHvx 7ektQEKvAdALCd/tuRnmDCrfQY3VIB2cpDIUoaX5AEpp+XvntMoP4cwBsuX5ryG6MH1k qF6aQy2WT9pewxVHG0ob4eOJRC8jQAynPAJwosz+iL0nrLpejdiq/sAzhB8l7iqg1W0O MWrR1/caw7pcU86bZA09AbpZGMjEZ6M5Y9tkrHlw+99ogDYTc/JfgBIfpYSGX4XFKONb yiXQ== Received: by 10.229.137.83 with SMTP id v19mr878647qct.95.1337152170660; Wed, 16 May 2012 00:09:30 -0700 (PDT) Received: from localhost (nikula.org. [92.243.24.172]) by mx.google.com with ESMTPS id fk8sm7414848qab.11.2012.05.16.00.09.29 (version=SSLv3 cipher=OTHER); Wed, 16 May 2012 00:09:30 -0700 (PDT) From: Jani Nikula To: Tomi Ollila , notmuch@notmuchmail.org Subject: Re: [PATCH 1/3] NEWS: Insert markdown formatting commands in 0.13 section text In-Reply-To: <1337146745-21525-1-git-send-email-tomi.ollila@iki.fi> References: <1337146745-21525-1-git-send-email-tomi.ollila@iki.fi> User-Agent: Notmuch/0.13+2~gb8fc137 (http://notmuchmail.org) Emacs/23.1.1 (i686-pc-linux-gnu) Date: Wed, 16 May 2012 07:09:27 +0000 Message-ID: <874nrgbo0o.fsf@nikula.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Gm-Message-State: ALoCoQlrjsvyAZgCdGe++OJXST/nH9vNgQQ12+BjhibMbNh3wcnJ9MNmDJ4BonONCCLfV8Fo6XJ/ 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: Wed, 16 May 2012 07:09:32 -0000 Tomi Ollila writes: > NEWS entries in section 0.13 is brought consistent with rest of the > NEWS file. > --- > NEWS | 38 +++++++++++++++++++------------------- > 1 files changed, 19 insertions(+), 19 deletions(-) > > diff --git a/NEWS b/NEWS > index 69a7203..d841a4c 100644 > --- a/NEWS > +++ b/NEWS > @@ -6,19 +6,19 @@ Command-Line Interface > > Reply to sender > > - "notmuch reply" has gained the ability to create a reply template > + `notmuch reply` has gained the ability to create a reply template > for replying just to the sender of the message, in addition to reply > to all. The feature is available through the new command line option > - --reply-to=(all|sender). > + `--reply-to=(all|sender)`. The whole "reply to sender" section should go. It's old news, for 0.12. Jani. > > JSON reply format > > - "notmuch reply" can now produce JSON output that contains the headers > + `notmuch reply` can now produce JSON output that contains the headers > for a reply message and full information about the original message > begin replied to. This allows MUAs to create replies intelligently. > For example, an MUA that can parse HTML might quote HTML parts. > > - Calling notmuch reply with --format=json imposes the restriction that > + Calling notmuch reply with `--format=json` imposes the restriction that > only a single message is returned by the search, as replying to > multiple messages does not have a well-defined behavior. The default > retains its current behavior for multiple message replies. > @@ -26,24 +26,24 @@ JSON reply format > Tag exclusion > > Tags can be automatically excluded from search results by adding them > - to the new 'search.exclude_tags' option in the Notmuch config file. > + to the new `search.exclude_tags` option in the Notmuch config file. > > This behaviour can be overridden by explicitly including an excluded > tag in your query, for example: > > - notmuch search $your_query and tag:$excluded_tag > + notmuch search $your_query and tag:$excluded_tag > > - Existing users will probably want to run "notmuch setup" again to add > + Existing users will probably want to run `notmuch setup` again to add > the new well-commented [search] section to the configuration file. > > For new configurations, accepting the default setting will cause the > tags "deleted" and "spam" to be excluded, equivalent to running: > > - notmuch config set search.exclude_tags deleted spam > + notmuch config set search.exclude_tags deleted spam > > Raw show format changes > > - The output of show --format=raw has changed for multipart and > + The output of show `--format=raw` has changed for multipart and > message parts. Previously, the output was a mash of somewhat-parsed > headers and transfer-decoded bodies. Now, such parts are reproduced > faithfully from the original source. Message parts (which includes > @@ -54,7 +54,7 @@ Raw show format changes > > Listing configuration items > > - The new "config list" command prints out all configuration items and > + The new `config list` command prints out all configuration items and > their values. > > Emacs Interface > @@ -64,7 +64,7 @@ Changes to tagging interface > > The user-facing tagging functions in the Emacs interface have been > normalized across all notmuch modes. The tagging functions are now > - 'notmuch-search-tag' in search-mode, and 'notmuch-show-tag' in > + notmuch-search-tag in search-mode, and notmuch-show-tag in > show-mode. They accept a string representing a single tag change, > or a list of tag changes. See 'M-x describe-function notmuch-tag' > for more information. > @@ -83,11 +83,11 @@ Reply improvement using the JSON format > New add-on tool: notmuch-mutt > ----------------------------- > > -The new contrib/ tool "notmuch-mutt" provides Notmuch integration for > +The new contrib/ tool `notmuch-mutt` provides Notmuch integration for > the Mutt mail user agent. Using it, Mutt users can perform mail > search, thread reconstruction, and mail tagging/untagging without > leaving Mutt. notmuch-mutt, formerly distributed under the name > -"mutt-notmuch" by Stefano Zacchiroli, will be maintained as a notmuch > +`mutt-notmuch` by Stefano Zacchiroli, will be maintained as a notmuch > contrib/ from now on. > > Library changes > @@ -96,18 +96,18 @@ Library changes > The API changes detailed below break binary and source compatibility, > so libnotmuch has been bumped to version 3.0.0. > > -The function notmuch_database_close has been split into > -notmuch_database_close and notmuch_database_destroy > +The function `notmuch_database_close` has been split into > +`notmuch_database_close` and `notmuch_database_destroy` > > This makes it possible for long running programs to close the xapian > database and thus release the lock associated with it without > destroying the data structures obtained from it. > > -notmuch_database_open, notmuch_database_create, and > -notmuch_database_get_directory now return errors > +`notmuch_database_open`, `notmuch_database_create`, and > +`notmuch_database_get_directory` now return errors > > The type signatures of these functions have changed so that the > - functions now return a notmuch_status_t and take an out-argument for > + functions now return a `notmuch_status_t` and take an out-argument for > returning the new database object or directory object. > > go bindings changes > @@ -115,7 +115,7 @@ go bindings changes > > Go 1 compatibility > > - The go bindings and the notmuch-addrlookup utility are now > + The go bindings and the `notmuch-addrlookup` utility are now > compatible with go 1. > > Notmuch 0.12 (2012-03-20) > -- > 1.7.1 > > _______________________________________________ > notmuch mailing list > notmuch@notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch