Kaydet (Commit) cb25d58d authored tarafından Javier Fernandez's avatar Javier Fernandez

PyWebWizard: Fixing bugs and implementation of mising features.

Correct URL for the ZIP Publisher.

Change-Id: I5984562d700df8f79596d1d5cef00aa5841dbad5
üst d3cc742d
...@@ -808,10 +808,10 @@ class WWD_Events(WWD_Startup): ...@@ -808,10 +808,10 @@ class WWD_Events(WWD_Startup):
''' '''
p = self.getPublisher(ZIP_PUBLISHER) p = self.getPublisher(ZIP_PUBLISHER)
#replace the '%' with '%25' #replace the '%' with '%25'
url1 = p.cp_URL.replace("%25", "%") url1 = p.cp_URL.replace("%", "%25")
#replace all '/' with '%2F' #replace all '/' with '%2F'
url1 = url1.replace("%F", "/") url1 = url1.replace("/", "%2F")
p.url = "vnd.sun.star.zip://" + url1 + "/"; p.url = "vnd.sun.star.zip://" + url1 + "/"
''' '''
and now ftp... and now ftp...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment