John Firebaugh
148b154855
Make it compile.
...
+#include <qregexp.h>
svn path=/trunk/kdenetwork/kmail/; revision=110509
25 years ago
Michael Haeckel
aefede6ff3
Recognize also quoted printable and base64 encoded vCards.
...
Fix a remaining charset bug. Non latin-1 vCards should also work now.
svn path=/trunk/kdenetwork/kmail/; revision=107520
25 years ago
Marc Mutz
45ec2c3f84
Revert/fix my last commit, which broke vCards.
...
Now they work again.
svn path=/trunk/kdenetwork/kmail/; revision=103914
25 years ago
Marc Mutz
40a26506b2
Make vcard.cpp and main.cpp compile with QT_NO_ASCII_CAST.
...
Add #ifdef's around include files that are not neccessarily there.
Remove unused includes from vcard.cpp.
svn path=/trunk/kdenetwork/kmail/; revision=101066
25 years ago
Don Sanders
1491a4339d
Make it compile on aix, and remove a debug statement.
...
===================================================================
RCS file: /home/kde/kdenetwork/kmail/kmaddrbook.cpp,v
retrieving revision 1.30
diff -u -b -r1.30 kmaddrbook.cpp
--- kmaddrbook.cpp 2001/01/22 21:15:12 1.30
+++ kmaddrbook.cpp 2001/02/18 21:00:27
@@ -2,6 +2,7 @@
// Author: Stefan Taferner <taferner@kde.org>
// This code is under GPL
+#include <config.h>
#include "kmaddrbook.h"
#include <kapp.h>
#include <kconfig.h>
@@ -112,7 +113,6 @@
while ( !t.eof() )
{
line = t.readLine();
- kdDebug() << QString("load ") + line << endl;
if (line[0]!='#' && !line.isNull()) inSort((const char *)line.local8Bit());
}
rc = file.status();
Index: kmfilter.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/kmfilter.cpp,v
retrieving revision 1.29
diff -u -b -r1.29 kmfilter.cpp
--- kmfilter.cpp 2001/02/15 00:28:45 1.29
+++ kmfilter.cpp 2001/02/18 21:00:27
@@ -1,6 +1,7 @@
// kmfilter.cpp
// Author: Stefan Taferner <taferner@kde.org>
+#include <config.h>
#include "kmfilter.h"
#include "kmglobal.h"
#include "kmmessage.h"
Index: main.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/main.cpp,v
retrieving revision 1.113
diff -u -b -r1.113 main.cpp
--- main.cpp 2001/01/19 09:52:28 1.113
+++ main.cpp 2001/02/18 21:00:27
@@ -1,6 +1,7 @@
// KMail startup and initialize code
// Author: Stefan Taferner <taferner@alpin.or.at>
+#include <config.h>
#include <signal.h>
#include <unistd.h>
#include <stdio.h>
Index: vcard.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/vcard.cpp,v
retrieving revision 1.9
diff -u -b -r1.9 vcard.cpp
--- vcard.cpp 2000/09/06 05:46:27 1.9
+++ vcard.cpp 2001/02/18 21:00:28
@@ -26,6 +26,7 @@
// FIXME: do proper CRLF/CR handling
// FIXME: handle TYPE=x,y,z qualifiers
+#include <config.h>
#include "vcard.h"
#include <stdlib.h>
#include <ctype.h>
svn path=/trunk/kdenetwork/kmail/; revision=83507
25 years ago
George Staikos
4a3ab83a54
more licence fixups
...
svn path=/trunk/kdenetwork/kmail/; revision=62853
26 years ago
George Staikos
91c7cf8250
More vCard fixes - quoted printable handled better, and base64 now works.
...
svn path=/trunk/kdenetwork/kmail/; revision=62470
26 years ago
George Staikos
3515571ba0
Now we can have multiple qualifiers in a vcard line. However I am confused
...
as to how to deal with multiple qualifiers. It seems that there are
possible ambiguities due to the different implementations out there. Some
testing and review is definitely required.
svn path=/trunk/kdenetwork/kmail/; revision=61804
26 years ago
George Staikos
3f944a5860
Fixed buglets in the vcard code - more work to follow.
...
This makes Bernhard Vornefeld's card display, but it doesn't make
it fully work. It seems that whatever he used to make the vCard
has created more fields, and also stacks fields together which is
apparently legal but not taken into consideration yet.
svn path=/trunk/kdenetwork/kmail/; revision=61798
26 years ago
George Staikos
c72dfd521f
Basic vCards are now displayed. Still needs more fields to be implemented
...
along with many other things like buttons to save...
svn path=/trunk/kdenetwork/kmail/; revision=52928
26 years ago
George Staikos
8832955a0d
more vCard display code - now displays some preliminary info.
...
svn path=/trunk/kdenetwork/kmail/; revision=52800
26 years ago
George Staikos
0e3c2f3e7a
Beginning of the vCard displaying code.
...
Also fixups to the vCard class. it probably still needs more. Now it
tokenizes using a QRegExp, and it strips whitespace from the end of the
lines (which Netscape seems to add?)
svn path=/trunk/kdenetwork/kmail/; revision=52798
26 years ago
George Staikos
953ab197b3
Added into the build, and removed all the STL stuff.
...
svn path=/trunk/kdenetwork/kmail/; revision=52401
26 years ago
George Staikos
e579c24e84
Here is the vCard class. It currently uses the STL and thus needs to be
...
fixed. We could use a QValueList I believe (according to Waldo).
svn path=/trunk/kdenetwork/kmail/; revision=52399
26 years ago