svn commit: r325829 - in head/www/trac-watchlist: . files
Ruslan Makhmatkhanov
rm at FreeBSD.org
Sat Aug 31 19:02:00 UTC 2013
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 at 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 at 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":
More information about the svn-ports-head
mailing list