Index: standalone.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/standalone.py,v retrieving revision 1.25 diff -u -u -r1.25 standalone.py --- standalone.py 27 May 2003 02:46:53 -0000 1.25 +++ standalone.py 3 Jun 2003 11:24:10 -0000 @@ -3,7 +3,7 @@ # vim:sw=4:ts=4:et:nowrap # [Emacs: -*- python -*-] # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: viewcvs-install =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/viewcvs-install,v retrieving revision 1.53 diff -u -u -r1.53 viewcvs-install --- viewcvs-install 3 Jun 2003 06:24:55 -0000 1.53 +++ viewcvs-install 3 Jun 2003 11:24:11 -0000 @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- Mode: python -*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: viewcvs.conf.dist =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/viewcvs.conf.dist,v retrieving revision 1.1 diff -u -u -r1.1 viewcvs.conf.dist --- viewcvs.conf.dist 3 Jun 2003 06:24:55 -0000 1.1 +++ viewcvs.conf.dist 3 Jun 2003 11:24:11 -0000 @@ -476,6 +476,38 @@ use_pagesize = 0 # use_pagesize = 20 +# Bug tracking +# +# Set to enable bug-regex matching, to provide links to your bug tracking +# system bsaed on text identified in the log +# Use: +# bug_match = 0 - bug matching disabled +# bug_match = n - match bug numbers of n digits or more +# if you have disabled it here, the bug_prefix and bug_system_expr are +# ignored. + +# bug_match = 1 +bug_match = 0 + + +# Set to narrow the bug matching down to only numbers prefixed with +# regex. Example provided will match (any case) "bug" followed by +# up to 3 non-digit characters. (will match bugzilla's "Bug # " and +# CVSZilla's "Bug: " style) +# + +# bug_prefix = [Bb][Uu][Gg]\D{1,3} +bug_prefix = + +# +# Set to a URL for linking to your bug system. Minimal substitution is provided: +# \1 will be replaced by whatever is matched by "bug_prefix" +# \2 will be replaced by the bug ID (as matched by \d{bug_match}) +# the provided example works with bugzilla + +# bug_system_expr = \1\2 +bug_system_expr = + #--------------------------------------------------------------------------- [vhosts] ### DOC Index: lib/accept.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/accept.py,v retrieving revision 1.4 diff -u -u -r1.4 accept.py --- lib/accept.py 5 Sep 2002 07:34:42 -0000 1.4 +++ lib/accept.py 3 Jun 2003 11:24:11 -0000 @@ -1,6 +1,6 @@ # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/blame.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/blame.py,v retrieving revision 1.21 diff -u -u -r1.21 blame.py --- lib/blame.py 26 Feb 2003 02:31:29 -0000 1.21 +++ lib/blame.py 3 Jun 2003 11:24:12 -0000 @@ -1,7 +1,7 @@ #!/usr/local/bin/python # -*-python-*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # Copyright (C) 2000 Curt Hagenlocher # # By using this file, you agree to the terms and conditions set forth in Index: lib/compat.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/compat.py,v retrieving revision 1.12 diff -u -u -r1.12 compat.py --- lib/compat.py 5 Sep 2002 07:34:43 -0000 1.12 +++ lib/compat.py 3 Jun 2003 11:24:12 -0000 @@ -1,6 +1,6 @@ # -*- Mode: python -*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/config.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/config.py,v retrieving revision 1.50 diff -u -u -r1.50 config.py --- lib/config.py 11 Mar 2003 20:43:06 -0000 1.50 +++ lib/config.py 3 Jun 2003 11:24:12 -0000 @@ -1,6 +1,6 @@ # -*- Mode: python -*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS @@ -203,6 +203,10 @@ self.options.use_re_search = 0 self.options.use_pagesize = 0 self.options.use_localtime = 0 + self.options.bug_match = 0 + self.options.bug_prefix = '' + self.options.bug_system_expr = '' + def is_forbidden(self, module): if not module: Index: lib/dbi.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/dbi.py,v retrieving revision 1.11 diff -u -u -r1.11 dbi.py --- lib/dbi.py 18 Feb 2003 11:55:42 -0000 1.11 +++ lib/dbi.py 3 Jun 2003 11:24:12 -0000 @@ -1,6 +1,6 @@ # -*- Mode: python -*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/debug.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/debug.py,v retrieving revision 1.12 diff -u -u -r1.12 debug.py --- lib/debug.py 2 Jun 2003 18:53:12 -0000 1.12 +++ lib/debug.py 3 Jun 2003 11:24:12 -0000 @@ -1,6 +1,6 @@ # -*- Mode: python -*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/ezt.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/ezt.py,v retrieving revision 1.21 diff -u -u -r1.21 ezt.py --- lib/ezt.py 5 Sep 2002 07:34:43 -0000 1.21 +++ lib/ezt.py 3 Jun 2003 11:24:13 -0000 @@ -133,7 +133,7 @@ """ # -# Copyright (C) 2001-2002 Greg Stein. All Rights Reserved. +# Copyright (C) 2001-2003 Greg Stein. All Rights Reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are Index: lib/popen.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/popen.py,v retrieving revision 1.15 diff -u -u -r1.15 popen.py --- lib/popen.py 2 Jun 2003 04:40:44 -0000 1.15 +++ lib/popen.py 3 Jun 2003 11:24:13 -0000 @@ -1,5 +1,5 @@ # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/query.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/query.py,v retrieving revision 1.15 diff -u -u -r1.15 query.py --- lib/query.py 12 Mar 2003 23:08:08 -0000 1.15 +++ lib/query.py 3 Jun 2003 11:24:13 -0000 @@ -281,7 +281,7 @@ ob = _item(num_files=len(files), files=[]) if desc: - ob.desc = string.replace(server.escape(desc), '\n', '
') + ob.desc = viewcvs.bugify(string.replace(server.escape(desc), '\n', '
')) else: ob.desc = ' ' Index: lib/rlog.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/rlog.py,v retrieving revision 1.25 diff -u -u -r1.25 rlog.py --- lib/rlog.py 5 Sep 2002 07:34:43 -0000 1.25 +++ lib/rlog.py 3 Jun 2003 11:24:14 -0000 @@ -1,6 +1,6 @@ # -*- Mode: python -*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/viewcvs.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/viewcvs.py,v retrieving revision 1.164 diff -u -u -r1.164 viewcvs.py --- lib/viewcvs.py 25 May 2003 18:10:18 -0000 1.164 +++ lib/viewcvs.py 3 Jun 2003 11:24:15 -0000 @@ -1,6 +1,6 @@ # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS @@ -476,8 +476,14 @@ html = re.sub(_re_rewrite_email, r'\1', html) return html +def bugify(bugstr): + if cfg.options.bug_match: + _re_rewrite_bug = "(" + cfg.options.bug_prefix + ")" + "(\d{" + str(cfg.options.bug_match) + ",})" + bugstr = re.sub(_re_rewrite_bug, cfg.options.bug_system_expr, bugstr) + return bugstr + def format_log(log): - s = htmlify(log[:cfg.options.short_log_len]) + s = bugify(htmlify(log[:cfg.options.short_log_len])) if len(log) > cfg.options.short_log_len: s = s + '...' return s @@ -816,7 +822,7 @@ 'tags' : None, 'branch_points' : None, 'changed' : entry.changed, - 'log' : htmlify(entry.log), + 'log' : bugify(htmlify(entry.log)), 'state' : entry.state, 'vendor_branch' : ezt.boolean(_re_is_vendor_branch.match(revision)), }) @@ -1740,7 +1746,7 @@ entry.prev = prev ### maybe just overwrite entry.log? - entry.html_log = htmlify(entry.log) + entry.html_log = bugify(htmlify(entry.log)) if extended: entry.tag_names = rev2tag.get(rev, [ ]) Index: lib/vclib/__init__.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/__init__.py,v retrieving revision 1.9 diff -u -u -r1.9 __init__.py --- lib/vclib/__init__.py 16 Apr 2003 16:00:29 -0000 1.9 +++ lib/vclib/__init__.py 3 Jun 2003 11:24:15 -0000 @@ -1,7 +1,7 @@ # -*-python-*- # # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/bincvs/__init__.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/bincvs/__init__.py,v retrieving revision 1.9 diff -u -u -r1.9 __init__.py --- lib/vclib/bincvs/__init__.py 11 Feb 2003 02:59:58 -0000 1.9 +++ lib/vclib/bincvs/__init__.py 3 Jun 2003 11:24:15 -0000 @@ -1,6 +1,6 @@ # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/ccvs/__init__.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/ccvs/__init__.py,v retrieving revision 1.10 diff -u -u -r1.10 __init__.py --- lib/vclib/ccvs/__init__.py 26 Feb 2003 02:31:30 -0000 1.10 +++ lib/vclib/ccvs/__init__.py 3 Jun 2003 11:24:15 -0000 @@ -1,7 +1,7 @@ # -*-python-*- # # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/ccvs/rcsparse/__init__.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/ccvs/rcsparse/__init__.py,v retrieving revision 1.4 diff -u -u -r1.4 __init__.py --- lib/vclib/ccvs/rcsparse/__init__.py 5 Sep 2002 07:34:44 -0000 1.4 +++ lib/vclib/ccvs/rcsparse/__init__.py 3 Jun 2003 11:24:15 -0000 @@ -1,5 +1,5 @@ # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/ccvs/rcsparse/common.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/ccvs/rcsparse/common.py,v retrieving revision 1.5 diff -u -u -r1.5 common.py --- lib/vclib/ccvs/rcsparse/common.py 5 Sep 2002 07:34:44 -0000 1.5 +++ lib/vclib/ccvs/rcsparse/common.py 3 Jun 2003 11:24:15 -0000 @@ -1,5 +1,5 @@ # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/ccvs/rcsparse/debug.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/ccvs/rcsparse/debug.py,v retrieving revision 1.3 diff -u -u -r1.3 debug.py --- lib/vclib/ccvs/rcsparse/debug.py 26 Feb 2003 02:31:30 -0000 1.3 +++ lib/vclib/ccvs/rcsparse/debug.py 3 Jun 2003 11:24:15 -0000 @@ -1,5 +1,5 @@ # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/ccvs/rcsparse/default.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/ccvs/rcsparse/default.py,v retrieving revision 1.3 diff -u -u -r1.3 default.py --- lib/vclib/ccvs/rcsparse/default.py 5 Sep 2002 07:34:44 -0000 1.3 +++ lib/vclib/ccvs/rcsparse/default.py 3 Jun 2003 11:24:15 -0000 @@ -1,5 +1,5 @@ # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/ccvs/rcsparse/texttools.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/ccvs/rcsparse/texttools.py,v retrieving revision 1.4 diff -u -u -r1.4 texttools.py --- lib/vclib/ccvs/rcsparse/texttools.py 5 Sep 2002 07:34:44 -0000 1.4 +++ lib/vclib/ccvs/rcsparse/texttools.py 3 Jun 2003 11:24:15 -0000 @@ -1,5 +1,5 @@ # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: lib/vclib/svn/__init__.py =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/lib/vclib/svn/__init__.py,v retrieving revision 1.14 diff -u -u -r1.14 __init__.py --- lib/vclib/svn/__init__.py 22 May 2003 16:14:53 -0000 1.14 +++ lib/vclib/svn/__init__.py 3 Jun 2003 11:24:15 -0000 @@ -1,6 +1,6 @@ # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: tools/make-database =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/tools/make-database,v retrieving revision 1.7 diff -u -u -r1.7 make-database --- tools/make-database 22 Feb 2003 03:52:14 -0000 1.7 +++ tools/make-database 3 Jun 2003 11:24:16 -0000 @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- Mode: python -*- # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: tools/make-release =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/tools/make-release,v retrieving revision 1.11 diff -u -u -r1.11 make-release --- tools/make-release 5 Sep 2002 07:34:45 -0000 1.11 +++ tools/make-release 3 Jun 2003 11:24:16 -0000 @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: tparse/tparse.cpp =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/tparse/tparse.cpp,v retrieving revision 1.5 diff -u -u -r1.5 tparse.cpp --- tparse/tparse.cpp 11 Feb 2002 20:13:50 -0000 1.5 +++ tparse/tparse.cpp 3 Jun 2003 11:24:16 -0000 @@ -1,5 +1,5 @@ /* - # Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. + # Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # This file has been rewritten in C++ from the rcsparse.py file by # Lucas Bruand # Index: tparse/tparse.h =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/tparse/tparse.h,v retrieving revision 1.5 diff -u -u -r1.5 tparse.h --- tparse/tparse.h 13 Feb 2002 18:19:12 -0000 1.5 +++ tparse/tparse.h 3 Jun 2003 11:24:16 -0000 @@ -1,5 +1,5 @@ /* - # Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. + # Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # This file has been rewritten in C++ from the rcsparse.py file by # Lucas Bruand # Index: tparse/tparsemodule.cpp =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/tparse/tparsemodule.cpp,v retrieving revision 1.6 diff -u -u -r1.6 tparsemodule.cpp --- tparse/tparsemodule.cpp 19 Feb 2002 20:22:11 -0000 1.6 +++ tparse/tparsemodule.cpp 3 Jun 2003 11:24:16 -0000 @@ -1,5 +1,5 @@ /* - # Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. + # Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # This file has been rewritten in C++ from the rcsparse.py file by # Lucas Bruand # Index: tparse/tparsemodule.h =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/tparse/tparsemodule.h,v retrieving revision 1.4 diff -u -u -r1.4 tparsemodule.h --- tparse/tparsemodule.h 13 Feb 2002 18:19:12 -0000 1.4 +++ tparse/tparsemodule.h 3 Jun 2003 11:24:16 -0000 @@ -1,5 +1,5 @@ /* - # Copyright (C) 2000-2002 The ViewCVS Group. All Rights Reserved. + # Copyright (C) 2000-2003 The ViewCVS Group. All Rights Reserved. # This file has been rewritten in C++ from the rcsparse.py file by # Lucas Bruand # Index: website/license-1.html =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/website/license-1.html,v retrieving revision 1.7 diff -u -u -r1.7 license-1.html --- website/license-1.html 5 Sep 2002 07:34:45 -0000 1.7 +++ website/license-1.html 3 Jun 2003 11:24:17 -0000 @@ -46,7 +46,7 @@

- Copyright © 1999-2002 The ViewCVS Group. All rights reserved. + Copyright © 1999-2003 The ViewCVS Group. All rights reserved.

Index: www/asp/query.asp =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/www/asp/query.asp,v retrieving revision 1.1 diff -u -u -r1.1 query.asp --- www/asp/query.asp 3 Jun 2003 06:24:58 -0000 1.1 +++ www/asp/query.asp 3 Jun 2003 11:24:18 -0000 @@ -3,7 +3,7 @@ # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: www/asp/viewcvs.asp =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/www/asp/viewcvs.asp,v retrieving revision 1.1 diff -u -u -r1.1 viewcvs.asp --- www/asp/viewcvs.asp 3 Jun 2003 06:24:58 -0000 1.1 +++ www/asp/viewcvs.asp 3 Jun 2003 11:24:18 -0000 @@ -3,7 +3,7 @@ # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: www/cgi/query.cgi =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/www/cgi/query.cgi,v retrieving revision 1.1 diff -u -u -r1.1 query.cgi --- www/cgi/query.cgi 3 Jun 2003 06:24:58 -0000 1.1 +++ www/cgi/query.cgi 3 Jun 2003 11:24:18 -0000 @@ -1,7 +1,7 @@ #!/usr/bin/python # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS Index: www/cgi/viewcvs.cgi =================================================================== RCS file: /cvsroot/viewcvs/viewcvs/www/cgi/viewcvs.cgi,v retrieving revision 1.1 diff -u -u -r1.1 viewcvs.cgi --- www/cgi/viewcvs.cgi 3 Jun 2003 06:24:59 -0000 1.1 +++ www/cgi/viewcvs.cgi 3 Jun 2003 11:24:18 -0000 @@ -1,7 +1,7 @@ #!/usr/bin/python # -*-python-*- # -# Copyright (C) 1999-2002 The ViewCVS Group. All Rights Reserved. +# Copyright (C) 1999-2003 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewCVS