[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    kdenox/konq-embed [POSSIBLY UNSAFE]
From:       Eva Brucherseifer <eva () kde ! org>
Date:       2006-01-23 14:48:11
Message-ID: 1138027691.208367.24612.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 501620 by eva:

first version of Qt2 port of current Konq/E

current status:
- it compiles, links and runs with 
  Qt 2.3.10, with thread support and rtti enabled
- webpages are not displayed correctly
  Bugs are supspected in Parser, CSS and/or JS code

about the structure:
- dropin/qt2compat contains compat code and some 
  classes backported from Qt3 (like QXml, QRegExp).
  Those closes are linked into the dropin for Qt2
- prepare_kde_src prepares all sources for Qt2
  if QTDIR is set properly 




 M  +3 -1      dropin/Makefile.am  
 A             dropin/Makefile.am.qt2  
 A             dropin/Makefile.am.qt3  
 M  +3 -3      dropin/kapplication.h  
 M  +672 -2    dropin/kcharsets.cpp  
 M  +6 -0      dropin/kcursor.h  
 M  +17 -1     dropin/kdebug.h  
 M  +4 -0      dropin/kio/global.cpp  
 M  +13 -1     dropin/kio/netaccess.cpp  
 M  +2 -2      dropin/kparts/browserinterface.cpp  
 M  +4 -0      dropin/kparts/part.cpp  
 M  +11 -0     dropin/ktextedit.h  
 A             dropin/qt2compat (directory)  
 A             dropin/qt2compat/objectdeleter.cpp   [License: UNKNOWN]
 A             dropin/qt2compat/objectdeleter.h   [License: UNKNOWN]
 A             dropin/qt2compat/qcleanuphandler.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qmemarray.h   [License: no copyright]
 A             dropin/qt2compat/qmutex.h   [License: no copyright]
 A             dropin/qt2compat/qobjectlist.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qpair.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qptrcollection.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qptrlist.h   [License: no copyright]
 A             dropin/qt2compat/qptrqueue.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qptrstack.h   [License: no copyright]
 A             dropin/qt2compat/qptrvector.h   [License: no copyright]
 A             dropin/qt2compat/qsemaphore.h   [License: no copyright]
 A             dropin/qt2compat/qshareddoublebuffer.cpp   [License: QPL QPL (part of Qt)]
 AM            dropin/qt2compat/qshareddoublebuffer.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qt3compat.h   [License: no copyright]
 A             dropin/qt2compat/qt3compat_xml.h   [License: no copyright]
 A             dropin/qt2compat/qt3mouseevent.cpp   [License: no copyright]
 A             dropin/qt2compat/qt3mouseevent.h   [License: no copyright]
 A             dropin/qt2compat/qt3regexp.cpp   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qt3regexp.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qt3xml.cpp   [POSSIBLY UNSAFE: system] [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qt3xml.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qtextedit.h   [License: no copyright]
 A             dropin/qt2compat/qtl.h   [License: QPL QPL (part of Qt)]
 AM            dropin/qt2compat/qucom_p.h   [License: QPL QPL (part of Qt)]
 AM            dropin/qt2compat/qucomextra_p.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qunicodetables.cpp   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qunicodetables_p.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qvaluevector.h   [License: QPL QPL (part of Qt)]
 A             dropin/qt2compat/qwaitcondition.h   [License: no copyright]
 A             kdesrc/kdecore/patches (directory)  
 A             kdesrc/kdecore/patches/kdecore_qt2.3.patch  
 A             kdesrc/kdecore/patches/malloc_qt2.3.patch  
 A             kdesrc/kdecore/patches/network_qt2.3.patch  
 A             kdesrc/khtml/patches/css_qt2.3.patch  
 A             kdesrc/khtml/patches/dom_qt2.3.patch  
 A             kdesrc/khtml/patches/ecma_qt2.3.patch  
 A             kdesrc/khtml/patches/html_qt2.3.patch  
 A             kdesrc/khtml/patches/khtml_qt2.3.patch  
 A             kdesrc/khtml/patches/misc_qt2.3.patch  
 A             kdesrc/khtml/patches/rendering_qt2.3.patch  
 A             kdesrc/khtml/patches/xml_qt2.3.patch  
 A             kdesrc/kio/patches (directory)  
 A             kdesrc/kio/patches/kcookiejar_qt2.3.patch  
 A             kdesrc/kio/patches/kfile_qt2.3.patch  
 A             kdesrc/kio/patches/kio_http_qt2.3.patch  
 A             kdesrc/kio/patches/kio_qt2.3.patch  
 A             kdesrc/kjs/patches (directory)  
 A             kdesrc/kjs/patches/kjs_qt2.3.patch  
 A             kdesrc/kparts/patches/kparts_qt2.3.patch  
 A             kdesrc/kssl/patches (directory)  
 A             kdesrc/kssl/patches/kssl_qt2.3.patch  
 A             kdesrc/kutils (directory)  
 A             kdesrc/kutils/patches (directory)  
 A             kdesrc/kutils/patches/kutils_qt2.3.patch  
 M  +52 -0     prepare_kde_src  
 M  +10 -0     src/main.cc  
 M  +16 -17    src/mainwindow_x11.cc  
 M  +11 -4     src/mainwindowbase.cc  
 M  +23 -0     src/xmltree.cc  


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic