#include "wx/wxprec.h"
-#ifdef __BORDLANDC__
+#ifdef __BORLANDC__
#pragma hdrstop
#endif
{
// location has Unix path separators
wxString right = ms_root + GetRightLocation(location);
- wxFileName fn(right, wxPATH_UNIX);
+ wxString nativePath = wxFileSystem::URLToNativePath(right);
+ wxFileName fn(nativePath, wxPATH_UNIX);
if (!wxFileExists(fn.GetFullPath()))
return (wxFSFile*) NULL;
m_Handlers.Clear();
}
+const static wxString g_unixPathString(wxT("/"));
+const static wxString g_nativePathString(wxFILE_SEP_PATH);
+// Returns the native path for a file URL
+wxString wxFileSystem::URLToNativePath( const wxString& url )
+{
+ wxString path = url ;
+
+ if ( path.Find(wxT("file://")) == 0 )
+ {
+ path = path.Mid(7) ;
+ }
+
+#ifndef __UNIX__
+ // file urls either start with a forward slash (local harddisk),
+ // otherwise they have a servername/sharename notation,
+ // which only exists on msw and corresponds to a unc
+ if ( path[0u] == wxT('/') && path [1u] != wxT('/'))
+ {
+ path = path.Mid(1) ;
+ }
+ else if ( (url.Find(wxT("file://")) == 0) &&
+ (path.Find(wxT('/')) != wxNOT_FOUND) &&
+ (path.Length() > 1) && (path[1u] != wxT(':')) )
+ {
+ path = wxT("//") + path ;
+ }
+#endif
+
+ path.Replace(g_unixPathString, g_nativePathString) ;
+
+ return path ;
+}
+
+// Returns the file URL for a native path
+wxString wxFileSystem::NativePathToURL( const wxString& path )
+{
+ wxString url = path ;
+
+#ifdef __WXMSW__
+ // unc notation
+ if ( url.Find(wxT("\\\\")) == 0 )
+ {
+ url = url.Mid(2) ;
+ }
+ else
+#endif
+ {
+ url = wxT("/") + url ;
+ }
+
+ url.Replace(g_nativePathString, g_unixPathString) ;
+ url = wxT("file://") + url ;
+ return url ;
+}
///// Module:
#if wxUSE_MIMETYPE
gs_FSMimeFallbacks = new wxFileTypeInfo[6];
gs_FSMimeFallbacks[0] =
- wxFileTypeInfo("image/jpeg",
- "",
- "",
- "JPEG image (from fallback)",
- "jpg", "jpeg", NULL);
+ wxFileTypeInfo(_T("image/jpeg"),
+ _T(""),
+ _T(""),
+ _T("JPEG image (from fallback)"),
+ _T("jpg"), _T("jpeg"), NULL);
gs_FSMimeFallbacks[1] =
- wxFileTypeInfo("image/gif",
- "",
- "",
- "GIF image (from fallback)",
- "gif", NULL);
+ wxFileTypeInfo(_T("image/gif"),
+ _T(""),
+ _T(""),
+ _T("GIF image (from fallback)"),
+ _T("gif"), NULL);
gs_FSMimeFallbacks[2] =
- wxFileTypeInfo("image/png",
- "",
- "",
- "PNG image (from fallback)",
- "png", NULL);
+ wxFileTypeInfo(_T("image/png"),
+ _T(""),
+ _T(""),
+ _T("PNG image (from fallback)"),
+ _T("png"), NULL);
gs_FSMimeFallbacks[3] =
- wxFileTypeInfo("image/bmp",
- "",
- "",
- "windows bitmap image (from fallback)",
- "bmp", NULL);
+ wxFileTypeInfo(_T("image/bmp"),
+ _T(""),
+ _T(""),
+ _T("windows bitmap image (from fallback)"),
+ _T("bmp"), NULL);
gs_FSMimeFallbacks[4] =
- wxFileTypeInfo("text/html",
- "",
- "",
- "HTML document (from fallback)",
- "htm", "html", NULL);
+ wxFileTypeInfo(_T("text/html"),
+ _T(""),
+ _T(""),
+ _T("HTML document (from fallback)"),
+ _T("htm"), _T("html"), NULL);
gs_FSMimeFallbacks[5] =
// must terminate the table with this!
wxFileTypeInfo();