Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > 5d8446d2074649ee8939b13a97d00f34 > files > 42

kdepim-3.4.2-13mdk.src.rpm

Only in kdepim/: .svn
Only in tmp/kdepim-3.4.2/: Makefile.am
Only in kdepim/: Makefile.cvs
Only in tmp/kdepim-3.4.2/: Makefile.in
Only in tmp/kdepim-3.4.2/: acinclude.m4
Only in tmp/kdepim-3.4.2/: aclocal.m4
Only in kdepim/admin: .svn
diff -u -p -r tmp/kdepim-3.4.2/admin/acinclude.m4.in kdepim/admin/acinclude.m4.in
--- tmp/kdepim-3.4.2/admin/acinclude.m4.in	2005-07-20 19:21:30.000000000 +0200
+++ kdepim/admin/acinclude.m4.in	2005-08-23 12:07:10.000000000 +0200
@@ -606,7 +606,7 @@ AC_DEFUN([KDE_SUBST_PROGRAMS],
         fi
         KDE_FIND_PATH(xmllint, XMLLINT, [${prefix}/bin ${exec_prefix}/bin], [XMLLINT=""])
 
-        if test -n "$MEINPROC" && test ! "$MEINPROC" = "compiled"; then  
+        if test -n "$MEINPROC" -a "$MEINPROC" != "compiled"; then
  	    kde_sharedirs="/usr/share/kde /usr/local/share /usr/share /opt/kde3/share /opt/kde/share $prefix/share"
             test -n "$KDEDIR" && kde_sharedirs="$KDEDIR/share $kde_sharedirs"
             AC_FIND_FILE(apps/ksgmltools2/customization/kde-chunk.xsl, $kde_sharedirs, KDE_XSL_STYLESHEET)
@@ -3098,8 +3098,7 @@ AC_DEFUN([AC_CHECK_COMPILERS],
 
   if test "$kde_use_warnings" = "yes"; then
       if test "$GCC" = "yes"; then
-        dnl ### FIXME: remove -Wno-non-virtual-dtor for KDE 4
-        CXXFLAGS="-Wall -W -Wpointer-arith -Wno-non-virtual-dtor $CXXFLAGS"
+        CXXFLAGS="-Wall -W -Wpointer-arith $CXXFLAGS"
         case $host in
           *-*-linux-gnu)	
             CFLAGS="-std=iso9899:1990 -W -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE $CFLAGS"
@@ -3110,7 +3109,8 @@ AC_DEFUN([AC_CHECK_COMPILERS],
         esac
         KDE_CHECK_COMPILER_FLAG(Wundef,[CXXFLAGS="-Wundef $CXXFLAGS"])
         KDE_CHECK_COMPILER_FLAG(Wno-long-long,[CXXFLAGS="-Wno-long-long $CXXFLAGS"])
-        KDE_CHECK_COMPILER_FLAG(Wnon-virtual-dtor,[CXXFLAGS="-Wnon-virtual-dtor $CXXFLAGS"])
+        dnl ### FIXME: revert for KDE 4
+        KDE_CHECK_COMPILER_FLAG(Wno-non-virtual-dtor,[CXXFLAGS="$CXXFLAGS -Wno-non-virtual-dtor"])
      fi
   fi
 
@@ -3779,7 +3779,8 @@ AC_DEFUN([AC_HAVE_DPMS],
       ac_save_ldflags="$LDFLAGS"
       ac_save_cflags="$CFLAGS"
       ac_save_libs="$LIBS"
-      LDFLAGS="$LDFLAGS $DPMS_LDFLAGS $all_libraries -lX11 -lXext $LIBSOCKET"
+      LDFLAGS="$LDFLAGS $DPMS_LDFLAGS $all_libraries"
+      LIBS="-lX11 -lXext $LIBSOCKET"
       CFLAGS="$CFLAGS $X_INCLUDES"
       test -n "$DPMS_INCLUDE" && CFLAGS="-I$DPMS_INCLUDE $CFLAGS"
       AC_TRY_LINK([
@@ -3790,12 +3791,7 @@ AC_DEFUN([AC_HAVE_DPMS],
 	  int foo_test_dpms()
 	  { return DPMSSetTimeouts( 0, 0, 0, 0 ); }],[],
 	  ac_cv_have_dpms="yes", [
-              LDFLAGS="$ac_save_ldflags"
-              CFLAGS="$ac_save_cflags"
-              LDFLAGS="$LDFLAGS $DPMS_LDFLAGS $all_libraries -lX11 -lXext $LIBSOCKET"
-              LIBS="$LIBS -lXdpms"
-              CFLAGS="$CFLAGS $X_INCLUDES"
-              test -n "$DPMS_INCLUDE" && CFLAGS="-I$DPMS_INCLUDE $CFLAGS"
+              LIBS="-lXdpms $LIBS"
               AC_TRY_LINK([
 	          #include <X11/Xproto.h>
         	  #include <X11/X.h>
diff -u -p -r tmp/kdepim-3.4.2/admin/am_edit kdepim/admin/am_edit
--- tmp/kdepim-3.4.2/admin/am_edit	2005-07-20 19:21:30.000000000 +0200
+++ kdepim/admin/am_edit	2005-09-05 10:48:04.000000000 +0200
@@ -876,8 +876,9 @@ sub tag_KDEINIT()
                 $lines .= "\techo 'int main(int argc, char* argv[]) { return kdemain(argc,argv); }' >> ${kdeinit}.la.$cxxsuffix\n";
 
                 $lines .= "\n${kdeinit}_dummy.$cxxsuffix:\n";
-                $lines .= "\techo 'extern \"C\" int kdemain(int argc, char* argv[]);' > ${kdeinit}_dummy.$cxxsuffix; \\\n";
-                $lines .= "\techo 'extern \"C\" int kdeinitmain(int argc, char* argv[]) { return kdemain(argc,argv); }' >> ${kdeinit}_dummy.$cxxsuffix\n";
+                $lines .= "\techo '#include <kdemacros.h>' > ${kdeinit}_dummy.$cxxsuffix; \\\n";
+                $lines .= "\techo 'extern \"C\" int kdemain(int argc, char* argv[]);' >> ${kdeinit}_dummy.$cxxsuffix; \\\n";
+                $lines .= "\techo 'extern \"C\" KDE_EXPORT int kdeinitmain(int argc, char* argv[]) { return kdemain(argc,argv); }' >> ${kdeinit}_dummy.$cxxsuffix\n";
 
                 push(@cleanfiles, "${kdeinit}.la.$cxxsuffix");
                 push(@cleanfiles, "${kdeinit}_dummy.$cxxsuffix");
@@ -2356,7 +2357,7 @@ sub updateMakefile ()
     $MakefileData =~ s/\034/\\\n/g;    # Restore continuation lines
     # Append our $progId line, _below_ the "generated by automake" line
     # because automake-1.6 relies on the first line to be his own.
-    my $progIdLine = "\# $progId - " . '$Revision: 406248 $ '."\n";
+    my $progIdLine = "\# $progId - " . '$Revision: 453018 $ '."\n";
     if ( !( $MakefileData =~ s/^(.*generated .*by automake.*\n)/$1$progIdLine/ ) ) {
         warn "automake line not found in $makefile\n";
 	# Fallback: first line
Only in kdepim/akregator: .svn
diff -u -p -r tmp/kdepim-3.4.2/akregator/ChangeLog kdepim/akregator/ChangeLog
--- tmp/kdepim-3.4.2/akregator/ChangeLog	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/akregator/ChangeLog	2005-09-05 10:47:50.000000000 +0200
@@ -2,6 +2,14 @@ Akregator ChangeLog
 ===================
 (c) 2004, 2005 the Akregator authors.
 
+Changes after 1.1.2
+-----------------------------
+
+Changes: 
+        - unbreak parsing for Atom 1.0 -fo
+        - enable interval fetching (every 30 minutes) by default -fo
+        - switch quick filter behaviour back to 3.4.0 style (donÃn't reset the filter when switching feeds-fo
+
 Changes after 1.1
 -----------------------------
 
Only in tmp/kdepim-3.4.2/akregator: Makefile.in
Only in kdepim/akregator/debian: .svn
Only in kdepim/akregator/debian/overrides: .svn
Only in kdepim/akregator/src: .svn
Only in tmp/kdepim-3.4.2/akregator/src: Makefile.in
Only in kdepim/akregator/src/about: .svn
Only in tmp/kdepim-3.4.2/akregator/src/about: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/aboutdata.h kdepim/akregator/src/aboutdata.h
--- tmp/kdepim-3.4.2/akregator/src/aboutdata.h	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/akregator/src/aboutdata.h	2005-09-05 10:47:50.000000000 +0200
@@ -28,7 +28,7 @@
 #include <kaboutdata.h>
 #include <kdepimmacros.h>
 
-#define AKREGATOR_VERSION "1.1.2"
+#define AKREGATOR_VERSION "1.1.3"
 
 namespace Akregator {
 /**
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/akregator.kcfg kdepim/akregator/src/akregator.kcfg
--- tmp/kdepim-3.4.2/akregator/src/akregator.kcfg	2005-05-23 14:11:26.000000000 +0200
+++ kdepim/akregator/src/akregator.kcfg	2005-09-05 10:47:50.000000000 +0200
@@ -107,7 +107,7 @@
   <entry key="Use Interval Fetch" type="Bool" >
    <label>Use interval fetching</label>
    <whatsthis>Fetch all feeds every %1 minutes.</whatsthis>
-   <default>false</default>
+   <default>true</default>
   </entry>
   <entry key="Auto Fetch Interval" type="Int" >
    <label>Interval for autofetching</label>
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/akregator_view.cpp kdepim/akregator/src/akregator_view.cpp
--- tmp/kdepim-3.4.2/akregator/src/akregator_view.cpp	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/akregator/src/akregator_view.cpp	2005-09-05 10:47:50.000000000 +0200
@@ -248,9 +248,6 @@ View::View( Part *part, QWidget *parent,
     m_feedSplitter->setSizes( Settings::splitter1Sizes() );
     m_articleSplitter->setSizes( Settings::splitter2Sizes() );
 
-    m_searchCombo->setCurrentItem(Settings::quickFilter());
-    slotSearchComboChanged(Settings::quickFilter());
-
     switch (Settings::viewMode())
     {
         case CombinedView:
@@ -269,6 +266,9 @@ View::View( Part *part, QWidget *parent,
     m_tabs->setTitle(i18n("About"), m_mainTab);
     m_displayingAboutPage = true;
     
+    m_searchCombo->setCurrentItem(Settings::quickFilter());
+    slotSearchComboChanged(Settings::quickFilter());
+
     m_fetchTimer=new QTimer(this);
     connect( m_fetchTimer, SIGNAL(timeout()), this, SLOT(slotDoIntervalFetches()) );
     m_fetchTimer->start(1000*60);
@@ -843,7 +843,7 @@ void View::slotNodeSelected(TreeNode* no
     
     m_tabs->showPage(m_mainTab);
 
-    slotClearFilter();
+    //slotClearFilter();
 
     if (m_viewMode == CombinedView)
         m_articleViewer->slotShowNode(node);
@@ -1344,11 +1344,8 @@ void View::slotFeedURLDropped(KURL::List
 
 void View::slotSearchComboChanged(int index)
 {
-    if (index != Settings::quickFilter())
-    {
-        Settings::setQuickFilter( index );
-        updateSearch();
-    }
+    Settings::setQuickFilter( index );
+    updateSearch();
 }
 
 // from klistviewsearchline
Only in kdepim/akregator/src/librss: .svn
Only in tmp/kdepim-3.4.2/akregator/src/librss: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/librss/article.cpp kdepim/akregator/src/librss/article.cpp
--- tmp/kdepim-3.4.2/akregator/src/librss/article.cpp	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/akregator/src/librss/article.cpp	2005-09-05 10:47:50.000000000 +0200
@@ -48,7 +48,7 @@ Article::Article(const Article &other) :
 	*this = other;
 }
 
-Article::Article(const QDomNode &node, Format format) : d(new Private)
+Article::Article(const QDomNode &node, Format format, Version version) : d(new Private)
 {
 	QString elemText;
 
@@ -99,9 +99,13 @@ Article::Article(const QDomNode &node, F
 
 	if (format == AtomFeed)
 	{
+		if (version == vAtom_1_0)
+		elemText = extractNode(node, QString::fromLatin1("updated"));
+		else
 		elemText = extractNode(node, QString::fromLatin1("issued"));
-		if (!elemText.isNull())
-			time = parseISO8601Date(elemText); 	
+	
+			if (!elemText.isNull())
+				time = parseISO8601Date(elemText); 	
 	}
 	else 
 	{
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/librss/article.h kdepim/akregator/src/librss/article.h
--- tmp/kdepim-3.4.2/akregator/src/librss/article.h	2005-05-23 14:11:25.000000000 +0200
+++ kdepim/akregator/src/librss/article.h	2005-09-05 10:47:50.000000000 +0200
@@ -55,7 +55,7 @@ namespace RSS
           * @param node A QDomNode which references the DOM leaf to be used
           * for constructing the Article.
           */
-         Article(const QDomNode &node, Format format);
+         Article(const QDomNode &node, Format format, Version version);
 
          /**
           * Assignment operator.
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/librss/document.cpp kdepim/akregator/src/librss/document.cpp
--- tmp/kdepim-3.4.2/akregator/src/librss/document.cpp	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/akregator/src/librss/document.cpp	2005-09-05 10:47:50.000000000 +0200
@@ -22,6 +22,8 @@
 #include <qdom.h>
 #include <qptrlist.h>
 
+#include <kdebug.h>
+
 using namespace RSS;
 
 struct Document::Private : public Shared
@@ -85,33 +87,34 @@ Document::Document(const QDomDocument &d
         d->valid=true;
     
     attr = rootNode.toElement().attribute(QString::fromLatin1("version"), QString::null);
-    if (!attr.isNull()) {
-        if (rootNode.toElement().tagName()=="feed")
-        {
-            d->format=AtomFeed;
-            if (attr == QString::fromLatin1("0.3"))
-                d->version = vAtom_0_3;
-            else if (attr == QString::fromLatin1("0.2")) /* smt -> review */
-               d->version = vAtom_0_2;
-            else if (attr == QString::fromLatin1("0.1")) /* smt -> review */
-              d->version = vAtom_0_1;
-        }
-        else
-        {
-            d->format=RSSFeed;
-            if (attr == QString::fromLatin1("0.91"))
-                d->version = v0_91;
-            else if (attr == QString::fromLatin1("0.92"))
-                d->version = v0_92;
-            else if (attr == QString::fromLatin1("0.93"))
-                d->version = v0_93;
-            else if (attr == QString::fromLatin1("0.94"))
-                d->version = v0_94;
-            else if (attr.startsWith("2.0") || attr == QString::fromLatin1("2")) // http://www.breuls.org/rss puts 2.00 in version (BR #0000016)
-                d->version = v2_0;
+    if (rootNode.toElement().tagName()==QString::fromLatin1("feed"))
+    {
+        d->format=AtomFeed;
+        if (attr == QString::fromLatin1("0.3"))
+            d->version = vAtom_0_3;
+        else if (attr == QString::fromLatin1("0.2")) /* smt -> review */
+            d->version = vAtom_0_2;
+        else if (attr == QString::fromLatin1("0.1")) /* smt -> review */
+            d->version = vAtom_0_1;
+        else if (attr.isEmpty())
+            d->version = vAtom_1_0;
         }
+    else
+    {
+        d->format=RSSFeed;
+        if (attr == QString::fromLatin1("0.91"))
+            d->version = v0_91;
+        else if (attr == QString::fromLatin1("0.92"))
+            d->version = v0_92;
+        else if (attr == QString::fromLatin1("0.93"))
+            d->version = v0_93;
+        else if (attr == QString::fromLatin1("0.94"))
+            d->version = v0_94;
+        else if (attr.startsWith("2.0") || attr == QString::fromLatin1("2")) // http://www.breuls.org/rss puts 2.00 in version (BR #0000016)
+            d->version = v2_0;
     }
-
+    
+    
     if (d->format==UnknownFormat)
     {
         attr = rootNode.toElement().attribute(QString::fromLatin1("xmlns"), QString::null);
@@ -134,7 +137,7 @@ Document::Document(const QDomDocument &d
             }
         }
     }
-
+    
     QDomNode channelNode;
 
     if (d->format == AtomFeed)
@@ -184,7 +187,7 @@ Document::Document(const QDomDocument &d
     for (n = parentNode.firstChild(); !n.isNull(); n = n.nextSibling()) {
         const QDomElement e = n.toElement();
         if (e.tagName() == tagName)
-            d->articles.append(Article(e, d->format));
+            d->articles.append(Article(e, d->format, d->version));
     }
 
     if (!(elemText = extractNode(channelNode, QString::fromLatin1("copyright"))).isNull())
@@ -506,6 +509,7 @@ QString Document::verbVersion() const
         case vAtom_0_3: return QString::fromLatin1("0.3");
         case vAtom_0_2: return QString::fromLatin1("0.2");
         case vAtom_0_1: return QString::fromLatin1("0.1");
+        case vAtom_1_0: return QString::fromLatin1("1.0");
     }
     return QString::null;
 }
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/librss/global.h kdepim/akregator/src/librss/global.h
--- tmp/kdepim-3.4.2/akregator/src/librss/global.h	2005-05-23 14:11:25.000000000 +0200
+++ kdepim/akregator/src/librss/global.h	2005-09-05 10:47:50.000000000 +0200
@@ -34,7 +34,8 @@ namespace RSS
 		v2_0,	  /// RSS v2.0
 		vAtom_0_1,  /// Atom v0.1
 		vAtom_0_2,  /// Atom v0.2
-		vAtom_0_3  /// Atom v0.3
+		vAtom_0_3,  /// Atom v0.3
+        vAtom_1_0  /// Atom v1.0
 	};
 	
 	/**
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/pageviewer.cpp kdepim/akregator/src/pageviewer.cpp
--- tmp/kdepim-3.4.2/akregator/src/pageviewer.cpp	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/akregator/src/pageviewer.cpp	2005-08-18 14:59:13.000000000 +0200
@@ -361,7 +361,7 @@ void PageViewer::slotPopupMenu(KXMLGUICl
         if (copylinkaddress)
         {
             copylinkaddress->plug( &popup);
-            popup.insertSeparator();
+            //popup.insertSeparator();
         }
     }
     else // we are not on a link
Only in kdepim/akregator/src/pics: .svn
Only in tmp/kdepim-3.4.2/akregator/src/pics: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/akregator/src/trayicon.h kdepim/akregator/src/trayicon.h
--- tmp/kdepim-3.4.2/akregator/src/trayicon.h	2005-05-23 14:11:26.000000000 +0200
+++ kdepim/akregator/src/trayicon.h	2005-09-05 10:47:50.000000000 +0200
@@ -32,7 +32,7 @@
 
 namespace Akregator
 {
-    class TrayIcon : public KSystemTray
+    class KDE_EXPORT TrayIcon : public KSystemTray
     {
         Q_OBJECT
         public:
Only in kdepim/certmanager: .svn
Only in tmp/kdepim-3.4.2/certmanager: Makefile.in
Only in kdepim/certmanager/conf: .svn
Only in tmp/kdepim-3.4.2/certmanager/conf: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/certmanager/conf/kleopatra_config_dnorder.desktop kdepim/certmanager/conf/kleopatra_config_dnorder.desktop
--- tmp/kdepim-3.4.2/certmanager/conf/kleopatra_config_dnorder.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/certmanager/conf/kleopatra_config_dnorder.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -77,7 +77,7 @@ Comment[nb]=Still inn rekkefølgen DN-at
 Comment[nl]=Stel de volgorde in van de DN-attributen
 Comment[nn]=Vel kva rekkjefølgje DN-attributtane er sorterte i
 Comment[pl]=Konfiguracja kolejności wyświetlania atrybutów DN
-Comment[pt]=Configuração da order em que os atributos DN são mostrados
+Comment[pt]=Configuração da ordem em que os atributos DN são mostrados
 Comment[pt_BR]=Configura a ordem na qual os atributos DN são mostrados
 Comment[ru]=Настройка порядка показываемых атрибутов DN
 Comment[se]=Vállje makkár ortnegis DN-attribuhttat sorterejuvvojit
Only in kdepim/certmanager/kwatchgnupg: .svn
Only in tmp/kdepim-3.4.2/certmanager/kwatchgnupg: Makefile.in
Only in kdepim/certmanager/lib: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib: Makefile.in
Only in kdepim/certmanager/lib/backends: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib/backends: Makefile.in
Only in kdepim/certmanager/lib/backends/kpgp: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib/backends/kpgp: Makefile.in
Only in kdepim/certmanager/lib/backends/qgpgme: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib/backends/qgpgme: Makefile.in
Only in kdepim/certmanager/lib/kleo: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib/kleo: Makefile.in
Only in kdepim/certmanager/lib/pics: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib/pics: Makefile.in
Only in kdepim/certmanager/lib/tests: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib/tests: Makefile.in
Only in kdepim/certmanager/lib/ui: .svn
Only in tmp/kdepim-3.4.2/certmanager/lib/ui: Makefile.in
Only in tmp/kdepim-3.4.2/: config.h.in
Only in tmp/kdepim-3.4.2/: configure
Only in tmp/kdepim-3.4.2/: configure.files
Only in tmp/kdepim-3.4.2/: configure.in
Only in kdepim/dcopidlng: .svn
Only in kdepim/debian: .svn
Only in kdepim/debian/icons: .svn
Only in kdepim/debian/man: .svn
Only in kdepim/debian/patches: .svn
Only in kdepim/debian/po: .svn
Only in kdepim/doc: .svn
Only in tmp/kdepim-3.4.2/doc: Makefile.in
Only in kdepim/doc/akregator: .svn
Only in tmp/kdepim-3.4.2/doc/akregator: Makefile.in
Only in tmp/kdepim-3.4.2/doc/akregator: index.cache.bz2
Only in kdepim/doc/api: .svn
Only in kdepim/doc/kaddressbook: .svn
Only in tmp/kdepim-3.4.2/doc/kaddressbook: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kaddressbook: index.cache.bz2
Only in kdepim/doc/kalarm: .svn
Only in tmp/kdepim-3.4.2/doc/kalarm: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kalarm: index.cache.bz2
Only in kdepim/doc/kandy: .svn
Only in tmp/kdepim-3.4.2/doc/kandy: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kandy: index.cache.bz2
Only in kdepim/doc/karm: .svn
Only in tmp/kdepim-3.4.2/doc/karm: Makefile.in
Only in tmp/kdepim-3.4.2/doc/karm: index.cache.bz2
Only in kdepim/doc/kcontrol: .svn
Only in kdepim/doc/kcontrol/kalarmd: .svn
Only in kdepim/doc/kleopatra: .svn
Only in tmp/kdepim-3.4.2/doc/kleopatra: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kleopatra: index.cache.bz2
Only in kdepim/doc/kmail: .svn
Only in tmp/kdepim-3.4.2/doc/kmail: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kmail: index.cache.bz2
Only in kdepim/doc/knode: .svn
Only in tmp/kdepim-3.4.2/doc/knode: Makefile.in
Only in tmp/kdepim-3.4.2/doc/knode: index.cache.bz2
Only in kdepim/doc/knotes: .svn
Only in tmp/kdepim-3.4.2/doc/knotes: Makefile.in
Only in tmp/kdepim-3.4.2/doc/knotes: index.cache.bz2
Only in kdepim/doc/konsolekalendar: .svn
Only in tmp/kdepim-3.4.2/doc/konsolekalendar: Makefile.in
Only in tmp/kdepim-3.4.2/doc/konsolekalendar: index.cache.bz2
Only in kdepim/doc/kontact: .svn
Only in tmp/kdepim-3.4.2/doc/kontact: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kontact: index.cache.bz2
Only in kdepim/doc/korganizer: .svn
Only in tmp/kdepim-3.4.2/doc/korganizer: Makefile.in
Only in tmp/kdepim-3.4.2/doc/korganizer: index.cache.bz2
Only in kdepim/doc/korn: .svn
Only in tmp/kdepim-3.4.2/doc/korn: Makefile.in
Only in tmp/kdepim-3.4.2/doc/korn: index.cache.bz2
Only in kdepim/doc/kpilot: .svn
Only in tmp/kdepim-3.4.2/doc/kpilot: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kpilot: index.cache.bz2
Only in kdepim/doc/ktnef: .svn
Only in tmp/kdepim-3.4.2/doc/ktnef: Makefile.in
Only in tmp/kdepim-3.4.2/doc/ktnef: index.cache.bz2
Only in kdepim/doc/kwatchgnupg: .svn
Only in tmp/kdepim-3.4.2/doc/kwatchgnupg: Makefile.in
Only in tmp/kdepim-3.4.2/doc/kwatchgnupg: index.cache.bz2
Only in kdepim/doc/multisynk: .svn
Only in tmp/kdepim-3.4.2/doc/multisynk: Makefile.in
Only in tmp/kdepim-3.4.2/doc/multisynk: index.cache.bz2
Only in kdepim/kabc: .svn
Only in tmp/kdepim-3.4.2/kabc: Makefile.in
Only in kdepim/kabc/frontend: .svn
Only in tmp/kdepim-3.4.2/kabc/frontend: Makefile.in
Only in kdepim/kabc/kabc2mutt: .svn
Only in tmp/kdepim-3.4.2/kabc/kabc2mutt: Makefile.in
Only in kdepim/kaddressbook: .svn
Only in tmp/kdepim-3.4.2/kaddressbook: Makefile.in
Only in kdepim/kaddressbook/common: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/common: Makefile.in
Only in kdepim/kaddressbook/csv-templates: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/csv-templates: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kaddressbook/csv-templates/yahoo.desktop kdepim/kaddressbook/csv-templates/yahoo.desktop
--- tmp/kdepim-3.4.2/kaddressbook/csv-templates/yahoo.desktop	2005-05-23 14:12:16.000000000 +0200
+++ kdepim/kaddressbook/csv-templates/yahoo.desktop	2005-09-05 10:47:54.000000000 +0200
@@ -25,7 +25,7 @@ Name[fr]=Carnet d'adresses Yahoo!
 Name[he]=פנקס כתובת של Yahoo!
 Name[hi]=याहू! पता पुस्तिका
 Name[hu]=Yahoo! címjegyzék
-Name[is]=Yahoo! Póstfangaskrá
+Name[is]=Yahoo! póstfangaskrá
 Name[it]=Rubrica indirizzi Yahoo!
 Name[ja]=Yahoo! アドレス帳
 Name[lt]=Yahoo! Adresų knygutė
Only in kdepim/kaddressbook/editors: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/editors: Makefile.in
Only in kdepim/kaddressbook/editors/icons: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/editors/icons: Makefile.in
Only in kdepim/kaddressbook/editors/protocols: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/editors/protocols: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kaddressbook/editors/protocols/smsprotocol.desktop kdepim/kaddressbook/editors/protocols/smsprotocol.desktop
--- tmp/kdepim-3.4.2/kaddressbook/editors/protocols/smsprotocol.desktop	2005-05-23 14:12:19.000000000 +0200
+++ kdepim/kaddressbook/editors/protocols/smsprotocol.desktop	2005-09-05 10:47:54.000000000 +0200
@@ -19,6 +19,7 @@ Comment[et]=SMS protokoll
 Comment[eu]=SMS protokoloa
 Comment[fi]=SMS-protokolla
 Comment[fr]=Protocole SMS
+Comment[ga]=Prótacal SMS
 Comment[gl]=Protocolo SMS
 Comment[he]=פרוטוקול SMS
 Comment[hi]=एसएमएस प्रोटोकॉल
Only in kdepim/kaddressbook/features: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/features: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kaddressbook/features/distributionlist.desktop kdepim/kaddressbook/features/distributionlist.desktop
--- tmp/kdepim-3.4.2/kaddressbook/features/distributionlist.desktop	2005-05-23 14:12:20.000000000 +0200
+++ kdepim/kaddressbook/features/distributionlist.desktop	2005-09-05 10:47:55.000000000 +0200
@@ -4,6 +4,7 @@ X-KDE-Library=libkaddrbk_distributionlis
 Name=KAB Distribution List Plugin
 Name[ar]=ملحق قائمة توزيع KAB
 Name[be]=Дапаўненьне KAB "Сьпіс распаўсюджваньня"
+Name[br]=Lugent roll ingaladur evit KAB
 Name[bs]=KAB dodatak za distribucione liste
 Name[ca]=Endollable de la llista de distribució KAB
 Name[cs]=Modul distribučního seznamu
Only in kdepim/kaddressbook/interfaces: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/interfaces: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kaddressbook/interfaces/kaddressbook_contacteditorwidget.desktop kdepim/kaddressbook/interfaces/kaddressbook_contacteditorwidget.desktop
--- tmp/kdepim-3.4.2/kaddressbook/interfaces/kaddressbook_contacteditorwidget.desktop	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kaddressbook/interfaces/kaddressbook_contacteditorwidget.desktop	2005-08-12 17:01:10.000000000 +0200
@@ -17,7 +17,7 @@ Comment[fi]=Osoitekirjan yhteystietojen 
 Comment[fr]=Module d'édition de contacts de KAddressBook
 Comment[hi]=के-एड्रेस-बुक सम्पर्क संपादक विजेट प्लगइन
 Comment[hu]=KAddressBook névjegyszerkesztő bővítőmodul
-Comment[is]=KAddressbook tengiliðaritils-íforrit
+Comment[is]=KAddressbook tengiliðaritils íforrit
 Comment[it]=Plugin editor dei contatti di KAddressbook
 Comment[ja]=KAddressbook コンタクト エディタ ウィジェット プラグイン
 Comment[lt]=KAddressBook kontaktų redaktoriaus valdiklių priedas
diff -u -p -r tmp/kdepim-3.4.2/kaddressbook/interfaces/kaddressbook_xxport.desktop kdepim/kaddressbook/interfaces/kaddressbook_xxport.desktop
--- tmp/kdepim-3.4.2/kaddressbook/interfaces/kaddressbook_xxport.desktop	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kaddressbook/interfaces/kaddressbook_xxport.desktop	2005-09-05 10:47:54.000000000 +0200
@@ -21,7 +21,7 @@ Comment[fr]=Module d'import / export pou
 Comment[he]=תוסף ייבוא/יצוא עבור פנקס הכתובות
 Comment[hi]=के-एड्रेस-बुक आयात/निर्यात प्लगइन
 Comment[hu]=KAddressBook importálási/exportálási bővítőmodul
-Comment[is]=Íforrit til að færa inn í/út úr KAddressbook
+Comment[is]=KAddressbook flytja inn/út íforrit
 Comment[it]=Plugin importa/esporta di KAddressbook
 Comment[ja]=KAddressbook インポート/エクスポートプラグイン
 Comment[lt]=KAddressBook importo/eksporto priedas
Only in kdepim/kaddressbook/kcmconfigs: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/kcmconfigs: Makefile.in
Only in kdepim/kaddressbook/pics: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/pics: Makefile.in
Only in kdepim/kaddressbook/printing: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/printing: Makefile.in
Only in kdepim/kaddressbook/thumbnailcreator: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/thumbnailcreator: Makefile.in
Only in kdepim/kaddressbook/views: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/views: Makefile.in
Only in kdepim/kaddressbook/xxport: .svn
Only in tmp/kdepim-3.4.2/kaddressbook/xxport: Makefile.in
Only in kdepim/kaddressbook/xxport/samples: .svn
Only in kdepim/kalarm: .svn
diff -u -p -r tmp/kdepim-3.4.2/kalarm/Changelog kdepim/kalarm/Changelog
--- tmp/kdepim-3.4.2/kalarm/Changelog	2005-07-20 12:03:04.000000000 +0200
+++ kdepim/kalarm/Changelog	2005-09-05 10:47:54.000000000 +0200
@@ -1,12 +1,14 @@
 KAlarm
 
+=== Version 1.2.10 --- 4 September 2005 ===
+Prevent session restoration displaying main windows which should be hidden.
+
 === Version 1.2.9 --- 17 July 2005 ===
 Minimise KMix window if KMix is started by KAlarm when displaying a message.
 Fix Plastik style 'enabled' indication for time spinbox left-hand buttons.
 Prevent message windows always being full screen after a big message is shown.
 Prevent message windows being initially larger than the desktop.
 Prevent message windows initially overlapping the KDE panel.
-Prevent session restoration displaying main windows which should be hidden.
 Change --volume command line option short form to -V (-v is used by --version).
 Use 'KAlarm' untranslated in calendar product ID, to cater for locale changes.
 
diff -u -p -r tmp/kdepim-3.4.2/kalarm/Makefile.am kdepim/kalarm/Makefile.am
--- tmp/kdepim-3.4.2/kalarm/Makefile.am	2005-05-23 14:12:13.000000000 +0200
+++ kdepim/kalarm/Makefile.am	2005-09-05 10:47:54.000000000 +0200
@@ -1,3 +1,5 @@
+#KDE_OPTIONS = nofinal
+
 SUBDIRS = kalarmd widgets pixmaps
 
 INCLUDES= -I$(top_srcdir) -I$(top_srcdir)/kalarm \
Only in tmp/kdepim-3.4.2/kalarm: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kalarm/alarmcalendar.h kdepim/kalarm/alarmcalendar.h
--- tmp/kdepim-3.4.2/kalarm/alarmcalendar.h	2005-05-23 14:12:12.000000000 +0200
+++ kdepim/kalarm/alarmcalendar.h	2005-08-01 12:01:03.000000000 +0200
@@ -46,7 +46,7 @@ class AlarmCalendar : public QObject
 		void                  startUpdate();
 		void                  endUpdate();
 		KCal::Event*          event(const QString& uniqueID)      { return mCalendar ? mCalendar->event(uniqueID) : 0; }
-		KCal::Event::List     events()                            { return mCalendar->events(); }
+		KCal::Event::List     events()                            { return mCalendar->rawEvents(); }
 		KCal::Event::List     events(const QDate& d, bool sorted = false) { return mCalendar->events(d, sorted); }
 		KCal::Event::List     eventsWithAlarms(const QDateTime& from, const QDateTime& to);
 		KCal::Event*          addEvent(const KAEvent&, bool useEventID = false);
diff -u -p -r tmp/kdepim-3.4.2/kalarm/kalarm.h kdepim/kalarm/kalarm.h
--- tmp/kdepim-3.4.2/kalarm/kalarm.h	2005-07-20 12:03:04.000000000 +0200
+++ kdepim/kalarm/kalarm.h	2005-09-05 10:47:54.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  *  kalarm.h  -  global header file
  *  Program:  kalarm
- *  (C) 2001 - 2005 by David Jarvie <software@astrojar.org.uk>
+ *  Copyright (c) 2001 - 2005 by David Jarvie <software@astrojar.org.uk>
  *
  *  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
@@ -26,11 +26,13 @@
 #include <config.h>
 #endif
 
-#define KALARM_VERSION "1.2.9"
+#define KALARM_VERSION "1.2.10"
 
 #include <kdeversion.h>
 extern int  marginKDE2;   // KDE2 compatibility
 
+#define AUTOSTART_BY_KALARMD    // temporary fix for autostart before session restoration
+
 #define OLD_DCOP    // retain DCOP pre-1.2 compatibility
 
 #endif // KALARM_H
diff -u -p -r tmp/kdepim-3.4.2/kalarm/kalarm.tray.desktop kdepim/kalarm/kalarm.tray.desktop
--- tmp/kdepim-3.4.2/kalarm/kalarm.tray.desktop	2005-05-23 14:12:13.000000000 +0200
+++ kdepim/kalarm/kalarm.tray.desktop	2005-09-05 10:47:54.000000000 +0200
@@ -59,4 +59,4 @@ Comment[uk]=Персональний пÐ
 Comment[zh_CN]=个人日程提醒程序:以系统托盘图标启动
 Terminal=false
 X-KDE-autostart-phase=2
-X-KDE-autostart-condition=kalarmrc:General:AutostartTray:false
+X-KDE-autostart-condition=kalarmrc:General:AutostartTrayDummy:false
Only in kdepim/kalarm/kalarmd: .svn
diff -u -p -r tmp/kdepim-3.4.2/kalarm/kalarmd/Makefile.am kdepim/kalarm/kalarmd/Makefile.am
--- tmp/kdepim-3.4.2/kalarm/kalarmd/Makefile.am	2005-05-23 14:12:11.000000000 +0200
+++ kdepim/kalarm/kalarmd/Makefile.am	2005-09-05 10:47:54.000000000 +0200
@@ -15,8 +15,8 @@ kalarmd_SOURCES = alarmdaemon.cpp admain
         alarmdaemoniface.skel
 kalarmd_COMPILE_FIRST = alarmguiiface_stub.h
 
-noinst_HEADERS = adapp.h alarmdaemon.h alarmdaemoniface.h \
-	alarmguiiface.h adcalendar.h adconfigdata.h clientinfo.h
+noinst_HEADERS = adapp.h alarmdaemon.h alarmdaemoniface.h alarmguiiface.h \
+	adcalendar.h adconfigdata.h clientinfo.h kalarmd.h
 
 METASOURCES = AUTO
  
Only in tmp/kdepim-3.4.2/kalarm/kalarmd: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kalarm/kalarmd/alarmdaemon.cpp kdepim/kalarm/kalarmd/alarmdaemon.cpp
--- tmp/kdepim-3.4.2/kalarm/kalarmd/alarmdaemon.cpp	2005-05-23 14:12:11.000000000 +0200
+++ kdepim/kalarm/kalarmd/alarmdaemon.cpp	2005-09-05 10:47:54.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  *  alarmdaemon.cpp  -  alarm daemon control routines
  *  Program:  KAlarm's alarm daemon (kalarmd)
- *  (C) 2001, 2004 by David Jarvie <software@astrojar.org.uk>
+ *  Copyright (c) 2001, 2004, 2005 by David Jarvie <software@astrojar.org.uk>
  *  Based on the original, (c) 1998, 1999 Preston Brown
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -14,9 +14,9 @@
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  *  GNU General Public License for more details.
  *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *  You should have received a copy of the GNU General Public License along
+ *  with this program; if not, write to the Free Software Foundation, Inc.,
+ *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include "kalarmd.h"
@@ -33,6 +33,7 @@
 #include <kprocess.h>
 #include <kio/netaccess.h>
 #include <dcopclient.h>
+#include <kconfig.h>
 #include <kdebug.h>
 
 #include <libkcal/calendarlocal.h>
@@ -45,24 +46,40 @@
 #include "alarmdaemon.moc"
 
 
+#ifdef AUTOSTART_KALARM
+// Number of seconds to wait before autostarting KAlarm.
+// Allow plenty of time for session restoration to happen first.
+static const int KALARM_AUTOSTART_TIMEOUT = 30;
+#endif
+
+
 AlarmDaemon::AlarmDaemon(QObject *parent, const char *name)
 	: DCOPObject(name),
-	  QObject(parent, name)
+	  QObject(parent, name),
+	  mAlarmTimer(0)
 {
 	kdDebug(5900) << "AlarmDaemon::AlarmDaemon()" << endl;
 	ADConfigData::readConfig();
 
 	ADConfigData::enableAutoStart(true);    // switch autostart on whenever the program is run
 
-	// set up the alarm timer
-	mAlarmTimer = new QTimer(this);
-	connect(mAlarmTimer, SIGNAL(timeout()), SLOT(checkAlarmsSlot()));
-	setTimerStatus();
-
-	// Start monitoring calendar files.
-	// They are monitored until their client application registers, upon which
-	// monitoring ceases until KAlarm tells the daemon to monitor it.
-	checkAlarms();
+#ifdef AUTOSTART_KALARM
+	/* Check if KAlarm needs to be autostarted in the system tray.
+	 * This should ideally be handled internally by KAlarm, but is done by kalarmd
+	 * for the following reason:
+	 * KAlarm needs to be both session restored and autostarted, but KDE doesn't
+	 * currently cater properly for this - there is no guarantee that the session
+	 * restoration activation will come before the autostart activation. If they
+	 * come in the wrong order, KAlarm won't know that it is supposed to restore
+	 * itself and instead will simply open a new window.
+	 */
+	KConfig kaconfig(locate("config", "kalarmrc"));
+	kaconfig.setGroup(QString::fromLatin1("General"));
+	if (kaconfig.readBoolEntry(QString::fromLatin1("AutostartTray"), false))
+		QTimer::singleShot(KALARM_AUTOSTART_TIMEOUT * 1000, this, SLOT(autostartKAlarm()));
+	else
+#endif
+		startMonitoring();    // otherwise, start monitoring alarms now
 }
 
 /******************************************************************************
@@ -75,6 +92,38 @@ void AlarmDaemon::quit()
 }
 
 /******************************************************************************
+* Called after a timer delay to autostart KAlarm in the system tray.
+*/
+void AlarmDaemon::autostartKAlarm()
+{
+#ifdef AUTOSTART_KALARM
+	if (mAlarmTimer)
+		return;    // KAlarm has already registered with us
+	QStringList args;
+	args << QString::fromLatin1("--tray");
+	KApplication::kdeinitExec(QString::fromLatin1("kalarm"), args);
+
+	startMonitoring();
+#endif
+}
+
+/******************************************************************************
+* Start monitoring alarms.
+*/
+void AlarmDaemon::startMonitoring()
+{
+	// Set up the alarm timer
+	mAlarmTimer = new QTimer(this);
+	connect(mAlarmTimer, SIGNAL(timeout()), SLOT(checkAlarmsSlot()));
+	setTimerStatus();
+
+	// Start monitoring calendar files.
+	// They are monitored until their client application registers, upon which
+	// monitoring ceases until KAlarm tells the daemon to monitor it.
+	checkAlarms();
+}
+
+/******************************************************************************
 * DCOP call to enable or disable monitoring of a calendar.
 */
 void AlarmDaemon::enableCal(const QString& urlString, bool enable)
@@ -329,10 +378,12 @@ bool AlarmDaemon::notifyEvent(ADCalendar
 	}
 	kdDebug(5900) << "AlarmDaemon::notifyEvent(" << appname << ", " << eventID << "): notification type=" << client->startClient() << endl;
 
+	// Check if the client application is running and ready to receive notification
 	bool registered = kapp->dcopClient()->isApplicationRegistered(static_cast<const char*>(appname));
 	bool ready = registered;
 	if (registered)
 	{
+		// It's running, but check if it has created our DCOP interface yet
 		QCStringList objects = kapp->dcopClient()->remoteObjects(appname);
 		if (objects.find(client->dcopObject()) == objects.end())
 			ready = false;
@@ -380,6 +431,15 @@ bool AlarmDaemon::notifyEvent(ADCalendar
 */
 void AlarmDaemon::setTimerStatus()
 {
+#ifdef AUTOSTART_KALARM
+	if (!mAlarmTimer)
+	{
+		// KAlarm is now running, so start monitoring alarms
+		startMonitoring();
+		return;    // startMonitoring() calls this method
+	}
+
+#endif
 	// Count the number of currently loaded calendars whose names should be displayed
 	int nLoaded = 0;
 	for (ADCalendar::ConstIterator it = ADCalendar::begin();  it != ADCalendar::end();  ++it)
diff -u -p -r tmp/kdepim-3.4.2/kalarm/kalarmd/alarmdaemon.h kdepim/kalarm/kalarmd/alarmdaemon.h
--- tmp/kdepim-3.4.2/kalarm/kalarmd/alarmdaemon.h	2005-05-23 14:12:11.000000000 +0200
+++ kdepim/kalarm/kalarmd/alarmdaemon.h	2005-09-05 10:47:54.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  *  alarmdaemon.h  -  alarm daemon control routines
  *  Program:  KAlarm's alarm daemon (kalarmd)
- *  (C) 2001, 2004 by David Jarvie <software@astrojar.org.uk>
+ *  Copyright (c) 2001, 2004, 2005 by David Jarvie <software@astrojar.org.uk>
  *  Based on the original, (c) 1998, 1999 Preston Brown
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -14,9 +14,9 @@
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  *  GNU General Public License for more details.
  *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *  You should have received a copy of the GNU General Public License along
+ *  with this program; if not, write to the Free Software Foundation, Inc.,
+ *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifndef ALARMDAEMON_H
@@ -36,6 +36,9 @@ class AlarmDaemon : public QObject, virt
 		AlarmDaemon(QObject* parent = 0, const char* name = 0);
 
 	private slots:
+//#ifdef AUTOSTART_KALARM
+		void    autostartKAlarm();
+//#endif
 		void    calendarLoaded(ADCalendar*, bool success);
 		void    checkAlarmsSlot();
 		void    checkAlarms();
@@ -54,6 +57,7 @@ class AlarmDaemon : public QObject, virt
 		void    registerChange(const QCString& appName, bool startClient);
 		void    quit();
 		// Other methods
+		void    startMonitoring();
 		void    enableCal(const QString& urlString, bool enable);
 		void    reloadCal(const QCString& appname, const QString& urlString, bool reset);
 		void    reloadCal(ADCalendar*, bool reset);
diff -u -p -r tmp/kdepim-3.4.2/kalarm/kalarmd/kalarmd.autostart.desktop kdepim/kalarm/kalarmd/kalarmd.autostart.desktop
--- tmp/kdepim-3.4.2/kalarm/kalarmd/kalarmd.autostart.desktop	2005-07-20 12:03:04.000000000 +0200
+++ kdepim/kalarm/kalarmd/kalarmd.autostart.desktop	2005-09-05 10:47:54.000000000 +0200
@@ -59,7 +59,7 @@ Comment[nb]=start alarmnisse ved innlogg
 Comment[nl]=KAlarm alarmdaemon automatisch starten bij login
 Comment[nn]=Start alarmnisse ved innlogging
 Comment[pl]=Demon alarmu KOrganizera uruchamiany przy zalogowaniu
-Comment[pt]=Servidor de alarme do KAlarm auto-iniciável no arranque
+Comment[pt]=Servidor de alarme do KAlarm auto-iniciado no arranque
 Comment[pt_BR]=Servidor de alarmes do KAlarm inicia automaticamente no login
 Comment[ru]=Служба уведомлений KDE
 Comment[sl]=Samodejni zagon alarmskega strežnika KAlarma ob zagonu
diff -u -p -r tmp/kdepim-3.4.2/kalarm/kalarmd/kalarmd.h kdepim/kalarm/kalarmd/kalarmd.h
--- tmp/kdepim-3.4.2/kalarm/kalarmd/kalarmd.h	2005-05-23 14:12:11.000000000 +0200
+++ kdepim/kalarm/kalarmd/kalarmd.h	2005-09-05 10:47:54.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  *  kalarmd.h  -  global header file
  *  Program:  KAlarm's alarm daemon (kalarmd)
- *  (C) 2004 by David Jarvie <software@astrojar.org.uk>
+ *  Copyright (c) 2004, 2005 by David Jarvie <software@astrojar.org.uk>
  *
  *  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
@@ -13,9 +13,9 @@
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  *  GNU General Public License for more details.
  *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  You should have received a copy of the GNU General Public License along
+ *  with this program; if not, write to the Free Software Foundation, Inc.,
+ *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifndef KALARMD_H
@@ -25,7 +25,7 @@
 #include <config.h>
 #endif
 
-#define DAEMON_VERSION            "4.0"         // kalarmd version number
+#define DAEMON_VERSION            "4.1"         // kalarmd version number
 #define DAEMON_APP_NAME           "kalarmd"     // DCOP name of alarm daemon application
 #define DAEMON_DCOP_OBJECT        "ad"          // DCOP name of kalarmd's DCOP interface
 
@@ -34,4 +34,6 @@
 #define DAEMON_AUTOSTART_SECTION  "General"     // daemon's config file section for autostart-at-login
 #define DAEMON_AUTOSTART_KEY      "Autostart"   // daemon's config file entry for autostart-at-login
 
+#define AUTOSTART_KALARM   // temporary fix for KAlarm autostart before session restoration
+
 #endif // KALARMD_H
Only in kdepim/kalarm/pixmaps: .svn
Only in tmp/kdepim-3.4.2/kalarm/pixmaps: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kalarm/prefdlg.cpp kdepim/kalarm/prefdlg.cpp
--- tmp/kdepim-3.4.2/kalarm/prefdlg.cpp	2005-07-20 12:03:04.000000000 +0200
+++ kdepim/kalarm/prefdlg.cpp	2005-09-05 10:47:54.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  *  prefdlg.cpp  -  program preferences dialog
  *  Program:  kalarm
- *  (C) 2001 - 2005 by David Jarvie <software@astrojar.org.uk>
+ *  Copyright (c) 2001 - 2005 by David Jarvie <software@astrojar.org.uk>
  *
  *  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
@@ -13,9 +13,9 @@
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  *  GNU General Public License for more details.
  *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *  You should have received a copy of the GNU General Public License along
+ *  with this program; if not, write to the Free Software Foundation, Inc.,
+ *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include "kalarm.h"
@@ -253,6 +253,9 @@ MiscPrefTab::MiscPrefTab(QVBox* frame)
 
 	mAutostartTrayIcon1 = new QCheckBox(i18n("Autostart at &login"), group, "autoTray");
 	mAutostartTrayIcon1->setFixedSize(mAutostartTrayIcon1->sizeHint());
+#ifdef AUTOSTART_BY_KALARMD
+	connect(mAutostartTrayIcon1, SIGNAL(toggled(bool)), SLOT(slotAutostartToggled(bool)));
+#endif
 	QWhatsThis::add(mAutostartTrayIcon1,
 	      i18n("Check to run %1 whenever you start KDE.").arg(progname));
 	grid->addMultiCellWidget(mAutostartTrayIcon1, row, row, 1, 2, alignment);
@@ -288,6 +291,9 @@ MiscPrefTab::MiscPrefTab(QVBox* frame)
 
 	mAutostartTrayIcon2 = new QCheckBox(i18n("Autostart system tray &icon at login"), group, "autoRun");
 	mAutostartTrayIcon2->setFixedSize(mAutostartTrayIcon2->sizeHint());
+#ifdef AUTOSTART_BY_KALARMD
+	connect(mAutostartTrayIcon2, SIGNAL(toggled(bool)), SLOT(slotAutostartToggled(bool)));
+#endif
 	QWhatsThis::add(mAutostartTrayIcon2,
 	      i18n("Check to display the system tray icon whenever you start KDE."));
 	grid->addMultiCellWidget(mAutostartTrayIcon2, row, row, 1, 2, alignment);
@@ -480,13 +486,17 @@ void MiscPrefTab::apply(bool syncToDisc)
 		}
 	}
 	Preferences* preferences = Preferences::instance();
-	preferences->mAutostartDaemon = mAutostartDaemon->isChecked();
 	bool systray = mRunInSystemTray->isChecked();
 	preferences->mRunInSystemTray        = systray;
 	preferences->mDisableAlarmsIfStopped = mDisableAlarmsIfStopped->isChecked();
 	if (mQuitWarn->isEnabled())
 		preferences->setQuitWarn(mQuitWarn->isChecked());
 	preferences->mAutostartTrayIcon = systray ? mAutostartTrayIcon1->isChecked() : mAutostartTrayIcon2->isChecked();
+#ifdef AUTOSTART_BY_KALARMD
+	preferences->mAutostartDaemon = mAutostartDaemon->isChecked() || preferences->mAutostartTrayIcon;
+#else
+	preferences->mAutostartDaemon = mAutostartDaemon->isChecked();
+#endif
 	preferences->setConfirmAlarmDeletion(mConfirmAlarmDeletion->isChecked());
 	int sod = mStartOfDay->value();
 	preferences->mStartOfDay.setHMS(sod/60, sod%60, 0);
@@ -536,6 +546,18 @@ void MiscPrefTab::slotRunModeToggled(boo
 	mDisableAlarmsIfStopped->setEnabled(systray);
 }
 
+/******************************************************************************
+* If autostart at login is selected, the daemon must be autostarted so that it
+* can autostart KAlarm, in which case disable the daemon autostart option.
+*/
+void MiscPrefTab::slotAutostartToggled(bool)
+{
+#ifdef AUTOSTART_BY_KALARMD
+	bool autostart = mRunInSystemTray->isChecked() ? mAutostartTrayIcon1->isChecked() : mAutostartTrayIcon2->isChecked();
+	mAutostartDaemon->setEnabled(!autostart);
+#endif
+}
+
 void MiscPrefTab::slotDisableIfStoppedToggled(bool)
 {
 	bool disable = (mDisableAlarmsIfStopped->isChecked());
diff -u -p -r tmp/kdepim-3.4.2/kalarm/prefdlg.h kdepim/kalarm/prefdlg.h
--- tmp/kdepim-3.4.2/kalarm/prefdlg.h	2005-05-23 14:12:12.000000000 +0200
+++ kdepim/kalarm/prefdlg.h	2005-09-05 10:47:54.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  *  prefdlg.h  -  program preferences dialog
  *  Program:  kalarm
- *  (C) 2001 - 2004 by David Jarvie <software@astrojar.org.uk>
+ *  Copyright (c) 2001 - 2005 by David Jarvie <software@astrojar.org.uk>
  *
  *  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
@@ -13,9 +13,9 @@
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  *  GNU General Public License for more details.
  *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *  You should have received a copy of the GNU General Public License along
+ *  with this program; if not, write to the Free Software Foundation, Inc.,
+ *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifndef PREFDLG_H
@@ -114,6 +114,9 @@ class MiscPrefTab : public PrefsTabBase
 		void         slotExpiredToggled(bool);
 		void         slotClearExpired();
 		void         slotOtherTerminalToggled(bool);
+//#ifdef AUTOSTART_BY_KALARMD
+		void         slotAutostartToggled(bool);
+//#endif
 
 	private:
 		void         setExpiredControls(int purgeDays);
Only in kdepim/kalarm/widgets: .svn
Only in tmp/kdepim-3.4.2/kalarm/widgets: Makefile.in
Only in kdepim/kalarmd: .svn
Only in kdepim/kandy: .svn
Only in tmp/kdepim-3.4.2/kandy: Makefile.in
Only in kdepim/kandy/profiles: .svn
Only in tmp/kdepim-3.4.2/kandy/profiles: Makefile.in
Only in kdepim/kandy/src: .svn
Only in tmp/kdepim-3.4.2/kandy/src: Makefile.in
Only in kdepim/karm: .svn
Only in tmp/kdepim-3.4.2/karm: Makefile.in
Only in kdepim/karm/doc: .svn
Only in kdepim/karm/pics: .svn
Only in tmp/kdepim-3.4.2/karm/pics: Makefile.in
Only in kdepim/karm/support: .svn
Only in tmp/kdepim-3.4.2/karm/support: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/karm/taskview.cpp kdepim/karm/taskview.cpp
--- tmp/kdepim-3.4.2/karm/taskview.cpp	2005-05-23 14:11:41.000000000 +0200
+++ kdepim/karm/taskview.cpp	2005-09-05 10:47:52.000000000 +0200
@@ -183,15 +183,6 @@ void TaskView::itemStateChanged( QListVi
   if( _preferences ) _preferences->writeEntry( t->uid(), t->isOpen() );
 }
 
-void TaskView::deleteItemState( QListViewItem *item )
-{
-  if ( !item ) return;
-  Task *t = (Task *)item;
-  kdDebug(5970) << "TaskView:deleteItemState()" 
-    << " uid=" << t->uid() << endl;
-  if( _preferences ) _preferences->deleteEntry( t->uid() );
-}
-
 void TaskView::closeStorage() { _storage->closeStorage( this ); }
 
 void TaskView::iCalFileModified(ResourceCalendar *rc)
@@ -628,9 +619,10 @@ void TaskView::deleteTask(bool markingas
     }
     else
     {
+      QString uid = task->uid();
       task->remove(activeTasks, _storage);
       task->removeFromView();
-      deleteItemState( task );
+      if ( _preferences ) _preferences->deleteEntry( uid ); // forget if the item was expanded or collapsed
       save();
     }
 
diff -u -p -r tmp/kdepim-3.4.2/karm/taskview.h kdepim/karm/taskview.h
--- tmp/kdepim-3.4.2/karm/taskview.h	2005-05-23 14:11:41.000000000 +0200
+++ kdepim/karm/taskview.h	2005-09-05 10:47:52.000000000 +0200
@@ -188,7 +188,6 @@ class TaskView : public KListView
     void autoSavePeriodChanged( int period );
     void minuteUpdate();
     void itemStateChanged( QListViewItem *item );
-    void deleteItemState( QListViewItem *item );
     void iCalFileModified(ResourceCalendar *);
 };
 
Only in kdepim/karm/test: .svn
Only in tmp/kdepim-3.4.2/karm/test: Makefile.in
Only in kdepim/kdgantt: .svn
Only in tmp/kdepim-3.4.2/kdgantt: Makefile.in
Only in kdepim/kfile-plugins: .svn
Only in tmp/kdepim-3.4.2/kfile-plugins: Makefile.in
Only in kdepim/kfile-plugins/ics: .svn
Only in tmp/kdepim-3.4.2/kfile-plugins/ics: Makefile.in
Only in kdepim/kfile-plugins/palm-databases: .svn
Only in tmp/kdepim-3.4.2/kfile-plugins/palm-databases: Makefile.in
Only in kdepim/kfile-plugins/rfc822: .svn
Only in tmp/kdepim-3.4.2/kfile-plugins/rfc822: Makefile.in
Only in kdepim/kfile-plugins/vcf: .svn
Only in tmp/kdepim-3.4.2/kfile-plugins/vcf: Makefile.in
Only in kdepim/kgantt: .svn
Only in tmp/kdepim-3.4.2/kgantt: Makefile.in
Only in kdepim/kgantt/kgantt: .svn
Only in tmp/kdepim-3.4.2/kgantt/kgantt: Makefile.in
Only in kdepim/kgantt/pixmaps: .svn
Only in tmp/kdepim-3.4.2/kgantt/pixmaps: Makefile.in
Only in kdepim/kioslaves: .svn
Only in tmp/kdepim-3.4.2/kioslaves: Makefile.in
Only in kdepim/kioslaves/imap4: .svn
Only in tmp/kdepim-3.4.2/kioslaves/imap4: Makefile.in
Only in kdepim/kioslaves/mbox: .svn
Only in tmp/kdepim-3.4.2/kioslaves/mbox: Makefile.in
Only in kdepim/kioslaves/opengroupware: .svn
Only in tmp/kdepim-3.4.2/kioslaves/opengroupware: Makefile.in
Only in kdepim/kioslaves/sieve: .svn
Only in tmp/kdepim-3.4.2/kioslaves/sieve: Makefile.in
Only in kdepim/kitchensync: .svn
Only in kdepim/kitchensync/Documentation: .svn
Only in tmp/kdepim-3.4.2/kitchensync: Makefile.in
Only in kdepim/kitchensync/kitchensync: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync: Makefile.in
Only in kdepim/kitchensync/kitchensync/addressbook: .svn
Only in kdepim/kitchensync/kitchensync/backup: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/backup: Makefile.in
Only in kdepim/kitchensync/kitchensync/debugger: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/debugger: Makefile.in
Only in kdepim/kitchensync/kitchensync/fileview: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/fileview: Makefile.in
Only in kdepim/kitchensync/kitchensync/lib: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/lib: Makefile.in
Only in kdepim/kitchensync/kitchensync/overview: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/overview: Makefile.in
Only in kdepim/kitchensync/kitchensync/plucker: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/plucker: Makefile.in
Only in kdepim/kitchensync/kitchensync/syncerpart: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/syncerpart: Makefile.in
Only in kdepim/kitchensync/kitchensync/viewer: .svn
Only in tmp/kdepim-3.4.2/kitchensync/kitchensync/viewer: Makefile.in
Only in kdepim/kitchensync/libkonnector2: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/dummy: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/dummy: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/kabc: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/kabc: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/kcal: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/kcal: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/local: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/local: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/qtopia: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/qtopia: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/qtopia/test: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/qtopia/test: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/remote: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/remote: Makefile.in
Only in kdepim/kitchensync/libkonnector2/plugins/threadedkonnector: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/plugins/threadedkonnector: Makefile.in
Only in kdepim/kitchensync/libkonnector2/test: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libkonnector2/test: Makefile.in
Only in kdepim/kitchensync/libksync: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libksync: Makefile.in
Only in kdepim/kitchensync/libksync/test: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libksync/test: Makefile.in
Only in kdepim/kitchensync/libksync/tests: .svn
Only in tmp/kdepim-3.4.2/kitchensync/libksync/tests: Makefile.in
Only in kdepim/kitchensync/libksync/tests/data: .svn
Only in kdepim/kitchensync/multisynk: .svn
Only in tmp/kdepim-3.4.2/kitchensync/multisynk: Makefile.in
Only in kdepim/kitchensync/multisynk/pics: .svn
Only in tmp/kdepim-3.4.2/kitchensync/multisynk/pics: Makefile.in
Only in kdepim/kmail: .svn
diff -u -p -r tmp/kdepim-3.4.2/kmail/KMail.desktop kdepim/kmail/KMail.desktop
--- tmp/kdepim-3.4.2/kmail/KMail.desktop	2005-05-23 14:11:54.000000000 +0200
+++ kdepim/kmail/KMail.desktop	2005-09-05 10:47:53.000000000 +0200
@@ -51,7 +51,7 @@ GenericName[nl]=E-mailclient
 GenericName[nn]=E-postklient
 GenericName[pa]=ਪੱਤਰ ਕਲਾਂਇਟ
 GenericName[pl]=Program pocztowy
-GenericName[pt]=Client de E-mail
+GenericName[pt]=Cliente de E-mail
 GenericName[pt_BR]=Cliente de E-mail
 GenericName[ro]=Program de poştă electronică
 GenericName[ru]=Почтовый клиент
Only in tmp/kdepim-3.4.2/kmail: Makefile.in
Only in kdepim/kmail/about: .svn
Only in tmp/kdepim-3.4.2/kmail/about: Makefile.in
Only in kdepim/kmail/avscripts: .svn
Only in tmp/kdepim-3.4.2/kmail/avscripts: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kmail/avscripts/kmail_antivir.sh kdepim/kmail/avscripts/kmail_antivir.sh
--- tmp/kdepim-3.4.2/kmail/avscripts/kmail_antivir.sh	2005-05-23 14:11:50.000000000 +0200
+++ kdepim/kmail/avscripts/kmail_antivir.sh	2005-08-18 09:58:27.000000000 +0200
@@ -28,7 +28,7 @@
 #    your version.
 #
 TEMPFILE=`mktemp` 
-if [ $? ] ; then 
+if [ $? != 0 ] ; then 
     TEMPFILE=`mktemp /tmp/kmail.XXXXXX` 
 fi 
 export TEMPFILE
diff -u -p -r tmp/kdepim-3.4.2/kmail/avscripts/kmail_clamav.sh kdepim/kmail/avscripts/kmail_clamav.sh
--- tmp/kdepim-3.4.2/kmail/avscripts/kmail_clamav.sh	2005-05-23 14:11:50.000000000 +0200
+++ kdepim/kmail/avscripts/kmail_clamav.sh	2005-08-18 09:58:27.000000000 +0200
@@ -28,7 +28,7 @@
 #    your version.
 #
 TEMPFILE=`mktemp` 
-if [ $? ] ; then 
+if [ $? != 0 ] ; then 
     TEMPFILE=`mktemp /tmp/kmail.XXXXXX` 
 fi 
 export TEMPFILE
diff -u -p -r tmp/kdepim-3.4.2/kmail/avscripts/kmail_fprot.sh kdepim/kmail/avscripts/kmail_fprot.sh
--- tmp/kdepim-3.4.2/kmail/avscripts/kmail_fprot.sh	2005-05-23 14:11:50.000000000 +0200
+++ kdepim/kmail/avscripts/kmail_fprot.sh	2005-08-18 09:58:27.000000000 +0200
@@ -28,7 +28,7 @@
 #    your version.
 #
 TEMPFILE=`mktemp` 
-if [ $? ] ; then 
+if [ $? != 0 ] ; then 
     TEMPFILE=`mktemp /tmp/kmail.XXXXXX` 
 fi 
 export TEMPFILE
diff -u -p -r tmp/kdepim-3.4.2/kmail/avscripts/kmail_sav.sh kdepim/kmail/avscripts/kmail_sav.sh
--- tmp/kdepim-3.4.2/kmail/avscripts/kmail_sav.sh	2005-05-23 14:11:50.000000000 +0200
+++ kdepim/kmail/avscripts/kmail_sav.sh	2005-08-18 09:58:26.000000000 +0200
@@ -28,7 +28,7 @@
 #    your version.
 #
 TEMPFILE=`mktemp` 
-if [ $? ] ; then 
+if [ $? != 0 ] ; then 
     TEMPFILE=`mktemp /tmp/kmail.XXXXXX` 
 fi 
 export TEMPFILE
diff -u -p -r tmp/kdepim-3.4.2/kmail/eventsrc kdepim/kmail/eventsrc
--- tmp/kdepim-3.4.2/kmail/eventsrc	2005-07-20 12:03:02.000000000 +0200
+++ kdepim/kmail/eventsrc	2005-09-05 10:47:53.000000000 +0200
@@ -10,6 +10,7 @@ Comment[ta]=kஅஞ்சல்
 [new-mail-arrived]
 Name=New Mail Arrived
 Name[bg]=Имате ново писмо
+Name[br]=Deuet eo ur postel nevez
 Name[bs]=Stigla vam je nova pošta
 Name[ca]=Ha arribat correu nou
 Name[cs]=Přišla nová pošta
Only in kdepim/kmail/interfaces: .svn
Only in tmp/kdepim-3.4.2/kmail/interfaces: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kmail/keyresolver.cpp kdepim/kmail/keyresolver.cpp
--- tmp/kdepim-3.4.2/kmail/keyresolver.cpp	2005-05-23 14:11:54.000000000 +0200
+++ kdepim/kmail/keyresolver.cpp	2005-08-01 12:00:24.000000000 +0200
@@ -1171,6 +1171,17 @@ Kpgp::Result Kleo::KeyResolver::showKeyA
     for ( uint i = 0; i < items.size(); ++i ) {
       ContactPreferences& pref = lookupContactPreferences( items[i].address );
       pref.encryptionPreference = items[i].pref;
+      pref.pgpKeyFingerprints.clear();
+      pref.smimeCertFingerprints.clear();
+      for ( std::vector<GpgME::Key>::const_iterator it = items[i].keys.begin(), end = items[i].keys.end() ; it != end ; ++it ) {
+        if ( it->protocol() == GpgME::Context::OpenPGP ) {
+          if ( const char * fpr = it->primaryFingerprint() )
+            pref.pgpKeyFingerprints.push_back( fpr );
+        } else if ( it->protocol() == GpgME::Context::CMS ) {
+          if ( const char * fpr = it->primaryFingerprint() )
+            pref.smimeCertFingerprints.push_back( fpr );
+        }
+      }
       saveContactPreference( items[i].address, pref );
     }
   }
diff -u -p -r tmp/kdepim-3.4.2/kmail/kmail_config_composer.desktop kdepim/kmail/kmail_config_composer.desktop
--- tmp/kdepim-3.4.2/kmail/kmail_config_composer.desktop	2005-07-20 12:03:02.000000000 +0200
+++ kdepim/kmail/kmail_config_composer.desktop	2005-09-05 10:47:53.000000000 +0200
@@ -109,7 +109,7 @@ Keywords[gl]=kmail,editor
 Keywords[he]=kmail,כתבן
 Keywords[hi]=के-मेल,कम्पोज़र
 Keywords[hu]=kmail,szerkesztő
-Keywords[is]=kmail,composer,ritill
+Keywords[is]=kmail,ritill
 Keywords[it]=kmail,compositore
 Keywords[lt]=kmail,composer,redaktorius
 Keywords[nb]=kmail,komposer
diff -u -p -r tmp/kdepim-3.4.2/kmail/kmailicalifaceimpl.cpp kdepim/kmail/kmailicalifaceimpl.cpp
--- tmp/kdepim-3.4.2/kmail/kmailicalifaceimpl.cpp	2005-07-20 12:03:02.000000000 +0200
+++ kdepim/kmail/kmailicalifaceimpl.cpp	2005-08-01 12:00:24.000000000 +0200
@@ -848,7 +848,7 @@ void KMailICalIfaceImpl::slotFolderRemov
 void KMailICalIfaceImpl::slotIncidenceAdded( KMFolder* folder,
                                              Q_UINT32 sernum )
 {
-  if( !mUseResourceIMAP )
+  if( mResourceQuiet || !mUseResourceIMAP )
     return;
 
 //  kdDebug(5006) << "KMailICalIfaceImpl::slotIncidenceAdded" << endl;
diff -u -p -r tmp/kdepim-3.4.2/kmail/kmsender.cpp kdepim/kmail/kmsender.cpp
--- tmp/kdepim-3.4.2/kmail/kmsender.cpp	2005-07-20 12:03:02.000000000 +0200
+++ kdepim/kmail/kmsender.cpp	2005-08-01 12:00:24.000000000 +0200
@@ -519,8 +519,10 @@ void KMSender::doSendMsgAux()
 	       .arg(mCurrentMsg->subject()));
   if (!mSendProc->send(mCurrentMsg))
   {
-    mCurrentMsg->setTransferInProgress( false );
-    mOutboxFolder->unGetMsg( mFailedMessages );
+    if ( mCurrentMsg )
+      mCurrentMsg->setTransferInProgress( false );
+    if ( mOutboxFolder )
+      mOutboxFolder->unGetMsg( mFailedMessages );
     mCurrentMsg = 0;
     cleanup();
     setStatusMsg(i18n("Failed to send (some) queued messages."));
@@ -596,7 +598,8 @@ void KMSender::slotIdle()
     // sending of message aborted
     if ( mCurrentMsg ) {
       mCurrentMsg->setTransferInProgress( false );
-      mOutboxFolder->unGetMsg( mFailedMessages );
+      if ( mOutboxFolder )
+        mOutboxFolder->unGetMsg( mFailedMessages );
       mCurrentMsg = 0;
     }
     msg = i18n("Sending aborted:\n%1\n"
@@ -610,8 +613,10 @@ void KMSender::slotIdle()
     setStatusMsg( i18n( "Sending aborted." ) );
   } else {
     if (!mSendProc->sendOk()) {
-      mCurrentMsg->setTransferInProgress( false );
-      mOutboxFolder->unGetMsg( mFailedMessages );
+      if ( mCurrentMsg )
+        mCurrentMsg->setTransferInProgress( false );
+      if ( mOutboxFolder )
+        mOutboxFolder->unGetMsg( mFailedMessages );
       mCurrentMsg = 0;
       mFailedMessages++;
       // Sending of message failed.
diff -u -p -r tmp/kdepim-3.4.2/kmail/partNode.cpp kdepim/kmail/partNode.cpp
--- tmp/kdepim-3.4.2/kmail/partNode.cpp	2005-05-23 14:11:54.000000000 +0200
+++ kdepim/kmail/partNode.cpp	2005-08-12 17:01:09.000000000 +0200
@@ -36,6 +36,7 @@
 #include "kmmimeparttree.h"
 #include <mimelib/utility.h>
 #include <qregexp.h>
+#include <kasciistricmp.h>
 
 /*
   ===========================================================================
@@ -414,7 +415,7 @@ partNode* partNode::findType( int type, 
 partNode* partNode::findNodeForDwPart( DwBodyPart* part )
 {
     partNode* found = 0;
-    if( dwPart()->partId() == part->partId() )
+    if( kasciistricmp( dwPart()->partId(), part->partId() ) == 0 )
         return this;
     if( mChild )
         found = mChild->findNodeForDwPart( part );
Only in kdepim/kmail/pics: .svn
Only in tmp/kdepim-3.4.2/kmail/pics: Makefile.in
Only in kdepim/kmail/pics/icons: .svn
Only in tmp/kdepim-3.4.2/kmail/pics/icons: Makefile.in
Only in kdepim/kmail/profiles: .svn
Only in tmp/kdepim-3.4.2/kmail/profiles: Makefile.in
Only in kdepim/kmailcvt: .svn
Only in tmp/kdepim-3.4.2/kmailcvt: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_evolution_v2.cxx kdepim/kmailcvt/filter_evolution_v2.cxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_evolution_v2.cxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_evolution_v2.cxx	2005-08-01 12:01:10.000000000 +0200
@@ -201,7 +201,7 @@ void FilterEvolution_v2::importMBox(Filt
       tmp.close();
       first_msg = false;
 
-      QString destFolder = "";
+      QString destFolder;
       QString _targetDir = targetDir;
       if(!targetDir.isNull()){
          if(_targetDir.contains(".sbd")) _targetDir.remove(".sbd");
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_mbox.cxx kdepim/kmailcvt/filter_mbox.cxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_mbox.cxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_mbox.cxx	2005-08-01 12:01:10.000000000 +0200
@@ -69,8 +69,9 @@ void FilterMBox::import(FilterInfo *info
 
       while ( ! mbox.atEnd() ) {
 	KTempFile tmp;
+	QIODevice::Offset filepos = 0;
         /* comment by Danny:
-        * Don't use QTextStream to read from mbox, etter use QDataStream. QTextStream only 
+        * Don't use QTextStream to read from mbox, better use QDataStream. QTextStream only 
         * support Unicode/Latin1/Locale. So you lost information from emails with 
         * charset!=Unicode/Latin1/Locale (e.g. KOI8-R) and Content-Transfer-Encoding != base64 
         * (e.g. 8Bit). It also not help to convert the QTextStream to Unicode. By this you
@@ -83,7 +84,14 @@ void FilterMBox::import(FilterInfo *info
 	tmp.file()->writeBlock( input, l );
 	
 	while ( ! mbox.atEnd() &&  (l = mbox.readLine(input.data(),MAX_LINE)) && ((seperate = input.data()).left(5) != "From ")) {
-	  tmp.file()->writeBlock( input, l );
+          tmp.file()->writeBlock( input, l );
+
+          // workaround to fix hang if a corrupted mbox contains some 
+          // binary data, for more see bug #106796
+          if (mbox.at() == filepos)
+            mbox.at(mbox.size());
+          else 
+            filepos = mbox.at();
 	}
 	tmp.close();
         first_msg = false;
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_oe.cxx kdepim/kmailcvt/filter_oe.cxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_oe.cxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_oe.cxx	2005-08-01 12:01:10.000000000 +0200
@@ -138,7 +138,7 @@ void FilterOE::importMailBox( FilterInfo
                 folderName = "OE-" + mailfileinfo.baseName(TRUE);
                 if(parsedFolder) {
                     QString _tmpFolder = getFolderName(_nameOfFile);
-                    if(_tmpFolder != "") folderName = "OE" + _tmpFolder;
+                    if(!_tmpFolder.isEmpty()) folderName = "OE" + _tmpFolder;
                 }
                 info->addLog(i18n("Importing OE5+ Mailbox %1").arg( "../" + _nameOfFile));
                 info->setTo(folderName);
@@ -368,7 +368,7 @@ void FilterOE::dbxReadEmail( FilterInfo 
 QString FilterOE::parseFolderString( QDataStream& ds, int filePos )
 {
     char tmp;
-    QString returnString = "";
+    QString returnString;
     int wasAt = ds.device()->at();
     ds.device()->at(filePos);
     
@@ -389,15 +389,15 @@ QString FilterOE::getFolderName(QString 
 {
     bool found = false;
     bool foundFilename = false;
-    QString folder = "";
+    QString folder;
     // we must do this because folder with more than one upper letter
     // at start have maybe not a file named like the folder !!!
     QString search = filename.lower();
     
     while (!found)
     {
-        for ( QValueList<QString[4]>::Iterator it = folderStructure.begin(); it != folderStructure.end(); it++) {
-            QString tmp[4] = *it;
+        for ( FolderStructureIterator it = folderStructure.begin(); it != folderStructure.end(); it++) {
+            FolderStructure tmp = *it;
             if(foundFilename == false) {
                 QString _tmpFileName = tmp[1];
                 _tmpFileName = _tmpFileName.lower();
@@ -410,7 +410,7 @@ QString FilterOE::getFolderName(QString 
                 QString _currentID = tmp[2];
                 QString _parentID = tmp[3];
                 if(_currentID == search) {
-                    if(_parentID == "") { // this is the root of the folder
+                    if(_parentID.isEmpty()) { // this is the root of the folder
                         found = true;
                         break;
                     } else {
@@ -421,7 +421,7 @@ QString FilterOE::getFolderName(QString 
             }
         }
         // need to break the while loop maybe in some cases
-        if((foundFilename == false) && (folder == "")) return folder;
+        if((foundFilename == false) && (folder.isEmpty())) return folder;
     }
     return folder;
 }
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_oe.hxx kdepim/kmailcvt/filter_oe.hxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_oe.hxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_oe.hxx	2005-08-01 12:01:10.000000000 +0200
@@ -61,8 +61,17 @@ class FilterOE : public Filter {
     bool parsedFolder;
     /** true if the current parsing file is the folder file */
     bool currentIsFolderFile;
+
+    /** Folder structure with following  4 entries:
+        1. descriptive folder name 
+        2. filename 
+        3. ID of current folder
+        4. ID of parent folder 
+    */
+    typedef FolderStructureBase<4> FolderStructure;
     /** matrix with information about the folder structure*/
-    QValueList<QString[4]> folderStructure;
+    QValueList<FolderStructure> folderStructure;
+    typedef QValueList<FolderStructure>::Iterator FolderStructureIterator;
 
     /** name of the current folder */
     QString folderName;
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_outlook.cxx kdepim/kmailcvt/filter_outlook.cxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_outlook.cxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_outlook.cxx	2005-08-01 12:01:10.000000000 +0200
@@ -52,7 +52,7 @@ void FilterOutlook::import(FilterInfo *i
   info->addLog(i18n("Importing new mail files..."));
   info->addLog(i18n("No files found for import."));
   
-  QString outlookDir = "";
+  QString outlookDir;
   outlookDir = KFileDialog::getExistingDirectory(QDir::homeDirPath(), info->parent());
   QDir importDir (outlookDir);
   QStringList files = importDir.entryList("*.[pP][sS][tT]", QDir::Files, QDir::Name);
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_pmail.cxx kdepim/kmailcvt/filter_pmail.cxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_pmail.cxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_pmail.cxx	2005-08-01 12:01:10.000000000 +0200
@@ -320,13 +320,13 @@ bool FilterPMail::parseFolderMatrix() 
 QString FilterPMail::getFolderName(QString ID) 
 {
     bool found = false;
-    QString folder = "";
+    QString folder;
     QString search = ID;
     
     while (!found)
     {
-        for ( QValueList<QString[5]>::Iterator it = folderMatrix.begin(); it != folderMatrix.end(); it++) {
-            QString tmp[5] = *it;
+        for ( FolderStructureIterator it = folderMatrix.begin(); it != folderMatrix.end(); it++) {
+            FolderStructure tmp = *it;
             
             QString _ID = tmp[2];
             if(_ID == search) {
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_pmail.hxx kdepim/kmailcvt/filter_pmail.hxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_pmail.hxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_pmail.hxx	2005-08-01 12:01:10.000000000 +0200
@@ -50,8 +50,18 @@ private:
     QDir dir;
     /**  pointer to the info */
     FilterInfo * inf;
-    /** QStringList with the foldernames, First String contains the ID, the second the folder */
-    QValueList<QString[5]> folderMatrix;
+
+    /** Folder structure here has 5 entries. */
+    typedef FolderStructureBase<5> FolderStructure;
+    /** List with the folder matrix, which contains following strings:
+	1. type (2 for root-folder, 1 for folder, 0 for mailarchiv)
+	2. type (1 for root-folder, 3 for folder, 0 for mailarchiv)  
+	3. "ID:flag:filename" of folder/archiv   
+	4. "ID:name" of parent folder
+	5. name of folder/archiv
+    */
+    QValueList<FolderStructure> folderMatrix;
+    typedef QValueList<FolderStructure>::Iterator FolderStructureIterator;
     
     /** true, if the folderfile is parsed **/
     bool folderParsed;
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filter_thunderbird.cxx kdepim/kmailcvt/filter_thunderbird.cxx
--- tmp/kdepim-3.4.2/kmailcvt/filter_thunderbird.cxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filter_thunderbird.cxx	2005-08-01 12:01:10.000000000 +0200
@@ -198,7 +198,7 @@ void FilterThunderbird::importMBox(Filte
       tmp.close();
       first_msg = false;
 
-      QString destFolder = "";
+      QString destFolder;
       QString _targetDir = targetDir;
       if(!targetDir.isNull()){
          if(_targetDir.contains(".sbd")) _targetDir.remove(".sbd");
diff -u -p -r tmp/kdepim-3.4.2/kmailcvt/filters.hxx kdepim/kmailcvt/filters.hxx
--- tmp/kdepim-3.4.2/kmailcvt/filters.hxx	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/kmailcvt/filters.hxx	2005-08-01 12:01:10.000000000 +0200
@@ -85,6 +85,57 @@ class Filter
 };
 
 
+
+/** 
+* Glorified QString[N] for (a) understandability (b) older gcc compatibility. 
+*/
+template <unsigned int size> class FolderStructureBase
+{
+public:
+	typedef QString NString[size];
+	/** Constructor. Need a default constructor for QValueList. */
+	FolderStructureBase() {} ;
+
+	/** Constructor. Turn N QStrings into a folder structure 
+	*   description. 
+	*/
+	FolderStructureBase(const NString &s)
+	{
+	    for(unsigned int i=0; i<size; i++) d[i]=s[i];
+	} ;
+
+	/** Copy Constructor. */
+	FolderStructureBase(const FolderStructureBase &s)
+	{
+	    for(unsigned int i=0; i<size; i++) d[i]=s[i];
+	} ;
+
+	/** Assignment operator. Does the same thing as 
+	*   the copy constructor.
+	*/
+	FolderStructureBase &operator =(const FolderStructureBase &s)
+	{
+	    for(unsigned int i=0; i<size; i++) d[i]=s[i];
+	    return *this;
+	} ;
+
+	/** Access the different fields. There doesn't seem to
+	*   be a real semantics for the fields.
+	*/
+	const QString operator [](unsigned int i) const
+	{
+	    if (i<size) return d[i]; else return QString::null;
+	} ;
+
+	/** Access the different fields, for writing. */
+	QString &operator [](unsigned int i)
+	{
+	    Q_ASSERT(i<size);
+	    if (i<size) return d[i]; else return d[0];
+	} ;
+private:
+	QString d[size];
+} ;
+
 #endif
 
-// vim: ts=2 sw=2 et
Only in kdepim/kmailcvt/pics: .svn
Only in tmp/kdepim-3.4.2/kmailcvt/pics: Makefile.in
Only in kdepim/kmailcvt/samples: .svn
Only in kdepim/kmailcvt/samples/oe: .svn
Only in kdepim/kmobile: .svn
Only in tmp/kdepim-3.4.2/kmobile: Makefile.in
Only in kdepim/kmobile/devices: .svn
Only in tmp/kdepim-3.4.2/kmobile/devices: Makefile.in
Only in kdepim/kmobile/devices/digicam: .svn
Only in tmp/kdepim-3.4.2/kmobile/devices/digicam: Makefile.in
Only in kdepim/kmobile/devices/gammu: .svn
Only in tmp/kdepim-3.4.2/kmobile/devices/gammu: Makefile.in
Only in kdepim/kmobile/devices/gnokii: .svn
Only in tmp/kdepim-3.4.2/kmobile/devices/gnokii: Makefile.in
Only in kdepim/kmobile/devices/pics: .svn
Only in tmp/kdepim-3.4.2/kmobile/devices/pics: Makefile.in
Only in kdepim/kmobile/devices/skeleton: .svn
Only in tmp/kdepim-3.4.2/kmobile/devices/skeleton: Makefile.in
Only in kdepim/kmobile/kioslave: .svn
Only in tmp/kdepim-3.4.2/kmobile/kioslave: Makefile.in
Only in kdepim/kmobile/kioslave/mimetypes: .svn
Only in tmp/kdepim-3.4.2/kmobile/kioslave/mimetypes: Makefile.in
Only in kdepim/knode: .svn
Only in tmp/kdepim-3.4.2/knode: Makefile.in
Only in kdepim/knode/filters: .svn
Only in tmp/kdepim-3.4.2/knode/filters: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/knode/knarticlewidget.cpp kdepim/knode/knarticlewidget.cpp
--- tmp/kdepim-3.4.2/knode/knarticlewidget.cpp	2005-05-23 14:12:00.000000000 +0200
+++ kdepim/knode/knarticlewidget.cpp	2005-08-23 12:06:50.000000000 +0200
@@ -16,6 +16,7 @@
 
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <cstdlib>
 #include <unistd.h>
 
 #include <qaccel.h>
diff -u -p -r tmp/kdepim-3.4.2/knode/knode_config_cleanup.desktop kdepim/knode/knode_config_cleanup.desktop
--- tmp/kdepim-3.4.2/knode/knode_config_cleanup.desktop	2005-07-20 12:03:03.000000000 +0200
+++ kdepim/knode/knode_config_cleanup.desktop	2005-08-23 12:06:50.000000000 +0200
@@ -25,6 +25,7 @@ Name[et]=Puhastamine
 Name[eu]=Garbiketa
 Name[fi]=Siivoaminen
 Name[fr]=Nettoyage
+Name[ga]=Glan
 Name[gl]=Limpeza
 Name[hi]=साफ़-सफाई
 Name[hu]=Tisztítás
diff -u -p -r tmp/kdepim-3.4.2/knode/knode_config_identity.desktop kdepim/knode/knode_config_identity.desktop
--- tmp/kdepim-3.4.2/knode/knode_config_identity.desktop	2005-07-20 12:03:03.000000000 +0200
+++ kdepim/knode/knode_config_identity.desktop	2005-09-05 10:47:53.000000000 +0200
@@ -58,6 +58,7 @@ Name[zh_CN]=身份
 Comment=Personal Information
 Comment[be]=Пэрсанальная інфармацыя
 Comment[bg]=Управление на личната информация
+Comment[br]=Titouroù diouzhin
 Comment[bs]=Lične informacije
 Comment[ca]=Informació personal
 Comment[cs]=Osobní informace
Only in kdepim/knode/pics: .svn
Only in tmp/kdepim-3.4.2/knode/pics: Makefile.in
Only in kdepim/knotes: .svn
Only in tmp/kdepim-3.4.2/knotes: Makefile.in
Only in kdepim/knotes/icons: .svn
Only in tmp/kdepim-3.4.2/knotes/icons: Makefile.in
Only in kdepim/knotes/pics: .svn
Only in tmp/kdepim-3.4.2/knotes/pics: Makefile.in
Only in kdepim/kode: .svn
Only in tmp/kdepim-3.4.2/kode: Makefile.in
Only in kdepim/kode/kxml_compiler: .svn
Only in tmp/kdepim-3.4.2/kode/kxml_compiler: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kode/kxml_compiler/kxml_compiler.cpp kdepim/kode/kxml_compiler/kxml_compiler.cpp
--- tmp/kdepim-3.4.2/kode/kxml_compiler/kxml_compiler.cpp	2005-05-23 14:11:30.000000000 +0200
+++ kdepim/kode/kxml_compiler/kxml_compiler.cpp	2005-09-05 10:47:51.000000000 +0200
@@ -167,7 +167,7 @@ int main( int argc, char **argv )
 
   KODE::Printer printer;
   printer.setCreationWarning( true );
-  printer.setGenerator( "kxml_compiler" );
+  printer.setGenerator( KCmdLineArgs::cwd() + KCmdLineArgs::appName() );
   printer.setOutputDirectory( baseDir );
   printer.setSourceFile( args->url( 0 ).fileName() );
 
Only in kdepim/konsolekalendar: .svn
Only in tmp/kdepim-3.4.2/konsolekalendar: Makefile.in
Only in kdepim/konsolekalendar/examples: .svn
diff -u -p -r tmp/kdepim-3.4.2/konsolekalendar/konsolekalendar.cpp kdepim/konsolekalendar/konsolekalendar.cpp
--- tmp/kdepim-3.4.2/konsolekalendar/konsolekalendar.cpp	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/konsolekalendar/konsolekalendar.cpp	2005-08-19 17:07:16.000000000 +0200
@@ -157,7 +157,8 @@ bool KonsoleKalendar::showInstance()
 
 	  Event::List sortedList =
             m_variables->getCalendar()->events( EventSortStartDate );
-
+	  if( sortedList.count() > 0)
+	  {
           QDate dt, firstdate, lastdate;
           firstdate = sortedList.first()->dtStart().date();
           lastdate = sortedList.last()->dtStart().date();
@@ -167,6 +168,7 @@ bool KonsoleKalendar::showInstance()
             Event::List events = m_variables->getCalendar()->events( dt, true );
             status = printEventList( &ts, &events, dt );
           }
+	  }
 
 	} else if ( m_variables->isUID() ) {
 	  kdDebug() << "konsolekalendar.cpp::showInstance() | "
Only in kdepim/konsolekalendar/pixmaps: .svn
Only in tmp/kdepim-3.4.2/konsolekalendar/pixmaps: Makefile.in
Only in kdepim/kontact: .svn
Only in tmp/kdepim-3.4.2/kontact: Makefile.in
Only in kdepim/kontact/interfaces: .svn
Only in tmp/kdepim-3.4.2/kontact/interfaces: Makefile.in
Only in kdepim/kontact/pics: .svn
Only in tmp/kdepim-3.4.2/kontact/pics: Makefile.in
Only in kdepim/kontact/pics/icons: .svn
Only in tmp/kdepim-3.4.2/kontact/pics/icons: Makefile.in
Only in kdepim/kontact/plugins: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins: Makefile.in
Only in kdepim/kontact/plugins/akregator: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/akregator: Makefile.in
Only in kdepim/kontact/plugins/kaddressbook: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/kaddressbook: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/kaddressbook/kcmkabsummary.desktop kdepim/kontact/plugins/kaddressbook/kcmkabsummary.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/kaddressbook/kcmkabsummary.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/kaddressbook/kcmkabsummary.desktop	2005-08-12 17:01:12.000000000 +0200
@@ -107,7 +107,7 @@ Keywords[hu]=születésnap,évforduló,k
 Keywords[is]=afmæli, stillingar, stilla
 Keywords[it]=compleanno, anniversario, configura, impostazioni
 Keywords[ja]=誕生日,記念日,設定,設定
-Keywords[lt]=birthday, anniversary, configure, settings, gimtadienis, jubiliejus, konfigūruoti, nustatymai
+Keywords[lt]=birthday, anniversary, configure, settings, gimtadienis,sukaktys, konfigūruoti, nustatymai
 Keywords[nb]=fødselsdag, jubileum, sette opp, innstillinger
 Keywords[nl]=verjaardag,instellingen,configuratie
 Keywords[nn]=fødselsdag,bursdag,gebursdag,jubileum,oppsett,innstillingar
Only in kdepim/kontact/plugins/kitchensync: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/kitchensync: Makefile.in
Only in kdepim/kontact/plugins/kmail: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/kmail: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/kmail/kcmkmailsummary.desktop kdepim/kontact/plugins/kmail/kcmkmailsummary.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/kmail/kcmkmailsummary.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/kmail/kcmkmailsummary.desktop	2005-08-12 17:01:12.000000000 +0200
@@ -102,6 +102,7 @@ Keywords[et]=e-post, meil, seadistamine,
 Keywords[eu]=eposta, laburpena, konfiguratu, ezarpenak
 Keywords[fi]=sähköposti, yhteenveto, asetukset
 Keywords[fr]=message,messagerie,courrier,résumé,vue,configurer,paramètres,paramètre
+Keywords[ga]=ríomhphost, achoimre, cumraigh, socruithe
 Keywords[gl]=email, resumo, configurar, opcións
 Keywords[hi]=ई-मेल, सारांश, कॉन्फ़िगर, विन्यास 
 Keywords[hu]=e-mail,áttekintés,konfigurálás,beállítások
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/kmail/kmailplugin.desktop kdepim/kontact/plugins/kmail/kmailplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/kmail/kmailplugin.desktop	2005-05-23 14:12:47.000000000 +0200
+++ kdepim/kontact/plugins/kmail/kmailplugin.desktop	2005-09-05 10:47:58.000000000 +0200
@@ -33,6 +33,7 @@ Comment[et]=Kontacti KMaili plugin
 Comment[eu]=Kontact-en KMail plugin-a
 Comment[fi]=Kontactin KMail-liitännäinen
 Comment[fr]=Module KMail pour Kontact
+Comment[ga]=Breiseán KMail le haghaidh Kontact
 Comment[gl]=Extensión de KMail para Kontact
 Comment[he]=תוסף KMail ל-Kontact
 Comment[hi]=कॉन्टेक्ट के-मेल प्लगइन
Only in kdepim/kontact/plugins/knode: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/knode: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/knode/knodeplugin.desktop kdepim/kontact/plugins/knode/knodeplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/knode/knodeplugin.desktop	2005-05-23 14:12:45.000000000 +0200
+++ kdepim/kontact/plugins/knode/knodeplugin.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -30,6 +30,7 @@ Comment[et]=Kontacti KNode plugin
 Comment[eu]=Kontact-en KNode plugin-a
 Comment[fi]=Kontactin KNode-liitännäinen
 Comment[fr]=Module KNode pour Kontact
+Comment[ga]=Breiseán KNode le haghaidh Kontact
 Comment[gl]=Extensión de KNode para Kontact
 Comment[hi]=कॉन्टेक्ट के-नोड प्लगइन
 Comment[hu]=Kontact KNode-bővítőmodul
Only in kdepim/kontact/plugins/knotes: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/knotes: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/knotes/knotesplugin.desktop kdepim/kontact/plugins/knotes/knotesplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/knotes/knotesplugin.desktop	2005-05-23 14:12:46.000000000 +0200
+++ kdepim/kontact/plugins/knotes/knotesplugin.desktop	2005-09-05 10:47:58.000000000 +0200
@@ -30,6 +30,7 @@ Comment[et]=Kontacti KNotesi plugin
 Comment[eu]=Kontact-en KNotes plugin-a
 Comment[fi]=Kontactin KNotes-liitännäinen
 Comment[fr]=Module KNotes pour Kontact
+Comment[ga]=Breiseán KNotes le haghaidh Kontact
 Comment[gl]=Extensión de KNotes para Kontact
 Comment[hi]=कॉन्टेक्ट के-नोट्स प्लगइन
 Comment[hu]=Kontact KNotes-bővítőmodul
Only in kdepim/kontact/plugins/korganizer: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/korganizer: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/korganizer/kcmkorgsummary.desktop kdepim/kontact/plugins/korganizer/kcmkorgsummary.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/korganizer/kcmkorgsummary.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/korganizer/kcmkorgsummary.desktop	2005-08-12 17:01:12.000000000 +0200
@@ -103,10 +103,11 @@ Keywords[et]=kalender, ülesanded, seadi
 Keywords[eu]=egutegia, egitekoak, konfiguratu, ezarpenak
 Keywords[fi]=kalenteri, tehtävät, muokkaa, asetukset
 Keywords[fr]=calendrier,agenda,tâches,configurer,paramètres,paramètre
+Keywords[ga]=féilire, tascanna, cumraigh, socruithe
 Keywords[gl]=calendario, pendentes, configurar, opcións
 Keywords[hi]=कैलेण्डर, औज़ार, कॉन्फ़िगर, विन्यास 
 Keywords[hu]=naptár,feladatok,konfigurálás,beállítások
-Keywords[is]=dagatal, tossalisti, stillingar, stilla
+Keywords[is]=dagatal, verkþættir, stillingar, stilla
 Keywords[it]=calendario, cose da fare, configura, impostazioni
 Keywords[ja]=スケジュール,todos,設定,設定
 Keywords[lt]=calendar, todos, configure, settings, kalendorius, darbai, konfigūruoti, nustatymai
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/korganizer/korganizerplugin.desktop kdepim/kontact/plugins/korganizer/korganizerplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/korganizer/korganizerplugin.desktop	2005-05-23 14:12:47.000000000 +0200
+++ kdepim/kontact/plugins/korganizer/korganizerplugin.desktop	2005-09-05 10:47:58.000000000 +0200
@@ -32,6 +32,7 @@ Comment[et]=Kontacti KOrganizeri plugin
 Comment[eu]=Kontact-en KOrganizer plugin-a
 Comment[fi]=Kontactin KOrganizer-liitännäinen
 Comment[fr]=Module KOrganizer pour Kontact
+Comment[ga]=Breiseán KOrganizer le haghaidh Kontact
 Comment[gl]=Extensión de KOrganizer para Kontact
 Comment[hi]=कॉन्टेक्ट के-आर्गेनाइज़र प्लगइन
 Comment[hu]=Kontact KOrganizer-bővítőmodul
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/korganizer/todoplugin.desktop kdepim/kontact/plugins/korganizer/todoplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/korganizer/todoplugin.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/korganizer/todoplugin.desktop	2005-09-05 10:47:58.000000000 +0200
@@ -26,11 +26,12 @@ Comment[es]=Extensión de tareas pendien
 Comment[et]=Kontacti KOrganizeri ülesannete nimekirja plugin
 Comment[eu]=Kontact-en KOrganizer-en egitekoen plugin-a
 Comment[fr]=Module de liste des tâches de KOrganizer pour Kontact
+Comment[ga]=Breiseán Tascliosta KOrganizer le haghaidh Kontact
 Comment[hi]=कॉन्टेक्ट के-आर्गेनाइज़र कार्य सूची प्लगइन
 Comment[hu]=Kontact-bővítőmodul a KOrganizer feladatlistához
-Comment[is]=Kontact KOrganizer tossalista íforrit
+Comment[is]=Kontact KOrganizer verkþátta íforrit
 Comment[it]=Plugin Kontact per le cose da fare di KOrganizer
-Comment[lt]=Kontact KOrganizer užduočių sąrašo priedas
+Comment[lt]=Kontact KOrganizer darbų sąrašo priedas
 Comment[nb]=Kontact programtillegg for KOrganizer gjøreliste
 Comment[nl]=Kontact KOrganizer takenlijstplugin
 Comment[nn]=Kontact-programtillegg for KOrganizer-hugselister
@@ -57,12 +58,13 @@ Name[es]=Tareas pendientes
 Name[et]=Ülesanded
 Name[eu]=Egitekoen zerrenda
 Name[fr]=Liste de tâches
+Name[ga]=Tascliosta
 Name[he]=רשימת מטלות
 Name[hi]=कार्य-सूची
 Name[hu]=Feladatok
-Name[is]=Tossalisti
+Name[is]=Verkþættir
 Name[it]=Cose da fare
-Name[lt]=Užduočių sąrašas
+Name[lt]=Darbų sąrašas
 Name[nb]=Gjøreliste
 Name[nl]=Takenlijst
 Name[nn]=Hugseliste
Only in kdepim/kontact/plugins/kpilot: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/kpilot: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/kpilot/kpilotplugin.desktop kdepim/kontact/plugins/kpilot/kpilotplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/kpilot/kpilotplugin.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/kpilot/kpilotplugin.desktop	2005-09-05 10:47:58.000000000 +0200
@@ -30,6 +30,7 @@ Comment[et]=Kontacti KPiloti plugin
 Comment[eu]=Kontact-en KPilot plugin-a
 Comment[fi]=Kontactin KPilot-laajennus
 Comment[fr]=Module KPilot pour Kontact
+Comment[ga]=Breiseán KPilot le haghaidh Kontact
 Comment[gl]=Extensión de KPilot para Kontact
 Comment[hi]=कॉन्टेक्ट के-पायलट प्लगइन
 Comment[hu]=Kontact KPilot-bővítőmodul
@@ -69,6 +70,7 @@ Name[et]=KPiloti seadistamine
 Name[eu]=KPilot-en konfigurazioa
 Name[fi]=KPilot-asetukset
 Name[fr]=Configuration de KPilot
+Name[ga]=Cumraíocht KPilot
 Name[gl]=Configuración de KPilot
 Name[hi]=के-पायलट कॉन्फ़िगरेशन
 Name[hu]=A KPilot beállításai
Only in kdepim/kontact/plugins/multisynk: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/multisynk: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/multisynk/multisynk.desktop kdepim/kontact/plugins/multisynk/multisynk.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/multisynk/multisynk.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/multisynk/multisynk.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -24,6 +24,7 @@ Comment[es]=Extensión MultiSynk
 Comment[et]=MultiSynki plugin
 Comment[eu]=MultiSynk plugin-a
 Comment[fr]=Module MultiSynk
+Comment[ga]=Breiseán MultiSynk
 Comment[hi]=मल्टी-सिंक प्लगइन
 Comment[hu]=MultiSynk bővítőmodul
 Comment[is]=MultiSynk íforrit
Only in kdepim/kontact/plugins/newsticker: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/newsticker: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/newsticker/newstickerplugin.desktop kdepim/kontact/plugins/newsticker/newstickerplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/newsticker/newstickerplugin.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/newsticker/newstickerplugin.desktop	2005-08-12 17:01:12.000000000 +0200
@@ -27,6 +27,7 @@ Comment[et]=Kontacti uudistejälgija plu
 Comment[eu]=Kontact-en NewsTicker plugin-a
 Comment[fi]=Kontactin uutisnäyttäjä
 Comment[fr]=Module NewsTicker pour Kontact
+Comment[ga]=Breiseán NewsTicker le haghaidh Kontact
 Comment[gl]=Extensión de NewsTicker para Kontact
 Comment[hi]=कॉन्टेक्ट न्यूज़-टिकर प्लगइन
 Comment[hu]=Kontact KNewsTicker-bővítőmodul
Only in kdepim/kontact/plugins/specialdates: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/specialdates: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/specialdates/kcmsdsummary.desktop kdepim/kontact/plugins/specialdates/kcmsdsummary.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/specialdates/kcmsdsummary.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/specialdates/kcmsdsummary.desktop	2005-09-05 10:47:57.000000000 +0200
@@ -12,6 +12,7 @@ X-KDE-ParentComponents=kontact_specialda
 X-KDE-CfgDlgHierarchy=KontactSummary
 
 Name=Special Dates
+Name[br]=Deiziadoù dibar
 Name[ca]=Dates especials
 Name[cs]=Speciální datumy
 Name[da]=Særlige datoer
@@ -22,6 +23,7 @@ Name[et]=Tähtpäevad
 Name[eu]=Data bereziak
 Name[fi]=Erikoispäivät
 Name[fr]=Date particulières
+Name[ga]=Dátaí Speisialta
 Name[hi]=विशिष्ट तारीख़
 Name[hu]=Fontos dátumok
 Name[is]=Sérstakir dagar
@@ -86,7 +88,7 @@ Keywords[hi]=जन्मदिन, वà
 Keywords[hu]=születésnap,évforduló,szabadság,konfigurálás,beállítások
 Keywords[is]=afmæli, frídagar, stillingar, stilla
 Keywords[it]=compleanno, anniversario, vacanze, configura, impostazioni
-Keywords[lt]=birthday, anniversary, holiday, configure, settings, konfigūruoti, nustatymai, gimtadieniai, išeiginės, jubiliejai
+Keywords[lt]=birthday, anniversary, holiday, configure, settings, konfigūruoti, nustatymai, gimtadieniai, išeiginės,sukaktys
 Keywords[nb]=fødselsdag, jubileum, ferie, sette opp, innstillinger
 Keywords[nl]=verjaardag,jubileum,vakantie,instellingen,configuratie,feestdag
 Keywords[nn]=fødselsdag,bursdag,gebursdag,jubileum,ferie,helgedag,merkedag,oppsett,innstillingar
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/specialdates/specialdatesplugin.desktop kdepim/kontact/plugins/specialdates/specialdatesplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/specialdates/specialdatesplugin.desktop	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/plugins/specialdates/specialdatesplugin.desktop	2005-09-05 10:47:58.000000000 +0200
@@ -15,6 +15,7 @@ X-KDE-PluginInfo-License=GPL
 X-KDE-PluginInfo-EnabledByDefault=true
 
 Name=Special Dates
+Name[br]=Deiziadoù dibar
 Name[ca]=Dates especials
 Name[cs]=Speciální datumy
 Name[da]=Særlige datoer
@@ -25,6 +26,7 @@ Name[et]=Tähtpäevad
 Name[eu]=Data bereziak
 Name[fi]=Erikoispäivät
 Name[fr]=Date particulières
+Name[ga]=Dátaí Speisialta
 Name[hi]=विशिष्ट तारीख़
 Name[hu]=Fontos dátumok
 Name[is]=Sérstakir dagar
Only in kdepim/kontact/plugins/summary: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/summary: Makefile.in
Only in kdepim/kontact/plugins/test: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/test: Makefile.in
Only in kdepim/kontact/plugins/weather: .svn
Only in tmp/kdepim-3.4.2/kontact/plugins/weather: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/plugins/weather/weatherplugin.desktop kdepim/kontact/plugins/weather/weatherplugin.desktop
--- tmp/kdepim-3.4.2/kontact/plugins/weather/weatherplugin.desktop	2005-05-23 14:12:45.000000000 +0200
+++ kdepim/kontact/plugins/weather/weatherplugin.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -73,6 +73,7 @@ Name[et]=Ilm
 Name[eu]=Eguraldia
 Name[fi]=Sää
 Name[fr]=Météo
+Name[ga]=Aimsir
 Name[gl]=O Tempo
 Name[hi]=वेदर
 Name[hu]=Időjárás
Only in kdepim/kontact/src: .svn
Only in tmp/kdepim-3.4.2/kontact/src: Makefile.in
Only in kdepim/kontact/src/about: .svn
Only in tmp/kdepim-3.4.2/kontact/src/about: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kontact/src/kontact.setdlg kdepim/kontact/src/kontact.setdlg
--- tmp/kdepim-3.4.2/kontact/src/kontact.setdlg	2005-07-20 12:03:11.000000000 +0200
+++ kdepim/kontact/src/kontact.setdlg	2005-09-05 10:47:58.000000000 +0200
@@ -471,6 +471,7 @@ Name[et]=Ilm
 Name[eu]=Eguraldia
 Name[fi]=Sää
 Name[fr]=Météo
+Name[ga]=Aimsir
 Name[gl]=O Tempo
 Name[hi]=वेदर
 Name[hu]=Időjárás
@@ -522,7 +523,7 @@ Comment[nb]=Værinformasjon
 Comment[nl]=Het weer
 Comment[nn]=Vêrinformasjon
 Comment[pl]=Informacje o pogodzie
-Comment[pt]=Informações Metereológicas
+Comment[pt]=Informações Meteorológicas
 Comment[pt_BR]=Informações sobre o Clima
 Comment[ru]=Информация о погоде
 Comment[sl]=Podatki o vremenu
Only in kdepim/korganizer: .svn
diff -u -p -r tmp/kdepim-3.4.2/korganizer/Makefile.am kdepim/korganizer/Makefile.am
--- tmp/kdepim-3.4.2/korganizer/Makefile.am	2005-05-23 14:31:14.000000000 +0200
+++ kdepim/korganizer/Makefile.am	2005-08-12 17:01:13.000000000 +0200
@@ -47,8 +47,8 @@ timezone_LDADD   = libkorganizer.la $(LI
 timezone_SOURCES = timezone.cpp
 timezone_COMPILE_FIRST = koprefs_base.h
 
-lib_LTLIBRARIES = libkorganizer.la libkorganizer_eventviewer.la \
-                  libkorganizer_calendar.la
+lib_LTLIBRARIES = libkorganizer_eventviewer.la \
+                  libkorganizer_calendar.la libkorganizer.la 
 
 libkorganizer_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -version-info 1:0
 libkorganizer_la_LIBADD  = $(LIB_KPARTS) $(LIB_KFILE) $(LIB_KNEWSTUFF) \
Only in tmp/kdepim-3.4.2/korganizer: Makefile.in
Only in kdepim/korganizer/interfaces: .svn
Only in tmp/kdepim-3.4.2/korganizer/interfaces: Makefile.in
Only in kdepim/korganizer/interfaces/calendar: .svn
Only in tmp/kdepim-3.4.2/korganizer/interfaces/calendar: Makefile.in
Only in kdepim/korganizer/interfaces/korganizer: .svn
Only in tmp/kdepim-3.4.2/korganizer/interfaces/korganizer: Makefile.in
Only in kdepim/korganizer/korgac: .svn
Only in tmp/kdepim-3.4.2/korganizer/korgac: Makefile.in
Only in kdepim/korganizer/korgac/pixmaps: .svn
Only in tmp/kdepim-3.4.2/korganizer/korgac/pixmaps: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer-import.desktop kdepim/korganizer/korganizer-import.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer-import.desktop	2005-07-20 12:02:57.000000000 +0200
+++ kdepim/korganizer/korganizer-import.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -21,6 +21,7 @@ Name[es]=Importar calendario
 Name[et]=Kalendri import
 Name[eu]=Inportatu egutegia
 Name[fr]=Importer un calendrier
+Name[ga]=Iompórtáil Féilire
 Name[hi]=कैलेन्डर आयात करें
 Name[hu]=Naptár importálása
 Name[is]=Flytja inn dagatal
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer_configcolors.desktop kdepim/korganizer/korganizer_configcolors.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer_configcolors.desktop	2005-05-23 14:12:59.000000000 +0200
+++ kdepim/korganizer/korganizer_configcolors.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -127,6 +127,7 @@ Keywords[et]=korganizer,värvid
 Keywords[eu]=korganizer,koloreak
 Keywords[fi]=korganizer,värit
 Keywords[fr]=KOrganizer,couleurs
+Keywords[ga]=korganizer,dathanna
 Keywords[gl]=korganizer,cores
 Keywords[hi]=के-आर्गेनाइज़र,रंग
 Keywords[hu]=korganizer,színek
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer_configdesignerfields.desktop kdepim/korganizer/korganizer_configdesignerfields.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer_configdesignerfields.desktop	2005-07-20 12:02:57.000000000 +0200
+++ kdepim/korganizer/korganizer_configdesignerfields.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -102,6 +102,7 @@ Keywords[es]=korganizer, configurar, opc
 Keywords[et]=korganizer, seadistamine, seadistused, omaloodud väljad
 Keywords[eu]=korganizer, konfiguratu, ezarpenak, eremu pertsonalizatuak
 Keywords[fr]=KOrganizer, configuration, configurer, champs personnalisés
+Keywords[ga]=korganizer, cumraigh, socruithe, réimsí saincheaptha
 Keywords[hi]=केऑर्गेनाइज़र, कॉन्फ़िगर, विन्यास, मनपसंद फ़ील्ड्स
 Keywords[hu]=korganizer,beállítás,beállítások,egyéni mezők
 Keywords[is]=korganizer, stillingar, stilla, sérsniðnir reitir
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer_configfonts.desktop kdepim/korganizer/korganizer_configfonts.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer_configfonts.desktop	2005-05-23 14:12:59.000000000 +0200
+++ kdepim/korganizer/korganizer_configfonts.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -121,6 +121,7 @@ Keywords[et]=korganizer,fondid
 Keywords[eu]=korganizer,letra-tipoak
 Keywords[fi]=korganizer,kirjasimet
 Keywords[fr]=KOrganizer,polices
+Keywords[ga]=korganizer,clónna,clófhoirne
 Keywords[gl]=korganizer,fontes
 Keywords[hi]=के-आर्गेनाइज़र,फ़ॉन्ट्स
 Keywords[hu]=korganizer,betűtípusok
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer_configmain.desktop kdepim/korganizer/korganizer_configmain.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer_configmain.desktop	2005-05-23 14:12:59.000000000 +0200
+++ kdepim/korganizer/korganizer_configmain.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -16,6 +16,7 @@ Name=Personal
 Name[ar]=شخصي
 Name[be]=Пэрсанальныя
 Name[bg]=Персоналност
+Name[br]=Diouzhoc'h
 Name[bs]=Lično
 Name[cs]=Osobní
 Name[cy]=Personol
@@ -55,6 +56,7 @@ Name[uz]=Шахсий
 Name[zh_CN]=个人
 Comment=KOrganizer Main Configuration
 Comment[bg]=Главни настройки за KOrganizer
+Comment[br]=Kefluniadur kentañ KOrganizer
 Comment[bs]=KOrganizer glavno podešavanje
 Comment[ca]=Configuració principal a KOrganizer
 Comment[cs]=Hlavní nastavení KOrganizeru
@@ -67,6 +69,7 @@ Comment[et]=KOrganizeri põhiseadistused
 Comment[eu]=KOrganizer-en konfigurazio nagusia
 Comment[fi]=KOrganizerin pääasetukset
 Comment[fr]=Configuration principale de KOrganizer
+Comment[ga]=Príomhchumraíocht KOrganizer
 Comment[gl]=Configuración Principal de KOrganizer
 Comment[hi]=के-आर्गेनाइज़र मुख्य कॉन्फ़िगरेशन
 Comment[hu]=A KOrganizer alapbeállításai
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer_configplugins.desktop kdepim/korganizer/korganizer_configplugins.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer_configplugins.desktop	2005-07-20 12:02:57.000000000 +0200
+++ kdepim/korganizer/korganizer_configplugins.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -86,6 +86,7 @@ Keywords[es]=korganizer,extensión,plugi
 Keywords[et]=korganizer,plugin,moodul
 Keywords[eu]=korganizer,plugin-a,modulua
 Keywords[fr]=KOrganizer,module
+Keywords[ga]=korganizer,breiseán,modúl
 Keywords[hi]=के-आर्गेनाइज़र,प्लगइन,मॉड्यूल
 Keywords[hu]=korganizer,bővítőmodul,modul
 Keywords[is]=korganizer,íforrit,eining
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer_configtime.desktop kdepim/korganizer/korganizer_configtime.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer_configtime.desktop	2005-05-23 14:12:59.000000000 +0200
+++ kdepim/korganizer/korganizer_configtime.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -29,6 +29,7 @@ Name[et]=Aeg
 Name[eu]=Ordua eta data
 Name[fi]=Aika ja päiväys
 Name[fr]=Date et heure
+Name[ga]=Am & Dáta
 Name[gl]=Hora e Data
 Name[hi]=तारीख़ व समय
 Name[hu]=Dátum és idő
@@ -113,6 +114,7 @@ Keywords[et]=korganizer,aeg
 Keywords[eu]=korganizer,ordua,data
 Keywords[fi]=korganizer,aika
 Keywords[fr]=KOrganizer,date
+Keywords[ga]=korganizer,am
 Keywords[gl]=korganizer,hora
 Keywords[hi]=के-आर्गेनाइज़र,समय
 Keywords[hu]=korganizer,idő
diff -u -p -r tmp/kdepim-3.4.2/korganizer/korganizer_configviews.desktop kdepim/korganizer/korganizer_configviews.desktop
--- tmp/kdepim-3.4.2/korganizer/korganizer_configviews.desktop	2005-05-23 14:12:59.000000000 +0200
+++ kdepim/korganizer/korganizer_configviews.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -112,6 +112,7 @@ Keywords[et]=korganizer,vaade
 Keywords[eu]=korganizer,ikuspegia
 Keywords[fi]=korganizer,näkymä
 Keywords[fr]=KOrganizer,vues
+Keywords[ga]=korganizer,amharc
 Keywords[gl]=korganizer,vista
 Keywords[hi]=के-आर्गेनाइज़र,दृश्य
 Keywords[hu]=korganizer,nézet
Only in kdepim/korganizer/pixmaps: .svn
Only in tmp/kdepim-3.4.2/korganizer/pixmaps: Makefile.in
Only in kdepim/korganizer/plugins: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins: Makefile.in
Only in kdepim/korganizer/plugins/datenums: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/datenums: Makefile.in
Only in kdepim/korganizer/plugins/exchange: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/exchange: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/korganizer/plugins/exchange/exchange.desktop kdepim/korganizer/plugins/exchange/exchange.desktop
--- tmp/kdepim-3.4.2/korganizer/plugins/exchange/exchange.desktop	2005-07-20 12:02:56.000000000 +0200
+++ kdepim/korganizer/plugins/exchange/exchange.desktop	2005-08-12 17:01:13.000000000 +0200
@@ -15,6 +15,7 @@ Name[et]=Microsoft Exchange 2000 plugin 
 Name[eu]=KOrganizer-en Microsoft Exchange 2000 plugin-a
 Name[fi]=KOrganizerin Microsoft Exchange 2000 -laajennus
 Name[fr]=Module Microsoft Exchange 2000 pour KOrganizer
+Name[ga]=Breiseán Microsoft Exchange 2000 le haghaidh KOrganizer
 Name[gl]=Extensión de Microsoft Exchange 2000 para KOrganizer
 Name[hi]=के-आर्गेनाइज़र के लिए माइक्रोसॉफ्ट एक्सचेंज 2000  प्लगइन
 Name[hu]=Microsoft Exchange 2000-bővítőmodul a KOrganizerhez
Only in kdepim/korganizer/plugins/hebrew: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/hebrew: Makefile.in
Only in kdepim/korganizer/plugins/printing: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/printing: Makefile.in
Only in kdepim/korganizer/plugins/printing/journal: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/printing/journal: Makefile.in
Only in kdepim/korganizer/plugins/printing/list: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/printing/list: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/korganizer/plugins/printing/list/listprint.desktop kdepim/korganizer/plugins/printing/list/listprint.desktop
--- tmp/kdepim-3.4.2/korganizer/plugins/printing/list/listprint.desktop	2005-07-20 12:02:56.000000000 +0200
+++ kdepim/korganizer/plugins/printing/list/listprint.desktop	2005-08-01 12:02:19.000000000 +0200
@@ -43,7 +43,7 @@ Comment[hi]=यह प्लगइन à¤
 Comment[hu]=Ezzel a modullal listaként kinyomtathatók a feladatok és események.
 Comment[is]=Þetta íforrit gerir þér kleyft að prenta út lista með atburðum og verkþáttum.
 Comment[it]=Questo plugin ti permette di stampare eventi e cose da fare in modalità elenco.
-Comment[lt]=Šis priedas leidžia spausdinti įvykius ir užduotis sąrašo forma.
+Comment[lt]=Šis priedas leidžia spausdinti įvykius ir darbus sąrašo forma.
 Comment[nb]=Med dette tilleggsprogrammet kan du skrive ut hendelser og gjørelister på liste-form.
 Comment[nl]=Deze plugin maakt het mogelijk om evenementen en taken in lijstvorm uit te printen.
 Comment[nn]=Dette programtillegget lèt deg skriva ut hendingar og hugselister på listeform.
Only in kdepim/korganizer/plugins/printing/whatsnext: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/printing/whatsnext: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/korganizer/plugins/printing/whatsnext/whatsnextprint.desktop kdepim/korganizer/plugins/printing/whatsnext/whatsnextprint.desktop
--- tmp/kdepim-3.4.2/korganizer/plugins/printing/whatsnext/whatsnextprint.desktop	2005-07-20 12:02:56.000000000 +0200
+++ kdepim/korganizer/plugins/printing/whatsnext/whatsnextprint.desktop	2005-08-01 12:02:19.000000000 +0200
@@ -41,7 +41,7 @@ Comment[hi]=यह प्लगइन à¤
 Comment[hu]=Ezzel a modullal kinyomtathatók a rövidesen aktuálissá váló feladatok és események.
 Comment[is]=Þetta íforrit gerir þér kleyft að prenta út lista yfir alla væntanlega atburði og verkþætti.
 Comment[it]=Questo plugin vi permette di stampare una lista dei prossimi eventi e cose da fare.
-Comment[lt]=Šis priedas leidžia spausdinti sąrašą visų artėjančių įvykių ir užduočių.
+Comment[lt]=Šis priedas leidžia spausdinti sąrašą visų artėjančių įvykių ir darbų.
 Comment[nb]=Med dette tilleggsprogrammet kan du skrive ut en liste over kommende hendelser og ting som skal gjøres.
 Comment[nl]=Deze plugin maakt het mogelijk om een lijst van alle komende evenementen en taken uit te printen.
 Comment[nn]=Dette programtillegget lèt deg skriva ut ei liste over alle dei komande hendingane og oppføringane i hugselista.
Only in kdepim/korganizer/plugins/projectview: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/projectview: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/korganizer/plugins/projectview/projectview.desktop kdepim/korganizer/plugins/projectview/projectview.desktop
--- tmp/kdepim-3.4.2/korganizer/plugins/projectview/projectview.desktop	2005-07-20 12:02:56.000000000 +0200
+++ kdepim/korganizer/plugins/projectview/projectview.desktop	2005-09-05 10:47:59.000000000 +0200
@@ -6,6 +6,7 @@ Name[af]=Projek Besigtig Inplak vir Korg
 Name[ar]=ملحق عرض المشاريع للمنظم
 Name[az]=KOrganizer Layihə Nümayiş Əlavəsi
 Name[bg]=Приставка на организатора за преглед на проекти
+Name[br]=Lugent gwell raktres evit KOrganizer
 Name[bs]=Preglednik projekata, dodatak za KOrganizer
 Name[ca]=Endollable de vista de projectes per a KOrganizer
 Name[cs]=Modul projektového pohledu pro KOrganizer
@@ -67,7 +68,7 @@ Comment[fr]=Ce module propose une vue en
 Comment[hu]=Ezzel a modullal projekttervező nézet alakítható ki a KOrganizerben (például a feladatokhoz vagy a havi nézetekhez). Ha aktiválja ezt a modult, átválthat projektnézetbe, hogy a feladatok projekttervként legyenek megtekinthetők.
 Comment[is]=Þetta íforrit veitir verkskipulagssýn fyrir KOrganizer (svipað og verkþátta eða mánaðarsýn). Ef þú virkjar þetta íforrit, getur þú á einfaldan hátt skipt yfir í verkefnasýn og skoðað verkþáttalistann þinn í skipuleggjara.
 Comment[it]=Questo plugin fornisce una vista di pianificazione progetto per KOrganizer (come la vista delle cose da fare o quella mensile). Se abiliti questo plugin, puoi passare dalla vista progetto alla vista delle cose da fare come in un pianificatore di progetti.
-Comment[lt]=Šis priedas pateikia KOrganizaer projekto planavimo vaizdą (panašiai kaip užduočių ar mėnesio vaizdai). Jei įjungsite šį įskiepį, galėsite peršokti į projekto vaizdą ir peržiūrėti savo užduočių sąrašą kaip projektą.
+Comment[lt]=Šis priedas pateikia KOrganizaer projekto planavimo vaizdą (panašiai kaip darbų ar mėnesio vaizdai). Jei įjungsite šį įskiepį, galėsite peršokti į projekto vaizdą ir peržiūrėti savo darbų sąrašą kaip projektą.
 Comment[nb]=Dette tilleggsprogrammet lager en prosjektplan-visning for KOrganizer (som i gjørelister og månedsvisninger). Slår du på dette tilleggsprogrammet kan du bytte til prosjektvisning og se på gjørelista som i en prosjektplan.
 Comment[nl]=Deze plugin biedt een projectweergave voor KOrganizer (net zoals een takenlijst of maandweergave). Wanneer u deze plugin aanzet, kunt u deze weergave aanzetten om uw takenlijst te bekijken als een projectplanner.
 Comment[pl]=Ta wtyczka tworzy widok planowania projektu w KOrganizerze (tak jak widok zadań do zrobienia lub widok miesiąca). Po włączeniu tej wtyczki możliwe jest przełączenie się na widok projektu zadań do zrobienia.
Only in kdepim/korganizer/plugins/timespanview: .svn
Only in tmp/kdepim-3.4.2/korganizer/plugins/timespanview: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/korganizer/plugins/timespanview/timespanview.desktop kdepim/korganizer/plugins/timespanview/timespanview.desktop
--- tmp/kdepim-3.4.2/korganizer/plugins/timespanview/timespanview.desktop	2005-07-20 12:02:56.000000000 +0200
+++ kdepim/korganizer/plugins/timespanview/timespanview.desktop	2005-08-01 12:02:19.000000000 +0200
@@ -40,7 +40,7 @@ Comment[fr]=Ce module vous permet d'avoi
 Comment[hu]=Ezzel modullal egy időszakot lehet áttekinteni a KOrganizerben (például a feladatokat vagy a havi nézeteket). Ha aktiválja ezt a modult, átválthat időszakos nézetbe, hogy az események Gantt-diagramon legyenek megtekinthetők.
 Comment[is]=Þetta íforrit veitir tímabilssýn fyrir KOrganizer (svipað og verkþátta eða mánaðarsýn). Ef þú virkjar þetta íforrit getur þú skipt yfir í tímabilssýn og skoðað atburðina þína eins og á Gantt skýringarmynd.
 Comment[it]=Questo plugin fornisce una vista a intervalli temporali. Se abiliti questo plugin, potrai passare alla vista a intervalli temporali e vedere i tuoi eventi come in un diagramma di Gantt.
-Comment[lt]=Šis priedas korganizer programoje sudaro galimybę apžvelgti laiko tarpą (pvz., užduočių arba mėnesio peržiūra). Įgalinus šį priedą galėsite persijungti į laiko tarpo peržiūrą ir žiūrėti įvykius tarsi Gantt diagramoje.
+Comment[lt]=Šis priedas korganizer programoje sudaro galimybę apžvelgti laiko tarpą (pvz., darbų arba mėnesio peržiūra). Įgalinus šį priedą galėsite persijungti į laiko tarpo peržiūrą ir žiūrėti įvykius tarsi Gantt diagramoje.
 Comment[nb]=Dette tilleggsprogrammet lager en periodevisning for korganizer (slik som gjøreliste og månedsvisning). Hvis du slår på dette tilleggsprogrammet kan du bytte til periodevisning og se hendelser som i et Gantt-diagram.
 Comment[nl]=Deze plugin biedt een weergave voor KOrganizer (zoals de takenlijst en de maandweergave). Wanneer u deze plugin inschakelt kunt u kiezen voor een weergave waarin u uw evenementen in een Gantt-diagram kunt bekijken.
 Comment[pl]=Ta wtyczka tworzy widok zakresu czasu w KOrganizerze (tak jak widok zadań do zrobienia lub widok miesiąca). Po włączeniu tej wtyczki możliwe jest przełączenie się na widok zakresu czasu i przeglądanie zdarzeń jak na diagramie Gantta.
Only in kdepim/korganizer/printing: .svn
Only in tmp/kdepim-3.4.2/korganizer/printing: Makefile.in
Only in kdepim/korganizer/sounds: .svn
Only in tmp/kdepim-3.4.2/korganizer/sounds: Makefile.in
Only in kdepim/korn: .svn
diff -u -p -r tmp/kdepim-3.4.2/korn/KOrn.desktop kdepim/korn/KOrn.desktop
--- tmp/kdepim-3.4.2/korn/KOrn.desktop	2005-05-23 14:12:15.000000000 +0200
+++ kdepim/korn/KOrn.desktop	2005-08-23 12:06:50.000000000 +0200
@@ -16,6 +16,7 @@ GenericName[et]=E-kirjade teadustaja
 GenericName[eu]=Mail abisua
 GenericName[fi]=Saapuneen sähköpostin ilmoitus
 GenericName[fr]=Surveillance du courrier électronique
+GenericName[ga]=Fógairt Ríomhphoist
 GenericName[gl]=Alerta de Correo-e
 GenericName[hi]=डाक सतर्क
 GenericName[hr]=Upozorenje na nove poruke
Only in tmp/kdepim-3.4.2/korn: Makefile.in
Only in kdepim/korn/kconf_update: .svn
Only in tmp/kdepim-3.4.2/korn/kconf_update: Makefile.in
Only in kdepim/kpilot: .svn
diff -u -p -r tmp/kdepim-3.4.2/kpilot/ChangeLog kdepim/kpilot/ChangeLog
--- tmp/kdepim-3.4.2/kpilot/ChangeLog	2005-05-23 14:12:44.000000000 +0200
+++ kdepim/kpilot/ChangeLog	2005-08-12 17:01:07.000000000 +0200
@@ -13,6 +13,22 @@ TODO: provide template-based, interprete
 TODO: give the knotes conduit a decent test mode.
 TODO: only re-write a local database if it is changed.
 
+2005-08-03  Jason 'vanRijn' Kasper
+* Bumping version number to 4.5.4 in case there's a KDE 3.4.3 release
+
+2005-07-20  Jason 'vanRijn' Kasper
+* D'oh!  Version number should change from 4.5.2 to 4.5.3 since we actually
+  did do stuff since KDE 3.4.1, and being that 3.4.2 just got tagged 8
+  hours ago, here's hoping we can get this fixed before 3.4.2 is declared
+  officially official.  =:/
+
+2005-05-26  Jason 'vanRijn' Kasper
+* Fixing nasty little bug (#106324) causing data loss in memofile conduit
+* isFirstSync() is true for both copyHHtoPC and copyPCtoHH.  memofile
+  conduit only wants to do copyHHtoPC if we're either told to, or we don't
+  have any local memos in the filesystem
+  
+
 2005-05-22  Adriaan de Groot
 * Gratuitously update the version number, call this one "kind" (Dutch for
   "child", or otherwise short for "kind of liable to eat your data").
Only in kdepim/kpilot/Documentation: .svn
Only in kdepim/kpilot/Documentation/ConduitProgrammingTutorial: .svn
Only in kdepim/kpilot/Documentation/ConduitProgrammingTutorial/pictures: .svn
Only in tmp/kdepim-3.4.2/kpilot: Makefile.in
Only in kdepim/kpilot/conduits: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits: Makefile.in
Only in kdepim/kpilot/conduits/abbrowserconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/abbrowserconduit: Makefile.in
Only in kdepim/kpilot/conduits/docconduit: .svn
Only in kdepim/kpilot/conduits/docconduit/Icons: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/docconduit/Icons: Makefile.in
Only in tmp/kdepim-3.4.2/kpilot/conduits/docconduit: Makefile.in
Only in kdepim/kpilot/conduits/docconduit/tests: .svn
Only in kdepim/kpilot/conduits/knotes: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/knotes: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/knotes/knotes-conduit.desktop kdepim/kpilot/conduits/knotes/knotes-conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/knotes/knotes-conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/knotes/knotes-conduit.desktop	2005-08-12 17:01:06.000000000 +0200
@@ -49,6 +49,7 @@ Name[el]=KNotes / Υπομνήματα
 Name[et]=KNotes / memod
 Name[eu]=KNotes / Oharrak
 Name[fr]=KNotes / Mémos
+Name[ga]=KNotes / Meamraim
 Name[hi]=के-नोट्स / मेमो
 Name[hu]=KNotes / memók
 Name[is]=KNotes / minnisblöð
Only in kdepim/kpilot/conduits/malconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/malconduit: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/malconduit/mal_conduit.desktop kdepim/kpilot/conduits/malconduit/mal_conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/malconduit/mal_conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/malconduit/mal_conduit.desktop	2005-08-12 17:01:06.000000000 +0200
@@ -13,6 +13,7 @@ Name[et]=MAL (AvantGo) kanal
 Name[eu]=MAL (AvantGo) kanala
 Name[fi]=MAL (AvantGo) yhdyskäytävä
 Name[fr]=MAL (AvantGo) Canal
+Name[ga]=Seoladán MAL (AvantGo)
 Name[he]=ממשק AvantGo) MAL)
 Name[hi]=एमएएल (AvantGo) कन्ड्यूइट
 Name[hu]=MAL- (AvantGo) csatoló
Only in kdepim/kpilot/conduits/memofileconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/memofileconduit: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/memofileconduit/memofile-conduit.desktop kdepim/kpilot/conduits/memofileconduit/memofile-conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/memofileconduit/memofile-conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/memofileconduit/memofile-conduit.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -20,7 +20,7 @@ Name[nb]=Notatfil
 Name[nl]=Memobestand
 Name[nn]=Memofil
 Name[pl]=Plik notatki
-Name[pt]=Ficheiro Memo
+Name[pt]=Ficheiro Memorando
 Name[pt_BR]=Arquivo Memo
 Name[ru]=Заметка
 Name[sl]=Datoteka z opombami
@@ -46,7 +46,7 @@ Comment[lt]=Å is kanalas sinchronizuoja 
 Comment[nb]=Denne kanalen synkroniserer PDA-ens notater med en lokal mappe.
 Comment[nl]=Dit conduit synchroniseert de memo's van uw handheld met een lokale map.
 Comment[pl]=Ten łącznik synchronizuje notatki z palmtopa z lokalnym katalogiem.
-Comment[pt]=Esta conduta sincroniza os memos do seu PDA com uma pasta local.
+Comment[pt]=Esta conduta sincroniza os memorandos do seu PDA com uma pasta local.
 Comment[pt_BR]=Este conduíte sincroniza as anotações no seu handheld com um diretório local.
 Comment[ru]=Канал синхронизации заметок КПК и KDE.
 Comment[sl]=Ta veznik usklajuje opombe v ročnem računalniku s krajevnim imenikom.
Only in kdepim/kpilot/conduits/notepadconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/notepadconduit: Makefile.in
Only in kdepim/kpilot/conduits/null: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/null: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/null/null-conduit.desktop kdepim/kpilot/conduits/null/null-conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/null/null-conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/null/null-conduit.desktop	2005-08-12 17:01:06.000000000 +0200
@@ -20,6 +20,7 @@ Comment[et]=See kanal ei tee mitte kui m
 Comment[eu]=Kanal honek ez du ezer egiten.
 Comment[fi]=Tämä yhdyskäytävä ei tee mitään.
 Comment[fr]=Ce canal ne fait rien.
+Comment[ga]=Ní dhéanann an seoladán seo faic.
 Comment[hi]=यह कन्ड्यूइट कुछ नहीं करता है.
 Comment[hu]=Ez a csatoló üres, csak tesztelési célokat szolgál
 Comment[is]=Þessi rás gerir ekki neitt.
Only in kdepim/kpilot/conduits/perlconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/perlconduit: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/perlconduit/perl-conduit.desktop kdepim/kpilot/conduits/perlconduit/perl-conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/perlconduit/perl-conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/perlconduit/perl-conduit.desktop	2005-08-12 17:01:06.000000000 +0200
@@ -13,6 +13,7 @@ Name[es]=Perl (Ejemplo)
 Name[et]=Perl (näidis)
 Name[eu]=Perl (adibidea)
 Name[fr]=Perl (exemple)
+Name[ga]=Perl (Sampla)
 Name[gl]=Perl (Mostra)
 Name[hi]=पर्ल (सेंपल)
 Name[hu]=Perl (példa)
@@ -50,6 +51,7 @@ Comment[es]=Este conducto de ejemplo eje
 Comment[et]=See näidiskanal käivitab Perli interpretaatori.
 Comment[eu]=Adibide honek Perl interpretatzaile bat exekutatzen du.
 Comment[fr]=Cet exemple de canal lance un interpréteur Perl.
+Comment[ga]=Ritheann an seoladán samplach seo léirmhínitheoir Perl.
 Comment[hi]=यह सेंपल कन्ड्यूइट पर्ल इंटरप्रेटर चलाता है.
 Comment[hu]=Ez a mintacsatoló a Perl-értelmezőt futtatja
 Comment[is]=Þessi sýnishornarás keyrir Perl túlk.
Only in kdepim/kpilot/conduits/popmail: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/popmail: Makefile.in
Only in kdepim/kpilot/conduits/pythonconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/pythonconduit: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/pythonconduit/python-conduit.desktop kdepim/kpilot/conduits/pythonconduit/python-conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/pythonconduit/python-conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/pythonconduit/python-conduit.desktop	2005-08-12 17:01:06.000000000 +0200
@@ -13,6 +13,7 @@ Name[es]=Python (Ejemplo)
 Name[et]=Python (näidis)
 Name[eu]=Python (adibidea)
 Name[fr]=Python (exemple)
+Name[ga]=Python (Sampla)
 Name[gl]=Python (Mostra)
 Name[hi]=पायथन (सेम्पल)
 Name[hu]=Python (példa)
@@ -50,6 +51,7 @@ Comment[es]=Este conducto de ejemplo eje
 Comment[et]=See näidiskanal käivitab Pythoni interpretaatori.
 Comment[eu]=Adibide honek Python interpretatzaile bat exekutatzen du.
 Comment[fr]=Cet exemple de canal lance un interpréteur Python.
+Comment[ga]=Ritheann an seoladán samplach seo léirmhínitheoir Python.
 Comment[hi]=यह सेंपल कन्ड्यूइट पायथन इंटरप्रेटर चलाता है.
 Comment[hu]=Ez a mintacsatoló a Python-értelmezőt futtatja
 Comment[is]=Þessi sýnishornarás keyrir Python túlk.
Only in kdepim/kpilot/conduits/sysinfoconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/sysinfoconduit: Makefile.in
Only in kdepim/kpilot/conduits/timeconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/timeconduit: Makefile.in
Only in kdepim/kpilot/conduits/vcalconduit: .svn
Only in tmp/kdepim-3.4.2/kpilot/conduits/vcalconduit: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/vcalconduit/todo-conduit.desktop kdepim/kpilot/conduits/vcalconduit/todo-conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/vcalconduit/todo-conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/vcalconduit/todo-conduit.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -50,6 +50,7 @@ Name[es]=Tareas pendientes (KOrganizer)
 Name[et]=Ülesanded (KOrganizer)
 Name[eu]=Egitekoak (KOrganizer)
 Name[fr]=Tâches (KOrganizer)
+Name[ga]=Tascanna (KOrganizer)
 Name[gl]=Pendentes (KOrganizer)
 Name[hi]=कार्य सूची (के-आर्गेनाइज़र)
 Name[hu]=Feladatok (KOrganizer)
diff -u -p -r tmp/kdepim-3.4.2/kpilot/conduits/vcalconduit/vcal-conduit.desktop kdepim/kpilot/conduits/vcalconduit/vcal-conduit.desktop
--- tmp/kdepim-3.4.2/kpilot/conduits/vcalconduit/vcal-conduit.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/kpilot/conduits/vcalconduit/vcal-conduit.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -15,6 +15,7 @@ Name[et]=Kalender (KOrganizer)
 Name[eu]=Egutegia (KOrganizer)
 Name[fi]=Kalenteri (KOrganizer)
 Name[fr]=Agenda (KOrganizer)
+Name[ga]=Féilire (KOrganizer)
 Name[gl]=Calendario (KOrganizer)
 Name[hi]=कैलेण्डर (के-आर्गेनाइज़र)
 Name[hu]=Naptár (KOrganizer)
Only in kdepim/kpilot/kpilot: .svn
Only in kdepim/kpilot/kpilot/Icons: .svn
Only in tmp/kdepim-3.4.2/kpilot/kpilot/Icons: Makefile.in
Only in tmp/kdepim-3.4.2/kpilot/kpilot: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kpilot/kpilot/addressWidget.cc kdepim/kpilot/kpilot/addressWidget.cc
--- tmp/kdepim-3.4.2/kpilot/kpilot/addressWidget.cc	2005-05-23 14:12:42.000000000 +0200
+++ kdepim/kpilot/kpilot/addressWidget.cc	2005-08-10 15:36:41.000000000 +0200
@@ -29,7 +29,7 @@
 ** Bug reports and questions can be sent to kde-pim@kde.org
 */
 static const char *addresswidget_id =
-	"$Id: addressWidget.cc 412940 2005-05-12 23:32:07Z adridg $";
+	"$Id: addressWidget.cc 444767 2005-08-10 13:36:29Z mlaurent $";
 
 
 
@@ -295,6 +295,8 @@ void AddressWidget::updateWidget()
 {
 	FUNCTIONSETUP;
 
+	if( !fAddressAppInfo )
+			return;
 	int addressDisplayMode = KPilotSettings::addressDisplayMode();
 
 	int listIndex = 0;
@@ -675,7 +677,7 @@ void AddressWidget::writeAddress(PilotAd
 void AddressWidget::slotExport()
 {
 	FUNCTIONSETUP;
-
+	if(!fAddressAppInfo) return;
 	int currentCatID = findSelectedCategory(fCatList,
 		fAddressAppInfo->categoryInfo());
 
diff -u -p -r tmp/kdepim-3.4.2/kpilot/kpilot/kpilot.desktop kdepim/kpilot/kpilot/kpilot.desktop
--- tmp/kdepim-3.4.2/kpilot/kpilot/kpilot.desktop	2005-05-23 14:12:42.000000000 +0200
+++ kdepim/kpilot/kpilot/kpilot.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -31,6 +31,7 @@ GenericName[et]=PalmPiloti rakendus
 GenericName[eu]=PalmPilot tresna
 GenericName[fi]=Palm Pilot -työkalu
 GenericName[fr]=Outil pour le Palm Pilot
+GenericName[ga]=Uirlis PalmPilot
 GenericName[gl]=Ferramenta de PalmPilot
 GenericName[he]=כלי פאלם-פיילוט
 GenericName[hi]=पाम-पायलट औज़ार
diff -u -p -r tmp/kdepim-3.4.2/kpilot/kpilot/kpilot_config.desktop kdepim/kpilot/kpilot/kpilot_config.desktop
--- tmp/kdepim-3.4.2/kpilot/kpilot/kpilot_config.desktop	2005-07-20 12:03:07.000000000 +0200
+++ kdepim/kpilot/kpilot/kpilot_config.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -25,6 +25,7 @@ Name[et]=KPiloti seadistamine
 Name[eu]=KPilot-en konfigurazioa
 Name[fi]=KPilot-asetukset
 Name[fr]=Configuration de KPilot
+Name[ga]=Cumraíocht KPilot
 Name[gl]=Configuración de KPilot
 Name[hi]=के-पायलट कॉन्फ़िगरेशन
 Name[hu]=A KPilot beállításai
@@ -63,6 +64,7 @@ Comment[et]=KPiloti põhiseadistused
 Comment[eu]=KPilot-en konfigurazio nagusia
 Comment[fi]=KPilotin pääasetukset
 Comment[fr]=Configuration principale de KPilot
+Comment[ga]=Príomhchumraíocht KPilot
 Comment[gl]=Configuración Principal de KPilot 
 Comment[hi]=के-पायलट मुख्य कॉन्फ़िगरेशन
 Comment[hu]=A KPilot legfontosabb beállításai
@@ -99,6 +101,7 @@ Keywords[et]=kpilot,peamine
 Keywords[eu]=kpilot,nagusia
 Keywords[fi]=kpilot
 Keywords[fr]=kpilot,principal
+Keywords[ga]=kpilot,príomh
 Keywords[gl]=kpilot,principal
 Keywords[hi]=के-पायलट,मुख्य
 Keywords[hu]=kpilot,alap
diff -u -p -r tmp/kdepim-3.4.2/kpilot/kpilot/kpilotconduit.desktop kdepim/kpilot/kpilot/kpilotconduit.desktop
--- tmp/kdepim-3.4.2/kpilot/kpilot/kpilotconduit.desktop	2005-05-23 14:12:42.000000000 +0200
+++ kdepim/kpilot/kpilot/kpilotconduit.desktop	2005-08-12 17:01:06.000000000 +0200
@@ -20,6 +20,7 @@ Comment[et]=KPiloti kanal
 Comment[eu]=KPilot kanala
 Comment[fi]=KPilot yhdyskäytävä
 Comment[fr]=Canal de KPilot
+Comment[ga]=Seoladán KPilot
 Comment[gl]=Conducto de KPilot
 Comment[he]=ממשק של KPilot
 Comment[hi]=के-पायलट कन्ड्यूइट
diff -u -p -r tmp/kdepim-3.4.2/kpilot/kpilot/memoWidget.cc kdepim/kpilot/kpilot/memoWidget.cc
--- tmp/kdepim-3.4.2/kpilot/kpilot/memoWidget.cc	2005-05-23 14:12:42.000000000 +0200
+++ kdepim/kpilot/kpilot/memoWidget.cc	2005-08-10 15:36:41.000000000 +0200
@@ -28,7 +28,7 @@
 ** Bug reports and questions can be sent to kde-pim@kde.org
 */
 static const char *memowidget_id =
-	"$Id: memoWidget.cc 412940 2005-05-12 23:32:07Z adridg $";
+	"$Id: memoWidget.cc 444767 2005-08-10 13:36:29Z mlaurent $";
 
 #include "options.h"
 
@@ -410,7 +410,7 @@ void MemoWidget::slotDeleteMemo()
 void MemoWidget::updateWidget()
 {
 	FUNCTIONSETUP;
-	if (!shown) return;
+	if (!shown || !d->fMemoAppInfo ) return;
 
 	if (fCatList->currentItem() == -1)
 	{
@@ -608,7 +608,7 @@ void MemoWidget::slotAddMemo()
 void MemoWidget::slotImportMemo()
 {
 	FUNCTIONSETUP;
-	if (!shown) return;
+	if (!shown || !d->fMemoAppInfo) return;
 
 	int currentCatID = findSelectedCategory(fCatList,
 		d->fMemoAppInfo->categoryInfo(), true);
diff -u -p -r tmp/kdepim-3.4.2/kpilot/kpilot/todoWidget.cc kdepim/kpilot/kpilot/todoWidget.cc
--- tmp/kdepim-3.4.2/kpilot/kpilot/todoWidget.cc	2005-05-23 14:12:42.000000000 +0200
+++ kdepim/kpilot/kpilot/todoWidget.cc	2005-08-10 14:59:30.000000000 +0200
@@ -27,7 +27,7 @@
 ** Bug reports and questions can be sent to kde-pim@kde.org
 */
 static const char *todowidget_id =
-	"$Id: todoWidget.cc 412940 2005-05-12 23:32:07Z adridg $";
+	"$Id: todoWidget.cc 444507 2005-08-10 12:59:25Z mlaurent $";
 
 
 #include "options.h"
@@ -294,7 +294,7 @@ void TodoWidget::setupWidget()
 void TodoWidget::updateWidget()
 {
 	FUNCTIONSETUP;
-	if (!shown) return;
+	if (!shown || !fTodoAppInfo ) return;
 
 	int listIndex = 0;
 
Only in kdepim/kpilot/lib: .svn
Only in tmp/kdepim-3.4.2/kpilot/lib: Makefile.in
Only in kdepim/kpilot/lib/data: .svn
diff -u -p -r tmp/kdepim-3.4.2/kpilot/lib/kpilotlink.cc kdepim/kpilot/lib/kpilotlink.cc
--- tmp/kdepim-3.4.2/kpilot/lib/kpilotlink.cc	2005-05-23 14:12:43.000000000 +0200
+++ kdepim/kpilot/lib/kpilotlink.cc	2005-08-10 15:07:20.000000000 +0200
@@ -25,7 +25,7 @@
 /*
 ** Bug reports and questions can be sent to kde-pim@kde.org
 */
-static const char *kpilotlink_id = "$Id: kpilotlink.cc 412940 2005-05-12 23:32:07Z adridg $";
+static const char *kpilotlink_id = "$Id: kpilotlink.cc 444518 2005-08-10 13:07:16Z mlaurent $";
 
 #include "options.h"
 
@@ -399,7 +399,8 @@ bool KPilotDeviceLink::open(QString devi
 	if (ret >= 0)
 	{
 		fLinkStatus = DeviceOpen;
-		fOpenTimer->stop();
+		if(fOpenTimer)
+			fOpenTimer->stop();
 
 		KPilotDeviceLinkPrivate::self()->bindDevice( fRealPilotPath );
 		fSocketNotifier = new QSocketNotifier(fPilotMasterSocket,
@@ -447,8 +448,8 @@ bool KPilotDeviceLink::open(QString devi
 		}
 		e = errno;
 		msg = i18n("Cannot open Pilot port \"%1\". ");
-
-		fOpenTimer->stop();
+		if( fOpenTimer )
+			fOpenTimer->stop();
 
 		// goto errInit;
 	}
diff -u -p -r tmp/kdepim-3.4.2/kpilot/lib/options.h kdepim/kpilot/lib/options.h
--- tmp/kdepim-3.4.2/kpilot/lib/options.h	2005-05-23 14:12:43.000000000 +0200
+++ kdepim/kpilot/lib/options.h	2005-08-12 17:01:06.000000000 +0200
@@ -224,7 +224,7 @@ inline kdbgstream& operator <<(kdbgstrea
 #define FUNCTIONSETUPL(a) const int fname = a; Q_UNUSED(fname);
 #endif
 
-#define KPILOT_VERSION	"4.5.2 (kind)"
+#define KPILOT_VERSION	"4.5.4 (dreumes)"
 
 
 // Function to expand newlines in rich text to <br>\n
Only in kdepim/kresources: .svn
Only in tmp/kdepim-3.4.2/kresources: Makefile.in
Only in kdepim/kresources/blogging: .svn
Only in tmp/kdepim-3.4.2/kresources/blogging: Makefile.in
Only in kdepim/kresources/egroupware: .svn
Only in tmp/kdepim-3.4.2/kresources/egroupware: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/egroupware/kabc_xmlrpc.desktop kdepim/kresources/egroupware/kabc_xmlrpc.desktop
--- tmp/kdepim-3.4.2/kresources/egroupware/kabc_xmlrpc.desktop	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/kresources/egroupware/kabc_xmlrpc.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -11,6 +11,7 @@ Name[es]=Servidor de eGroupware (por med
 Name[et]=eGroupware server (XML-RPC vahendusel)
 Name[eu]=eGroupware zerbitzaria (XML-RPC bidez)
 Name[fr]=Serveur eGroupware (via XML-RPC)
+Name[ga]=Freastalaí eGroupware (via XML-RPC)
 Name[hu]=eGroupware-kiszolgáló (XML-RPC-n keresztül)
 Name[is]=eGroupware þjónn (gegnum XML-RPC)
 Name[it]=Server eGroupware (via XML-RPC)
diff -u -p -r tmp/kdepim-3.4.2/kresources/egroupware/kcal_xmlrpc.desktop kdepim/kresources/egroupware/kcal_xmlrpc.desktop
--- tmp/kdepim-3.4.2/kresources/egroupware/kcal_xmlrpc.desktop	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/kresources/egroupware/kcal_xmlrpc.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -11,6 +11,7 @@ Name[es]=Servidor de eGroupware (por med
 Name[et]=eGroupware server (XML-RPC vahendusel)
 Name[eu]=eGroupware zerbitzaria (XML-RPC bidez)
 Name[fr]=Serveur eGroupware (via XML-RPC)
+Name[ga]=Freastalaí eGroupware (via XML-RPC)
 Name[hu]=eGroupware-kiszolgáló (XML-RPC-n keresztül)
 Name[is]=eGroupware þjónn (gegnum XML-RPC)
 Name[it]=Server eGroupware (via XML-RPC)
diff -u -p -r tmp/kdepim-3.4.2/kresources/egroupware/knotes_xmlrpc.desktop kdepim/kresources/egroupware/knotes_xmlrpc.desktop
--- tmp/kdepim-3.4.2/kresources/egroupware/knotes_xmlrpc.desktop	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/kresources/egroupware/knotes_xmlrpc.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -11,6 +11,7 @@ Name[es]=Servidor de eGroupware (por med
 Name[et]=eGroupware server (XML-RPC vahendusel)
 Name[eu]=eGroupware zerbitzaria (XML-RPC bidez)
 Name[fr]=Serveur eGroupware (via XML-RPC)
+Name[ga]=Freastalaí eGroupware (via XML-RPC)
 Name[hu]=eGroupware-kiszolgáló (XML-RPC-n keresztül)
 Name[is]=eGroupware þjónn (gegnum XML-RPC)
 Name[it]=Server eGroupware (via XML-RPC)
Only in kdepim/kresources/exchange: .svn
Only in tmp/kdepim-3.4.2/kresources/exchange: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/exchange/exchange.desktop kdepim/kresources/exchange/exchange.desktop
--- tmp/kdepim-3.4.2/kresources/exchange/exchange.desktop	2005-07-20 12:02:58.000000000 +0200
+++ kdepim/kresources/exchange/exchange.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -17,6 +17,7 @@ Name[es]=Servidor Exchange 2000
 Name[et]=Exchange 2000 server
 Name[eu]=Exchange 2000 zerbitzaria
 Name[fr]=Serveur Exchange2000
+Name[ga]=Freastalaí Exchange 2000
 Name[hi]=एक्सचेंज2000 सर्वर
 Name[hu]=Exchange 2000-kiszolgáló
 Name[is]=Exchange 2000 þjónn
Only in kdepim/kresources/featureplan: .svn
Only in tmp/kdepim-3.4.2/kresources/featureplan: Makefile.in
Only in kdepim/kresources/groupdav: .svn
Only in tmp/kdepim-3.4.2/kresources/groupdav: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/groupdav/kabc_groupdav.desktop kdepim/kresources/groupdav/kabc_groupdav.desktop
--- tmp/kdepim-3.4.2/kresources/groupdav/kabc_groupdav.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/groupdav/kabc_groupdav.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -12,6 +12,7 @@ Name[es]=Servidor GroupDAV (por ejemplo,
 Name[et]=GroupDAV server (nt. OpenGroupware)
 Name[eu]=GroupDAV zerbitzaria (adib. OpenGroupware)
 Name[fr]=GroupDAV Serveur (ex. OpenGroupware)
+Name[ga]=Freastalaí GroupDAV (m.sh. OpenGroupware)
 Name[hu]=GroupDAV-kiszolgáló (pl. OpenGroupware)
 Name[is]=GroupDAV þjónn (t.d. OpenGroupware)
 Name[it]=Server GroupDAV (per es. OpenGroupware)
diff -u -p -r tmp/kdepim-3.4.2/kresources/groupdav/kcal_groupdav.desktop kdepim/kresources/groupdav/kcal_groupdav.desktop
--- tmp/kdepim-3.4.2/kresources/groupdav/kcal_groupdav.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/groupdav/kcal_groupdav.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -12,6 +12,7 @@ Name[es]=Servidor GroupDAV (por ejemplo,
 Name[et]=GroupDAV server (nt. OpenGroupware)
 Name[eu]=GroupDAV zerbitzaria (adib. OpenGroupware)
 Name[fr]=GroupDAV Serveur (ex. OpenGroupware)
+Name[ga]=Freastalaí GroupDAV (m.sh. OpenGroupware)
 Name[hu]=GroupDAV-kiszolgáló (pl. OpenGroupware)
 Name[is]=GroupDAV þjónn (t.d. OpenGroupware)
 Name[it]=Server GroupDAV (per es. OpenGroupware)
Only in kdepim/kresources/groupware: .svn
Only in tmp/kdepim-3.4.2/kresources/groupware: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/groupware/kabc_groupware.desktop kdepim/kresources/groupware/kabc_groupware.desktop
--- tmp/kdepim-3.4.2/kresources/groupware/kabc_groupware.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/groupware/kabc_groupware.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -10,6 +10,7 @@ Name[es]=Servidor de Groupware
 Name[et]=Grupitöö server
 Name[eu]=Groupware zerbitzaria
 Name[fr]=Serveur de travail collaboratif
+Name[ga]=Freastalaí Groupware
 Name[hi]=ग्रुपवेयर सर्वर
 Name[hu]=Groupware kiszolgáló
 Name[is]=Groupware þjónn
diff -u -p -r tmp/kdepim-3.4.2/kresources/groupware/kcal_groupware.desktop kdepim/kresources/groupware/kcal_groupware.desktop
--- tmp/kdepim-3.4.2/kresources/groupware/kcal_groupware.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/groupware/kcal_groupware.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -10,6 +10,7 @@ Name[es]=Servidor de Groupware
 Name[et]=Grupitöö server
 Name[eu]=Groupware zerbitzaria
 Name[fr]=Serveur de travail collaboratif
+Name[ga]=Freastalaí Groupware
 Name[hi]=ग्रुपवेयर सर्वर
 Name[hu]=Groupware kiszolgáló
 Name[is]=Groupware þjónn
Only in kdepim/kresources/groupwise: .svn
Only in tmp/kdepim-3.4.2/kresources/groupwise: Makefile.in
Only in kdepim/kresources/groupwise/kioslave: .svn
Only in tmp/kdepim-3.4.2/kresources/groupwise/kioslave: Makefile.in
Only in kdepim/kresources/groupwise/soap: .svn
Only in tmp/kdepim-3.4.2/kresources/groupwise/soap: Makefile.in
Only in kdepim/kresources/groupwise/soap/patches: .svn
Only in kdepim/kresources/kolab: .svn
Only in tmp/kdepim-3.4.2/kresources/kolab: Makefile.in
Only in kdepim/kresources/kolab/kabc: .svn
Only in tmp/kdepim-3.4.2/kresources/kolab/kabc: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/kolab/kabc/kolab.desktop kdepim/kresources/kolab/kabc/kolab.desktop
--- tmp/kdepim-3.4.2/kresources/kolab/kabc/kolab.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/kolab/kabc/kolab.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -12,6 +12,7 @@ Name[es]=Libreta de direcciones en servi
 Name[et]=Aadressiraamat IMAP-serveril (KMaili vahendusel)
 Name[eu]=Helbide-liburua IMAP zerbitzarian KMail-en bidez
 Name[fr]=Carnet d'adresse sur serveur IMAP (via KMail)
+Name[ga]=Leabhar Seoltaí ar Fhreastalaí IMAP via KMail
 Name[hu]=IMAP-kiszolgálón tárolt címjegyzék a KMailen keresztül
 Name[is]=Vistfangaskrá á IMAP þjóni gegnum KMail
 Name[it]=Rubrica indirizzi su server IMAP via KMail
Only in kdepim/kresources/kolab/kcal: .svn
Only in tmp/kdepim-3.4.2/kresources/kolab/kcal: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/kolab/kcal/kolab.desktop kdepim/kresources/kolab/kcal/kolab.desktop
--- tmp/kdepim-3.4.2/kresources/kolab/kcal/kolab.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/kolab/kcal/kolab.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -12,6 +12,7 @@ Name[es]=Calendario en servidor IMAP por
 Name[et]=Kalender IMAP-serveril (KMaili vahendusel)
 Name[eu]=Egutegia IMAP zerbitzarian KMail-en bidez
 Name[fr]=Agenda sur serveur IMAP (via KMail)
+Name[ga]=Féilire ar Fhreastalaí IMAP via KMail
 Name[hu]=IMAP-kiszolgálón tárolt naptár a KMailen keresztül
 Name[is]=Dagatal á IMAP þjóni gegnum KMail
 Name[it]=Calendario su server IMAP via KMail
diff -u -p -r tmp/kdepim-3.4.2/kresources/kolab/kcal/resourcekolab.cpp kdepim/kresources/kolab/kcal/resourcekolab.cpp
--- tmp/kdepim-3.4.2/kresources/kolab/kcal/resourcekolab.cpp	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/kolab/kcal/resourcekolab.cpp	2005-08-01 11:59:41.000000000 +0200
@@ -487,10 +487,18 @@ bool ResourceKolab::addIncidence( KCal::
       mUidMap[ uid ] = StorageReference( subResource, sernum );
     } else {
       /* This is a real add, from KMail, we didn't trigger this ourselves.
-         If this uid already exists in this folder, do conflict resolution */
+       * If this uid already exists in this folder, do conflict resolution, 
+       * unless the folder is read-only, in which case the user should not be
+       * offered a means of putting mails in a folder she'll later be unable to
+       * upload. Skip the incidence, in this case. */
       if ( mUidMap.contains( uid )
           && ( mUidMap[ uid ].resource() == subResource ) ) {
-        resolveConflict( incidence, subResource, sernum );
+        if ( (*map)[ subResource ].writable() ) {
+          resolveConflict( incidence, subResource, sernum );
+        } else {
+          kdWarning( 5650 ) << "Duplicate event in a read-only folder detected! "
+            "Please inform the owner of the folder. " << endl;
+        }
         return true;
       }
       /* Add to the cache if the add didn't come from KOrganizer, in which case
Only in kdepim/kresources/kolab/knotes: .svn
Only in tmp/kdepim-3.4.2/kresources/kolab/knotes: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/kolab/knotes/kolabresource.desktop kdepim/kresources/kolab/knotes/kolabresource.desktop
--- tmp/kdepim-3.4.2/kresources/kolab/knotes/kolabresource.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/kolab/knotes/kolabresource.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -12,6 +12,7 @@ Name[es]=Servidor IMAP por medio de KMai
 Name[et]=IMAP-server (KMaili vahendusel)
 Name[eu]=IMAP zerbitzaria KMail-en bidez
 Name[fr]=Serveur IMAP (via KMail)
+Name[ga]=Freastalaí IMAP via KMail
 Name[hu]=IMAP-kiszolgáló a KMailen keresztül
 Name[is]=IMAP þjónn gegnum KMail
 Name[it]=Server IMAP via KMail
Only in kdepim/kresources/kolab/shared: .svn
Only in tmp/kdepim-3.4.2/kresources/kolab/shared: Makefile.in
Only in kdepim/kresources/lib: .svn
Only in tmp/kdepim-3.4.2/kresources/lib: Makefile.in
Only in kdepim/kresources/newexchange: .svn
Only in tmp/kdepim-3.4.2/kresources/newexchange: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/newexchange/kcal_newexchange_final.desktop kdepim/kresources/newexchange/kcal_newexchange_final.desktop
--- tmp/kdepim-3.4.2/kresources/newexchange/kcal_newexchange_final.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/newexchange/kcal_newexchange_final.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -13,6 +13,7 @@ Name[es]=Calendario en un servidor Excha
 Name[et]=Kalender Exchange-serveril
 Name[eu]=Egutegia Exchange zerbitzari batean
 Name[fr]=Agenda sur un serveur Exchange
+Name[ga]=Féilire ar Fhreastalaí Exchange
 Name[hu]=Exchange 2000-kiszolgáló naptára
 Name[is]=Dagatal á Exchange þjóni
 Name[it]=Calendario su un server Exchange
Only in kdepim/kresources/remote: .svn
Only in tmp/kdepim-3.4.2/kresources/remote: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/remote/remote.desktop kdepim/kresources/remote/remote.desktop
--- tmp/kdepim-3.4.2/kresources/remote/remote.desktop	2005-05-23 14:11:35.000000000 +0200
+++ kdepim/kresources/remote/remote.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -15,6 +15,7 @@ Name[et]=Kalender võrgufailis
 Name[eu]=Egutegia urruneko fitxategi batean
 Name[fi]=Kalenteri etätiedostossa
 Name[fr]=Calendrier dans un fichier distant
+Name[ga]=Féilire i gCianchomhad
 Name[hi]=रिमोट फ़ाइल में कैलेन्डर
 Name[hu]=Távoli fájlban tárolt naptár
 Name[is]=Dagatal í fjarlægri skrá
Only in kdepim/kresources/slox: .svn
Only in tmp/kdepim-3.4.2/kresources/slox: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/kresources/slox/kabc_slox.desktop kdepim/kresources/slox/kabc_slox.desktop
--- tmp/kdepim-3.4.2/kresources/slox/kabc_slox.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/slox/kabc_slox.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -11,6 +11,7 @@ Name[es]=Servidor Openexchange de SUSE L
 Name[et]=SUSE LINUX Openexchange server
 Name[eu]=SUSE LINUX Openexchange zerbitzaria
 Name[fr]=Serveur SUSE Linux Openexchange
+Name[ga]=Freastalaí Openexchange SUSE LINUX
 Name[hu]=SUSE LINUX Openexchange-kiszolgáló
 Name[is]=SUSE LINUX Openexchange þjónn
 Name[it]=Server SUSE LINUX Openexchange
diff -u -p -r tmp/kdepim-3.4.2/kresources/slox/kcal_slox.desktop kdepim/kresources/slox/kcal_slox.desktop
--- tmp/kdepim-3.4.2/kresources/slox/kcal_slox.desktop	2005-07-20 12:02:59.000000000 +0200
+++ kdepim/kresources/slox/kcal_slox.desktop	2005-09-05 10:47:51.000000000 +0200
@@ -11,6 +11,7 @@ Name[es]=Servidor Openexchange de SUSE L
 Name[et]=SUSE LINUX Openexchange server
 Name[eu]=SUSE LINUX Openexchange zerbitzaria
 Name[fr]=Serveur SUSE Linux Openexchange
+Name[ga]=Freastalaí Openexchange SUSE LINUX
 Name[hu]=SUSE LINUX Openexchange-kiszolgáló
 Name[is]=SUSE LINUX Openexchange þjónn
 Name[it]=Server SUSE LINUX Openexchange
diff -u -p -r tmp/kdepim-3.4.2/kresources/slox/webdavhandler.cpp kdepim/kresources/slox/webdavhandler.cpp
--- tmp/kdepim-3.4.2/kresources/slox/webdavhandler.cpp	2005-05-23 14:11:34.000000000 +0200
+++ kdepim/kresources/slox/webdavhandler.cpp	2005-08-01 11:59:38.000000000 +0200
@@ -28,6 +28,8 @@
 #endif
 #endif
 
+#include <stdlib.h>
+
 #include <libkcal/incidence.h>
 
 #include <libkdepim/kpimprefs.h>
@@ -150,7 +152,16 @@ QString WebdavHandler::qDateTimeToSlox( 
 {
   QDateTime utc = KPimPrefs::localTimeToUtc( dt, timeZoneId );
 
-  uint ticks = -utc.secsTo( QDateTime( QDate( 1970, 1, 1 ), QTime( 0, 0 ) ) );
+  // secsTo and toTime_t etc also perform a timezone conversion using the system timezone,
+  // but we want to use the calendar timezone, so we have to convert ourself and spoof the tz to UTC before 
+  // converting to ticks to prevent this 
+  QCString origTz = getenv("TZ");
+  setenv( "TZ", "UTC", 1 );
+  uint ticks = utc.toTime_t();
+  if ( origTz.isNull() )
+    unsetenv( "TZ" );
+  else
+    setenv( "TZ", origTz, 1 );
 
   return QString::number( ticks ) + "000";
 }
Only in kdepim/ksync: .svn
Only in tmp/kdepim-3.4.2/ksync: Makefile.in
Only in kdepim/ksync/lib: .svn
Only in tmp/kdepim-3.4.2/ksync/lib: Makefile.in
Only in kdepim/ksync/src: .svn
Only in tmp/kdepim-3.4.2/ksync/src: Makefile.in
Only in kdepim/ktnef: .svn
Only in tmp/kdepim-3.4.2/ktnef: Makefile.in
Only in kdepim/ktnef/gui: .svn
Only in tmp/kdepim-3.4.2/ktnef/gui: Makefile.in
Only in kdepim/ktnef/gui/pics: .svn
Only in tmp/kdepim-3.4.2/ktnef/gui/pics: Makefile.in
Only in kdepim/ktnef/ktnef: .svn
Only in tmp/kdepim-3.4.2/ktnef/ktnef: Makefile.in
Only in kdepim/ktnef/lib: .svn
Only in tmp/kdepim-3.4.2/ktnef/lib: Makefile.in
Only in kdepim/libemailfunctions: .svn
Only in tmp/kdepim-3.4.2/libemailfunctions: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/libemailfunctions/email.cpp kdepim/libemailfunctions/email.cpp
--- tmp/kdepim-3.4.2/libemailfunctions/email.cpp	2005-07-20 12:03:04.000000000 +0200
+++ kdepim/libemailfunctions/email.cpp	2005-08-01 12:01:04.000000000 +0200
@@ -697,14 +697,24 @@ bool KPIM::getNameAndMail(const QString&
     //          and outside of quoted text behind the trailing '>'.
     bInComment = false;
     bInQuotesOutsideOfEmail = false;
+    int parenthesesNesting = 0;
     for( i = iAd+1; len > i; ++i ) {
       c = aStr[i];
       if( bInComment ){
         if( ')' == c ){
-          if( !name.isEmpty() )
-            name.append( ' ' );
-          bInComment = false;
-        }else{
+          if ( --parenthesesNesting == 0 ) {
+            bInComment = false;
+            if( !name.isEmpty() )
+              name.append( ' ' );
+          } else {
+            // nested ")", add it
+            name.append( ')' ); // name can't be empty here
+          }
+        } else {
+          if( '(' == c ) {
+            // nested "("
+            ++parenthesesNesting;
+          }
           name.append( c ); // all comment stuff is part of the name
         }
       }else if( bInQuotesOutsideOfEmail ){
@@ -730,7 +740,8 @@ bool KPIM::getNameAndMail(const QString&
             case '(':
               if( !name.isEmpty() )
                 name.append( ' ' );
-              bInComment = true;
+              if ( ++parenthesesNesting > 0 )
+                bInComment = true;
               break;
             default:
               if( ' ' != c )
Only in kdepim/libemailfunctions/tests: .svn
Only in tmp/kdepim-3.4.2/libemailfunctions/tests: Makefile.in
Only in kdepim/libkcal: .svn
Only in tmp/kdepim-3.4.2/libkcal: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/libkcal/icalformatimpl.cpp kdepim/libkcal/icalformatimpl.cpp
--- tmp/kdepim-3.4.2/libkcal/icalformatimpl.cpp	2005-05-23 14:12:35.000000000 +0200
+++ kdepim/libkcal/icalformatimpl.cpp	2005-08-23 12:06:51.000000000 +0200
@@ -2107,7 +2107,7 @@ void ICalFormatImpl::readAlarm(icalcompo
 
 icaltimetype ICalFormatImpl::writeICalDate(const QDate &date)
 {
-  icaltimetype t;
+  icaltimetype t = icaltime_null_time();
 
   t.year = date.year();
   t.month = date.month();
@@ -2128,7 +2128,7 @@ icaltimetype ICalFormatImpl::writeICalDa
 
 icaltimetype ICalFormatImpl::writeICalDateTime(const QDateTime &datetime)
 {
-  icaltimetype t;
+  icaltimetype t = icaltime_null_time();
 
   t.year = datetime.date().year();
   t.month = datetime.date().month();
diff -u -p -r tmp/kdepim-3.4.2/libkcal/kabc.desktop kdepim/libkcal/kabc.desktop
--- tmp/kdepim-3.4.2/libkcal/kabc.desktop	2005-05-23 14:12:35.000000000 +0200
+++ kdepim/libkcal/kabc.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -16,6 +16,7 @@ Name[et]=Sünnipäevad KDE aadressiraama
 Name[eu]=Urtebetetzeak KAddressBook-etik
 Name[fi]=Syntymäpäivät KDE:n osoitekirjasta
 Name[fr]=Dates de naissance de KAddressBook
+Name[ga]=Breithlaethanta ó KAddressBook
 Name[gl]=Cumpreanos de KAddressBook
 Name[he]=ימי הולדת מתוך KAddressBook
 Name[hi]=के-एड्रेस-बुक से जन्मतिथि
Only in kdepim/libkcal/libical: .svn
Only in tmp/kdepim-3.4.2/libkcal/libical: Makefile.in
Only in kdepim/libkcal/libical/design-data: .svn
Only in tmp/kdepim-3.4.2/libkcal/libical/design-data: Makefile.in
Only in kdepim/libkcal/libical/doc: .svn
Only in tmp/kdepim-3.4.2/libkcal/libical/doc: Makefile.in
Only in kdepim/libkcal/libical/scripts: .svn
Only in tmp/kdepim-3.4.2/libkcal/libical/scripts: Makefile.in
Only in kdepim/libkcal/libical/src: .svn
Only in tmp/kdepim-3.4.2/libkcal/libical/src: Makefile.in
Only in kdepim/libkcal/libical/src/libical: .svn
Only in tmp/kdepim-3.4.2/libkcal/libical/src/libical: Makefile.in
Only in kdepim/libkcal/libical/src/libicalss: .svn
Only in tmp/kdepim-3.4.2/libkcal/libical/src/libicalss: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/libkcal/local.desktop kdepim/libkcal/local.desktop
--- tmp/kdepim-3.4.2/libkcal/local.desktop	2005-05-23 14:12:35.000000000 +0200
+++ kdepim/libkcal/local.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -16,6 +16,7 @@ Name[et]=Kalender kohalikus failis
 Name[eu]=Egutegia fitxategi lokalean
 Name[fi]=Kalenteri paikallisessa tiedostossa
 Name[fr]=Calendrier dans un fichier local
+Name[ga]=Féilire i gComhad Logánta
 Name[hi]=स्थानीय फ़ाइल में कैलेन्डर
 Name[hu]=Helyi fájlban tárolt naptár
 Name[is]=Dagatal í staðbundinni skrá
diff -u -p -r tmp/kdepim-3.4.2/libkcal/localdir.desktop kdepim/libkcal/localdir.desktop
--- tmp/kdepim-3.4.2/libkcal/localdir.desktop	2005-05-23 14:12:35.000000000 +0200
+++ kdepim/libkcal/localdir.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -16,6 +16,7 @@ Name[et]=Kalender kohalikus kataloogis
 Name[eu]=Egutegia direktorio lokalean
 Name[fi]=Kalenteri paikallisessa hakemistossa
 Name[fr]=Calendrier dans un dossier local
+Name[ga]=Féilire i gComhadlann Logánta
 Name[hi]=स्थानीय डिरेक्ट्री में कैलेन्डर
 Name[hu]=Helyi könyvtárban tárolt naptár
 Name[is]=Dagatal í staðbundinni möppu
Only in kdepim/libkcal/tests: .svn
Only in tmp/kdepim-3.4.2/libkcal/tests: Makefile.in
Only in kdepim/libkcal/tests/data: .svn
Only in kdepim/libkcal/versit: .svn
Only in tmp/kdepim-3.4.2/libkcal/versit: Makefile.in
Only in kdepim/libkdenetwork: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork: Makefile.in
Only in kdepim/libkdenetwork/gpgmepp: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/gpgmepp: Makefile.in
Only in kdepim/libkdenetwork/gpgmepp/interfaces: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/gpgmepp/interfaces: Makefile.in
Only in kdepim/libkdenetwork/libgpg-error-copy: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/libgpg-error-copy: Makefile.in
Only in kdepim/libkdenetwork/libgpgme-copy: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/libgpgme-copy: Makefile.in
Only in kdepim/libkdenetwork/libgpgme-copy/assuan: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/libgpgme-copy/assuan: Makefile.in
Only in kdepim/libkdenetwork/libgpgme-copy/gpgme: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/libgpgme-copy/gpgme: Makefile.in
Only in kdepim/libkdenetwork/qgpgme: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/qgpgme: Makefile.in
Only in kdepim/libkdenetwork/qgpgme/tests: .svn
Only in tmp/kdepim-3.4.2/libkdenetwork/qgpgme/tests: Makefile.in
Only in kdepim/libkdenetwork/tests: .svn
Only in kdepim/libkdepim: .svn
Only in tmp/kdepim-3.4.2/libkdepim: Makefile.in
Only in kdepim/libkdepim/about: .svn
Only in tmp/kdepim-3.4.2/libkdepim/about: Makefile.in
Only in kdepim/libkdepim/cfgc: .svn
Only in tmp/kdepim-3.4.2/libkdepim/cfgc: Makefile.in
Only in kdepim/libkdepim/interfaces: .svn
Only in tmp/kdepim-3.4.2/libkdepim/interfaces: Makefile.in
Only in kdepim/libkdepim/komposer: .svn
Only in tmp/kdepim-3.4.2/libkdepim/komposer: Makefile.in
Only in kdepim/libkdepim/komposer/core: .svn
Only in tmp/kdepim-3.4.2/libkdepim/komposer/core: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/libkdepim/komposer/core/komposereditor.desktop kdepim/libkdepim/komposer/core/komposereditor.desktop
--- tmp/kdepim-3.4.2/libkdepim/komposer/core/komposereditor.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/libkdepim/komposer/core/komposereditor.desktop	2005-09-05 10:47:56.000000000 +0200
@@ -16,6 +16,7 @@ Comment[et]=Komposeri redaktor
 Comment[eu]=Komposer editorea
 Comment[fi]=Komposer-editori
 Comment[fr]=Éditeur Komposer
+Comment[ga]=Eagarthóir Komposer
 Comment[gl]=Editor Komposer
 Comment[he]=עורך של Komposer
 Comment[hi]=कम्पोज़र एडिटर
diff -u -p -r tmp/kdepim-3.4.2/libkdepim/komposer/core/komposerplugin.desktop kdepim/libkdepim/komposer/core/komposerplugin.desktop
--- tmp/kdepim-3.4.2/libkdepim/komposer/core/komposerplugin.desktop	2005-05-23 14:12:27.000000000 +0200
+++ kdepim/libkdepim/komposer/core/komposerplugin.desktop	2005-09-05 10:47:55.000000000 +0200
@@ -17,6 +17,7 @@ Name[et]=Komposeri plugin
 Name[eu]=Komposer plugin-a
 Name[fi]=Komposer-liitännäinen
 Name[fr]=Module de Komposer
+Name[ga]=Breiseán Komposer
 Name[gl]=Extensión Komposer
 Name[he]=תןסף Kompoer
 Name[hi]=कम्पोज़र प्लगइन
Only in kdepim/libkdepim/komposer/core/tests: .svn
Only in tmp/kdepim-3.4.2/libkdepim/komposer/core/tests: Makefile.in
Only in kdepim/libkdepim/komposer/plugins: .svn
Only in tmp/kdepim-3.4.2/libkdepim/komposer/plugins: Makefile.in
Only in kdepim/libkdepim/komposer/plugins/default: .svn
Only in tmp/kdepim-3.4.2/libkdepim/komposer/plugins/default: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/libkdepim/komposer/plugins/default/defaulteditor.desktop kdepim/libkdepim/komposer/plugins/default/defaulteditor.desktop
--- tmp/kdepim-3.4.2/libkdepim/komposer/plugins/default/defaulteditor.desktop	2005-07-20 12:03:06.000000000 +0200
+++ kdepim/libkdepim/komposer/plugins/default/defaulteditor.desktop	2005-09-05 10:47:55.000000000 +0200
@@ -28,6 +28,7 @@ Name[es]=Editor Komposer
 Name[et]=Komposeri redaktor
 Name[eu]=Komposer editorea
 Name[fr]=Éditeur Komposer
+Name[ga]=Eagarthóir Komposer
 Name[hi]=कम्पोज़र एडिटर
 Name[hu]=Komposer szerkesztő
 Name[is]=Komposer ritill
@@ -57,6 +58,7 @@ Comment[es]=Editor predefinido Komposer
 Comment[et]=Komposeri vaikeredaktor
 Comment[eu]=Komposer editore lehenetsia
 Comment[fr]=Éditeur Komposer par défaut
+Comment[ga]=Eagarthóir réamhshocraithe Komposer
 Comment[he]=עורך ברירת מחדל של Kompoer
 Comment[hi]=कम्पोज़र डिफ़ॉल्ट संपादक
 Comment[hu]=A Komposer alapértelmezett szerkesztője
Only in kdepim/libkdepim/komposer/test: .svn
Only in tmp/kdepim-3.4.2/libkdepim/komposer/test: Makefile.in
Only in kdepim/libkdepim/kpartsdesignerplugin: .svn
Only in tmp/kdepim-3.4.2/libkdepim/kpartsdesignerplugin: Makefile.in
Only in kdepim/libkdepim/pics: .svn
Only in tmp/kdepim-3.4.2/libkdepim/pics: Makefile.in
Only in kdepim/libkdepim/tests: .svn
Only in tmp/kdepim-3.4.2/libkdepim/tests: Makefile.in
Only in kdepim/libkholidays: .svn
Only in tmp/kdepim-3.4.2/libkholidays: Makefile.in
Only in kdepim/libkholidays/holidays: .svn
Only in tmp/kdepim-3.4.2/libkholidays/holidays: Makefile.in
Only in kdepim/libkmime: .svn
Only in tmp/kdepim-3.4.2/libkmime: Makefile.in
Only in kdepim/libkmime/tests: .svn
Only in tmp/kdepim-3.4.2/libkmime/tests: Makefile.in
Only in kdepim/libkmime/tests/data: .svn
Only in kdepim/libkmime/tests/data/codec_b: .svn
Only in kdepim/libkmime/tests/data/codec_base64: .svn
Only in kdepim/libkmime/tests/data/codec_q: .svn
Only in kdepim/libkmime/tests/data/codec_quoted-printable: .svn
Only in kdepim/libkmime/tests/data/codec_x-kmime-rfc2231: .svn
Only in kdepim/libkmime/tests/data/codec_x-uuencode: .svn
Only in kdepim/libkpgp: .svn
Only in tmp/kdepim-3.4.2/libkpgp: Makefile.in
Only in kdepim/libkpgp/pics: .svn
Only in tmp/kdepim-3.4.2/libkpgp/pics: Makefile.in
Only in kdepim/libkpimexchange: .svn
Only in tmp/kdepim-3.4.2/libkpimexchange: Makefile.in
Only in kdepim/libkpimexchange/core: .svn
Only in tmp/kdepim-3.4.2/libkpimexchange/core: Makefile.in
Only in kdepim/libkpimidentities: .svn
Only in tmp/kdepim-3.4.2/libkpimidentities: Makefile.in
Only in kdepim/libksieve: .svn
Only in tmp/kdepim-3.4.2/libksieve: Makefile.in
Only in kdepim/libksieve/impl: .svn
Only in kdepim/libksieve/ksieve: .svn
Only in tmp/kdepim-3.4.2/libksieve/ksieve: Makefile.in
Only in kdepim/libksieve/parser: .svn
Only in tmp/kdepim-3.4.2/libksieve/parser: Makefile.in
Only in kdepim/libksieve/shared: .svn
Only in tmp/kdepim-3.4.2/libksieve/shared: Makefile.in
Only in kdepim/libksieve/tests: .svn
Only in tmp/kdepim-3.4.2/libksieve/tests: Makefile.in
Only in kdepim/mimelib: .svn
Only in tmp/kdepim-3.4.2/mimelib: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/mimelib/Tutorial kdepim/mimelib/Tutorial
--- tmp/kdepim-3.4.2/mimelib/Tutorial	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/Tutorial	2005-08-01 12:02:30.000000000 +0200
@@ -436,4 +436,4 @@ dwsauder@fwb.gulf.net, but dwsauder@tasc
 Good luck!
 
 $Revision: 242349 $
-$Date: 2003-08-12 22:25:49 +0200 (Di, 12 Aug 2003) $
+$Date: 2003-08-12 22:25:49 +0200 (Tue, 12 Aug 2003) $
diff -u -p -r tmp/kdepim-3.4.2/mimelib/address.cpp kdepim/mimelib/address.cpp
--- tmp/kdepim-3.4.2/mimelib/address.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/address.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/addrlist.cpp kdepim/mimelib/addrlist.cpp
--- tmp/kdepim-3.4.2/mimelib/addrlist.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/addrlist.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/attach.cpp kdepim/mimelib/attach.cpp
--- tmp/kdepim-3.4.2/mimelib/attach.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/attach.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/attach.h kdepim/mimelib/attach.h
--- tmp/kdepim-3.4.2/mimelib/attach.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/attach.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/basicmsg.cpp kdepim/mimelib/basicmsg.cpp
--- tmp/kdepim-3.4.2/mimelib/basicmsg.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/basicmsg.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/basicmsg.h kdepim/mimelib/basicmsg.h
--- tmp/kdepim-3.4.2/mimelib/basicmsg.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/basicmsg.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/body.cpp kdepim/mimelib/body.cpp
--- tmp/kdepim-3.4.2/mimelib/body.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/body.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 330087 $
-// $Date: 2004-07-16 22:54:49 +0200 (Fr, 16 Jul 2004) $
+// $Date: 2004-07-16 22:54:49 +0200 (Fri, 16 Jul 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/bodypart.cpp kdepim/mimelib/bodypart.cpp
--- tmp/kdepim-3.4.2/mimelib/bodypart.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/bodypart.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 330084 $
-// $Date: 2004-07-16 22:51:39 +0200 (Fr, 16 Jul 2004) $
+// $Date: 2004-07-16 22:51:39 +0200 (Fri, 16 Jul 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/boyermor.cpp kdepim/mimelib/boyermor.cpp
--- tmp/kdepim-3.4.2/mimelib/boyermor.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/boyermor.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 400853 $
-// $Date: 2005-03-26 22:18:21 +0100 (Sa, 26 Mär 2005) $
+// $Date: 2005-03-26 22:18:21 +0100 (Sat, 26 Mar 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/datetime.cpp kdepim/mimelib/datetime.cpp
--- tmp/kdepim-3.4.2/mimelib/datetime.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/datetime.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 375317 $
-// $Date: 2005-01-03 22:25:34 +0100 (Mo, 03 Jan 2005) $
+// $Date: 2005-01-03 22:25:34 +0100 (Mon, 03 Jan 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/disptype.cpp kdepim/mimelib/disptype.cpp
--- tmp/kdepim-3.4.2/mimelib/disptype.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/disptype.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
Only in kdepim/mimelib/doc: .svn
diff -u -p -r tmp/kdepim-3.4.2/mimelib/doc/mimepp.html kdepim/mimelib/doc/mimepp.html
--- tmp/kdepim-3.4.2/mimelib/doc/mimepp.html	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/mimelib/doc/mimepp.html	2005-08-01 12:02:28.000000000 +0200
@@ -1,5 +1,5 @@
 <!-- $Revision: 1483 $ -->
-<!-- $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $ -->
+<!-- $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $ -->
 <HTML>
 <HEAD>
 <TITLE>
diff -u -p -r tmp/kdepim-3.4.2/mimelib/doc/util.html kdepim/mimelib/doc/util.html
--- tmp/kdepim-3.4.2/mimelib/doc/util.html	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/mimelib/doc/util.html	2005-08-01 12:02:28.000000000 +0200
@@ -1,5 +1,5 @@
 <!-- $Revision: 1483 $ -->
-<!-- $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $ -->
+<!-- $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $ -->
 <HTML>
 <HEAD>
   <TITLE> MIME++ Utility Functions </TITLE>
diff -u -p -r tmp/kdepim-3.4.2/mimelib/dw_cte.cpp kdepim/mimelib/dw_cte.cpp
--- tmp/kdepim-3.4.2/mimelib/dw_cte.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/dw_cte.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 170237 $
-// $Date: 2002-08-03 16:14:40 +0200 (Sa, 03 Aug 2002) $
+// $Date: 2002-08-03 16:14:40 +0200 (Sat, 03 Aug 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/dw_date.cpp kdepim/mimelib/dw_date.cpp
--- tmp/kdepim-3.4.2/mimelib/dw_date.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/dw_date.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 375317 $
-// $Date: 2005-01-03 22:25:34 +0100 (Mo, 03 Jan 2005) $
+// $Date: 2005-01-03 22:25:34 +0100 (Mon, 03 Jan 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/dw_mime.cpp kdepim/mimelib/dw_mime.cpp
--- tmp/kdepim-3.4.2/mimelib/dw_mime.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/dw_mime.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 373570 $
-// $Date: 2004-12-27 19:35:21 +0100 (Mo, 27 Dez 2004) $
+// $Date: 2004-12-27 19:35:21 +0100 (Mon, 27 Dec 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/dwstring.cpp kdepim/mimelib/dwstring.cpp
--- tmp/kdepim-3.4.2/mimelib/dwstring.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/dwstring.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 386818 $
-// $Date: 2005-02-06 19:06:57 +0100 (So, 06 Feb 2005) $
+// $Date: 2005-02-06 19:06:57 +0100 (Sun, 06 Feb 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/entity.cpp kdepim/mimelib/entity.cpp
--- tmp/kdepim-3.4.2/mimelib/entity.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/entity.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 283039 $
-// $Date: 2004-01-27 19:57:38 +0100 (Di, 27 Jan 2004) $
+// $Date: 2004-01-27 19:57:38 +0100 (Tue, 27 Jan 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/field.cpp kdepim/mimelib/field.cpp
--- tmp/kdepim-3.4.2/mimelib/field.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/field.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/fieldbdy.cpp kdepim/mimelib/fieldbdy.cpp
--- tmp/kdepim-3.4.2/mimelib/fieldbdy.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/fieldbdy.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/group.cpp kdepim/mimelib/group.cpp
--- tmp/kdepim-3.4.2/mimelib/group.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/group.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mailbox.cpp kdepim/mimelib/mailbox.cpp
--- tmp/kdepim-3.4.2/mimelib/mailbox.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mailbox.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 220378 $
-// $Date: 2003-04-16 00:26:49 +0200 (Mi, 16 Apr 2003) $
+// $Date: 2003-04-16 00:26:49 +0200 (Wed, 16 Apr 2003) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mboxlist.cpp kdepim/mimelib/mboxlist.cpp
--- tmp/kdepim-3.4.2/mimelib/mboxlist.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mboxlist.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mechansm.cpp kdepim/mimelib/mechansm.cpp
--- tmp/kdepim-3.4.2/mimelib/mechansm.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mechansm.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mediatyp.cpp kdepim/mimelib/mediatyp.cpp
--- tmp/kdepim-3.4.2/mimelib/mediatyp.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mediatyp.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/message.cpp kdepim/mimelib/message.cpp
--- tmp/kdepim-3.4.2/mimelib/message.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/message.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
Only in kdepim/mimelib/mimelib: .svn
Only in tmp/kdepim-3.4.2/mimelib/mimelib: Makefile.in
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/address.h kdepim/mimelib/mimelib/address.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/address.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/address.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/addrlist.h kdepim/mimelib/mimelib/addrlist.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/addrlist.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/addrlist.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/binhex.h kdepim/mimelib/mimelib/binhex.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/binhex.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/binhex.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/body.h kdepim/mimelib/mimelib/body.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/body.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/body.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 330087 $
-// $Date: 2004-07-16 22:54:49 +0200 (Fr, 16 Jul 2004) $
+// $Date: 2004-07-16 22:54:49 +0200 (Fri, 16 Jul 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/bodypart.h kdepim/mimelib/mimelib/bodypart.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/bodypart.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/bodypart.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 288187 $
-// $Date: 2004-02-15 16:06:12 +0100 (So, 15 Feb 2004) $
+// $Date: 2004-02-15 16:06:12 +0100 (Sun, 15 Feb 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/boyermor.h kdepim/mimelib/mimelib/boyermor.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/boyermor.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/boyermor.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 227537 $
-// $Date: 2003-05-24 11:22:48 +0200 (Sa, 24 Mai 2003) $
+// $Date: 2003-05-24 11:22:48 +0200 (Sat, 24 May 2003) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/config.h kdepim/mimelib/mimelib/config.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/config.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/config.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 376991 $
-// $Date: 2005-01-09 22:10:17 +0100 (So, 09 Jan 2005) $
+// $Date: 2005-01-09 22:10:17 +0100 (Sun, 09 Jan 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/datetime.h kdepim/mimelib/mimelib/datetime.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/datetime.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/datetime.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/debug.h kdepim/mimelib/mimelib/debug.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/debug.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/debug.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/disptype.h kdepim/mimelib/mimelib/disptype.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/disptype.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/disptype.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/entity.h kdepim/mimelib/mimelib/entity.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/entity.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/entity.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 240048 $
-// $Date: 2003-07-30 18:58:22 +0200 (Mi, 30 Jul 2003) $
+// $Date: 2003-07-30 18:58:22 +0200 (Wed, 30 Jul 2003) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/enum.h kdepim/mimelib/mimelib/enum.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/enum.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/enum.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 373517 $
-// $Date: 2004-12-27 15:12:49 +0100 (Mo, 27 Dez 2004) $
+// $Date: 2004-12-27 15:12:49 +0100 (Mon, 27 Dec 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/field.h kdepim/mimelib/mimelib/field.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/field.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/field.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/fieldbdy.h kdepim/mimelib/mimelib/fieldbdy.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/fieldbdy.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/fieldbdy.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/group.h kdepim/mimelib/mimelib/group.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/group.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/group.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/mailbox.h kdepim/mimelib/mimelib/mailbox.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/mailbox.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/mailbox.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/mboxlist.h kdepim/mimelib/mimelib/mboxlist.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/mboxlist.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/mboxlist.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/mechansm.h kdepim/mimelib/mimelib/mechansm.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/mechansm.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/mechansm.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/mediatyp.h kdepim/mimelib/mimelib/mediatyp.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/mediatyp.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/mediatyp.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/message.h kdepim/mimelib/mimelib/message.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/message.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/message.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/mimepp.h kdepim/mimelib/mimelib/mimepp.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/mimepp.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/mimepp.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 366096 $
-// $Date: 2004-11-25 12:57:44 +0100 (Do, 25 Nov 2004) $
+// $Date: 2004-11-25 12:57:44 +0100 (Thu, 25 Nov 2004) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/msgcmp.h kdepim/mimelib/mimelib/msgcmp.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/msgcmp.h	2005-07-20 12:03:12.000000000 +0200
+++ kdepim/mimelib/mimelib/msgcmp.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 433721 $
-// $Date: 2005-07-11 16:47:25 +0200 (Mo, 11 Jul 2005) $
+// $Date: 2005-07-11 16:47:25 +0200 (Mon, 11 Jul 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/msgid.h kdepim/mimelib/mimelib/msgid.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/msgid.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/msgid.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/nntp.h kdepim/mimelib/mimelib/nntp.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/nntp.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/nntp.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 2043 $
-// $Date: 1997-10-15 20:17:45 +0200 (Mi, 15 Okt 1997) $
+// $Date: 1997-10-15 20:17:45 +0200 (Wed, 15 Oct 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/param.h kdepim/mimelib/mimelib/param.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/param.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/param.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151683 $
-// $Date: 2002-04-24 18:52:04 +0200 (Mi, 24 Apr 2002) $
+// $Date: 2002-04-24 18:52:04 +0200 (Wed, 24 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/pop.h kdepim/mimelib/mimelib/pop.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/pop.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/pop.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 11958 $
-// $Date: 1998-10-31 13:33:48 +0100 (Sa, 31 Okt 1998) $
+// $Date: 1998-10-31 13:33:48 +0100 (Sat, 31 Oct 1998) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/protocol.h kdepim/mimelib/mimelib/protocol.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/protocol.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/protocol.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/string.h kdepim/mimelib/mimelib/string.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/string.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/string.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 386781 $
-// $Date: 2005-02-06 17:34:47 +0100 (So, 06 Feb 2005) $
+// $Date: 2005-02-06 17:34:47 +0100 (Sun, 06 Feb 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/text.h kdepim/mimelib/mimelib/text.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/text.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/text.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/token.h kdepim/mimelib/mimelib/token.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/token.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/token.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/utility.h kdepim/mimelib/mimelib/utility.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/utility.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/utility.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/mimelib/uuencode.h kdepim/mimelib/mimelib/uuencode.h
--- tmp/kdepim-3.4.2/mimelib/mimelib/uuencode.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/mimelib/uuencode.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/msgcmp.cpp kdepim/mimelib/msgcmp.cpp
--- tmp/kdepim-3.4.2/mimelib/msgcmp.cpp	2005-07-20 12:03:12.000000000 +0200
+++ kdepim/mimelib/msgcmp.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 435845 $
-// $Date: 2005-07-18 13:52:16 +0200 (Mo, 18 Jul 2005) $
+// $Date: 2005-07-18 13:52:16 +0200 (Mon, 18 Jul 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/msgid.cpp kdepim/mimelib/msgid.cpp
--- tmp/kdepim-3.4.2/mimelib/msgid.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/msgid.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/multipar.cpp kdepim/mimelib/multipar.cpp
--- tmp/kdepim-3.4.2/mimelib/multipar.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/multipar.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 379067 $
-// $Date: 2005-01-16 14:15:08 +0100 (So, 16 Jan 2005) $
+// $Date: 2005-01-16 14:15:08 +0100 (Sun, 16 Jan 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/multipar.h kdepim/mimelib/multipar.h
--- tmp/kdepim-3.4.2/mimelib/multipar.h	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/multipar.h	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 1483 $
-// $Date: 1997-09-27 13:55:46 +0200 (Sa, 27 Sep 1997) $
+// $Date: 1997-09-27 13:55:46 +0200 (Sat, 27 Sep 1997) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/nntp.cpp kdepim/mimelib/nntp.cpp
--- tmp/kdepim-3.4.2/mimelib/nntp.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/nntp.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 375351 $
-// $Date: 2005-01-04 00:27:53 +0100 (Di, 04 Jan 2005) $
+// $Date: 2005-01-04 00:27:53 +0100 (Tue, 04 Jan 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/param.cpp kdepim/mimelib/param.cpp
--- tmp/kdepim-3.4.2/mimelib/param.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/param.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/pop.cpp kdepim/mimelib/pop.cpp
--- tmp/kdepim-3.4.2/mimelib/pop.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/pop.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 375351 $
-// $Date: 2005-01-04 00:27:53 +0100 (Di, 04 Jan 2005) $
+// $Date: 2005-01-04 00:27:53 +0100 (Tue, 04 Jan 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/protocol.cpp kdepim/mimelib/protocol.cpp
--- tmp/kdepim-3.4.2/mimelib/protocol.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/protocol.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 151125 $
-// $Date: 2002-04-22 11:45:44 +0200 (Mo, 22 Apr 2002) $
+// $Date: 2002-04-22 11:45:44 +0200 (Mon, 22 Apr 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
Only in kdepim/mimelib/test: .svn
diff -u -p -r tmp/kdepim-3.4.2/mimelib/test/exampl01.cpp kdepim/mimelib/test/exampl01.cpp
--- tmp/kdepim-3.4.2/mimelib/test/exampl01.cpp	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/mimelib/test/exampl01.cpp	2005-08-01 12:02:28.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 128593 $
-// $Date: 2001-12-25 15:40:49 +0100 (Di, 25 Dez 2001) $
+// $Date: 2001-12-25 15:40:49 +0100 (Tue, 25 Dec 2001) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/test/exampl02.cpp kdepim/mimelib/test/exampl02.cpp
--- tmp/kdepim-3.4.2/mimelib/test/exampl02.cpp	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/mimelib/test/exampl02.cpp	2005-08-01 12:02:28.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 128593 $
-// $Date: 2001-12-25 15:40:49 +0100 (Di, 25 Dez 2001) $
+// $Date: 2001-12-25 15:40:49 +0100 (Tue, 25 Dec 2001) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/test/exampl03.cpp kdepim/mimelib/test/exampl03.cpp
--- tmp/kdepim-3.4.2/mimelib/test/exampl03.cpp	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/mimelib/test/exampl03.cpp	2005-08-01 12:02:28.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 128593 $
-// $Date: 2001-12-25 15:40:49 +0100 (Di, 25 Dez 2001) $
+// $Date: 2001-12-25 15:40:49 +0100 (Tue, 25 Dec 2001) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/test/exampl04.cpp kdepim/mimelib/test/exampl04.cpp
--- tmp/kdepim-3.4.2/mimelib/test/exampl04.cpp	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/mimelib/test/exampl04.cpp	2005-08-01 12:02:28.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 128593 $
-// $Date: 2001-12-25 15:40:49 +0100 (Di, 25 Dez 2001) $
+// $Date: 2001-12-25 15:40:49 +0100 (Tue, 25 Dec 2001) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/test/exampl05.cpp kdepim/mimelib/test/exampl05.cpp
--- tmp/kdepim-3.4.2/mimelib/test/exampl05.cpp	2005-05-23 14:13:00.000000000 +0200
+++ kdepim/mimelib/test/exampl05.cpp	2005-08-01 12:02:28.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 128593 $
-// $Date: 2001-12-25 15:40:49 +0100 (Di, 25 Dez 2001) $
+// $Date: 2001-12-25 15:40:49 +0100 (Tue, 25 Dec 2001) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/text.cpp kdepim/mimelib/text.cpp
--- tmp/kdepim-3.4.2/mimelib/text.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/text.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 196486 $
-// $Date: 2002-12-30 17:54:38 +0100 (Mo, 30 Dez 2002) $
+// $Date: 2002-12-30 17:54:38 +0100 (Mon, 30 Dec 2002) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/token.cpp kdepim/mimelib/token.cpp
--- tmp/kdepim-3.4.2/mimelib/token.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/token.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 388048 $
-// $Date: 2005-02-10 15:31:01 +0100 (Do, 10 Feb 2005) $
+// $Date: 2005-02-10 15:31:01 +0100 (Thu, 10 Feb 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
diff -u -p -r tmp/kdepim-3.4.2/mimelib/uuencode.cpp kdepim/mimelib/uuencode.cpp
--- tmp/kdepim-3.4.2/mimelib/uuencode.cpp	2005-05-23 14:13:01.000000000 +0200
+++ kdepim/mimelib/uuencode.cpp	2005-08-01 12:02:30.000000000 +0200
@@ -4,7 +4,7 @@
 // Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
 // WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
 // $Revision: 375351 $
-// $Date: 2005-01-04 00:27:53 +0100 (Di, 04 Jan 2005) $
+// $Date: 2005-01-04 00:27:53 +0100 (Tue, 04 Jan 2005) $
 //
 // Copyright (c) 1996, 1997 Douglas W. Sauder
 // All rights reserved.
Only in kdepim/networkstatus: .svn
Only in tmp/kdepim-3.4.2/networkstatus: Makefile.in
Only in kdepim/plugins: .svn
Only in tmp/kdepim-3.4.2/plugins: Makefile.in
Only in kdepim/plugins/kmail: .svn
Only in tmp/kdepim-3.4.2/plugins/kmail: Makefile.in
Only in kdepim/plugins/kmail/bodypartformatter: .svn
Only in tmp/kdepim-3.4.2/plugins/kmail/bodypartformatter: Makefile.in
Only in tmp/kdepim-3.4.2/: stamp-h.in
Only in tmp/kdepim-3.4.2/: subdirs
Only in kdepim/: svn-commit.2.tmp
Only in kdepim/: svn-commit.tmp
Only in kdepim/wizards: .svn
Only in tmp/kdepim-3.4.2/wizards: Makefile.in