Changeset 1373
- Timestamp:
- Jun 11, 2011, 1:31:35 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 22 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.9-stable merged: 1316,1334-1335,1344-1345,1347,1352,1360-1361,1365-1371
- Property svn:mergeinfo changed
-
trunk/.svndigest/config
r1302 r1373 15 15 ### Section for setting behaviour of copyright update 16 16 [copyright] 17 # if true svndigest willwarn if file has no copyright statement.17 # warn if file has no copyright statement. 18 18 missing-copyright-warning = no 19 # defining start of copyright statement 19 20 copyright-string = Copyright (C) 20 21 -
trunk/Makefile.am
r1337 r1373 5 5 # Copyright (C) 2005, 2006 Jari Häkkinen 6 6 # Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 7 # Copyright (C) 2009, 2010 Peter Johansson7 # Copyright (C) 2009, 2010, 2011 Peter Johansson 8 8 # 9 9 # This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 98 98 @mv $@.t $@ 99 99 @echo "creating $@" 100 101 # create a tag from current stable branch; depends on check-version to 102 # ensure that version is macro.minor.micro (no pre suffix), that wc is 103 # pristine and updated. 104 svn-tag: check-version check-svn-diff 105 svn copy \ 106 ^/branches/$(SVNDIGEST_MAJOR_VERSION).$(SVNDIGEST_MINOR_VERSION)-stable\ 107 ^/tags/$(VERSION) -m "tagging version $(VERSION)" -
trunk/NEWS
r1348 r1373 13 13 svndigest 0.9.x series from 14 14 http://dev.thep.lu.se/svndigest/svn/branches/0.9-stable 15 16 Version 0.9.2 (released 10 June 2011) 17 - Section [svn-props] in config file is now respected (bug #501). 18 19 A complete list of closed tickets can be found here [[br]] 20 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=0.9.2 15 21 16 22 Version 0.9.1 (released 18 November 2010) -
trunk/bin/AbstractParameter.cc
r1293 r1373 111 111 if (S_ISDIR(buf.st_mode)) 112 112 return; 113 errno = ENOTDIR; 113 114 } 114 115 std::stringstream ss; 116 assert(errno); 115 117 ss << cmd_.program_name() << ": '" << path << "': " 116 118 << strerror(errno); -
trunk/bin/Parameter.cc
r1293 r1373 3 3 /* 4 4 Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson 5 Copyright (C) 2009, 2010 Peter Johansson5 Copyright (C) 2009, 2010, 2011 Peter Johansson 6 6 7 7 This file is part of svndigest, http://dev.thep.lu.se/svndigest -
trunk/bootstrap
r1116 r1373 9 9 # Copyright (C) 2005, 2006 Jari Häkkinen 10 10 # Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 11 # Copyright (C) 2010 Peter Johansson11 # Copyright (C) 2010, 2011 Peter Johansson 12 12 # 13 13 # This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 39 39 shift; 40 40 done 41 cmd="autoreconf --install --symlink --force"; 41 42 if test "x$verbose" = "xno"; then 42 exec >& /dev/null 43 exec > /dev/null 44 else 45 cmd="$cmd --verbose" 43 46 fi 44 cmd="autoreconf --install --symlink --force --verbose";45 47 echo "$me: running: $cmd"; 46 48 exec $cmd; 47 -
trunk/build_support/Portfile.in
r1302 r1373 8 8 categories devel 9 9 platforms darwin 10 license GPL-3 10 11 maintainers gmail.com:pj31042 11 12 -
trunk/doc/readme.txt
r1293 r1373 3 3 Copyright (C) 2005 Jari Häkkinen 4 4 Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson 5 Copyright (C) 2009, 2010 Peter Johansson5 Copyright (C) 2009, 2010, 2011 Peter Johansson 6 6 7 7 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 166 166 implies that images are not created. 167 167 168 In section [output] you can adjust the size of the report. Default a 169 Blame Information page is created for every file, which can be turned 170 of using the 'blame-information' option. To decrease the size even 171 more, option 'file' can be set to 'no' which means output will only be 172 generated for directories. 173 174 Section [svn-props] allows you to set properties on files (or 175 directories). It is, for example, possible to set property 176 'svndigest:ignore' on all files named `COPYING` using the following line 177 178 COPYING = svndigest:ignore 179 180 The format of this section is the same as in section [auto-props] in a 181 subversion config file. 182 168 183 === TracLinks === 169 184 … … 196 211 statement block is replaced with a new copyright statement generated 197 212 from analyzing `svn blame output`. An author is considered to have 198 copyright of the file if (s)he has added a line of code o fcomment213 copyright of the file if (s)he has added a line of code or comment 199 214 (excluding copyright statements). For an example of the format of the 200 215 generated copyright statement, please have a look at the top of this -
trunk/lib/Configuration.cc
r1315 r1373 3 3 /* 4 4 Copyright (C) 2007, 2008, 2009, 2010 Jari Häkkinen, Peter Johansson 5 Copyright (C) 2011 Peter Johansson 5 6 6 7 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 334 335 } 335 336 } 336 else if (section == "svn _props") {337 else if (section == "svn-props") { 337 338 svn_props_.push_back(std::make_pair(lhs, empty_str_map_)); 338 339 std::vector<std::string> vec; … … 628 629 os << "\n### Section for setting behaviour of copyright update\n" 629 630 << "[copyright]\n" 630 << "# if true svndigest willwarn if file has no copyright statement.\n"631 << "# warn if file has no copyright statement.\n" 631 632 << "missing-copyright-warning = "; 632 633 if (conf.missing_copyright_warning()) … … 634 635 else 635 636 os << "no\n"; 637 os << "# defining start of copyright statement\n"; 636 638 os << "copyright-string = " << conf.copyright_string_ << "\n"; 637 639 -
trunk/lib/SVN.cc
r1267 r1373 4 4 Copyright (C) 2006 Jari Häkkinen 5 5 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 6 Copyright (C) 2010 Peter Johansson6 Copyright (C) 2010, 2011 Peter Johansson 7 7 8 8 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 46 46 47 47 SVNException::SVNException(const std::string& msg, svn_error_t* error) 48 : std::runtime_error(""), error_(error) , msg_(msg)48 : std::runtime_error(""), error_(error) 49 49 { 50 50 ref_count_ = new int(1); -
trunk/m4/apache_LICENSE-2.0.txt
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/ax_cxx_check_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/ax_cxxcpp_check_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/ax_ld_check_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/find_apr.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/pkg.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/version.m4
- Property svn:mergeinfo changed
/branches/0.9-stable/m4/version.m4 merged: 1316,1370-1371
r1315 r1373 2 2 # 3 3 # Copyright (C) 2008 Jari Häkkinen, Peter Johansson 4 # Copyright (C) 2009, 2010 Peter Johansson4 # Copyright (C) 2009, 2010, 2011 Peter Johansson 5 5 # 6 6 # This file is part of svndigest, http://dev.thep.lu.se/svndigest - Property svn:mergeinfo changed
-
trunk/m4/yat_add_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/test/Makefile.am
r1364 r1373 41 41 distributed_TESTS += config2_test.sh 42 42 distributed_TESTS += config3_test.sh 43 distributed_TESTS += config_props_test.sh 43 44 distributed_TESTS += copyright2_test.sh 44 45 distributed_TESTS += copyright_cache_test.sh … … 98 99 config2_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp) 99 100 config3_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) 101 config_props_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp) 100 102 copyright2_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT) $(repo_stamp) 101 103 copyright_cache_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT) $(repo_stamp) -
trunk/test/config.cc
r1237 r1373 3 3 /* 4 4 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 5 Copyright (C) 2009, 2010 Peter Johansson5 Copyright (C) 2009, 2010, 2011 Peter Johansson 6 6 7 7 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 74 74 Configuration& conf(Configuration::instance()); 75 75 std::stringstream ss; 76 ss << "[svn _props]\n"76 ss << "[svn-props]\n" 77 77 << "foo* = svndigest:ignore\n" 78 78 << "bar* = svn:eol-style=native;svncopyright:ignore\n"; -
trunk/test/error_test.sh
r1242 r1373 3 3 # $Id$ 4 4 5 # Copyright (C) 2010 Peter Johansson5 # Copyright (C) 2010, 2011 Peter Johansson 6 6 # 7 7 # This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 36 36 $GREP 'svncopyright:' stderr || exit_fail 37 37 $GREP "'${abs_top_srcdir}/README': " stderr || exit_fail 38 $GREP "Unknown error" stderr && exit_fail 38 39 39 40 SVNDIGEST_run 1 --root . 40 41 $GREP "svndigest: '.*' is not a working copy" stderr || exit_fail 42 $GREP "svndigest: '.*' is not a working copy.*is not a working copy" stderr\ 43 && exit_fail 41 44 SVNCOPYRIGHT_run 1 --root . 42 45 $GREP "svncopyright: '.*' is not a working copy" stderr || exit_fail 46 $GREP "svncopyright: '.*' is not a working copy.*is not a working copy" stderr\ 47 && exit_fail 43 48 44 49 SVNDIGEST_run 1 --rapakalja
Note: See TracChangeset
for help on using the changeset viewer.