By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1825
Collapse All | Expand All

(-)a/tdehtml/ecma/kjs_proxy.cpp (-1 / +1 lines)
Lines 355-361 void KJSProxyImpl::applyUserAgent() Link Here
355
    // If we find "Mozilla" but not "(compatible, ...)" we are a real Netscape
355
    // If we find "Mozilla" but not "(compatible, ...)" we are a real Netscape
356
    if (userAgent.find(TQString::fromLatin1("Mozilla")) >= 0 &&
356
    if (userAgent.find(TQString::fromLatin1("Mozilla")) >= 0 &&
357
        userAgent.find(TQString::fromLatin1("compatible")) == -1 &&
357
        userAgent.find(TQString::fromLatin1("compatible")) == -1 &&
358
        userAgent.find(TQString::fromLatin1("TDEHTML")) == -1)
358
        userAgent.find(TQString::fromLatin1("KHTML")) == -1)
359
    {
359
    {
360
      m_script->setCompatMode(Interpreter::NetscapeCompat);
360
      m_script->setCompatMode(Interpreter::NetscapeCompat);
361
#ifdef KJS_VERBOSE
361
#ifdef KJS_VERBOSE
(-)a/tdehtml/xml/dom2_rangeimpl.cpp (-1 / +1 lines)
Lines 1139-1145 DOMString RangeImpl::toHTML( int &exceptioncode ) Link Here
1139
      text = DOMString("<html xmlns=\"http://www.w3.org/1999/xhtml\">\n"
1139
      text = DOMString("<html xmlns=\"http://www.w3.org/1999/xhtml\">\n"
1140
		      "<head>\n"
1140
		      "<head>\n"
1141
		      "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
1141
		      "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
1142
		      "<meta name=\"Generator\" content=\"TDEHTML, the KDE Web Page Viewer\" />\n"
1142
		      "<meta name=\"Generator\" content=\"TDEHTML, the TDE Web Page Viewer\" />\n"
1143
		      "</head>\n") +
1143
		      "</head>\n") +
1144
	    text +
1144
	    text +
1145
	    "</html>";
1145
	    "</html>";
(-)a/tdeio/tdeio/tdeprotocolmanager.cpp (-1 / +1 lines)
Lines 72-78 KProtocolManagerPrivate::~KProtocolManagerPrivate() Link Here
72
72
73
// DEFAULT USERAGENT STRING
73
// DEFAULT USERAGENT STRING
74
#define CFG_DEFAULT_UAGENT(X) \
74
#define CFG_DEFAULT_UAGENT(X) \
75
TQString("Mozilla/5.0 (compatible; Konqueror/%1.%2%3) TDEHTML/%4.%5.%6 (like Gecko)") \
75
TQString("Mozilla/5.0 (compatible; Konqueror/%1.%2%3) KHTML/TDEHTML/%4.%5.%6 (like Gecko)") \
76
        .arg(TDE_VERSION_MAJOR).arg(TDE_VERSION_MINOR).arg(X).arg(TDE_VERSION_MAJOR).arg(TDE_VERSION_MINOR).arg(TDE_VERSION_RELEASE)
76
        .arg(TDE_VERSION_MAJOR).arg(TDE_VERSION_MINOR).arg(X).arg(TDE_VERSION_MAJOR).arg(TDE_VERSION_MINOR).arg(TDE_VERSION_RELEASE)
77
77
78
void KProtocolManager::reparseConfiguration()
78
void KProtocolManager::reparseConfiguration()

Return to bug 1825