⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Timeline



Jan 22, 2002:

2:03 PM Changeset in webkit [554] by rjw
  • 5 edits in trunk/WebCore

Implemented KWQDesktopWidget to represent main screen. Used by javascript.

Jan 21, 2002:

11:51 PM Changeset in webkit [553] by mjs
  • 30 edits
    11 adds in trunk/WebCore

Top level:

Turn off some borrowed classes, improve test coverage, and improve
build stability.

  • borrowed-classes.txt: Turn off borrowed QArray, QBuffer, QStringList and QStack.

# Add many new test cases for these classes, passed by both the old
and the new versions:

  • Tests/qt/qarray-test.chk:
  • Tests/qt/qarray-test.cpp: (main):
  • Tests/qt/qbuffer-test.chk:
  • Tests/qt/qbuffer-test.cpp: (main):
  • Tests/qt/qstack-test.chk:
  • Tests/qt/qstack-test.cpp: (main):
  • Tests/qt/qstringlist-test.chk:
  • Tests/qt/qstringlist-test.cpp: (main):
  • Tests/test.list:
  • Tests/qt/Makefile.am:

# Change how we define the USING defines a bit to make it more
generic. Also, be more paranoid abot the dreaded '$ln' problem.

  • acconfig.h:
  • autogen.sh:
  • configure.in:

WebCore:

Reimplemented QArray, QBuffer, QStack and QStringList; also fixed
some files for borrowed switchability, and fixed some bugs found
by my new test cases.

# Reimplement QArray:

  • src/kwq/qt/qarray.h:
  • src/kwq/KWQArrayImpl.h:
  • src/kwq/KWQArrayImpl.mm: (KWQArrayImpl::KWQArrayPrivate::KWQArrayPrivate), (KWQArrayImpl::KWQArrayPrivate::~KWQArrayPrivate), (KWQArrayImpl::KWQArrayImpl), (KWQArrayImpl::~KWQArrayImpl), (KWQArrayImpl::operator=), (KWQArrayImpl::at), (KWQArrayImpl::data), (KWQArrayImpl::size), (KWQArrayImpl::resize), (KWQArrayImpl::duplicate), (KWQArrayImpl::fill), (KWQArrayImpl::operator==):

# Reimplement QBuffer:

  • src/kwq/qt/qbuffer.h:
  • src/kwq/KWQBuffer.mm: (QBuffer::QBuffer), (QBuffer::~QBuffer), (QBuffer::buffer), (QBuffer::size), (QBuffer::isOpen), (QBuffer::open), (QBuffer::close), (QBuffer::writeBlock):
  • src/kwq/qt/qiodevice.h:

# Reimplement QStringList:

  • src/kwq/KWQStringList.mm: (QStringToCFString), (QStringList::split), (QStringList::QStringList), (QStringList::~QStringList), (QStringList::join), (QStringList::operator=):

# Reimplement QStack:

  • src/kwq/qt/qstack.h:
  • src/kwq/Makefile.am: Add new files to build.
  • src/kwq/KWQString.mm: (QString::find): Fix bug which returned the very first occurence in the string even when the optional starting point was passed in. Some of my new regression tests picked this up.

# Temporarily work around uses of non-kwq APIs:

  • src/kwq/WKPluginWidget.h:
  • src/kwq/qt/_qfile.cpp
  • src/kwq/qt/_qbuffer.cpp

# Guard contents of all these with the appropriate USING ifdef:

  • src/kwq/KWQStrList.h:
  • src/kwq/qt/_qarray.h:
  • src/kwq/qt/_qgarray.h:
  • src/kwq/qt/_qstrlist.h:

WebFoundation:

  • .cvsignore: Ignore generated files.
2:42 PM Changeset in webkit [552] by cblu
  • 2 edits in trunk/WebCore

Fixing dependency issue with stdarg

9:33 AM Changeset in webkit [551] by sullivan
  • 9 edits in trunk/WebKit
  • WebView.subproj/WKWebController.h:
  • WebView.subproj/WKWebView.h: Changed WKConcreteWebController to WKDefaultWebController in a couple of comments.

Jan 19, 2002:

12:58 AM Changeset in webkit [550] by mjs
  • 24 edits in trunk
  • src/kdelibs/kjs/Makefile.am: Fix testkjs build.

Fix a couple more static initialization problems:

  • src/kwq/KWQKHTMLPart.mm: (KHTMLPart::urlCursor):
  • src/kwq/KWQRegion.mm: (QRegion::QRegion), (QRegion::operator=):
  • src/.cvsignore, src/kdelibs/.cvsignore, src/kdelibs/khtml/css/.cvsignore, src/kdelibs/khtml/misc/.cvsignore, src/kdelibs/kjs/.cvsignore: Ignore stamp files.

Jan 18, 2002:

6:27 PM Changeset in webkit [549] by rjw
  • 38 edits
    24 adds
    5 deletes in trunk

First pass at new view/datasource/controller API.

3:39 PM Changeset in webkit [548] by mjs
  • 45 edits in trunk/WebCore

Top level:

  • coding_guidelines.txt: Updated to describe format for private fields.

WebCore:

Avoid static initialization of objects as much as possible. Order
of static initializers is unpredictable and we had some
cross-dependencies, so avoid this practice as much as possible to
fix various startup crashes.

  • src/kwq/KWQApplication.mm: (QApplication::palette), (QApplication::globalStrut):
  • src/kwq/KWQChar.mm:
  • src/kwq/KWQColor.mm:
  • src/kwq/KWQCursor.mm: (QCursor::QCursor), (QCursor::~QCursor):
  • src/kwq/KWQEvent.mm:
  • src/kwq/KWQKConfigBase.mm: (KConfigBase::readEntry), (KConfigBase::readColorEntry), (KConfigBase::readListEntry):
  • src/kwq/KWQKHTMLSettings.mm: (KHTMLSettings::encoding):
  • src/kwq/KWQKJavaEmbed.mm: (KJavaEmbed::sizeHint), (KJavaEmbed::minimumSizeHint):
  • src/kwq/KWQKLocale.mm: (KLocale::language):
  • src/kwq/KWQKMimeType.mm: (KMimeType::findByURL), (KMimeType::name):
  • src/kwq/KWQKPrinter.mm: (KPrinter::margins):
  • src/kwq/KWQKProtocolManager.mm: (KProtocolManager::httpProxy):
  • src/kwq/KWQKWinModule.mm: (KWinModule::workArea):
  • src/kwq/KWQKjobclasses.mm:
  • src/kwq/KWQKnetaccess.mm:
  • src/kwq/KWQPart.mm: (KParts::Part::widget), (KParts::ReadOnlyPart::url):
  • src/kwq/KWQPixmap.mm: (QPixmap::mask):
  • src/kwq/KWQToolTip.mm: (QToolTip::palette):
  • src/kwq/kde/_kurl.cpp:
  • src/kwq/kdecore/kurl.h:
10:38 AM Changeset in webkit [547] by cblu
  • 5 edits
    4 adds
    4 deletes in trunk/WebCore

Renamed KWQPlugin to WKPluginWidget

Note: See TracTimeline for information about the timeline view.