]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/uri.cpp
made SetFirstItem() work again (patch 1445170)
[wxWidgets.git] / src / common / uri.cpp
index 52b11eb5afac2441341c8d9af59accdb6c7e1e58..ccc0149a4b33e20eb297aaaff2c6401a8667eb9b 100644 (file)
@@ -432,11 +432,18 @@ const wxChar* wxURI::ParseAuthority(const wxChar* uri)
     // authority     = [ userinfo "@" ] host [ ":" port ]
     if (*uri == wxT('/') && *(uri+1) == wxT('/'))
     {
+        //skip past the two slashes
         uri += 2;
 
+        // ############# DEVIATION FROM RFC #########################
+        // Don't parse the server component for file URIs
+        if(m_scheme != wxT("file"))
+        {
+            //normal way
         uri = ParseUserInfo(uri);
         uri = ParseServer(uri);
         return ParsePort(uri);
+        }
     }
 
     return uri;
@@ -882,8 +889,8 @@ void wxURI::Resolve(const wxURI& base, int flags)
                     op += 3;
             }
 
-            m_path = (wxString)base.m_path.substr(0, bp - base.m_path.c_str()) +
-                    (wxString)m_path.substr((op - m_path.c_str()), m_path.Length());
+            m_path = base.m_path.substr(0, bp - base.m_path.c_str()) +
+                    m_path.substr((op - m_path.c_str()), m_path.Length());
         }
     }