Timeline
Jan 31, 2002:
- 7:12 PM Changeset in webkit [579] by
-
- 11 edits in trunk/WebCore
Added QString constructor, fixed javascript at head of document bug.
- 6:02 PM Changeset in webkit [578] by
-
- 5 edits in trunk/WebKit
- History.subproj/WKURIList.m: (newURIListNode): retain entries before adding them to list. The node-freeing routine was releasing, but the node-adding routine wasn't retaining. Bad asymmetry, made up for by WebViewTest not autoreleasing. I fixed that too.
- Tests/khtmlview/_KWQOwner.m: (-[_KWQOwner newUriDone:]): autorelease new WKURIEntry before handing it to WKBackForwardList.
Implemented simple back/forward, using the existing back/forward code that
WebViewTest was using (after fixing an object lifetime bug there). Also
cleaned up viewSource stuff a little.
- BrowserDocument.h: Added declarations for canGoBack, canGoForward, goBack, goForward; changed webController to _webController; added _backForwardList.
- BrowserDocument.m: (-[BrowserDocument currentURL]), (-[BrowserDocument setCurrentURL:]), (-[BrowserDocument setMainWebView:]), (-[BrowserDocument setUpSearchChannels]), (-[BrowserDocument searchChannels]): Just updated for instance variable name changes and/or moved around.
(-[BrowserDocument init]): Make a back/forward list
(-[BrowserDocument dealloc]): Nuke a back/forward list
(-[BrowserDocument goToURLBypassingBackForwardList:]): New method, contains
the code that used to be goToURL
(-[BrowserDocument goToURL:]): Now calls goToURLBypassingBackForwardList and
then adds an entry to the back/forward list.
(-[BrowserDocument canGoBack]),
(-[BrowserDocument canGoForward]),
(-[BrowserDocument goBack]),
(-[BrowserDocument goForward]): New methods, implement back/forward list by
calling methods on WKBackForwardList
(-[BrowserDocument openNewTextEditDocumentWithString:]): New helper method, contains
former guts of viewSource and viewReconstructedSource.
(-[BrowserDocument viewSource:]),
(-[BrowserDocument viewReconstructedSource:]): Call openNewTextEditDocumentWithString.
- BrowserWindow.h: Added declaration for viewReconstructedSource
- BrowserWindow.m: (-[BrowserWindow goBack:]), (-[BrowserWindow goForward:]): Call BrowserDocument methods.
(-[BrowserWindow isShowingSearchResults:]): Fixed bug where it would return YES
if there was no URL at all displayed.
(-[BrowserWindow validateToolbarItem:]): Call [[self document] canGoBack] instead
of [self canGoBack], same for forward.
(-[BrowserWindow validateMenuItem:]): add test for viewReconstructedSource. Make
both viewSource and viewReconstructedSource enabled only if currentURL is not nil.
(-[BrowserWindow viewReconstructedSource:]): removed casts made unnecessary by adding
the declaration to the header file.
- 5:40 PM Changeset in webkit [577] by
-
- 8 edits in trunk/WebCore
Fixed javascript at head of document problem.
- 4:37 PM Changeset in webkit [576] by
-
- 3 edits in trunk/WebKit
- WebKit.pbproj: Removed -O0, so it will now get all the same warnings as pbxbuild gets.
- 4:28 PM Changeset in webkit [575] by
-
- 14 edits in trunk/WebKit
2002-01-31 Kenneth Kocienda <kocienda@apple.com>
Removed dependency on WC versions of these files
- History.subproj/WKBackForwardList.h:
- History.subproj/WKBackForwardList.m:
- History.subproj/WKURIEntry.h:
- History.subproj/WKURIEntry.m:
- WebKit.pbproj/project.pbxproj:
A set of in-progress changes. The new code here is not in a current code path,
but I'm checking in to make sure that some changes I made in WebKit work
with something I was able to test.
- CacheLoader.subproj/WKURLHandle.m: (-[WKURLHandle notifyClientsDidLoadData]):
- Misc.subproj/WKMutableData.h:
- Misc.subproj/WKMutableData.m: (-[WKMutableData copyWithZone:]), (-[WKMutableData initWithBytes:length:copy:freeWhenDone:bytesAreVM:]):
- WebFoundation.pbproj/project.pbxproj:
Removed dependency on WC classes backed by WebKit classes.
- Tests/khtmlview/_KWQOwner.h:
- Tests/khtmlview/_KWQOwner.m: (-[_KWQOwner changeURL:]), (-[_KWQOwner back:]), (-[_KWQOwner forward:]), (-[_KWQOwner newUriDone:]):
- 4:13 PM Changeset in webkit [574] by
-
- 3 edits in trunk/WebKit
- WebKit.pbproj: Marked WKURIList.h as a public header
- 4:11 PM Changeset in webkit [573] by
-
- 8 edits in trunk/WebKit
Added document source.
- 4:11 PM Changeset in webkit [572] by
-
- 9 edits in trunk/WebCore
Added document source .
- 3:23 PM Changeset in webkit [571] by
-
- 6 edits in trunk/WebCore
Added support for hidden plug-ins. Added focus events
- 1:28 PM Changeset in webkit [570] by
-
- 11 edits in trunk/WebCore
2002-01-31 Kenneth Kocienda <kocienda@apple.com>
Created a no-copy version of NSData (WKMutableData) that will minimize the amount of data copying.
Removed obsoleted WKURLData class
Incorporated use of the no-copy NSData object.
- CacheLoader.subproj/WKHTTPURLProtocolHandler.m: (-[WKHTTPURLProtocolHandler performStreamRead:]):
- CacheLoader.subproj/WKURLData.h:
- CacheLoader.subproj/WKURLData.m:
- CacheLoader.subproj/WKURLHandle.h:
- Misc.subproj/WKMutableData.h:
- Misc.subproj/WKMutableData.m: (+[WKByteBlock byteBlockWithBytes:length:]), (-[WKByteBlock initWithBytes:length:]), (-[WKByteBlock bytes]), (-[WKByteBlock length]), (-[WKByteBlock byteLength]), (-[WKByteBlock dealloc]), (+[WKByteRange rangeWithRange:]), (-[WKByteRange initWithRange:]), (-[WKByteRange range]), (-[WKByteRange isEqual:]), (-[WKByteRange hash]), (-[WKByteRange copyWithZone:]), (-[WKMutableData createBlockForRange:buffer:]), (-[WKMutableData length]), (-[WKMutableData bytes]), (-[WKMutableData byteBlocksForRange:]), (-[WKMutableData bytesInRange:]), (-[WKMutableData getBytes:]), (-[WKMutableData getBytes:length:]), (-[WKMutableData getBytes:range:]), (-[WKMutableData subdataWithRange:]), (-[WKMutableData initWithBytes:length:copy:freeWhenDone:bytesAreVM:]), (-[WKMutableData appendBytes:length:]), (-[WKMutableData dealloc]):
- WebFoundation.pbproj/project.pbxproj:
Changes to incorporate use of the no-copy NSData object.
- include/WCURLHandle.h:
- src/kwq/KWQKHTMLPart.mm: (-[KHTMLPartLoadClient WCURLHandle:resourceDataDidBecomeAvailable:offset:length:userData:]):
- src/kwq/KWQKloader.mm: (-[URLLoadClient WCURLHandle:resourceDataDidBecomeAvailable:offset:length:userData:]):
Jan 30, 2002:
- 5:41 PM Changeset in webkit [569] by
-
- 5 edits in trunk/WebCore
Trivial debugging changes.
- 3:38 PM Changeset in webkit [568] by
-
- 15 edits in trunk/WebKit
Cleaned up frame code. Fixed duplicate content problem.
- 3:37 PM Changeset in webkit [567] by
-
- 10 edits in trunk/WebCore
Cleanuped up frame code a bit. Fixed duplicate content problem.
- 7:29 AM Changeset in webkit [566] by
-
- 21 edits in trunk
Added *.lo, *.la, and .libs to .cvsignore files
- WebCore/.cvsignore:
- WebCore/src/.cvsignore:
- WebCore/src/kdelibs/khtml/css/.cvsignore:
- WebCore/src/kdelibs/khtml/misc/.cvsignore:
- WebCore/src/kdelibs/kjs/.cvsignore:
Added *.lo, *.la, Icon, and .libs to .cvsignore files
- WebFoundation/.cvsignore:
Added *.lo, *.la, Icon, and .libs to .cvsignore files
- WebKit/.cvsignore: