From 0486034738b850c210b1389a8c3ae51a6b9fad23 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 29 Mar 2014 00:54:51 +0900 Subject: Removed MSN support across Kopete by removing the MSN protocol and the netmeeting plugin. This resolves bug 1547. --- kopete/plugins/CMakeLists.txt | 1 - kopete/plugins/Makefile.am | 2 +- kopete/plugins/history/converter.cpp | 12 +- kopete/plugins/latex/latexplugin.cpp | 4 - kopete/plugins/netmeeting/CMakeLists.txt | 56 ------- kopete/plugins/netmeeting/Makefile.am | 23 --- .../plugins/netmeeting/kopete_netmeeting.desktop | 81 --------- .../netmeeting/kopete_netmeeting_config.desktop | 77 --------- kopete/plugins/netmeeting/netmeetingchatui.rc | 9 - kopete/plugins/netmeeting/netmeetingguiclient.cpp | 61 ------- kopete/plugins/netmeeting/netmeetingguiclient.h | 61 ------- kopete/plugins/netmeeting/netmeetinginvitation.cpp | 183 --------------------- kopete/plugins/netmeeting/netmeetinginvitation.h | 57 ------- kopete/plugins/netmeeting/netmeetingplugin.cpp | 91 ---------- kopete/plugins/netmeeting/netmeetingplugin.h | 47 ------ .../plugins/netmeeting/netmeetingpreferences.cpp | 81 --------- kopete/plugins/netmeeting/netmeetingpreferences.h | 47 ------ kopete/plugins/netmeeting/netmeetingprefs_ui.ui | 148 ----------------- kopete/plugins/nowlistening/nowlisteningplugin.cpp | 108 ++++-------- kopete/plugins/webpresence/webpresence_html.xsl | 3 - .../webpresence/webpresence_html_images.xsl | 3 - kopete/plugins/webpresence/webpresence_xhtml.xsl | 3 - .../webpresence/webpresence_xhtml_images.xsl | 3 - kopete/plugins/webpresence/webpresenceprefs.ui | 5 +- 24 files changed, 35 insertions(+), 1131 deletions(-) delete mode 100644 kopete/plugins/netmeeting/CMakeLists.txt delete mode 100644 kopete/plugins/netmeeting/Makefile.am delete mode 100644 kopete/plugins/netmeeting/kopete_netmeeting.desktop delete mode 100644 kopete/plugins/netmeeting/kopete_netmeeting_config.desktop delete mode 100644 kopete/plugins/netmeeting/netmeetingchatui.rc delete mode 100644 kopete/plugins/netmeeting/netmeetingguiclient.cpp delete mode 100644 kopete/plugins/netmeeting/netmeetingguiclient.h delete mode 100644 kopete/plugins/netmeeting/netmeetinginvitation.cpp delete mode 100644 kopete/plugins/netmeeting/netmeetinginvitation.h delete mode 100644 kopete/plugins/netmeeting/netmeetingplugin.cpp delete mode 100644 kopete/plugins/netmeeting/netmeetingplugin.h delete mode 100644 kopete/plugins/netmeeting/netmeetingpreferences.cpp delete mode 100644 kopete/plugins/netmeeting/netmeetingpreferences.h delete mode 100644 kopete/plugins/netmeeting/netmeetingprefs_ui.ui (limited to 'kopete/plugins') diff --git a/kopete/plugins/CMakeLists.txt b/kopete/plugins/CMakeLists.txt index a5c6b08c..f8eb63fc 100644 --- a/kopete/plugins/CMakeLists.txt +++ b/kopete/plugins/CMakeLists.txt @@ -22,7 +22,6 @@ tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_TEXTEFFECT texteffect ) tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_HIGHLIGHT highlight ) tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_ALIAS alias ) tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_MOTIONAUTOAWAY motionautoaway ) -tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_NETMEETING netmeeting ) tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_ADDBOOKMARKS addbookmarks ) tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_STATISTICS statistics ) tde_conditional_add_subdirectory( BUILD_KOPETE_PLUGIN_SMPPPDCS smpppdcs ) diff --git a/kopete/plugins/Makefile.am b/kopete/plugins/Makefile.am index 8b817465..ca0d0188 100644 --- a/kopete/plugins/Makefile.am +++ b/kopete/plugins/Makefile.am @@ -8,5 +8,5 @@ endif SUBDIRS = latex autoreplace history contactnotes cryptography\ connectionstatus translator nowlistening webpresence texteffect\ - highlight alias $(MOTIONAUTOAWAY_SUBDIR) netmeeting addbookmarks\ + highlight alias $(MOTIONAUTOAWAY_SUBDIR) addbookmarks\ statistics $(SMPPPDCS_SUBDIR) diff --git a/kopete/plugins/history/converter.cpp b/kopete/plugins/history/converter.cpp index ca3c2e74..0872e906 100644 --- a/kopete/plugins/history/converter.cpp +++ b/kopete/plugins/history/converter.cpp @@ -68,13 +68,7 @@ void HistoryPlugin::convertOldHistory() if(accountId.isNull() || protocolId.isNull()) { - if(fi->fileName() == "MSNProtocol" || fi->fileName() == "msn_logs" ) - { - protocolId="MSNProtocol"; - TDEGlobal::config()->setGroup("MSN"); - accountId=TDEGlobal::config()->readEntry( "UserID" ); - } - else if(fi->fileName() == "ICTQProtocol" || fi->fileName() == "icq_logs" ) + if(fi->fileName() == "ICTQProtocol" || fi->fileName() == "icq_logs" ) { protocolId="ICTQProtocol"; TDEGlobal::config()->setGroup("ICQ"); @@ -325,9 +319,7 @@ bool HistoryPlugin::detectOldHistory() if( dynamic_cast( Kopete::PluginManager::self()->plugin( fi->fileName() ) ) ) return true; - if(fi->fileName() == "MSNProtocol" || fi->fileName() == "msn_logs" ) - return true; - else if(fi->fileName() == "ICTQProtocol" || fi->fileName() == "icq_logs" ) + if(fi->fileName() == "ICTQProtocol" || fi->fileName() == "icq_logs" ) return true; else if(fi->fileName() == "AIMProtocol" || fi->fileName() == "aim_logs" ) return true; diff --git a/kopete/plugins/latex/latexplugin.cpp b/kopete/plugins/latex/latexplugin.cpp index 2773d21f..8c6e0ad8 100644 --- a/kopete/plugins/latex/latexplugin.cpp +++ b/kopete/plugins/latex/latexplugin.cpp @@ -178,7 +178,6 @@ void LatexPlugin::slotMessageAboutToShow( Kopete::Message& msg ) void LatexPlugin::slotMessageAboutToSend( Kopete::Message& msg) { Q_UNUSED(msg) - //disabled because to work correctly, we need to find what special has the gif we can send over MSN #if 0 TDEConfig *config = TDEGlobal::config(); config->setGroup("Latex Plugin"); @@ -189,8 +188,6 @@ void LatexPlugin::slotMessageAboutToSend( Kopete::Message& msg) TQString messageText = msg.plainBody(); if( !messageText.contains("$$")) return; -/* if( msg.from()->protocol()->pluginId()!="MSNProtocol" ) - return;*/ // this searches for $$formula$$ TQRegExp rg("^\\s*\\$\\$([^$]+)\\$\\$\\s*$"); @@ -226,7 +223,6 @@ TQString LatexPlugin::handleLatex(const TQString &latexFormula) TQString argumentRes = "-r %1x%2"; TQString argumentOut = "-o %1"; - //TQString argumentFormat = "-fgif"; //we uses gif format because MSN only handle gif int hDPI, vDPI; hDPI = LatexConfig::self()->horizontalDPI(); vDPI = LatexConfig::self()->verticalDPI(); diff --git a/kopete/plugins/netmeeting/CMakeLists.txt b/kopete/plugins/netmeeting/CMakeLists.txt deleted file mode 100644 index dfda84e3..00000000 --- a/kopete/plugins/netmeeting/CMakeLists.txt +++ /dev/null @@ -1,56 +0,0 @@ -################################################# -# -# (C) 2010-2011 Serghei Amelian -# serghei (DOT) amelian (AT) gmail.com -# -# Improvements and feedback are welcome -# -# This file is released under GPL >= 2 -# -################################################# - -if( NOT BUILD_KOPETE_PROTOCOL_MSN ) - tde_message_fatal( "netmeeting plugin needs msn protocol.\n Add -DBUILD_KOPETE_PROTOCOL_MSN=ON to cmake flags." ) -endif( ) - -include_directories( - ${CMAKE_CURRENT_BINARY_DIR} - ${CMAKE_BINARY_DIR} - ${CMAKE_SOURCE_DIR}/kopete/libkopete - ${CMAKE_SOURCE_DIR}/kopete/libkopete/ui - ${CMAKE_SOURCE_DIR}/kopete/protocols/msn - ${TDE_INCLUDE_DIR} - ${TQT_INCLUDE_DIRS} -) - -link_directories( - ${TQT_LIBRARY_DIRS} -) - - -##### other data ################################ - -install( FILES kopete_netmeeting.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) -install( FILES kopete_netmeeting_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tdeconfiguredialog ) -install( FILES netmeetingchatui.rc DESTINATION ${DATA_INSTALL_DIR}/kopete_netmeeting ) - - -##### kopete_netmeeting (module) ################ - -tde_add_kpart( kopete_netmeeting AUTOMOC - SOURCES - netmeetingplugin.cpp netmeetinginvitation.cpp - netmeetingguiclient.cpp - LINK kopete_msn_shared-shared kopete-shared - DESTINATION ${PLUGIN_INSTALL_DIR} -) - - -##### kcm_kopete_netmeeting (module) ############ - -tde_add_kpart( kcm_kopete_netmeeting AUTOMOC - SOURCES - netmeetingprefs_ui.ui netmeetingpreferences.cpp - LINK tdeutils-shared - DESTINATION ${PLUGIN_INSTALL_DIR} -) diff --git a/kopete/plugins/netmeeting/Makefile.am b/kopete/plugins/netmeeting/Makefile.am deleted file mode 100644 index 54b08a5b..00000000 --- a/kopete/plugins/netmeeting/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -METASOURCES = AUTO - -AM_CPPFLAGS = $(KOPETE_INCLUDES) -I$(top_srcdir)/kopete/protocols/msn $(all_includes) - -kde_module_LTLIBRARIES = kopete_netmeeting.la kcm_kopete_netmeeting.la - -kopete_netmeeting_la_SOURCES = netmeetingplugin.cpp netmeetinginvitation.cpp netmeetingguiclient.cpp -kopete_netmeeting_la_LDFLAGS = -module -no-undefined $(KDE_PLUGIN) $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -kopete_netmeeting_la_LIBADD = $(top_builddir)/kopete/libkopete/libkopete.la $(top_builddir)/kopete/protocols/msn/libkopete_msn_shared.la - -service_DATA = kopete_netmeeting.desktop -servicedir = $(kde_servicesdir) - -mydatadir = $(kde_datadir)/kopete_netmeeting -mydata_DATA = netmeetingchatui.rc - -kcm_kopete_netmeeting_la_SOURCES = netmeetingprefs_ui.ui netmeetingpreferences.cpp -kcm_kopete_netmeeting_la_LDFLAGS = -module -no-undefined $(KDE_PLUGIN) $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -kcm_kopete_netmeeting_la_LIBADD = $(LIB_KOPETECOMPAT) $(LIB_TDEUTILS) - - -kcm_DATA = kopete_netmeeting_config.desktop -kcmdir = $(kde_servicesdir)/tdeconfiguredialog diff --git a/kopete/plugins/netmeeting/kopete_netmeeting.desktop b/kopete/plugins/netmeeting/kopete_netmeeting.desktop deleted file mode 100644 index 5c697fbe..00000000 --- a/kopete/plugins/netmeeting/kopete_netmeeting.desktop +++ /dev/null @@ -1,81 +0,0 @@ -[Desktop Entry] -Type=Service -X-Kopete-Version=1000900 -Icon=phone -ServiceTypes=Kopete/Plugin -X-TDE-Library=kopete_netmeeting -X-TDE-PluginInfo-Author=Olivier Goffart -X-TDE-PluginInfo-Email=ogoffart@tiscalinet.be -X-TDE-PluginInfo-Name=kopete_netmeeting -X-TDE-PluginInfo-Version=0.8.0 -X-TDE-PluginInfo-Website=http://kopete.kde.org -X-TDE-PluginInfo-Category=Plugins -X-TDE-PluginInfo-Depends=kopete_msn -X-TDE-PluginInfo-License=GPL -X-TDE-PluginInfo-EnabledByDefault=false -Name=Netmeeting -Name[ar]=الاجتماع على الشبكة -Name[bg]=Видео чат -Name[bn]=নেট মিটিং -Name[da]=Netmøde -Name[eo]=Reta renkontiĝo -Name[fa]=نت میتینگ -Name[fr]=Vidéo-conférence -Name[hi]=नेटमीटिंग -Name[ja]=ネットミーティング -Name[km]=ប្រជុំ​លើ​បណ្ដាញ -Name[lt]=Bendravimas tinkle -Name[nds]=Nettmööt -Name[ne]=नेट मिटिङ -Name[nl]=NetMeeting -Name[pa]=ਨੈੱਟ-ਮੀਟਿੰਗ -Name[sv]=Nätverksmöte -Name[ta]=இணைய சந்திப்பு -Name[tg]=Вохӯриҳои шабакавӣ -Comment=Voice and Video with MSN Messenger -Comment[be]=Гук і відэа праз MSN Messenger -Comment[bg]=Приставка за разговор с глас и видео с MSN Messenger -Comment[bn]=এমএসএন বার্তাবাহকের সঙ্গে স্বর এবং ভিডিও -Comment[bs]=Glas i video sa MSN Messengerom -Comment[ca]=Veu i vídeo amb MSN Messenger -Comment[cs]=Hlas a video pomocí MSN Messenger -Comment[da]=Stemme og video med MSN Messenger -Comment[de]=Sprache und Video mit dem MSN-Messenger verwenden -Comment[el]=Βίντεο και εικόνα με το MSN Messenger -Comment[es]=Voz y vídeo con MSN Messenger -Comment[et]=Audio ja video kasutamine MSN Messengeriga -Comment[eu]=Ahotsa eta bideoa MSN Messenger-ekin -Comment[fa]=ویدیو و صدا با پیام‌رسان ام‌اس‌ان -Comment[fi]=Ääni ja videokuva MSN Messengerin kanssa -Comment[fr]=Voix et vidéo avec MSN Messenger -Comment[gl]=Voz e video con MSN Messenger -Comment[he]=חוזי ושמע עם MSN Messenger -Comment[hu]=Hang és videó az MSN Messengerrel -Comment[is]=Hljóð og vídeó með MSN Messenger -Comment[it]=Voce e video con MSN Messenger -Comment[ja]=MSN メッセンジャーとボイス/ビデオチャット -Comment[ka]=ხმა და ვიდეო MSN მესინჯერთან -Comment[kk]=MSN Messenger дыбыс пен бейнемен -Comment[km]=សំឡេង និង​វីដេអូ​ដោយ​ប្រើ​កម្មវិធី​ផ្ញើ​សារ MSN -Comment[lt]=Bendravimas balsu ir vaizdu per MSN Messenger -Comment[mk]=Глас и видео со Гласникот на MSN -Comment[nb]=Lyd og bilde med MSN Messenger -Comment[nds]=Spraak un Video mit dat MSN-Kortnarichtenprogramm -Comment[ne]=एमएसएन मेसेन्जरसँग आवाज र भिडियो -Comment[nl]=Beeld en geluid met MSN Messenger -Comment[nn]=Lyd og bilete med MSN Messenger -Comment[pl]=Głos i wideo za pomocą MSN Messenger -Comment[pt]=Voz e Vídeo com o MSN Messenger -Comment[pt_BR]=Voz e Vídeo com o MSN Messenger -Comment[ru]=Аудио и видео с MSN Messenger -Comment[sk]=Hlas a video pomocou MSN Messenger -Comment[sl]=Glas in video z MSN Messenger -Comment[sr]=Глас и видео са MSN Messenger-ом -Comment[sr@Latn]=Glas i video sa MSN Messenger-om -Comment[sv]=Ljud och video med MSN Messenger -Comment[ta]=எம்எஸ்என் செய்தியில் குரல் மற்றும் படக்காட்சி -Comment[tr]=MSN Messenger ile Video ve Ses -Comment[uk]=Аудіо і відео з MSN Messenger -Comment[zh_CN]=与 MSN Messenger 一起使用影音 -Comment[zh_HK]=和 MSN Messenger 一起使用語音和視像 -Comment[zh_TW]=MSN Messenger 影像與聲音 diff --git a/kopete/plugins/netmeeting/kopete_netmeeting_config.desktop b/kopete/plugins/netmeeting/kopete_netmeeting_config.desktop deleted file mode 100644 index 0d266c03..00000000 --- a/kopete/plugins/netmeeting/kopete_netmeeting_config.desktop +++ /dev/null @@ -1,77 +0,0 @@ -[Desktop Entry] -Icon=highlight -Type=Service -ServiceTypes=TDECModule - -X-TDE-ModuleType=Library -X-TDE-Library=kopete_netmeeting -X-TDE-FactoryName=NetmeetingConfigFactory -X-TDE-ParentApp=kopete_netmeeting -X-TDE-ParentComponents=kopete_netmeeting - -Name=Netmeeting -Name[ar]=الاجتماع على الشبكة -Name[bg]=Видео чат -Name[bn]=নেট মিটিং -Name[da]=Netmøde -Name[eo]=Reta renkontiĝo -Name[fa]=نت میتینگ -Name[fr]=Vidéo-conférence -Name[hi]=नेटमीटिंग -Name[ja]=ネットミーティング -Name[km]=ប្រជុំ​លើ​បណ្ដាញ -Name[lt]=Bendravimas tinkle -Name[nds]=Nettmööt -Name[ne]=नेट मिटिङ -Name[nl]=NetMeeting -Name[pa]=ਨੈੱਟ-ਮੀਟਿੰਗ -Name[sv]=Nätverksmöte -Name[ta]=இணைய சந்திப்பு -Name[tg]=Вохӯриҳои шабакавӣ -Comment=Voice and Video with MSN Messenger -Comment[be]=Гук і відэа праз MSN Messenger -Comment[bg]=Приставка за разговор с глас и видео с MSN Messenger -Comment[bn]=এমএসএন বার্তাবাহকের সঙ্গে স্বর এবং ভিডিও -Comment[bs]=Glas i video sa MSN Messengerom -Comment[ca]=Veu i vídeo amb MSN Messenger -Comment[cs]=Hlas a video pomocí MSN Messenger -Comment[da]=Stemme og video med MSN Messenger -Comment[de]=Sprache und Video mit dem MSN-Messenger verwenden -Comment[el]=Βίντεο και εικόνα με το MSN Messenger -Comment[es]=Voz y vídeo con MSN Messenger -Comment[et]=Audio ja video kasutamine MSN Messengeriga -Comment[eu]=Ahotsa eta bideoa MSN Messenger-ekin -Comment[fa]=ویدیو و صدا با پیام‌رسان ام‌اس‌ان -Comment[fi]=Ääni ja videokuva MSN Messengerin kanssa -Comment[fr]=Voix et vidéo avec MSN Messenger -Comment[gl]=Voz e video con MSN Messenger -Comment[he]=חוזי ושמע עם MSN Messenger -Comment[hu]=Hang és videó az MSN Messengerrel -Comment[is]=Hljóð og vídeó með MSN Messenger -Comment[it]=Voce e video con MSN Messenger -Comment[ja]=MSN メッセンジャーとボイス/ビデオチャット -Comment[ka]=ხმა და ვიდეო MSN მესინჯერთან -Comment[kk]=MSN Messenger дыбыс пен бейнемен -Comment[km]=សំឡេង និង​វីដេអូ​ដោយ​ប្រើ​កម្មវិធី​ផ្ញើ​សារ MSN -Comment[lt]=Bendravimas balsu ir vaizdu per MSN Messenger -Comment[mk]=Глас и видео со Гласникот на MSN -Comment[nb]=Lyd og bilde med MSN Messenger -Comment[nds]=Spraak un Video mit dat MSN-Kortnarichtenprogramm -Comment[ne]=एमएसएन मेसेन्जरसँग आवाज र भिडियो -Comment[nl]=Beeld en geluid met MSN Messenger -Comment[nn]=Lyd og bilete med MSN Messenger -Comment[pl]=Głos i wideo za pomocą MSN Messenger -Comment[pt]=Voz e Vídeo com o MSN Messenger -Comment[pt_BR]=Voz e Vídeo com o MSN Messenger -Comment[ru]=Аудио и видео с MSN Messenger -Comment[sk]=Hlas a video pomocou MSN Messenger -Comment[sl]=Glas in video z MSN Messenger -Comment[sr]=Глас и видео са MSN Messenger-ом -Comment[sr@Latn]=Glas i video sa MSN Messenger-om -Comment[sv]=Ljud och video med MSN Messenger -Comment[ta]=எம்எஸ்என் செய்தியில் குரல் மற்றும் படக்காட்சி -Comment[tr]=MSN Messenger ile Video ve Ses -Comment[uk]=Аудіо і відео з MSN Messenger -Comment[zh_CN]=与 MSN Messenger 一起使用影音 -Comment[zh_HK]=和 MSN Messenger 一起使用語音和視像 -Comment[zh_TW]=MSN Messenger 影像與聲音 diff --git a/kopete/plugins/netmeeting/netmeetingchatui.rc b/kopete/plugins/netmeeting/netmeetingchatui.rc deleted file mode 100644 index b0d139ae..00000000 --- a/kopete/plugins/netmeeting/netmeetingchatui.rc +++ /dev/null @@ -1,9 +0,0 @@ - - - - - &Tools - - - - diff --git a/kopete/plugins/netmeeting/netmeetingguiclient.cpp b/kopete/plugins/netmeeting/netmeetingguiclient.cpp deleted file mode 100644 index bf457b90..00000000 --- a/kopete/plugins/netmeeting/netmeetingguiclient.cpp +++ /dev/null @@ -1,61 +0,0 @@ -/* - netmeetingguiclient.cpp - - Kopete NetMeeting plugin - - Copyright (c) 2003-2004 by Olivier Goffart - - Kopete (c) 2003-2004 by the Kopete developers - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ - -#include - -#include -#include -#include -#include - -#include "msnchatsession.h" -#include "msncontact.h" - -#include "netmeetingguiclient.h" -#include "netmeetinginvitation.h" - -class NetMeetingPlugin; - -NetMeetingGUIClient::NetMeetingGUIClient( MSNChatSession *parent, const char *name ) -: TQObject( parent, name ) , KXMLGUIClient(parent) -{ - setInstance(KGenericFactory::instance()); - m_manager=parent; - - new TDEAction( i18n( "Invite to Use NetMeeting" ), 0, this, TQT_SLOT( slotStartInvitation() ), actionCollection() , "netmeeting" ) ; - - setXMLFile("netmeetingchatui.rc"); -} - -NetMeetingGUIClient::~NetMeetingGUIClient() -{ - -} - -void NetMeetingGUIClient::slotStartInvitation() -{ - TQPtrList c=m_manager->members(); - NetMeetingInvitation *i=new NetMeetingInvitation(false, static_cast(c.first()),m_manager); - m_manager->initInvitation(i); -} - -#include "netmeetingguiclient.moc" - -// vim: set noet ts=4 sts=4 sw=4: - diff --git a/kopete/plugins/netmeeting/netmeetingguiclient.h b/kopete/plugins/netmeeting/netmeetingguiclient.h deleted file mode 100644 index 882a7759..00000000 --- a/kopete/plugins/netmeeting/netmeetingguiclient.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - netmeetingguiclient.h - - Kopete NetMeeting Plugin - - Copyright (c) 2003 by Olivier Goffart - - Kopete (c) 2003 by the Kopete developers - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ - -#ifndef TRANSLATORGUICLIENT_H -#define TRANSLATORGUICLIENT_H - -#include -#include - -namespace Kopete { class ChatSession; } -class MSNChatSession; -class NetMeetingPlugin; - -/** - * @author Olivier Goffart - */ - -class NetMeetingGUIClient : public TQObject , public KXMLGUIClient -{ - Q_OBJECT - - -public: - NetMeetingGUIClient( MSNChatSession *parent, const char *name=0L); - ~NetMeetingGUIClient(); - -private slots: - void slotStartInvitation(); - -private: - MSNChatSession *m_manager; - NetMeetingPlugin *m_plugin; -}; - -#endif - -/* - * Local variables: - * c-indentation-style: k&r - * c-basic-offset: 8 - * indent-tabs-mode: t - * End: - */ -// vim: set noet ts=4 sts=4 sw=4: - diff --git a/kopete/plugins/netmeeting/netmeetinginvitation.cpp b/kopete/plugins/netmeeting/netmeetinginvitation.cpp deleted file mode 100644 index b42f9e93..00000000 --- a/kopete/plugins/netmeeting/netmeetinginvitation.cpp +++ /dev/null @@ -1,183 +0,0 @@ -/* - msninvitation.cpp - - Copyright (c) 2003 by Olivier Goffart - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ - -#include "netmeetinginvitation.h" - -#include "kopeteuiglobal.h" - -#include "msnchatsession.h" -#include "msnswitchboardsocket.h" -#include "msncontact.h" -#include "kopetemetacontact.h" - -#include -#include -#include -#include -#include - - -#include -#include - -NetMeetingInvitation::NetMeetingInvitation(bool incoming, MSNContact *c, TQObject *parent) - : TQObject(parent) , MSNInvitation( incoming, NetMeetingInvitation::applicationID() , i18n("NetMeeting") ) -{ - m_contact=c; - oki=false; -} - - -NetMeetingInvitation::~NetMeetingInvitation() -{ -} - - -TQString NetMeetingInvitation::invitationHead() -{ - TQTimer::singleShot( 10*60000, this, TQT_SLOT( slotTimeout() ) ); //send TIMEOUT in 10 minute if the invitation has not been accepted/refused - return TQString( MSNInvitation::invitationHead()+ - "Session-Protocol: SM1\r\n" - "Session-ID: {6672F94C-45BF-11D7-B4AE-00010A1008DF}\r\n" //FIXME i don't know what is the session id - "\r\n").utf8(); -} - -void NetMeetingInvitation::parseInvitation(const TQString& msg) -{ - TQRegExp rx("Invitation-Command: ([A-Z]*)"); - rx.search(msg); - TQString command=rx.cap(1); - if( msg.contains("Invitation-Command: INVITE") ) - { - MSNInvitation::parseInvitation(msg); //for the cookie - - unsigned int result = KMessageBox::questionYesNo( Kopete::UI::Global::mainWidget(), - i18n("%1 wants to start a chat with NetMeeting; do you want to accept it? " ).arg(m_contact->metaContact()->displayName()), - i18n("MSN Plugin") , i18n("Accept"),i18n("Refuse")); - - MSNChatSession* manager=dynamic_cast(m_contact->manager()); - - if(manager && manager->service()) - { - if(result==3) // Yes == 3 - { - TQCString message=TQString( - "MIME-Version: 1.0\r\n" - "Content-Type: text/x-msmsgsinvite; charset=UTF-8\r\n" - "\r\n" - "Invitation-Command: ACCEPT\r\n" - "Invitation-Cookie: " + TQString::number(cookie()) + "\r\n" - "Session-ID: {6672F94C-45BF-11D7-B4AE-00010A1008DF}\r\n" //FIXME - "Session-Protocol: SM1\r\n" - "Launch-Application: TRUE\r\n" - "Request-Data: IP-Address:\r\n" - "IP-Address: " + manager->service()->getLocalIP()+ "\r\n" - "\r\n" ).utf8(); - - - manager->service()->sendCommand( "MSG" , "N", true, message ); - oki=false; - TQTimer::singleShot( 10* 60000, this, TQT_SLOT( slotTimeout() ) ); //TIMOUT afte 10 min - } - else //No - { - manager->service()->sendCommand( "MSG" , "N", true, rejectMessage() ); - emit done(this); - } - } - } - else if( msg.contains("Invitation-Command: ACCEPT") ) - { - if( ! incoming() ) - { - MSNChatSession* manager=dynamic_cast(m_contact->manager()); - if(manager && manager->service()) - { - TQCString message=TQString( - "MIME-Version: 1.0\r\n" - "Content-Type: text/x-msmsgsinvite; charset=UTF-8\r\n" - "\r\n" - "Invitation-Command: ACCEPT\r\n" - "Invitation-Cookie: " + TQString::number(cookie()) + "\r\n" - "Session-ID: {6672F94C-45BF-11D7-B4AE-00010A1008DF}\r\n" //FIXME: what is session id? - "Session-Protocol: SM1\r\n" - "Launch-Application: TRUE\r\n" - "Request-Data: IP-Address:\r\n" - "IP-Address: " + manager->service()->getLocalIP() + "\r\n" - "\r\n" ).utf8(); - manager->service()->sendCommand( "MSG" , "N", true, message ); - } - rx=TQRegExp("IP-Address: ([0-9\\:\\.]*)"); - rx.search(msg); - TQString ip_address = rx.cap(1); - startMeeting(ip_address); - kdDebug() << k_funcinfo << ip_address << endl; - } - else - { - rx=TQRegExp("IP-Address: ([0-9\\:\\.]*)"); - rx.search(msg); - TQString ip_address = rx.cap(1); - - startMeeting(ip_address); - } - } - else //CANCEL - { - emit done(this); - } -} - -void NetMeetingInvitation::slotTimeout() -{ - if(oki) - return; - - MSNChatSession* manager=dynamic_cast(m_contact->manager()); - - if(manager && manager->service()) - { - manager->service()->sendCommand( "MSG" , "N", true, rejectMessage("TIMEOUT") ); - } - emit done(this); - -} - - -void NetMeetingInvitation::startMeeting(const TQString & ip_address) -{ - //TODO: use TDEProcess - - TDEConfig *config=TDEGlobal::config(); - config->setGroup("Netmeeting Plugin"); - TQString app=config->readEntry("NetmeetingApplication","ekiga -c callto://%1").arg(ip_address); - - kdDebug() << k_funcinfo << app << endl ; - - TQStringList args=TQStringList::split(" ", app); - - TDEProcess p; - for(TQStringList::Iterator it=args.begin() ; it != args.end() ; ++it) - { - p << *it; - } - p.start(); -} - -#include "netmeetinginvitation.moc" - - - - diff --git a/kopete/plugins/netmeeting/netmeetinginvitation.h b/kopete/plugins/netmeeting/netmeetinginvitation.h deleted file mode 100644 index 8bf88e96..00000000 --- a/kopete/plugins/netmeeting/netmeetinginvitation.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - netmeetinginvitation.cpp - - Copyright (c) 2003 by Olivier Goffart - - Kopete (c) 2003 by the Kopete developers - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ -#ifndef MSNVOICEINVITATION_H -#define MSNVOICEINVITATION_H - -#include -#include "msninvitation.h" - -class MSNContact; - -/** - *@author Olivier Goffart - */ -class NetMeetingInvitation : public TQObject , public MSNInvitation -{ -Q_OBJECT - -public: - NetMeetingInvitation(bool incoming ,MSNContact*, TQObject *parent = 0); - ~NetMeetingInvitation(); - - static TQString applicationID() { return "44BBA842-CC51-11CF-AAFA-00AA00B6015C"; } - TQString invitationHead(); - - virtual void parseInvitation(const TQString& invitation); - - virtual TQObject* object() { return this; } - -signals: - void done( MSNInvitation * ); - -private slots: - void slotTimeout(); - -private: - MSNContact *m_contact; - bool oki; - void startMeeting(const TQString & ip_address); - -}; - - -#endif diff --git a/kopete/plugins/netmeeting/netmeetingplugin.cpp b/kopete/plugins/netmeeting/netmeetingplugin.cpp deleted file mode 100644 index 17dfcc0b..00000000 --- a/kopete/plugins/netmeeting/netmeetingplugin.cpp +++ /dev/null @@ -1,91 +0,0 @@ -/* - netmeetingplugin.cpp - - Copyright (c) 2003-2004 by Olivier Goffart - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ - -#include "netmeetingplugin.h" - -#include -#include -#include -#include -#include - -#include "kopetepluginmanager.h" -#include "kopetechatsessionmanager.h" - -#include "msnchatsession.h" -#include "msnprotocol.h" -#include "msncontact.h" - -#include "netmeetinginvitation.h" -#include "netmeetingguiclient.h" - - -static const TDEAboutData aboutdata("kopete_netmeeting", I18N_NOOP("NetMeeting") , "1.0" ); -K_EXPORT_COMPONENT_FACTORY( kopete_netmeeting, KGenericFactory( &aboutdata ) ) - -NetMeetingPlugin::NetMeetingPlugin( TQObject *parent, const char *name, const TQStringList &/*args*/ ) -: Kopete::Plugin( TDEGlobal::instance(), parent, name ) -{ - if(MSNProtocol::protocol()) - slotPluginLoaded(MSNProtocol::protocol()); - else - connect(Kopete::PluginManager::self() , TQT_SIGNAL(pluginLoaded(Kopete::Plugin*) ), this, TQT_SLOT(slotPluginLoaded(Kopete::Plugin*))); - - - connect( Kopete::ChatSessionManager::self(), TQT_SIGNAL( chatSessionCreated( Kopete::ChatSession * )) , TQT_SLOT( slotNewKMM( Kopete::ChatSession * ) ) ); - //Add GUI action to all already existing kmm (if the plugin is launched when kopete already rining) - TQValueList sessions = Kopete::ChatSessionManager::self()->sessions(); - for (TQValueListIterator it= sessions.begin(); it!=sessions.end() ; ++it) - { - slotNewKMM(*it); - } -} - -NetMeetingPlugin::~NetMeetingPlugin() -{ - -} - -void NetMeetingPlugin::slotPluginLoaded(Kopete::Plugin *p) -{ - if(p->pluginId()=="MSNProtocol") - { - connect( p , TQT_SIGNAL(invitation(MSNInvitation*& , const TQString & , long unsigned int , MSNChatSession* , MSNContact* )) , - this, TQT_SLOT( slotInvitation(MSNInvitation*& , const TQString & , long unsigned int , MSNChatSession* , MSNContact* ))); - } -} - -void NetMeetingPlugin::slotNewKMM(Kopete::ChatSession *KMM) -{ - MSNChatSession *msnMM=dynamic_cast(KMM); - if(msnMM) - { - connect(this , TQT_SIGNAL( destroyed(TQObject*)) , - new NetMeetingGUIClient(msnMM) - , TQT_SLOT(deleteLater())); - } -} - - -void NetMeetingPlugin::slotInvitation(MSNInvitation*& invitation, const TQString &bodyMSG , long unsigned int /*cookie*/ , MSNChatSession* msnMM , MSNContact* c ) -{ - if(!invitation && bodyMSG.contains(NetMeetingInvitation::applicationID())) - { - invitation=new NetMeetingInvitation(true,c,msnMM); - invitation->parseInvitation(bodyMSG); - } -} - -#include "netmeetingplugin.moc" diff --git a/kopete/plugins/netmeeting/netmeetingplugin.h b/kopete/plugins/netmeeting/netmeetingplugin.h deleted file mode 100644 index 0456dadd..00000000 --- a/kopete/plugins/netmeeting/netmeetingplugin.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - netmeetingplugin.h - - Copyright (c) 2003 by Olivier Goffart - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ - - - -#ifndef NetMeetingPLUGIN_H -#define NetMeetingPLUGIN_H - -#include "kopeteplugin.h" - -namespace Kopete { class ChatSession; } -class MSNChatSession; -class MSNContact; -class MSNInvitation; - - -class NetMeetingPlugin : public Kopete::Plugin -{ - Q_OBJECT - - -public: - NetMeetingPlugin( TQObject *parent, const char *name, const TQStringList &args ); - ~NetMeetingPlugin(); - -private slots: - void slotNewKMM(Kopete::ChatSession *); - void slotPluginLoaded(Kopete::Plugin*); - void slotInvitation(MSNInvitation*& invitation, const TQString &bodyMSG , long unsigned int cookie , MSNChatSession* msnMM , MSNContact* c ); - - -}; - -#endif - diff --git a/kopete/plugins/netmeeting/netmeetingpreferences.cpp b/kopete/plugins/netmeeting/netmeetingpreferences.cpp deleted file mode 100644 index 309d4d15..00000000 --- a/kopete/plugins/netmeeting/netmeetingpreferences.cpp +++ /dev/null @@ -1,81 +0,0 @@ -/*************************************************************************** - Netmeetingpreferences.cpp - description - ------------------- - copyright : (C) 2004 by Olivier Goffart - email : ogoffart @ kde.org - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ - -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "netmeetingplugin.h" -#include "netmeetingprefs_ui.h" -#include "netmeetingpreferences.h" - -typedef KGenericFactory NetmeetingPreferencesFactory; -K_EXPORT_COMPONENT_FACTORY( kcm_kopete_netmeeting, NetmeetingPreferencesFactory( "kcm_kopete_netmeeting" ) ) - -NetmeetingPreferences::NetmeetingPreferences(TQWidget *parent, const char* /*name*/, const TQStringList &args) - : TDECModule(NetmeetingPreferencesFactory::instance(), parent, args) -{ - ( new TQVBoxLayout( this ) )->setAutoAdd( true ); - preferencesDialog = new NetmeetingPrefsUI(this); - - connect(preferencesDialog->m_app , TQT_SIGNAL(textChanged(const TQString &)) , this , TQT_SLOT(slotChanged())); - - load(); -} - -NetmeetingPreferences::~NetmeetingPreferences() -{ -} - -void NetmeetingPreferences::load() -{ - TDEConfig *config=TDEGlobal::config(); - config->setGroup("Netmeeting Plugin"); - preferencesDialog->m_app->setCurrentText(config->readEntry("NetmeetingApplication","ekiga -c callto://%1")); - emit TDECModule::changed(false); -} - -void NetmeetingPreferences::save() -{ - TDEConfig *config=TDEGlobal::config(); - config->setGroup("Netmeeting Plugin"); - config->writeEntry("NetmeetingApplication",preferencesDialog->m_app->currentText()); - emit TDECModule::changed(false); -} - - -void NetmeetingPreferences::slotChanged() -{ - emit TDECModule::changed(true); -} - -#include "netmeetingpreferences.moc" - -// vim: set noet ts=4 sts=4 sw=4: diff --git a/kopete/plugins/netmeeting/netmeetingpreferences.h b/kopete/plugins/netmeeting/netmeetingpreferences.h deleted file mode 100644 index 958860cf..00000000 --- a/kopete/plugins/netmeeting/netmeetingpreferences.h +++ /dev/null @@ -1,47 +0,0 @@ -/*************************************************************************** - netmeetingpreferences.h - description - ------------------- - copyright : (C) 2004 by Olivier Goffart - email : ogoffart @ kde.org - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ - -#ifndef NetmeetingPREFERENCES_H -#define NetmeetingPREFERENCES_H - -#include -#include - -class NetmeetingPrefsUI; - -/** - *@author Olivier Goffart - */ - -class NetmeetingPreferences : public TDECModule { - Q_OBJECT - -public: - - NetmeetingPreferences(TQWidget *parent = 0, const char* name = 0, const TQStringList &args = TQStringList()); - ~NetmeetingPreferences(); - - virtual void save(); - virtual void load(); - -private: - NetmeetingPrefsUI *preferencesDialog; - -private slots: - void slotChanged(); -}; - -#endif diff --git a/kopete/plugins/netmeeting/netmeetingprefs_ui.ui b/kopete/plugins/netmeeting/netmeetingprefs_ui.ui deleted file mode 100644 index 0c0838fb..00000000 --- a/kopete/plugins/netmeeting/netmeetingprefs_ui.ui +++ /dev/null @@ -1,148 +0,0 @@ - -NetmeetingPrefsUI -Olivier Goffart - - - Form1 - - - - 0 - 0 - 424 - 297 - - - - - unnamed - - - - textLabel1 - - - The NetMeeting Plugin allows you to start a video or voice chat with your MSN Messenger contacts. - -This is not the same as webcam chat you can find in the newer Windows Messenger®, but uses the older NetMeeting chat you can find in old versions. - - - WordBreak|AlignVCenter - - - - - line1 - - - HLine - - - Sunken - - - Horizontal - - - - - layout1 - - - - unnamed - - - - textLabel2 - - - Application to launch: - - - - - - ekiga -c callto://%1 - - - - - konference callto://%1 - - - - m_app - - - - 3 - 0 - 0 - 0 - - - - true - - - true - - - - - - - textLabel3 - - - <b>%1</b> will be replaced by the ip to call - - - WordBreak|AlignVCenter - - - - - spacer1 - - - Vertical - - - Expanding - - - - 21 - 60 - - - - - - kActiveLabel1 - - - - 5 - 5 - 0 - 0 - - - - You can download Konference here: <a href="http://www.kde-apps.org/content/show.php?content=10395">http://www.kde-apps.org/content/show.php?content=10395</a> - - - - - - - - - kcombobox.h - klineedit.h - kactivelabel.h - - diff --git a/kopete/plugins/nowlistening/nowlisteningplugin.cpp b/kopete/plugins/nowlistening/nowlisteningplugin.cpp index 6fcc21cd..31284446 100644 --- a/kopete/plugins/nowlistening/nowlisteningplugin.cpp +++ b/kopete/plugins/nowlistening/nowlisteningplugin.cpp @@ -258,84 +258,36 @@ void NowListeningPlugin::slotAdvertCurrentMusic() TQPtrList accountsList = Kopete::AccountManager::self()->accounts(); for( Kopete::Account* a = accountsList.first(); a; a = accountsList.next() ) { - /* - NOTE: - MSN status message(personal message) use a special tag to advert the current music playing. - So, we don't send the all formatted string, send a special string seperated by ";". - - Also, do not use MSN hack in appending mode. - */ - if( a->protocol()->pluginId() == "MSNProtocol" && !NowListeningConfig::self()->appendStatusAdvertising() ) - { - TQString track, artist, album, mediaList; - bool isPlaying=false; - - if( NowListeningConfig::self()->useSpecifiedMediaPlayer() && d->m_currentMediaPlayer ) - { - if( d->m_currentMediaPlayer->playing() ) - { - track = d->m_currentMediaPlayer->track(); - artist = d->m_currentMediaPlayer->artist(); - album = d->m_currentMediaPlayer->album(); - mediaList = track + ";" + artist + ";" + album; - isPlaying = true; - } - } - else - { - for ( NLMediaPlayer* i = d->m_mediaPlayerList.first(); i; i = d->m_mediaPlayerList.next() ) - { - if( i->playing() ) - { - track = i->track(); - artist = i->artist(); - album = i->album(); - mediaList = track + ";" + artist + ";" + album; - isPlaying = true; - } - } - } - - // KDE4 TODO: Use the new status message framework, and remove this "hack". - if( isPlaying ) - { - advert = TQString("[Music]%1").arg(mediaList); - } - - } - else - { - if( NowListeningConfig::self()->appendStatusAdvertising() ) - { - // Check for the now listening message in parenthesis, - // include the header to not override other messages in parenthesis. - TQRegExp statusSong( TQString(" \\(%1.*\\)$").arg( NowListeningConfig::header()) ); - - // HACK: Don't keep appending the now listened song. Replace it in the status message. - advert = a->myself()->property( Kopete::Global::Properties::self()->awayMessage() ).value().toString(); - // Remove the braces when they are no listened song. - TQString mediaAdvert = mediaPlayerAdvert(false); - if(!mediaAdvert.isEmpty()) - { - if(statusSong.search(advert) != -1) - { - advert = advert.replace(statusSong, TQString(" (%1)").arg(mediaPlayerAdvert(false)) ); - } - else - { - advert += TQString(" (%1)").arg( mediaPlayerAdvert(false) ); - } - } - else - { - advert = advert.replace(statusSong, ""); - } - } - else - { - advert = mediaPlayerAdvert(false); // newTrackPlaying has done the update. - } - } + if( NowListeningConfig::self()->appendStatusAdvertising() ) + { + // Check for the now listening message in parenthesis, + // include the header to not override other messages in parenthesis. + TQRegExp statusSong( TQString(" \\(%1.*\\)$").arg( NowListeningConfig::header()) ); + + // HACK: Don't keep appending the now listened song. Replace it in the status message. + advert = a->myself()->property( Kopete::Global::Properties::self()->awayMessage() ).value().toString(); + // Remove the braces when they are no listened song. + TQString mediaAdvert = mediaPlayerAdvert(false); + if(!mediaAdvert.isEmpty()) + { + if(statusSong.search(advert) != -1) + { + advert = advert.replace(statusSong, TQString(" (%1)").arg(mediaPlayerAdvert(false)) ); + } + else + { + advert += TQString(" (%1)").arg( mediaPlayerAdvert(false) ); + } + } + else + { + advert = advert.replace(statusSong, ""); + } + } + else + { + advert = mediaPlayerAdvert(false); // newTrackPlaying has done the update. + } a->setOnlineStatus(a->myself()->onlineStatus(), advert); } diff --git a/kopete/plugins/webpresence/webpresence_html.xsl b/kopete/plugins/webpresence/webpresence_html.xsl index f768ccf5..e0e55589 100644 --- a/kopete/plugins/webpresence/webpresence_html.xsl +++ b/kopete/plugins/webpresence/webpresence_html.xsl @@ -57,9 +57,6 @@ AIM - - MSN - ICQ diff --git a/kopete/plugins/webpresence/webpresence_html_images.xsl b/kopete/plugins/webpresence/webpresence_html_images.xsl index 5b707046..bd97657b 100644 --- a/kopete/plugins/webpresence/webpresence_html_images.xsl +++ b/kopete/plugins/webpresence/webpresence_html_images.xsl @@ -24,9 +24,6 @@ - - MSN - ICQ diff --git a/kopete/plugins/webpresence/webpresence_xhtml.xsl b/kopete/plugins/webpresence/webpresence_xhtml.xsl index 9d749c14..acec55ee 100644 --- a/kopete/plugins/webpresence/webpresence_xhtml.xsl +++ b/kopete/plugins/webpresence/webpresence_xhtml.xsl @@ -56,9 +56,6 @@ AIM - - MSN - ICQ diff --git a/kopete/plugins/webpresence/webpresence_xhtml_images.xsl b/kopete/plugins/webpresence/webpresence_xhtml_images.xsl index 8254a674..cf8d0219 100644 --- a/kopete/plugins/webpresence/webpresence_xhtml_images.xsl +++ b/kopete/plugins/webpresence/webpresence_xhtml_images.xsl @@ -25,9 +25,6 @@ - - MSN - ICQ diff --git a/kopete/plugins/webpresence/webpresenceprefs.ui b/kopete/plugins/webpresence/webpresenceprefs.ui index 0a676973..89670521 100644 --- a/kopete/plugins/webpresence/webpresenceprefs.ui +++ b/kopete/plugins/webpresence/webpresenceprefs.ui @@ -200,16 +200,15 @@ Note that some web browsers do not support XHTML. You should also make sure your Repla&ce protocol text with images in (X)HTML - Replaces the protocol names, such as MSN and IRC with images. + Replaces the protocol names, such as IRC with images. - Replaces the protocol names, such as MSN and IRC with images. + Replaces the protocol names, such as IRC with images. Note that you have to manually copy the PNG files into place. The following files are used by default: -images/msn_protocol.png images/icq_protocol.png images/jabber_protocol.png images/yahoo_protocol.png -- cgit v1.2.1