diff options
-rw-r--r-- | www/zope-epoz/Makefile | 2 | ||||
-rw-r--r-- | www/zope-epoz/distinfo | 4 | ||||
-rw-r--r-- | www/zope-epoz/files/patch-EpozPostTidy.py | 20 |
3 files changed, 3 insertions, 23 deletions
diff --git a/www/zope-epoz/Makefile b/www/zope-epoz/Makefile index f604499ebe4f..fdac31c776c0 100644 --- a/www/zope-epoz/Makefile +++ b/www/zope-epoz/Makefile @@ -6,7 +6,7 @@ # PORTNAME= epoz -PORTVERSION= 0.8.1 +PORTVERSION= 0.8.2 CATEGORIES= www zope MASTER_SITES= http://mjablonski.zope.de/Epoz/releases/ PKGNAMEPREFIX= zope- diff --git a/www/zope-epoz/distinfo b/www/zope-epoz/distinfo index 78939d0d408d..a96e020d3797 100644 --- a/www/zope-epoz/distinfo +++ b/www/zope-epoz/distinfo @@ -1,2 +1,2 @@ -MD5 (zope/Epoz-0.8.1.tar.gz) = 095fc9bdac90b0451170b17b78e4206c -SIZE (zope/Epoz-0.8.1.tar.gz) = 45001 +MD5 (zope/Epoz-0.8.2.tar.gz) = 230d63393b1bdef89c49ab8a7b3fc8d8 +SIZE (zope/Epoz-0.8.2.tar.gz) = 43303 diff --git a/www/zope-epoz/files/patch-EpozPostTidy.py b/www/zope-epoz/files/patch-EpozPostTidy.py deleted file mode 100644 index dd2b2ed5d14b..000000000000 --- a/www/zope-epoz/files/patch-EpozPostTidy.py +++ /dev/null @@ -1,20 +0,0 @@ ---- Extensions/EpozPostTidy.py.orig Mon May 10 18:49:57 2004 -+++ Extensions/EpozPostTidy.py Wed May 26 23:54:41 2004 -@@ -25,6 +25,8 @@ - # Internal Link? - if tag=="a" and key=="href": - value = self.getRelativeUrl(self.pageurl, value) -+ if tag=="img" and key=="src": -+ value = self.getRelativeUrl(self.pageurl, value) - attributes += ' %s="%s"' % (key,value) - self.res += "<%s%s>" % (tag, attributes) - -@@ -44,7 +46,7 @@ - self.res += "<%s%s />" % (tag, attributes) - - def handle_data(self, data): -- self.res += data.strip() -+ self.res += data - - def handle_charref(self, data): - self.res += "&%s;" % data |