- Timestamp:
- Mar 11, 2007, 12:41:51 PM (17 years ago)
- Location:
- trunk/bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/Parameter.h
r198 r225 6 6 /* 7 7 Copyright (C) 2006 Jari Häkkinen, Peter Johansson 8 Copyright (C) 2007 Peter Johansson 8 9 9 10 This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest … … 25 26 */ 26 27 28 #include <map> 27 29 #include <string> 28 30 … … 35 37 Parameter(const int argc,const char *argv[]); 36 38 inline bool copyright(void) const { return copyright_; } 39 /// @todo 40 inline const std::map<std::string, std::string> 41 copyright_alias(void) const { return copyright_alias_; } 37 42 inline bool force(void) const { return force_; } 38 43 inline bool revisions(void) const { return revisions_; } … … 50 55 51 56 bool copyright_; 57 std::map<std::string, std::string> copyright_alias_; 52 58 bool force_; 53 59 bool revisions_; -
trunk/bin/svndigest.cc
r223 r225 126 126 exit(-1); 127 127 } 128 // Is this line needed? 129 svn->setup_ra_session(repo); 130 std::vector<std::string> authors=svn->authors(repo); 128 131 129 132 // remove target if needed … … 159 162 if (option->copyright()){ 160 163 try { 161 tree.print_copyright(commit_dates );164 tree.print_copyright(commit_dates, authors); 162 165 } 163 166 catch (const std::runtime_error& x) {
Note: See TracChangeset
for help on using the changeset viewer.