Timeline
May 29, 2002:
- 10:13 PM Changeset in webkit [1234] by
-
- 10 edits3 adds in trunk/WebCore
Changes to support animated image rendering.
Moved image rendering into webkit.
- 10:12 PM Changeset in webkit [1233] by
-
- 13 edits8 adds in trunk/WebKit
Changes to support animated image rendering.
Moved image rendering into webkit.
Still need to implement preferences stubs and
start/stop stubs.
- 1:26 PM Changeset in webkit [1232] by
-
- 4 edits in trunk/WebKit
Removed acceptsFirstMouse override, this fixes at least:
2930713 -- clicking on an empty part of window to bring it to front
takes focus away from page address field
2938028 -- Link cursor doesn't appear when browser window not
frontmost, but clicks activate links
- WebView.subproj/IFWebView.mm:
May 28, 2002:
- 5:00 PM Changeset in webkit [1231] by
-
- 6 edits in trunk/WebCore
Moved cancellation check before creation on job instance,
preventing leak.
- 4:55 PM Changeset in webkit [1230] by
-
- 16 edits in trunk/WebKit
Made -[IFBookmark group] and -[IFBookmark parent] public
methods, and renamed them to not use leading underscores,
as part of support for revealing a particular bookmark in
the Bookmarks window.
- Bookmarks.subproj/IFBookmark_Private.h: removed _group and _parent.
- Bookmarks.subproj/IFBookmark.h: added group and parent.
- fixed 2923488 -- Silent failure when bookmark URL is invalid URL
- fixed 2935830 (urls in Bookmarks should be "canonicalized" like urls in location field)
- fixed 2935388 (errors in Activity window shouldn't show numeric error codes)
- IFBookmarkAdditions.h: Added.
- IFBookmarkAdditions.m: Added. (-[IFBookmark goTo]): New category, adds browser-specific behavior to IFBookmark. The first and only method so far goes to the bookmark's address; if the address string can't be turned into a valid URL, the user is told and given an opportunity to fix the address.
- AppController.h:
- AppController.m: (-[AppController showBookmarks:]): Moved initialization of _bookmarksController ivar out of here. (-[AppController _takeLocationFromBookmark:]): Now calls -[IFBookmark goTo]. (-[AppController bookmarksController]): New public method, initializes _bookmarksController ivar if necessary.
- BookmarksController.h:
- BookmarksController.m: (-[BookmarksController _goToSelectedItem:]): Now calls -[IFBookmark goTo]. (-[BookmarksController _expandAncestorsOfBookmark:]): New method, ensures that each ancestor folder of the specified bookmark is expanded in the outline view. (-[BookmarksController revealBookmark:]): New method, expands the bookmark's ancestors, then selects the bookmark and scrolls to reveal as necessary. (-[BookmarksController _editSelectedColumnWithID:]): New helper method, edits the contents of the specified column for the selected row. (-[BookmarksController editSelectedAddress]), (-[BookmarksController editSelectedName]): New methods, they call _editSelectedColumnWithID: for different columns. (-[BookmarksController _toggleEdit:]): Now calls editSelectedName.
- IFErrorAdditions.m: (-[IFError errorSummary]): Removed error code from the string this method returns.
- WebBrowser.pbproj/project.pbxproj: Updated for new files; also added new WebKit Additions group and moved some existing files into it.
- 4:17 PM Changeset in webkit [1229] by
-
- 7 edits in trunk/WebCore
Fixed edge case cancellation problem (actually happens a lot).
No new loads are allowed after a data source has been
set as "stopping".
- 3:11 PM Changeset in webkit [1228] by
-
- 4 edits in trunk/WebKit
Backed out band-aid add to fixed malformed resources URLs.
- 3:10 PM Changeset in webkit [1227] by
-
- 7 edits in trunk/WebCore
Fixed reporting of malformed resources URLs. This fixed
exceptions that were being thrown because nil handles were
being added to datasource handle array.
- 2:07 PM Changeset in webkit [1226] by
-
- 4 edits in trunk/WebKit
* empty log message *
- 1:18 PM Changeset in webkit [1225] by
-
- 1 edit in trunk/WebKit/Misc.subproj/WebFileDatabase.m
Fixed double free of mapped file bytes (it's freed
by munmap).
- 11:34 AM Changeset in webkit [1224] by
-
- 15 edits in trunk
WebBrowser:
Drag & Drop of file and URL support for the location field.
- LocationFieldEditor.m: (-[LocationFieldEditor acceptableDragTypes]): Added URL and file drag types (-[LocationFieldEditor draggingEntered:]): new (-[LocationFieldEditor draggingUpdated:]): new (-[LocationFieldEditor prepareForDragOperation:]): new (-[LocationFieldEditor performDragOperation:]): new (-[LocationFieldEditor concludeDragOperation:]): support for URL and file types
WebKit:
- Plugins.subproj/IFPluginDatabase.h:
- Plugins.subproj/IFPluginDatabase.m: (-[IFPluginDatabase pluginForMimeType:]): renamed (-[IFPluginDatabase pluginForExtension:]): renamed (-[IFPluginDatabase pluginForFilename:]): renamed (findPlugins):
- WebCoreSupport.subproj/IFWebCoreViewFactory.m: support for above renamed (-[IFWebCoreViewFactory viewForPluginWithURL:serviceType:arguments:baseURL:]): (-[IFWebCoreViewFactory viewForJavaAppletWithArguments:]):
- WebView.subproj/IFWebDataSourcePrivate.mm: (-[IFWebDataSource _addURLHandle:]): fix for a nil handle being added to an array
WebCore:
Added framework-header-stamp
- .cvsignore:
WebFoundation:
Fix for 2938040 - This flash movie at macboy.com doesn't load
- Misc.subproj/IFNSStringExtensions.m: (-[NSString _IF_looksLikeAbsoluteURL]):
- 10:39 AM Changeset in webkit [1223] by
-
- 4 edits in trunk/WebKit
- WebCoreSupport.subproj/IFTextRenderer.m: (hasMissingGlyphs): Use recordSize instead of assuming records are sizeof(ATSLayoutRecord). (-[IFTextRenderer convertCharacters:length:toGlyphs:]): Free buffer after calling ATSUConvertCharToGlyphs; old code was using buffer after freeing it. (-[IFTextRenderer widthForString:]): Handle case where string is longer than LOCAL_GLYPH_BUFFER_SIZE. (-[IFTextRenderer slowPackGlyphsForCharacters:numCharacters:glyphBuffer:numGlyphs:]): (-[IFTextRenderer drawString:atPoint:withColor:]): Use recordSize instead of assuming records are sizeof(ATSLayoutRecord). (-[IFTextRenderer slowFloatWidthForCharacters:length:]): Use recordSize instead of assuming records are sizeof(ATSLayoutRecord). (-[IFTextRenderer floatWidthForCharacters:length:]): Remove extra rounding. The caller that converts the width to an integer already does the rounding. (-[IFTextRenderer extendCharacterToGlyphMapToInclude:]): Fix off by one error that caused us to include one extra character in each glyph map block. Also use recordSize instead of assuming records are sizeof(ATSLayoutRecord).