Timeline
Mar 12, 2002:
- 7:07 PM Changeset in webkit [727] by
-
- 15 edits2 adds in trunk/WebKit
Added support for persistent history. Following in the grand footsteps of
Ken, it currently stores data in /tmp/alexander.history
- Resources/url_icon.tiff: default IFURIEntry image, moved here from WebBrowser.
- WebKit.pbproj/project.pbxproj: Updated to add image file.
- History.subproj/IFURIEntry.m: (-[IFURIEntry image]): If there's no explicit image, return the default one.
(-[IFURIEntry dictionaryRepresentation]): return a representation suitable
for saving to an xml file.
(-[IFURIEntry initFromDictionaryRepresentation:]): init given the representation
returned from dictionaryRepresentation.
- History.subproj/IFWebHistory.h:
- History.subproj/IFWebHistory.m: (-[IFWebHistory saveHistory]): Added saveHistory call.
- History.subproj/IFWebHistoryPrivate.h: added saveHistory call.
- History.subproj/IFWebHistoryPrivate.m: (-[IFWebHistoryPrivate arrayRepresentation]): return a representation suitable for saving to an xml file. (-[IFWebHistoryPrivate historyFilePath]): return location of history on disk. (-[IFWebHistoryPrivate loadHistory]): read history from disk. (-[IFWebHistoryPrivate saveHistory]): write history to disk.
(-[IFWebHistoryPrivate init]): call loadHistory
(-[IFWebHistoryPrivate removeEntryForURLString:]): changed NSLog to WEBKITDEBUG
Save history before quitting, and associated tweaks.
- AppController.m: (-[AppController awakeFromNib]): register as application delegate (-[AppController applicationWillTerminate:]): save history before app terminates
- BrowserDocument.m: (-[BrowserDocument addHistoryEntryForCurrentPage]): Don't set an image here; IFURIEntry now handles the image (at least for the default case)
- Resources/Images/url_icon.tiff: Moved this image to WebKit.
- WebBrowser.pbproj/project.pbxproj: Updated for removed file.
- 6:24 PM Changeset in webkit [726] by
-
- 5 edits in trunk/WebCore
Optimized implementation of compareToLatin1() and find() to not allocate
additional CFString.
Mar 11, 2002:
- 2:00 PM Changeset in webkit [725] by
-
- 20 edits in trunk
i Fixed call back ordering problems when an error occurs.
More twiddling with scroll bars.
Re-implemented QPainter::drawTiledPixmap to use core graphics patterns. Currently this depends
on SPI. The performance boost is huge osx.macnn.com draws 40x faster now.