Timeline



Mar 20, 2002:

5:11 PM Changeset in webkit [792] by sullivan
  • 6 edits in trunk/WebKit

Added displayTitle field to IFURIEntry. This is intended to hold the string
used in menu items, window titles, etc. Alexander uses this to cache the
center-truncated title for pages with very long titles.

  • History.subproj/IFURIEntry.h:
  • History.subproj/IFURIEntry.m: (-[IFURIEntry setDisplayTitle:]), (-[IFURIEntry dictionaryRepresentation]), (-[IFURIEntry initFromDictionaryRepresentation:]):

Made Go, Window, and Debug menus use center-truncated strings for long URLs.

  • StringTruncator.h,
  • StringTruncator.m: New class, donated by Albert Dul, that truncates a string to a given width, inserting an ellipses in the center.
  • Defaults.plist,
  • PreferenceKeys.h: New (non-UI) user default for maximum menu item width.
  • AppController.h:
  • AppController.m: (-[AppController setUpStringTruncator]): set the StringTruncator to use the menu font at the menu font size. (-[AppController awakeFromNib]): call setUpStringTruncator. (_URLMenuTitleMaxWidth): read the max width from prefs and cache it in a variable. (-[AppController menuTitleForURL:withTitle:]): New method, uses center-truncated string technology. (-[AppController _menuTitleForURIEntry:]): Calls menuTitleForURL:withTitle, storing result using -[IFURIEntry setDisplayTitle] so we never have to measure this entry again. (-[AppController insertHistoryEntry:intoMenu:atIndex:]): Use _menuTitleForURIEntry. (-[AppController _removeHistoryFromMenu]): added leading underscore to name (I gotta do this more systematically). (-[AppController _addHistoryToMenu]): broke out into separate method for convenience. (-[AppController updateHistoryInMenu]): report timing with WebKitDebug
  • BrowserDocument.m: (-[BrowserDocument displayName]): Use center-truncated string technology.
  • Debug/DebugUtilities.m: (+[DebugUtilities addBookmarkToMenu:forURL:keyEquivalent:]), (+[DebugUtilities loadDebugBookmarks:]): Use center-truncated string technology for debug bookmarks (not cached).
  • WebBrowser.pbproj/project.pbxproj: Updated for new files.
4:47 PM Changeset in webkit [791] by mjs
  • 5 edits in branches/LABYRINTH_KDE_3_MERGE/WebCore
  • src/kdelibs/khtml/rendering/render_applet.cpp: (RenderApplet::RenderApplet): Handle Java parameters properly, with Chris's assistance.
5:02 AM Changeset in webkit [790]
  • 431 copies
    98 deletes in tags/MERGED_FROM_TRUNK

This commit was manufactured by cvs2svn to create tag
'MERGED_FROM_TRUNK'.

5:02 AM Changeset in webkit [789] by mjs
  • 129 edits
    2 adds in branches/LABYRINTH_KDE_3_MERGE

Merged accumlated changes from HEAD, up to
MERGED_TO_KDE_3_MERGE_BRANCH tag.

Mar 19, 2002:

8:01 PM Changeset in webkit [788]
  • 166 copies
    228 deletes in tags/MERGED_TO_LABYRINTH_KDE_3_MERGE_BRANCH

This commit was manufactured by cvs2svn to create tag
'MERGED_TO_LABYRINTH_KDE_3_MERGE_BRANCH'.

8:01 PM Changeset in webkit [787] by rjw
  • 15 edits in trunk/WebCore

Fixed NSPopupButton performance bottleneck.

7:47 PM Changeset in webkit [786] by mjs
  • 7 edits in branches/LABYRINTH_KDE_3_MERGE/WebCore

Fixed two more crashers. Tree now looks pretty stable.

  • src/kdelibs/khtml/html/html_objectimpl.cpp: (HTMLObjectElementImpl::detach): Don't send an unload event, that needs the view to be a live, which it won't be when the DOM is being destroyed.
  • src/kwq/KWQListImpl.mm: (KWQListImpl::getFirst): Return d->head->data, not d->head. Whoops!
6:15 PM Changeset in webkit [785] by rjw
  • 4 edits in trunk/WebKit

Fixed IFWebView leak.

6:04 PM Changeset in webkit [784] by mjs
  • 7 edits in branches/LABYRINTH_KDE_3_MERGE/WebCore

Fixed two crashers:

  • src/kdelibs/khtml/rendering/render_object.h: Don't attempt to schedule a relayout ever. We control layout timing. This was resulting in calls on destroyed/trashed objects before.
  • src/kdelibs/khtml/xml/dom_nodeimpl.cpp: (NodeImpl::dispatchEvent): Check if view()->part() is NULL (looks like a bug in the KDE code that this wasn't checked).
2:57 PM Changeset in webkit [783] by rjw
  • 7 edits in trunk/WebCore

iChanged float width cache to use shorts.

2:06 PM Changeset in webkit [782] by mjs
  • 128 edits in branches/LABYRINTH_KDE_3_MERGE

WebCore:

Changes needed to get WebCore to link: implement all the missing functions.

  • src/kdelibs/khtml/html/htmltokenizer.cpp: (HTMLTokenizer::end):
  • src/kdelibs/khtml/xml/xml_tokenizer.cpp: (XMLTokenizer::end):
  • src/kdelibs/khtml/xml/xml_tokenizer.h:
  • src/kwq/KWQApplication.mm: (QApplication::_initialize), (QApplication::focusWidget):
  • src/kwq/KWQColorGroup.mm: (QColorGroup::operator==):
  • src/kwq/KWQComboBox.mm: (QComboBox::currentItem):
  • src/kwq/KWQCursor.mm: (QCursor::operator=), (QCursor::handle):
  • src/kwq/KWQEvent.mm: (QMouseEvent::QMouseEvent), (QKeyEvent::isAutoRepeat), (QKeyEvent::text), (QKeyEvent::ascii), (QKeyEvent::count), (QKeyEvent::isAccepted), (QCustomEvent::QCustomEvent), (QContextMenuEvent::QContextMenuEvent), (QContextMenuEvent::globalPos), (QContextMenuEvent::reason), (QContextMenuEvent::state), (QContextMenuEvent::x), (QContextMenuEvent::y):
  • src/kwq/KWQFontMetrics.mm: (QFontMetrics::boundingRect):
  • src/kwq/KWQKCursor.mm: (KCursor::whatsThisCursor):
  • src/kwq/KWQKDebug.mm: (kdBacktrace):
  • src/kwq/KWQKHTMLPart.mm: (KHTMLPart::metaRefreshEnabled), (KHTMLPart::executeScript), (KHTMLPart::requestObject), (KHTMLPart::setJSDefaultStatusBarText), (KHTMLPart::referrer), (KHTMLPart::lastModified):
  • src/kwq/KWQKMimeType.mm: (KMimeType::comment), (KMimeType::mimeType), (KMimeType::defaultMimeType):
  • src/kwq/KWQKPrinter.mm: (KPrinter::KPrinter):
  • src/kwq/KWQKProtocolManager.mm: (KProtocolManager::proxyFor):
  • src/kwq/KWQKstddirs.mm: (KStandardDirs::saveLocation):
  • src/kwq/KWQLineEdit.mm: (QLineEdit::edited), (QLineEdit::setEdited):
  • src/kwq/KWQListImpl.h:
  • src/kwq/KWQListImpl.mm: (KWQListImpl::getFirst), (KWQListImpl::take):
  • src/kwq/KWQMapImpl.h:
  • src/kwq/KWQMapImpl.mm: (KWQMapImpl::removeEqualInternal):
  • src/kwq/KWQNSTextField.h:
  • src/kwq/KWQNSTextField.mm: (-[KWQNSTextField edited]), (-[KWQNSTextField setEdited:]), (-[KWQNSTextField textDidChange:]):
  • src/kwq/KWQObject.mm: (QObject::eventFilter):
  • src/kwq/KWQPainter.mm: (QPainter::drawConvexPolygon), (QPainter::drawText):
  • src/kwq/KWQPalette.mm: (QPalette::operator==):
  • src/kwq/KWQRadioButton.mm: (QRadioButton::isChecked):
  • src/kwq/KWQRect.mm: (QRect::isEmpty), (QRect::intersect), (QRect::unite):
  • src/kwq/KWQRegion.mm: (QRegion::translate), (QRegion::boundingRect):
  • src/kwq/KWQScrollView.mm: (QScrollView::updateContents):
  • src/kwq/KWQString.mm: (QString::endsWith):
  • src/kwq/KWQStyle.h:
  • src/kwq/KWQTextArea.h:
  • src/kwq/KWQTextArea.mm: (-[KWQTextArea paragraphs]), (RangeOfParagraph), (-[KWQTextArea paragraphLength:]), (-[KWQTextArea textForParagraph:]), (-[KWQTextArea lineOfCharAtIndex:inParagraph:]), (-[KWQTextArea getCursorPositionAsIndex:inParagraph:]), (-[KWQTextArea setCursorPositionToIndex:inParagraph:]):
  • src/kwq/KWQTextEdit.mm: (QMultiLineEdit::QMultiLineEdit), (KEdit::KEdit), (KEdit::~KEdit), (QTextEdit::QTextEdit), (QTextEdit::setText), (QTextEdit::text), (QTextEdit::paragraphs), (QTextEdit::paragraphLength), (QTextEdit::lineOfChar), (QTextEdit::getCursorPosition), (QTextEdit::setCursorPosition), (QTextEdit::wordWrap), (QTextEdit::setWordWrap), (QTextEdit::setTextFormat), (QTextEdit::isReadOnly), (QTextEdit::setReadOnly), (QTextEdit::selectAll):
  • src/kwq/KWQVectorImpl.mm: (KWQVectorImpl::at), (KWQVectorImpl::data):
  • src/kwq/KWQWidget.mm: (QWidget::frameGeometry), (QWidget::cursor), (QWidget::unsetCursor):
  • src/kwq/KWQbrowserextension.mm:
  • src/kwq/KWQtextstream.mm: (QTextStream::QTextStream), (QTextStream::operator<<), (endl):
  • src/kwq/KWQxml.mm: (QXmlAttributes::uri), (QXmlParseException::lineNumber):
  • src/kwq/Makefile.am:
  • src/kwq/kdecore/kstandarddirs.h:
  • src/kwq/kdecore/kstaticdeleter.h:
  • src/kwq/kdeui/keditcl.h:
  • src/kwq/kio/kmimetype.h:
  • src/kwq/qt/qarray.h:
  • src/kwq/qt/qevent.h:
  • src/kwq/qt/qlist.h:
  • src/kwq/qt/qmap.h:
  • src/kwq/qt/qpalette.h:
  • src/kwq/qt/qptrqueue.h:
  • src/kwq/qt/qscrollview.h:
  • src/kwq/qt/qstring.h:
  • src/kwq/qt/qtextedit.h:

WebKit:

  • WebView.subproj/IFWebView.mm: (-[IFWebView layout]): layout() no longer takes an argument.
10:23 AM Changeset in webkit [781]
  • 166 copies
    228 deletes in tags/ALEXANDER_0_2_PRE_5

This commit was manufactured by cvs2svn to create tag
'ALEXANDER_0_2_PRE_5'.

10:23 AM Changeset in webkit [780] by rjw
  • 9 edits in trunk/WebCore

Improved cache-miss case for non-latin1 characters.

Mar 18, 2002:

4:10 PM Changeset in webkit [779]
  • 166 copies
    228 deletes in tags/WEBFOUNDATION_0_2_0

This commit was manufactured by cvs2svn to create tag
'WEBFOUNDATION_0_2_0'.

4:10 PM Changeset in webkit [778] by darin
  • 5 edits in trunk/WebCore
  • src/kwq/KWQListImpl.mm: (KWQListImpl::sort): Use insertion sort for small lists. Also special case for lists of size 2 and under.
3:26 PM Changeset in webkit [777] by rjw
  • 12 edits in trunk

Added comments about new layout scheme. Cleaned up code.
Improved core measurement routine.

Turned off logging by default.

3:09 PM Changeset in webkit [776] by darin
  • 5 edits in trunk/WebCore

Fix NULL case.

2:29 PM Changeset in webkit [775] by kocienda
  • 1 edit in trunk/WebKit/Misc.subproj/WebFileDatabase.m

2002-03-18 Kenneth Kocienda <kocienda@apple.com>

Changed file load thread so that it tries to use a memory-mapped file to
read from the file system instead of using CFStreams. Now more than 2x faster.

  • CacheLoader.subproj/IFFileURLProtocolHandler.h:
  • CacheLoader.subproj/IFFileURLProtocolHandler.m: (-[IFFileURLProtocolHandler didLoadData:]), (-[IFFileURLProtocolHandler fileLoadThread]), (-[IFFileURLProtocolHandler beginLoadInBackground]), (-[IFFileURLProtocolHandler endLoadInBackground]):

Changed instance of memcpy to the new IFFastMemoryMove function

  • CacheLoader.subproj/IFHTTPURLProtocolHandler.m: (-[IFHTTPURLProtocolHandler performStreamRead:]):

Moved timeout back to 60 seconds from 240 seconds.

  • CacheLoader.subproj/IFURLLoad.m:

NSData now reads from a mapped file instead of using NSFileManager to read the file.

  • Database.subproj/IFURLFileDatabase.m: (-[IFURLFileDatabase objectForKey:]):
  • WebFoundation.pbproj/project.pbxproj:
2:10 PM Changeset in webkit [774] by darin
  • 12 edits in trunk/WebCore

Redo inlining of QChar and QString and some other small speed improvements.
Sadly, this doesn't seem to make things measurably faster, but I decided to
commit my work rather than discarding it; it doesn't make things slower.

  • src/kwq/qt/qstring.h:
  • src/kwq/KWQChar.mm:
  • src/kwq/KWQString.mm: Do a lot more inlining. Also, the CFStringRef inside a QString is now never nil, so we can get rid of many checks for nil.
  • src/kwq/KWQFontMetrics.mm: (QFontMetrics::width): Use _rectForString() a couple more places.
11:16 AM Changeset in webkit [773] by rjw
  • 5 edits in trunk/WebCore

Changed to use non direct _rectForString() function. Avoids
unnecessary NSString allocation.

9:40 AM Changeset in webkit [772] by sullivan
  • 5 edits in trunk/WebKit
  • prepare-ChangeLog: use ${cvs_command} rather than cvs in new update line; makes it work on appecvs-encrusted Jaguars again.

Imposed age limit on history items saved to/loaded from disk.
Sped up history loading by reversing list before processing entries.

  • History.subproj/IFWebHistoryPrivate.m: (+[IFWebHistoryPrivate initialize]): Register default for age limit. (-[IFWebHistoryPrivate _ageLimitDate]): New convenience method, returns a date older than any history entry that should be stored/loaded. (-[IFWebHistoryPrivate arrayRepresentation]): skip too-old dates. (-[IFWebHistoryPrivate _loadHistoryGuts:]), (-[IFWebHistoryPrivate _saveHistoryGuts:]): Broke into separate methods to make timing wrapper less messy. Respect age limit. Report number of items saved/loaded in timing message. (-[IFWebHistoryPrivate loadHistory]), (-[IFWebHistoryPrivate saveHistory]): use broken-out _guts methods.
  • WebKit.pbproj/project.pbxproj: version wars
9:34 AM Changeset in webkit [771] by darin
  • 5 edits in trunk/WebCore
  • src/kwq/KWQFontMetrics.mm: (QFontMetricsPrivate::getInfo), (QFontMetrics::width), (QFontMetrics::_width), (QFontMetrics::boundingRect), (QFontMetrics::size): Don't make the info object right away, in case the metrics object is only used to compute ascent and descent.
7:34 AM Changeset in webkit [770] by kocienda
  • 1 edit in trunk/WebKit/Misc.subproj/WebFileDatabase.m

2002-03-18 Kenneth Kocienda <kocienda@apple.com>

I reworked the code a bit in IFURLLoadManager so I could remove some more locking and made
the locking that still needs to be there more fine grained.

  • CacheLoader.subproj/IFURLLoadManager.m: (-[IFURLLoadManager objectForURL:]), (-[IFURLLoadManager setObject:forURL:attributes:expiry:]), (-[IFURLLoadManager invalidateURL:]), (-[IFURLLoadManager clearAllCaches]), (-[IFURLLoadManager cancelRequestWithURLHandle:]), (-[IFURLLoadManager cancelAllRequestsWithURL:]), (-[IFURLLoadManager cancelAllRequestsInGroup:]):

Some small code clean ups here.

  • Database.subproj/IFURLFileDatabase.m: (-[IFURLFileDatabase initWithPath:]), (-[IFURLFileDatabase setObject:forKey:]), (-[IFURLFileDatabase removeObjectForKey:]), (-[IFURLFileDatabase objectForKey:]), (-[IFURLFileDatabase open]):
3:11 AM Changeset in webkit [769] by mjs
  • 47 edits in branches/LABYRINTH_KDE_3_MERGE/WebCore

Top level:

Update tests for collection class renames.

  • Tests/qt/qarray-test.chk:
  • Tests/qt/qarray-test.cpp: (main):
  • Tests/qt/qdict-test.cpp: (operator<<):
  • Tests/qt/qlist-test.chk:
  • Tests/qt/qlist-test.cpp: (main):
  • Tests/qt/qptrdict-test.cpp: (operator<<):
  • Tests/qt/qstack-test.chk:
  • Tests/qt/qstack-test.cpp: (main):
  • Tests/qt/qvector-test.chk:
  • Tests/qt/qvector-test.cpp: (printVectorNullTolerant), (main):

WebCore:

Changes needed to get kwq compiling (doesn't link yet, though).

  • src/kdelibs/khtml/misc/loader.h:
  • src/kdelibs/khtml/xml/dom_elementimpl.h:
  • src/kwq/KWQCollection.mm: (QPtrCollection::QPtrCollection), (QPtrCollection::operator=), (QPtrCollection::~QPtrCollection), (QPtrCollection::autoDelete), (QPtrCollection::setAutoDelete):
  • src/kwq/KWQEvent.mm: (QKeyEvent::QKeyEvent):
  • src/kwq/KWQIcon.h:
  • src/kwq/KWQKHTMLFactory.mm:
  • src/kwq/KWQKHTMLPart.h:
  • src/kwq/KWQKHTMLPart.mm: (KHTMLPart::KHTMLPart), (KHTMLPart::slotData), (KHTMLPart::begin), (KHTMLPart::write), (KHTMLPart::checkCompleted), (KHTMLPart::settings), (KHTMLPart::completeURL), (KHTMLPart::encoding), (KHTMLPart::overURL), (KHTMLPart::urlSelected), (KHTMLPart::requestObject), (KHTMLPart::frames), (KHTMLPart::event):
  • src/kwq/KWQKHTMLSettings.mm: (KHTMLSettings::KHTMLSettings), (KHTMLSettings::availableFamilies):
  • src/kwq/KWQKProcess.mm: (KProcess::args):
  • src/kwq/KWQKloader.mm: (CachedImage::CachedImage), (CachedImage::movieStatus), (DocLoader::DocLoader), (Loader::load), (Loader::servePendingRequests), (Loader::slotFinished), (Cache::requestScript):
  • src/kwq/KWQPainter.mm: (QPainter::save):
  • src/kwq/KWQPointArray.mm: (QPointArray::setPoint):
  • src/kwq/KWQValueListImpl.mm: (KWQValueListImpl::removeEqualNodes), (KWQValueListImpl::containsEqualNodes):
  • src/kwq/KWQView.mm: (-[KWQHTMLView layout]):
  • src/kwq/KWQsignals.mm: (khtml::Loader::requestDone), (khtml::Loader::requestFailed):
  • src/kwq/kdecore/kiconloader.h:
  • src/kwq/kparts/browserextension.h:
  • src/kwq/qt/qmovie.h:

Mar 17, 2002:

9:45 PM Changeset in webkit [768] by rjw
  • 14 edits in trunk/WebCore

Implementation of replacement code for NSLayoutManager. Huge
performance gains.

Mar 16, 2002:

7:22 PM Changeset in webkit [767] by rjw
  • 4 edits in trunk/WebKit

i Fixed scroll bar flash. Add provisional view to go along with

provisional widget.

Temporary hack to bypass spin-o-death problem.

6:08 PM Changeset in webkit [766]
  • 7 copies in branches/LABYRINTH_KDE_3_MERGE/WebKit

This commit was manufactured by cvs2svn to create branch
'LABYRINTH_KDE_3_MERGE'.

6:08 PM Changeset in webkit [765] by rjw
  • 35 edits
    6 adds in trunk

iFixed error handling. Removed ObjC code for url handle client from KHTMLPart.
Need to sanitize KHTMLPart further.

Changed stop to use stopLoading on frame instead of datasource.

Fixed error handling. Fixed most frame loading problems.
Cleaned up frame state machine.
Moved IFMainURLHandleClient from WebCore.

3:37 AM Changeset in webkit [764] by mjs
  • 190 edits
    48 adds in branches/LABYRINTH_KDE_3_MERGE

Updated to get khtml to compile. Changes included updating our
headers for new classes, new methods, header name changes, etc, as
well as occasionally commenting out or replacing portions of the
khtml code with #if APPLE_CHANGES, and adding new files from the
kde3 sources when appropriate.

  • src/kdelibs/khtml/css/css_valueimpl.cpp: (CSSStyleDeclarationImpl::getPropertyCSSValue):
  • src/kdelibs/khtml/css/cssparser.cpp: (StyleBaseImpl::parseContent):
  • src/kdelibs/khtml/css/cssstyleselector.cpp: (CSSStyleSelector::CSSStyleSelector), (khtml::applyRule):
  • src/kdelibs/khtml/ecma/.cvsignore:
  • src/kdelibs/khtml/ecma/Makefile.am:
  • src/kdelibs/khtml/ecma/kjs_debugwin.h:
  • src/kdelibs/khtml/ecma/kjs_dom.cpp: (DOMNode::toString):
  • src/kdelibs/khtml/ecma/kjs_dom.h:
  • src/kdelibs/khtml/ecma/kjs_window.cpp:
  • src/kdelibs/khtml/html/html_documentimpl.cpp: (HTMLDocumentImpl::cookie), (HTMLDocumentImpl::setCookie):
  • src/kdelibs/khtml/html/html_formimpl.cpp: (HTMLKeygenElementImpl::HTMLKeygenElementImpl), (HTMLKeygenElementImpl::encoding):
  • src/kdelibs/khtml/java/kjavaprocess.cpp: (KJavaProcess::invokeJVM):
  • src/kdelibs/khtml/khtmlview.cpp: (KHTMLView::contentsContextMenuEvent):
  • src/kdelibs/khtml/misc/loader.h:
  • src/kdelibs/khtml/rendering/render_box.cpp: (RenderBox::calcReplacedWidth):
  • src/kdelibs/khtml/rendering/render_form.cpp: (RenderTextArea::calcMinMaxWidth):
  • src/kdelibs/khtml/rendering/render_image.cpp: (RenderImage::printObject):
  • src/kdelibs/khtml/rendering/render_text.cpp: (RenderText::nodeAtPoint):
  • src/kdelibs/khtml/xml/dom_docimpl.cpp: (DocumentImpl::close):
  • src/kdelibs/khtml/xml/dom_elementimpl.cpp: (ElementImpl::dispatchAttrRemovalEvent), (ElementImpl::dispatchAttrAdditionEvent):
  • src/kdelibs/kjs/interpreter.cpp: (Context::Context), (Context::operator=), (Context::~Context), (Context::isNull), (Context::imp), (Context::scopeChain), (Context::variableObject), (Context::thisValue), (Context::callingContext), (Interpreter::Interpreter), (Interpreter::~Interpreter), (Interpreter::globalObject), (Interpreter::globalExec), (Interpreter::checkSyntax), (Interpreter::evaluate), (Interpreter::imp), (Interpreter::builtinObject), (Interpreter::builtinFunction), (Interpreter::builtinArray), (Interpreter::builtinBoolean), (Interpreter::builtinString), (Interpreter::builtinNumber), (Interpreter::builtinDate), (Interpreter::builtinRegExp), (Interpreter::builtinError), (Interpreter::builtinObjectPrototype), (Interpreter::builtinFunctionPrototype), (Interpreter::builtinArrayPrototype), (Interpreter::builtinBooleanPrototype), (Interpreter::builtinStringPrototype), (Interpreter::builtinNumberPrototype), (Interpreter::builtinDatePrototype), (Interpreter::builtinRegExpPrototype), (Interpreter::builtinErrorPrototype), (Interpreter::builtinEvalError), (Interpreter::builtinRangeError), (Interpreter::builtinReferenceError), (Interpreter::builtinSyntaxError), (Interpreter::builtinTypeError), (Interpreter::builtinURIError), (Interpreter::builtinEvalErrorPrototype), (Interpreter::builtinRangeErrorPrototype), (Interpreter::builtinReferenceErrorPrototype), (Interpreter::builtinSyntaxErrorPrototype), (Interpreter::builtinTypeErrorPrototype), (Interpreter::builtinURIErrorPrototype), (Interpreter::setCompatMode), (Interpreter::compatMode), (Interpreter::finalCheck), (ExecState::~ExecState), (ExecState::interpreter), (ExecState::context), (ExecState::setException), (ExecState::clearException), (ExecState::exception), (ExecState::hadException), (ExecState::ExecState):
  • src/kdelibs/kjs/property_map.cpp: (PropertyMapNode::setLeft), (PropertyMapNode::setRight), (PropertyMapNode::setParent), (PropertyMapNode::findMax), (PropertyMapNode::findMin), (PropertyMapNode::next), (KJS::uscompare), (PropertyMap::PropertyMap), (PropertyMap::~PropertyMap), (PropertyMap::put), (PropertyMap::remove), (PropertyMap::get), (PropertyMap::clear), (PropertyMap::dump), (PropertyMap::checkTree), (PropertyMap::getNode), (PropertyMap::first), (PropertyMap::balance), (PropertyMap::updateHeight), (PropertyMap::rotateRR), (PropertyMap::rotateLL), (PropertyMap::rotateRL), (PropertyMap::rotateLR):
  • src/kdelibs/kjs/property_map.h:
  • src/kdelibs/kjs/value.cpp: (ValueImp::ValueImp), (ValueImp::~ValueImp), (ValueImp::mark), (ValueImp::marked), (ValueImp::setGcAllowed), (ValueImp::operator new), (ValueImp::operator delete), (ValueImp::toInteger), (ValueImp::toInt32), (ValueImp::toUInt32), (ValueImp::toUInt16), (ValueImp::getBase), (ValueImp::getPropertyName), (ValueImp::getValue), (ValueImp::putValue), (KJS::operator==), (KJS::operator!=), (Value::Value), (Value::~Value), (Value::operator=), (Value::isNull), (Value::imp), (Value::type), (Value::isA), (Value::toPrimitive), (Value::toBoolean), (Value::toNumber), (Value::toInteger), (Value::toInt32), (Value::toUInt32), (Value::toUInt16), (Value::toString), (Value::toObject), (Value::getBase), (Value::getPropertyName), (Value::getValue), (Value::putValue), (Undefined::Undefined), (Undefined::~Undefined), (Undefined::operator=), (Undefined::dynamicCast), (Null::Null), (Null::~Null), (Null::operator=), (Null::dynamicCast), (Boolean::Boolean), (Boolean::~Boolean), (Boolean::operator=), (Boolean::value), (Boolean::dynamicCast), (String::String), (String::~String), (String::operator=), (String::value), (String::dynamicCast), (Number::Number), (Number::~Number), (Number::operator=), (Number::dynamicCast), (Number::value), (Number::intValue), (Number::isNaN), (Number::isInf):
  • src/kwq/KWQDef.h:
  • src/kwq/KWQInputDialog.mm: (QInputDialog::getText):
  • src/kwq/KWQKConfigBase.mm: (KConfig::KConfig):
  • src/kwq/KWQKHTMLPart.h:
  • src/kwq/KWQListImpl.h:
  • src/kwq/KWQMapImpl.h:
  • src/kwq/KWQMapImpl.mm: (KWQMapImpl::removeEqualInternal):
  • src/kwq/KWQStrList.h:
  • src/kwq/KWQStyle.h:
  • src/kwq/KWQValueListImpl.h:
  • src/kwq/KWQVectorImpl.h:
  • src/kwq/kdecore/kapplication.h:
  • src/kwq/kdecore/kconfig.h:
  • src/kwq/kdecore/kdebug.h:
  • src/kwq/kdecore/kprocess.h:
  • src/kwq/kdecore/kstandarddirs.h:
  • src/kwq/kdecore/kstaticdeleter.h:
  • src/kwq/kdeui/kaction.h:
  • src/kwq/kdeui/kcursor.h:
  • src/kwq/khtml/khtml_factory.h:
  • src/kwq/khtml/khtml_settings.h:
  • src/kwq/kio/global.h:
  • src/kwq/kio/kmimetype.h:
  • src/kwq/kio/kprinter.h:
  • src/kwq/kio/kprotocolmanager.h:
  • src/kwq/kparts/browserextension.h:
  • src/kwq/qt/qapplication.h:
  • src/kwq/qt/qarray.h:
  • src/kwq/qt/qcollection.h:
  • src/kwq/qt/qcombobox.h:
  • src/kwq/qt/qcstring.h:
  • src/kwq/qt/qcursor.h:
  • src/kwq/qt/qdict.h:
  • src/kwq/qt/qevent.h:
  • src/kwq/qt/qfontmetrics.h:
  • src/kwq/qt/qinputdialog.h:
  • src/kwq/qt/qlineedit.h:
  • src/kwq/qt/qlist.h:
  • src/kwq/qt/qmap.h:
  • src/kwq/qt/qmemarray.h:
  • src/kwq/qt/qnamespace.h:
  • src/kwq/qt/qobject.h:
  • src/kwq/qt/qpainter.h:
  • src/kwq/qt/qpalette.h:
  • src/kwq/qt/qpoint.h:
  • src/kwq/qt/qpointarray.h:
  • src/kwq/qt/qprinter.h:
  • src/kwq/qt/qptrdict.h:
  • src/kwq/qt/qptrlist.h:
  • src/kwq/qt/qptrqueue.h:
  • src/kwq/qt/qptrstack.h:
  • src/kwq/qt/qptrvector.h:
  • src/kwq/qt/qradiobutton.h:
  • src/kwq/qt/qrect.h:
  • src/kwq/qt/qregion.h:
  • src/kwq/qt/qscrollview.h:
  • src/kwq/qt/qsortedlist.h:
  • src/kwq/qt/qstack.h:
  • src/kwq/qt/qstring.h:
  • src/kwq/qt/qstylesheet.h:
  • src/kwq/qt/qtextedit.h:
  • src/kwq/qt/qtextstream.h:
  • src/kwq/qt/qvaluelist.h:
  • src/kwq/qt/qvector.h:
  • src/kwq/qt/qwidget.h:
  • src/kwq/qt/qxml.h:
3:37 AM Changeset in webkit [763] by mjs
  • in /

file qstylesheet.h was initially added on branch LABYRINTH_KDE_3_MERGE.

3:37 AM Changeset in webkit [762] by mjs
  • in /

file qtextedit.h was initially added on branch LABYRINTH_KDE_3_MERGE.

3:37 AM Changeset in webkit [761] by mjs
  • in /

file qprinter.h was initially added on branch LABYRINTH_KDE_3_MERGE.

3:37 AM Changeset in webkit [760] by mjs
  • in /

file qptrqueue.h was initially added on branch LABYRINTH_KDE_3_MERGE.

3:37 AM Changeset in webkit [759] by mjs
  • in /

file ksslkeygen.h was initially added on branch LABYRINTH_KDE_3_MERGE.

3:37 AM Changeset in webkit [758] by mjs
  • in /

file global.h was initially added on branch LABYRINTH_KDE_3_MERGE.

3:37 AM Changeset in webkit [757] by mjs
  • in /

file kapplication.h was initially added on branch LABYRINTH_KDE_3_MERGE.

Note: See TracTimeline for information about the timeline view.