internal browser creates temp file in current dir, safer if /tmp doesn't

exist


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1537 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Harco de Hilster
1999-01-31 22:26:35 +00:00
parent 18b7950189
commit f855e630cc

View File

@@ -84,14 +84,14 @@ class HTMLTextView(wxFrame):
return
self.logprint("Receiving data...")
data = f.read()
tmp = open('/tmp/html.txt','w')
tmp = open('tmphtml.txt','w')
fmt = formatter.AbstractFormatter(formatter.DumbWriter(tmp))
p = HTMLParser(fmt)
self.logprint("Parsing data...")
p.feed(data)
p.close()
tmp.close()
tmp = open('/tmp/html.txt', 'r')
tmp = open('tmphtml.txt', 'r')
self.text.SetValue(tmp.read())
self.SetTitle(url)
self.logprint(url)