diff options
author | Javier Fernandez <jfernandez@igalia.com> | 2013-05-03 15:11:51 +0000 |
---|---|---|
committer | Javier Fernandez <jfernandez@igalia.com> | 2013-05-08 09:36:40 +0000 |
commit | cb25d58dc1854bdcb598ad8ccc9012e6fafe31ae (patch) | |
tree | 1015a946d172f22609be7c5faca53e3d518ae9fb /wizards | |
parent | d3cc742d28b81f939b8b640c73e700d7d8cf1987 (diff) |
PyWebWizard: Fixing bugs and implementation of mising features.
Correct URL for the ZIP Publisher.
Change-Id: I5984562d700df8f79596d1d5cef00aa5841dbad5
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/web/WWD_Events.py | 6 |
1 files 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... |