Changeset 1348


Ignore:
Timestamp:
Mar 26, 2011, 2:52:14 AM (12 years ago)
Author:
Peter Johansson
Message:

include 'copyright string' in cache. fixes #496

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEWS

    r1315 r1348  
    66  - svndigest-copy-cache now only traverses svn controlled directories
    77    and respects svndigest:ignore propery (ticket #463).
     8  - configuration value 'copyright string' is included in cache (issue #496)
    89
    910  A complete list of closed tickets can be found here [[br]]
     
    207208Copyright (C) 2005, 2006 Jari Häkkinen
    208209Copyright (C) 2007, 2008, 2009 Jari Häkkinen, Peter Johansson
    209 Copyright (C) 2010 Peter Johansson
     210Copyright (C) 2010, 2011 Peter Johansson
    210211
    211212This file is part of svndigest, http://dev.thep.lu.se/svndigest
  • trunk/lib/Stats.cc

    r1309 r1348  
    44  Copyright (C) 2005 Peter Johansson
    55  Copyright (C) 2006, 2007, 2008, 2009 Jari Häkkinen, Peter Johansson
    6   Copyright (C) 2010 Peter Johansson
     6  Copyright (C) 2010, 2011 Peter Johansson
    77
    88  This file is part of svndigest, http://dev.thep.lu.se/svndigest
     
    6666        ss << codon->first << codon->second;
    6767    }
     68    // avoid including copyright string if default is used
     69    if (Configuration::instance().copyright_string() != "Copyright (C)")
     70      ss << Configuration::instance().copyright_string();
    6871    config_code_ = ss.str();
    6972    // we don't allow newline in codon because we parse the string
Note: See TracChangeset for help on using the changeset viewer.