Hello community, here is the log from the commit of package viewvc for openSUSE:11.3 checked in at Fri May 20 18:15:13 CEST 2011.
-------- --- old-versions/11.3/all/viewvc/viewvc.changes 2010-06-06 22:46:00.000000000 +0200 +++ 11.3/viewvc/viewvc.changes 2011-05-20 17:25:22.000000000 +0200 @@ -1,0 +2,52 @@ +Tue May 17 23:39:16 UTC 2011 - [email protected] + +- update to 1.1.11 (bnc#694785): + * security fix: remove user-reachable override of cvsdb row limit + * fix broken standalone.py -c and -d options handling + * add --help option to standalone.py + * fix stack trace when asked to checkout a directory (issue #478) + * improve memory usage and speed of revision log markup (issue #477) + * fix broken annotation view in CVS keyword-bearing files (issue #479) + * warn users when query results are incomplete (issue #443) + * avoid parsing errors on RCS newphrases in the admin section (issue #483) + * make rlog parsing code more robust in certain error cases (issue #444) + +------------------------------------------------------------------- +Tue Mar 15 22:17:29 UTC 2011 - [email protected] + +- update to 1.1.10: + * 1.1.9 shipped with a stack-trace-causing bug in the Subversion revision + info gathering logic + +------------------------------------------------------------------- +Sat Feb 19 00:42:56 UTC 2011 - [email protected] + +- update to 1.1.9: + * vcauth universal access determinations (issue #425) + * rework svn revision info cache for performance + * make revision log "extra pages" count configurable + * fix Subversion 1.4.x revision log compatibility code regression + * display sanitized error when authzfile is malformed + * handle file:/// Subversion rootpaths as local roots (issue #446) + * restore markup of URLs in file contents (issue #455) + * optionally display last-committed metadata in roots view (issue #457) + +------------------------------------------------------------------- +Thu Dec 2 22:43:14 UTC 2010 - [email protected] + +- update to 1.1.8: + * fix slowness triggered by allow_compress=1 configuration (issue #467) + * yield more useful error on directory markup/annotate request (issue #472) + +------------------------------------------------------------------- +Sat Sep 11 18:55:54 UTC 2010 - [email protected] + +- update to 1.1.7: + * maintenance release that includes all the bugfixes and enhancements made + thus far to the 1.1.x line + * adds a few features: + + FastCGI deployment support + + Basic authentication in the standalone server + + Subversion revision property display + +------------------------------------------------------------------- Package does not exist at destination yet. Using Fallback old-versions/11.3/all/viewvc Destination is old-versions/11.3/UPDATES/all/viewvc calling whatdependson for 11.3-i586 Old: ---- viewvc-1.1.6.tar.bz2 New: ---- viewvc-1.1.11.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ viewvc.spec ++++++ --- /var/tmp/diff_new_pack.xRvqLF/_old 2011-05-20 18:10:02.000000000 +0200 +++ /var/tmp/diff_new_pack.xRvqLF/_new 2011-05-20 18:10:02.000000000 +0200 @@ -1,7 +1,7 @@ # -# spec file for package viewvc (Version 1.1.6) +# spec file for package viewvc # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,8 +20,8 @@ Name: viewvc BuildRequires: apache2-devel python-devel -Version: 1.1.6 -Release: 1 +Version: 1.1.11 +Release: 1.<RELEASE2> # %define apxs /usr/sbin/apxs2 %define apache_libexecdir %(%{apxs} -q LIBEXECDIR) ++++++ viewvc-1.1.6.tar.bz2 -> viewvc-1.1.11.tar.bz2 ++++++ ++++ 4822 lines of diff (skipped) ++++++ viewvc-buglink.patch ++++++ --- /var/tmp/diff_new_pack.xRvqLF/_old 2011-05-20 18:10:03.000000000 +0200 +++ /var/tmp/diff_new_pack.xRvqLF/_new 2011-05-20 18:10:03.000000000 +0200 @@ -1,6 +1,6 @@ ---- conf/viewvc.conf.dist -+++ conf/viewvc.conf.dist -@@ -303,6 +303,21 @@ +--- conf/viewvc.conf.dist.orig 2011-02-18 19:28:55.000000000 +0100 ++++ conf/viewvc.conf.dist 2011-02-19 01:46:36.000000000 +0100 +@@ -323,6 +323,21 @@ ##--------------------------------------------------------------------------- [options] @@ -22,29 +22,20 @@ ## root_as_url_component: Interpret the first path component in the URL ## after the script location as the root to use. This is an ## alternative to using the "root=" query key. If ViewVC is configured ---- lib/config.py -+++ lib/config.py -@@ -429,6 +429,7 @@ - self.options.dir_pagesize = 0 - self.options.log_pagesize = 0 - self.options.limit_changes = 100 -+ self.options.buglink_base = None - - self.templates.diff = None - self.templates.directory = None ---- lib/viewvc.py -+++ lib/viewvc.py -@@ -1085,6 +1085,9 @@ - _re_rewrite_email = re.compile('([-a-zA-Z0-9_.\+]+)@' - '(([-a-zA-Z0-9]+\.)+[A-Za-z]{2,4})') +--- lib/viewvc.py.orig 2011-02-18 20:43:26.000000000 +0100 ++++ lib/viewvc.py 2011-02-19 01:46:36.000000000 +0100 +@@ -1100,6 +1100,10 @@ + # Matches revision references + _re_rewrite_svnrevref = re.compile(r'\b(r|rev #?|revision #?)([0-9]+)\b') +# Matches bug numbers +_re_rewrite_bug = re.compile(r'((?:\bbug[\s:#+]|[^&]#|^#)\s*(\d\d+))', re.I) +_re_buglink_prefix = "" - - class HtmlFormatter: ++ + class ViewVCHtmlFormatter: """Format a string as HTML-encoded output with customizable markup -@@ -1098,6 +1101,20 @@ + rules, for example turning strings that look like URLs into anchor links. +@@ -1112,6 +1116,19 @@ def __init__(self): self._formatters = [] @@ -61,14 +52,13 @@ + sapi.escape(trunc_s)), \ + len(trunc_s) + -+ def format_url(self, mobj, userdata, maxlen=0): """Return a 2-tuple containing: - the text represented by MatchObject MOBJ, formatted as -@@ -1247,6 +1264,10 @@ - if htmlize: - lf = HtmlFormatter() - lf.add_formatter(_re_rewrite_url, lf.format_url) +@@ -1289,6 +1306,10 @@ + escape=1) + lf.add_formatter(_re_rewrite_svnrevref, lf.format_svnrevref, + revision_to_url) + if cfg.options.buglink_base is not None: + global _re_buglink_prefix + _re_buglink_prefix = cfg.options.buglink_base @@ -76,3 +66,13 @@ if cfg.options.mangle_email_addresses == 2: lf.add_formatter(_re_rewrite_email, lf.format_email_truncated) elif cfg.options.mangle_email_addresses == 1: +--- lib/config.py.orig 2011-02-18 20:27:50.000000000 +0100 ++++ lib/config.py 2011-02-19 01:46:56.000000000 +0100 +@@ -436,6 +436,7 @@ + self.options.log_pagesize = 0 + self.options.log_pagesextra = 3 + self.options.limit_changes = 100 ++ self.options.buglink_base = None + + self.templates.diff = None + self.templates.directory = None ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
