forked from pool/ktorrent
42 lines
2.4 KiB
Diff
42 lines
2.4 KiB
Diff
diff -r -u ktorrent-2.1beta1.orig/plugins/search/searchenginelist.cpp ktorrent-2.1beta1/plugins/search/searchenginelist.cpp
|
|
--- ktorrent-2.1beta1.orig/plugins/search/searchenginelist.cpp 2006-11-25 13:49:50.000000000 +0100
|
|
+++ ktorrent-2.1beta1/plugins/search/searchenginelist.cpp 2006-11-25 13:54:01.000000000 +0100
|
|
@@ -106,6 +106,7 @@
|
|
out << "# SEARCH ENGINES list" << ::endl;
|
|
out << "KTorrents http://www.ktorrents.com/search.php?lg=0&sourceid=ktorrent&q=FOOBAR&f=0" << ::endl;
|
|
out << "bittorrent.com http://www.bittorrent.com/search_result.myt?search=FOOBAR" << ::endl;
|
|
+#if 0
|
|
out << "isohunt.com http://isohunt.com/torrents.php?ihq=FOOBAR&op=and" << ::endl;
|
|
out << "mininova.org http://www.mininova.org/search.php?search=FOOBAR" << ::endl;
|
|
out << "thepiratebay.org http://thepiratebay.org/search.php?q=FOOBAR" << ::endl;
|
|
@@ -113,6 +114,7 @@
|
|
out << "bytenova.org http://www.bitenova.org/search.php?search=FOOBAR&start=0&start=0&ie=utf-8&oe=utf-8" << ::endl;
|
|
out << "torrentspy.com http://torrentspy.com/search.asp?query=FOOBAR" << ::endl;
|
|
out << "torrentz.com http://www.torrentz.com/search_FOOBAR" << ::endl;
|
|
+#endif
|
|
}
|
|
|
|
KURL SearchEngineList::getSearchURL(bt::Uint32 engine) const
|
|
Only in ktorrent-2.1beta1/plugins/search: searchenginelist.cpp~
|
|
diff -r -u ktorrent-2.1beta1.orig/plugins/search/searchprefpage.cpp ktorrent-2.1beta1/plugins/search/searchprefpage.cpp
|
|
--- ktorrent-2.1beta1.orig/plugins/search/searchprefpage.cpp 2006-11-25 13:49:50.000000000 +0100
|
|
+++ ktorrent-2.1beta1/plugins/search/searchprefpage.cpp 2006-11-25 13:53:18.000000000 +0100
|
|
@@ -153,7 +153,7 @@
|
|
QListViewItem* se = new QListViewItem(m_engines, "KTorrents", "http://www.ktorrents.com/search.php?lg=0&sourceid=ktorrent&q=FOOBAR&f=0");
|
|
|
|
se = new QListViewItem(m_engines, "bittorrent.com", "http://search.bittorrent.com/search.jsp?query=FOOBAR");
|
|
-
|
|
+#if 0
|
|
se = new QListViewItem(m_engines, "isohunt.com", "http://isohunt.com/torrents.php?ihq=FOOBAR&op=and");
|
|
|
|
se = new QListViewItem(m_engines, "mininova.org", "http://www.mininova.org/search.php?search=FOOBAR");
|
|
@@ -167,6 +167,7 @@
|
|
se = new QListViewItem(m_engines, "torrentspy.com", "http://torrentspy.com/search.asp?query=FOOBAR");
|
|
|
|
se = new QListViewItem(m_engines, "torrentz.com", "http://www.torrentz.com/search_FOOBAR");
|
|
+#endif
|
|
}
|
|
|
|
void SearchPrefPageWidget::removeAllClicked()
|
|
Only in ktorrent-2.1beta1/plugins/search: searchprefpage.cpp~
|