Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 256907 Details for
Bug 172552
gnome-extra/conduit - new ebuild
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
files/conduit-0.3.17-escaping-caracters.patch
conduit-0.3.17-escaping-caracters.patch (text/plain), 1.28 KB, created by
Florian Steinel
on 2010-12-11 16:43:37 UTC
(
hide
)
Description:
files/conduit-0.3.17-escaping-caracters.patch
Filename:
MIME Type:
Creator:
Florian Steinel
Created:
2010-12-11 16:43:37 UTC
Size:
1.28 KB
patch
obsolete
>diff -urNad conduit~/conduit/platform/FileGio.py conduit/conduit/platform/FileGio.py >--- conduit~/conduit/platform/FileGio.py 2009-08-30 13:33:34.000000000 +0200 >+++ conduit/conduit/platform/FileGio.py 2009-08-30 14:06:49.000000000 +0200 >@@ -1,4 +1,5 @@ > import gio >+import urllib > > import conduit.platform > >@@ -200,6 +201,8 @@ > #if not relative, return abs path > if not res: > res = toURI >+ else: >+ res = urllib.quote(res) > return res > > @staticmethod >@@ -353,10 +356,10 @@ > if filetype == gio.FILE_TYPE_DIRECTORY: > #Include hidden directories > if not hidden or self.includeHidden: >- self.dirs.append(dir+"/"+filename) >+ self.dirs.append(dir+"/"+urllib.quote(filename)) > t += 1 > elif filetype == gio.FILE_TYPE_REGULAR or (filetype == gio.FILE_TYPE_SYMBOLIC_LINK and self.followSymlinks): >- uri = dir+"/"+filename >+ uri = dir+"/"+urllib.quote(filename) > #Include hidden files > if not hidden or self.includeHidden: > self.URIs.append(uri)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 172552
:
119244
|
129900
|
129901
|
131909
|
141012
|
141013
|
143685
|
143687
|
144806
|
145169
|
146637
|
146638
|
160274
|
160275
|
160694
|
160696
|
162306
|
162307
|
170299
|
256902
|
256903
|
256905
| 256907 |
256908
|
256910