Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 80E5C200B54 for ; Thu, 28 Jul 2016 14:36:35 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7F507160A63; Thu, 28 Jul 2016 12:36:35 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C36E2160A85 for ; Thu, 28 Jul 2016 14:36:34 +0200 (CEST) Received: (qmail 21461 invoked by uid 500); 28 Jul 2016 12:36:34 -0000 Mailing-List: contact commits-help@yetus.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@yetus.apache.org Delivered-To: mailing list commits@yetus.apache.org Received: (qmail 21452 invoked by uid 99); 28 Jul 2016 12:36:33 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jul 2016 12:36:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D686AE0100; Thu, 28 Jul 2016 12:36:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sekikn@apache.org To: commits@yetus.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: yetus git commit: git hash 5a8383c32a0295dcf4c813d056433dc3f5009d17 Date: Thu, 28 Jul 2016 12:36:33 +0000 (UTC) archived-at: Thu, 28 Jul 2016 12:36:35 -0000 Repository: yetus Updated Branches: refs/heads/asf-site 1d0d8e96a -> f25b5e829 git hash 5a8383c32a0295dcf4c813d056433dc3f5009d17 Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/f25b5e82 Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/f25b5e82 Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/f25b5e82 Branch: refs/heads/asf-site Commit: f25b5e8293f8b332089b999ac374539c6287cdf0 Parents: 1d0d8e9 Author: Kengo Seki Authored: Thu Jul 28 12:36:16 2016 +0000 Committer: Kengo Seki Committed: Thu Jul 28 12:36:16 2016 +0000 ---------------------------------------------------------------------- .../in-progress/releasedocmaker/index.html | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/f25b5e82/documentation/in-progress/releasedocmaker/index.html ---------------------------------------------------------------------- diff --git a/documentation/in-progress/releasedocmaker/index.html b/documentation/in-progress/releasedocmaker/index.html index 0730e00..3bbb8a9 100644 --- a/documentation/in-progress/releasedocmaker/index.html +++ b/documentation/in-progress/releasedocmaker/index.html @@ -130,8 +130,11 @@
  • Changing the Header
  • Multiple Versions
  • Unreleased Dates
  • +
  • Sorted Output
  • +
  • Backward Incompatible Changes
  • Lint Mode
  • Index Mode
  • +
  • Release Version
  • Purpose

    @@ -226,11 +229,11 @@ remaining text

    Resolution Date-base Sort

    By default, releasedocmaker will sort the output based upon the resolution date of the issue starting with older resolutions. This is the same as giving these options:

    -
    $ releasedocmaker --sorttype=releasedate --sortorder=older
    +
    $ releasedocmaker.py --project falcon --version 0.6 --sorttype resolutiondate --sortorder older
     

    The order can be reversed so that newer issues appear on top by providing the ‘newer’ flag:

    -
    $ releasedocmaker --sorttype=releasedate --sortorder=newer
    +
    $ releasedocmaker.py --project falcon --version 0.6 --sorttype resolutiondate --sortorder newer
     

    In the case of multiple projects given on the command line, the projects will be interspersed.

    @@ -238,13 +241,13 @@ remaining text

    Issue Number-based Sort

    An alternative to the date-based sort is to sort based upon the issue id. This may be accomplished via:

    -
    $ releasedocmaker --sorttype=issueid --sortorder=asc
    +
    $ releasedocmaker.py --project falcon --version 0.6 --sorttype issueid --sortorder asc
     

    This will now sort by the issue id, listing them in lowest to highest (or ascending) order.

    The order may be reversed to list them in highest to lowest (or descending) order by providing the appropriate flag:

    -
    $ releasedocmaker --sorttype=issueid --sortorder=desc
    +
    $ releasedocmaker.py --project falcon --version 0.6 --sorttype issueid --sortorder desc
     

    In the case of multiple projects given on the command line, the projects will be grouped and then sorted by issue id.

    @@ -253,12 +256,12 @@ remaining text

    To check if an issue is backward-incompatible the releasedocmaker script first checks the Hadoop Flags field in the issue. If this field is found to be blank then it searches for the 'backward-incompatible’ label. You can override the -default value for this label by using -L option e.g.

    -
    $ releasedocmaker --project=falcon --version 0.6 --incompatiblelabel not-compatible
    +default value for this label by using –incompatiblelabel option e.g.

    +
    $ releasedocmaker.py --project falcon --version 0.6 --incompatiblelabel not-compatible
     

    or equivalently using the shorter -X option

    -
    $ releasedocmaker --project=falcon --version 0.6 -X not-compatible
    +
    $ releasedocmaker.py --project falcon --version 0.6 -X not-compatible
     

    Lint Mode