Date: Sat, 31 Aug 2013 19:02:00 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325829 - in head/www/trac-watchlist: . files Message-ID: <201308311902.r7VJ20gi071956@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Sat Aug 31 19:01:59 2013 New Revision: 325829 URL: http://svnweb.freebsd.org/changeset/ports/325829 Log: - add patch to fix type handling bug - bump PORTREVISION PR: 181689 Submitted by: Hung-Yi Chen <gaod@hychen.org> (maintainer) Added: head/www/trac-watchlist/files/patch-trachwatchlist_plugin.py (contents, props changed) Modified: head/www/trac-watchlist/Makefile (contents, props changed) Modified: head/www/trac-watchlist/Makefile ============================================================================== --- head/www/trac-watchlist/Makefile Sat Aug 31 19:01:07 2013 (r325828) +++ head/www/trac-watchlist/Makefile Sat Aug 31 19:01:59 2013 (r325829) @@ -3,7 +3,7 @@ PORTNAME= watchlist PORTVERSION= 1.0.${SVN_REV} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www devel python MASTER_SITES= http://distfiles.cse.tw/ \ http://trac-hacks.org/changeset/${SVN_REV}/watchlistplugin?old_path=/&format=zip&filename=/ @@ -11,7 +11,7 @@ PKGNAMEPREFIX= trac- DISTNAME= ${PORTNAME}plugin-r${SVN_REV} MAINTAINER= gaod@hychen.org -COMMENT= Provide watchlist feature for wikis and tickets of Trac +COMMENT= Watchlist feature for wikis and tickets of Trac LICENSE= BSD Added: head/www/trac-watchlist/files/patch-trachwatchlist_plugin.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/trac-watchlist/files/patch-trachwatchlist_plugin.py Sat Aug 31 19:01:59 2013 (r325829) @@ -0,0 +1,11 @@ +--- tracwatchlist/plugin.py.orig 2013-08-30 19:07:32.000000000 +0800 ++++ tracwatchlist/plugin.py 2013-08-30 19:08:43.000000000 +0800 +@@ -527,7 +527,7 @@ + self.set_notify(req, realm, res) + db.commit() + if redirectback and len(new_res) == 1: +- req.redirect(req.href(realm,new_res[0])) ++ req.redirect(req.href(realm,list(new_res)[0])) + action = 'view' + + elif action == "unwatch":
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308311902.r7VJ20gi071956>