Changeset 1036 for trunk


Ignore:
Timestamp:
Feb 15, 2010, 6:31:34 AM (14 years ago)
Author:
Peter Johansson
Message:

merging patch release 0.7.3. Delta 0.7.3 - 0.7.2. Due to conflict (trunk and 0.7-stable are out of synch) in test repository the commit was re-committed.

Location:
trunk
Files:
2 added
7 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/NEWS

    r1023 r1036  
    1818svndigest 0.7.x series from
    1919    http://dev.thep.lu.se/svndigest/svn/branches/0.7-stable
     20
     21Version 0.7.3 (released 15 February 2010)
     22  - Fixed bug that authors were excluded in BlameStats plot (bug #441)
     23
     24  A complete list of closed tickets can be found here [[br]]
     25  http://dev.thep.lu.se/svndigest/query?status=closed&milestone=0.7.3
    2026
    2127Version 0.7.2 (released 2 January 2010)
  • trunk/lib/BlameStats.cc

    r1003 r1036  
    118118
    119119
    120   unsigned int BlameStats::max_element(const std::vector<unsigned int>& v) const
    121   {
    122     assert(v.size());
    123     return v.back();
    124   }
    125 
    126120}} // end of namespace svndigest and namespace theplu
  • trunk/lib/BlameStats.h

    r1003 r1036  
    4646    void do_parse(const std::string&, svn_revnum_t);
    4747    void fill_in(Author2Vector&, svn_revnum_t rev);
    48     unsigned int max_element(const std::vector<unsigned int>&) const;
    4948
    5049  };
  • trunk/lib/ClassicStats.cc

    r978 r1036  
    44  Copyright (C) 2005 Peter Johansson
    55  Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
    6   Copyright (C) 2009 Peter Johansson
     6  Copyright (C) 2009, 2010 Peter Johansson
    77
    88  This file is part of svndigest, http://dev.thep.lu.se/svndigest
     
    7474
    7575
     76  unsigned int
     77  ClassicStats::max_element(const std::vector<unsigned int>& v) const
     78  {
     79    assert(v.size());
     80    return v.back();
     81  }
     82
    7683}} // end of namespace svndigest and namespace theplu
  • trunk/lib/ClassicStats.h

    r978 r1036  
    77  Copyright (C) 2005 Peter Johansson
    88  Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
     9  Copyright (C) 2010 Peter Johansson
    910
    1011  This file is part of svndigest, http://dev.thep.lu.se/svndigest
     
    4445  private:
    4546    void do_parse(const std::string&, svn_revnum_t);
     47    unsigned int max_element(const std::vector<unsigned int>&) const;
    4648
    4749  };
  • trunk/test/repo/db/current

    r981 r1036  
    1 67 2o 4
     168 2s 4
Note: See TracChangeset for help on using the changeset viewer.