From cb25d58dc1854bdcb598ad8ccc9012e6fafe31ae Mon Sep 17 00:00:00 2001 From: Javier Fernandez Date: Fri, 3 May 2013 15:11:51 +0000 Subject: PyWebWizard: Fixing bugs and implementation of mising features. Correct URL for the ZIP Publisher. Change-Id: I5984562d700df8f79596d1d5cef00aa5841dbad5 --- wizards/com/sun/star/wizards/web/WWD_Events.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wizards/com/sun/star/wizards/web/WWD_Events.py b/wizards/com/sun/star/wizards/web/WWD_Events.py index e6825ac1db83..c378b137dbae 100644 --- a/wizards/com/sun/star/wizards/web/WWD_Events.py +++ b/wizards/com/sun/star/wizards/web/WWD_Events.py @@ -808,10 +808,10 @@ class WWD_Events(WWD_Startup): ''' p = self.getPublisher(ZIP_PUBLISHER) #replace the '%' with '%25' - url1 = p.cp_URL.replace("%25", "%") + url1 = p.cp_URL.replace("%", "%25") #replace all '/' with '%2F' - url1 = url1.replace("%F", "/") - p.url = "vnd.sun.star.zip://" + url1 + "/"; + url1 = url1.replace("/", "%2F") + p.url = "vnd.sun.star.zip://" + url1 + "/" ''' and now ftp... -- cgit v1.2.1