From: W. Trevor King Date: Fri, 30 Jul 2010 19:45:29 +0000 (-0400) Subject: Added hooke.plugin.license and removed get-warrenty info from short_license. X-Git-Tag: v0.2~18^2~3 X-Git-Url: http://git.tremily.us/?p=update-copyright.git;a=commitdiff_plain;h=dc1861b98919319ca5a0f39c97a49bf29c2c6cb7;hp=356b27f9aa53521b9a70eca9194c69ab3d28b143 Added hooke.plugin.license and removed get-warrenty info from short_license. Also uncommented update_authors() and update_files() in update_copyright, since I'm no longer testing the pyfile code ;). --- diff --git a/update_copyright.py b/update_copyright.py index e5ec29e..ba82f5a 100755 --- a/update_copyright.py +++ b/update_copyright.py @@ -60,10 +60,9 @@ License along with %(project)s. If not, see """.strip() SHORT_COPY_RIGHT_TEXT=""" -%(project)s comes with ABSOLUTELY NO WARRANTY; %(get-warrenty)s -for details. This is free software, and you are welcome to -redistribute it under certain conditions; %(get-details)s -for details. +%(project)s comes with ABSOLUTELY NO WARRANTY and is licensed +under the GNU Lesser General Public License. For details, +%(get-details)s """.strip() COPY_RIGHT_TAG='-xyz-COPY' + '-RIGHT-zyx-' # unlikely to occur in the wild :p @@ -511,17 +510,14 @@ def _copyright_string(original_year, final_year, authors, prefix='', ... prefix='', ... text=SHORT_COPY_RIGHT_TEXT, ... author_format_fn=_short_author_formatter, - ... extra_info={ - ... 'get-warrenty':'%(get-warrenty)s', - ... 'get-details':'%(get-details)s', - ... }, + ... extra_info={'get-details':'%(get-details)s'}, ... formatter_kwargs={'width': 50}, ... ) # doctest: +ELLIPSIS Copyright (C) 2005 A , B - Hooke comes with ABSOLUTELY NO WARRANTY; %(get-warrenty)s. - This is free software, and you are welcome to redistribute it - under certain conditions; %(get-details)s for details. + Hooke comes with ABSOLUTELY NO WARRANTY and is licensed + under the GNU Lesser General Public License. For details, + %(get-details)s """ if original_year == final_year: date_range = '%s' % original_year @@ -711,10 +707,7 @@ def update_pyfile(path, original_year_fn=original_year, _copyright_string(original_year, current_year, authors, prefix='', text=SHORT_COPY_RIGHT_TEXT, author_format_fn=_short_author_formatter, - extra_info={ - 'get-warrenty':'%(get-warrenty)s', - 'get-details':'%(get-details)s', - }), + extra_info={'get-details':'%(get-details)s'}), '""".strip() % extra_info', ] new_contents = '\n'.join(lines)+'\n' @@ -759,8 +752,8 @@ automatically. test() sys.exit(0) - #update_authors(dry_run=options.dry_run, verbose=options.verbose) - #update_files(files=args, dry_run=options.dry_run, verbose=options.verbose) + update_authors(dry_run=options.dry_run, verbose=options.verbose) + update_files(files=args, dry_run=options.dry_run, verbose=options.verbose) if options.pyfile != None: update_pyfile(path=options.pyfile, dry_run=options.dry_run, verbose=options.verbose)