To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79843





------- Additional comments from [EMAIL PROTECTED] Fri Apr  4 14:40:59 +0000 
2008 -------
1) Now when I added more protocols (dav://, davs://, etc.), may I let it 
reordered, please?  The module is set as incompatible in the CWS...

2) Changed in the CWS.  The patch is:

--- source/fsys/urlobj.cxx      27 Mar 2008 15:02:15 -0000      1.61.26.2
+++ source/fsys/urlobj.cxx      4 Apr 2008 14:36:02 -0000
@@ -901,9 +901,8 @@ bool INetURLObject::setAbsURIRef(rtl::OU
                        return false;
                }
 
-        const char *pSchemeName = getSchemeInfo().m_pScheme;
-        if (pSchemeName[0] != '\0') {
-            aSynScheme = rtl::OUString::createFromAscii(pSchemeName);
+        if (m_eScheme != INET_PROT_GENERIC && m_eScheme != 
INET_PROT_GENERIC_HIERARCHICAL) {
+            aSynScheme = 
rtl::OUString::createFromAscii(getSchemeInfo().m_pScheme);
         }
         m_aScheme.set(aSynAbsURIRef, aSynScheme, aSynAbsURIRef.getLength());
         aSynAbsURIRef.append(sal_Unicode(':'));
@@ -4080,13 +4079,12 @@ bool INetURLObject::ConcatData(INetProto
 {
        setInvalid();
        m_eScheme = eTheScheme;
-       const char *pSchemeName = getSchemeInfo().m_pScheme;
 
-       if (HasError() || pSchemeName[0] == '\0')
+       if (HasError() || m_eScheme == INET_PROT_GENERIC || m_eScheme == 
INET_PROT_GENERIC_HIERARCHICAL)
                return false;
 
        m_aAbsURIRef.setLength(0);
-       m_aAbsURIRef.appendAscii(pSchemeName);
+       m_aAbsURIRef.appendAscii(getSchemeInfo().m_pScheme);
        m_aAbsURIRef.append(sal_Unicode(':'));
        if (getSchemeInfo().m_bAuthority)
        {

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to