void SearchManager::startSearch(KURL const& root, SearchMode const& modo) { canceled_ = false; //time_.restart(); time_.start(); Q_ASSERT(root.isValid()); //Q_ASSERT(root.protocol() == "http" || root.protocol() == "https"); if(root.hasHost() && (domain_.isNull() || domain_.isEmpty())) { setDomain(root.host() + root.directory()); kdDebug(23100) << "Domain: " << domain_ << endl; } root_.setIsRoot(true); root_.setDepth(0); root_.setOriginalUrl(root.prettyURL()); root_.setAbsoluteUrl(root); root_.setOnlyCheckHeader(false); root_.setRootUrl(root); search_mode_ = modo; if(modo == depth) Q_ASSERT(depth_ != -1); else if(modo == domain) Q_ASSERT(depth_ == -1); else Q_ASSERT(depth_ != -1); searching_ = true; //Q_ASSERT(domain_ != QString::null); checkRoot(); }
bool KManualProxyDlg::isValidURL( const QString& _url, KURL* result ) const { KURL url (_url); QStringList filters; filters << "kshorturifilter" << "localdomainurifilter"; // If the typed URL is malformed, and the filters cannot filter it // then it must be an invalid entry. if( !(url.isValid() || KURIFilter::self()->filterURI(url, filters)) && !url.hasHost() ) return false; QString host (url.host()); // We only check for a relevant subset of characters that are // not allowed in <authority> component of a URL. if ( host.contains ('*') || host.contains (' ') || host.contains ('?') ) return false; if ( result ) *result = url; return true; }