mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
- Update to 0.8.2
PR: ports/69505 Submitted by: HAYASHI Yasushi <yasi@yasi.to> (maintainer)
This commit is contained in:
parent
f7fe7253c9
commit
2a466feafc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114579
@ -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-
|
||||
|
@ -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
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user