#pragma implementation
#endif
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
#ifdef __BORDLANDC__
#pragma hdrstop
#if wxUSE_FS_INET
#ifndef WXPRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
#include "wx/wfstream.h"
#include "wx/url.h"
#include "wx/filesys.h"
#include "wx/fs_inet.h"
+#include "wx/module.h"
class wxInetCacheNode : public wxObject
{
bool wxInternetFSHandler::CanOpen(const wxString& location)
{
wxString p = GetProtocol(location);
- return (p == wxT("http")) || (p == wxT("ftp"));
+ if ((p == wxT("http")) || (p == wxT("ftp")))
+ {
+ wxURL url(GetProtocol(location) + wxT(":") + GetRightLocation(location));
+ return (url.GetError() == wxURL_NOERR);
+ }
+ else
+ return FALSE;
}
if (info == NULL)
{
wxURL url(right);
- s = url.GetInputStream();
- content = url.GetProtocol().GetContentType();
- if (content == wxEmptyString) content = GetMimeTypeFromExt(location);
- if (s)
+ if (url.GetError() == wxURL_NOERR)
{
- wxChar buf[256];
-
- wxGetTempFileName( wxT("wxhtml"), buf);
- info = new wxInetCacheNode(buf, content);
- m_Cache.Put(right, info);
-
- { // ok, now copy it:
- wxFileOutputStream sout((wxString)buf);
- s -> Read(sout); // copy the stream
+ s = url.GetInputStream();
+ content = url.GetProtocol().GetContentType();
+ if (content == wxEmptyString) content = GetMimeTypeFromExt(location);
+ if (s)
+ {
+ wxChar buf[256];
+
+ wxGetTempFileName( wxT("wxhtml"), buf);
+ info = new wxInetCacheNode(buf, content);
+ m_Cache.Put(right, info);
+
+ { // ok, now copy it:
+ wxFileOutputStream sout((wxString)buf);
+ s -> Read(sout); // copy the stream
+ }
+ delete s;
}
- delete s;
+ else
+ return (wxFSFile*) NULL; // we can't open the URL
}
else
- {
- return (wxFSFile*) NULL; // we can't open the URL
- }
+ return (wxFSFile*) NULL; // incorrect URL
}
// Load item from cache:
return new wxFSFile(s,
right,
info->GetMime(),
- GetAnchor(location));
+ GetAnchor(location),
+ wxDateTime::Today());
}
else return (wxFSFile*) NULL;
}