Timeline
Apr 16, 2002:
- 10:58 PM Changeset in webkit [1036] by
-
- 6 edits in trunk/WebKit
- WebView.subproj/IFWebDataSource.mm:
- WebView.subproj/IFWebDataSourcePrivate.mm: Touch these files to try to make Jersey build again.
- 6:07 PM Changeset in webkit [1035] by
-
- 28 edits2 adds1 delete in trunk
WebCore:
- src/kdelibs/khtml/khtml_part.cpp: Added. Not used yet, but maybe we'll use part of it some time soon.
- src/kdelibs/khtml/khtml_part.h: Reenabled this file, and made changes so it could be used instead of our own header.
- src/kwq/KWQKHTMLPart.h: Removed.
- src/kwq/KWQKHTMLPart.mm: (KHTMLPart::KHTMLPart): Add parameter to match KDE. (KHTMLPart::settings): Add const to match KDE. (KHTMLPart::scheduleRedirection): Add parameter to match KDE. (KHTMLPart::encoding): Add const to match KDE. (KHTMLPart::urlCursor): Update return value to match KDE. (KHTMLPart::urlSelected): Add parameter to match KDE. (KHTMLPart::requestObject): Put plugins array on private object. (KHTMLPart::frames): Remove const to match KDE. (KHTMLPart::documentSource): Add const to match KDE. (KHTMLPart::setTitle): Put dataSource on private object. (KHTMLPart::setDataSource): New, not inline any more. (KHTMLPart::getDataSource): New, not inline any more.
- src/libwebcore.exp: Update for function name changes.
- src/kwq/khtml/khtml_settings.h:
- src/kwq/KWQKHTMLSettings.mm: (KHTMLSettings::changeCursor): Add const.
- src/kwq/KWQView.mm: (-[KWQHTMLView layout]): No need to check xmlDocImpl() and renderer() for NULL now, because KHTMLView::layout does.
- src/kwq/KWQKloader.mm: (Loader::load): Use type instead of id.
WebKit:
- WebView.subproj/IFBaseWebControllerPrivate.mm: Include khtml_part.h instead of KWQKHTMLPart.h.
- WebView.subproj/IFWebFrame.mm: Include khtml_part.h instead of KWQKHTMLPart.h.
- WebView.subproj/IFWebDataSource.mm: (-[IFWebDataSource documentTextFromDOM]): Remove an unneeded cast and an extra retain/autorelease.
- 4:46 PM Changeset in webkit [1034] by
-
- 8 edits in trunk/WebKit
- WebView.subproj/IFWebFrame.h:
- WebView.subproj/IFWebFrame.mm:
- WebView.subproj/IFWebFramePrivate.h: Change view/setView back to be id, rather than IFWebView. In the future, the view may be some other kind of object.
- 3:37 PM Changeset in webkit [1033] by
-
- 4 edits in trunk/WebKit
Fixed bug Chris noticed where Alexander wasn't putting up
an error sheet on failed page visits.
- WebView.subproj/IFWebFramePrivate.mm: (-[IFWebFrame _isLoadComplete]): Don't set provisionalDataSource to nil until after sending it locationChangeDone.
- 3:30 PM Changeset in webkit [1032] by
-
- 16 edits in trunk/WebKit
- WebView.subproj/IFBaseWebController.mm: Remove special release handling because data sources now retain the controller as long as they are loading.
- WebView.subproj/IFWebDataSource.mm: Remove special release handling because data sources now retain themselves as long as they are loading.
- WebView.subproj/IFWebFrame.mm: Remove special release handling, because data sources now retain the controller as long as they are loading, and the controller retains the frame.
- WebView.subproj/IFWebDataSourcePrivate.h: Add a "loading" boolean.
- WebView.subproj/IFWebDataSourcePrivate.mm: (-[IFWebDataSource _setLoading:]): Change the "loading" state, retaining or releasing this object and the controller as necessary. (-[IFWebDataSource _updateLoading]): Update the loading state; called when some part of loading is done to see if it's all done. (-[IFWebDataSource _setController:]): Retain the new controller and release the old controller when loading. (-[IFWebDataSource _setPrimaryLoadComplete:]): Call _updateLoading. (-[IFWebDataSource _startLoading:]): Call _setLoading:YES. (-[IFWebDataSource _addURLHandle:]): Call _setLoading:YES. (-[IFWebDataSource _removeURLHandle:]): Call _updateLoading.
- WebView.subproj/IFWebFrame.h: Use the real type, IFWebView, for setView and view.
- WebView.subproj/IFWebFramePrivate.h: Formatting tweak.
- WebKit.pbproj/project.pbxproj: Version wars.
- 3:30 PM Changeset in webkit [1031] by
-
- 15 edits in trunk/WebCore
- src/kwq/kio/jobclasses.h:
- src/kwq/KWQKjobclasses.mm: (TransferJob::setError): New.
- src/kwq/KWQKloader.mm: (-[URLLoadClient IFURLHandleResourceDidCancelLoading:]), (-[URLLoadClient IFURLHandle:resourceDidFailLoadingWithResult:]): Set an error code so that the load will abort intead of continuing.
- src/kwq/KWQKHTMLPart.mm: Removed some unused code.
- 3:22 PM Changeset in webkit [1030] by
-
- 4 edits in trunk/WebKit
- WebView.subproj/IFWebViewPrivate.mm: (-[IFWebView _setController:]): removed a mistaken retain/release pair here for Darin.
More code restructuring. BrowserDocument no longer implements
the IFWebController protocol; its WebController object does all
the progress handling now.
Also made BrowserDocument stop loading on close for Darin, which fixes
a problem he discovered.
- BrowserDocument.h:
- BrowserDocument.m: (-[BrowserDocument init]), (-[BrowserDocument dealloc]), (-[BrowserDocument close]), (-[BrowserDocument _webController]), (-[BrowserDocument goToURL:withFrameLoadType:]), (-[BrowserDocument isLoading]):
- BrowserDocumentPrivate.h:
- LoadProgressEntry.h:
- LoadProgressEntry.m: (-[LoadProgressEntry status]):
- LoadProgressMonitor.m: (-[LoadProgressMonitor addEntryForFrame:withType:stage:isMain:]):
- LocationChangeHandler.h:
- LocationChangeHandler.m: (-[LocationChangeHandler initWithFrame:forBrowserDocument:]), (-[LocationChangeHandler _webController]), (-[LocationChangeHandler _saveScrollPosition]), (-[LocationChangeHandler _scrollToTop]), (-[LocationChangeHandler _restoreScrollPosition]), (-[LocationChangeHandler locationChangeStarted]), (-[LocationChangeHandler locationChangeCommitted]), (-[LocationChangeHandler displayError:withStage:]), (-[LocationChangeHandler locationChangeDone:]), (-[LocationChangeHandler receivedPageTitle:forDataSource:]):
- WebController.h:
- WebController.m: (-[WebController initWithBrowserDocument:]), (-[WebController dealloc]), (-[WebController resetDocument]), (-[WebController document]), (-[WebController loadMonitor]), (-[WebController receivedProgress:forResource:fromDataSource:]), (-[WebController receivedError:forResource:partialProgress:fromDataSource:]), (-[WebController setStatusText:forDataSource:]), (-[WebController provideLocationChangeHandlerForFrame:]), (-[WebController pluginNotFoundSheetEnded:returnCode:contextInfo:]), (-[WebController pluginNotFoundForMIMEType:pluginPageURL:]), (-[WebController startedDownloadWithHandler:]), (-[WebController receivedProgress:forDownloadHandler:]), (-[WebController receivedError:forDownloadHandler:partialProgress:]): Much code moved from here to there; some code moved from there to here; callers updated to call the code on this object that used to be on that object, and vice-versa.
- 11:50 AM Changeset in webkit [1029] by
-
- 5 edits in trunk/WebKit
Change default font to "Times New Roman 11" rather than
"Georgia 12" to be more like Macintosh Internet Explorer.
- WebView.subproj/IFPreferences.mm:
A little simplifying of private pointers.
- MIME.subproj/IFDownloadHandler.h:
- MIME.subproj/IFDownloadHandler.m:
- 11:47 AM Changeset in webkit [1028] by
-
- 31 edits in trunk/WebKit
A little simplifying of private pointers.
- 10:43 AM Changeset in webkit [1027] by
-
- 83 edits in trunk/WebKit
Change headers so they don't include so much.
Also change IF_LOAD_TYPE to IFLoadType.
- 8:18 AM Changeset in webkit [1026] by
-
- 23 edits4 deletes in trunk
2002-04-16 Kenneth Kocienda <kocienda@apple.com>
Moved IFError class from WebKit to WebFoundation.
Labyrinth:
Updated test and tool code to track this change.
- Tests/WebFoundationC/ifurlhandlec-test.c: (ResourceDidFailLoadingCallBack):
- Tools/wftool/WFTool.m: (-[WFTool IFURLHandle:resourceDidFailLoadingWithResult:]):
WebBrowser:
Updated includes due to this change.
- BrowserDocument.m:
- FrameProgressEntry.m:
- LoadProgressEntry.m:
- LocationChangeHandler.m:
- WebBrowser.pbproj/project.pbxproj:
WebCore:
Updated URL handle client interface to pass an IFError in
an error callback rather than a plain int. These files were
modified due to this change.
- src/kwq/KWQKHTMLPart.mm: (WCSetIFWebDataSourceMakeFunc):
- src/kwq/KWQKloader.mm: (-[URLLoadClient IFURLHandle:resourceDidFailLoadingWithResult:]):
Removed now unneeded file and function pointer symbol entry
since WebCore code never needs to create an IFError now that
those objects are created at a lower level (in WebFoundation).
- src/kwq/WCError.h: Removed.
- src/libwebcore.exp:
WebFoundation:
Updated URL handle client interface to pass an IFError in
an error callback rather than a plain int. These files were
modified due to this change.
I added some additional API to the C glue to make IFError objects
accessible from C code.
- CacheLoader.subproj/IFURLHandle.m: (-[IFURLHandleInstanceVariables dealloc]), (-[IFURLHandleSynchronousClient IFURLHandle:resourceDidFailLoadingWithResult:]), (-[IFURLHandle notifyClientsDidFailLoading]):
- CacheLoader.subproj/IFURLHandleC.h:
- CacheLoader.subproj/IFURLHandleC.m: (IFErrorGetErrorCode), (IFErrorGetErrorDescription), (IFErrorGetFailingURL):
- CacheLoader.subproj/IFURLHandleCallBackClient.m: (-[IFURLHandleCallBackClient IFURLHandle:resourceDidFailLoadingWithResult:]):
- CacheLoader.subproj/IFURLHandleClient.h:
- Misc.subproj/IFError.h:
- Misc.subproj/IFError.m: (+[IFError initialize]), (+[IFError errorWithCode:]), (+[IFError errorWithCode:failingURL:]), (-[IFError initWithErrorCode:]), (-[IFError errorDescription]), (-[IFError description]):
- Misc.subproj/WebFoundation.h:
- WebFoundation.pbproj/project.pbxproj:
WebKit:
Moved IFError class from WebKit to WebFoundation.
Updated includes due to this change.
Updated URL handle client interface to pass an IFError in
an error callback rather than a plain int. The URL client was
modified due to this change.
- Misc.subproj/IFError.h: Removed.
- Misc.subproj/IFError.m: Removed.
- Plugins.subproj/IFPluginView.mm:
- WebKit.pbproj/project.pbxproj:
- WebView.subproj/IFBaseWebControllerPrivate.mm:
- WebView.subproj/IFMainURLHandleClient.mm: (-[IFMainURLHandleClient IFURLHandle:resourceDidFailLoadingWithResult:]):
- WebView.subproj/IFWebFramePrivate.mm:
Apr 15, 2002:
- 5:55 PM Changeset in webkit [1025] by
-
- 3 edits in trunk/JavaScriptCore
Retroactively reviewed Darin's last two commits.
- 4:43 PM Changeset in webkit [1024] by
-
- 511 edits2 adds in trunk
Merged KDE 3.0 final code in and:
- kjs/internal.cpp:
- kjs/property_map.cpp:
- kjs/ustring.h: Removed some unneeded <config.h> includes so we are more similar to the real KDE sources.
Merged changes from KDE 3.0 final and did some build fixes.
- JavaScriptCore.pbproj/project.pbxproj: Added nodes2string.cpp.
- kjs/grammar.*: Regenerated.
- kjs/*.lut.h: Regenerated.
WebCore:
- src/kdelibs/khtml/rendering/render_text.cpp: (TextSlave::printDecoration): Remove some minor gratuitous diffs vs. KDE.
- src/kdelibs/khtml/rendering/render_text.cpp: (TextSlave::printDecoration): Richard updated to reflect changes in KDE.
- src/kdelibs/khtml/css/css_valueimpl.cpp: (FontFamilyValueImpl::FontFamilyValueImpl): Fix comment.
- src/kdelibs/khtml/css/cssstyleselector.cpp: Remove some gratuitous diffs vs. KDE.
- src/kdelibs/khtml/html/html_objectimpl.cpp: (HTMLEmbedElementImpl::parseAttribute): Remove unneeded copy from KWQ's early days.
- src/kdelibs/khtml/html/html_tableimpl.cpp: (HTMLTableElementImpl::parseAttribute), (HTMLTablePartElementImpl::parseAttribute): Remove unneeded copy from KWQ's early days.
- src/kdelibs/khtml/html/htmltokenizer.cpp: (HTMLTokenizer::processToken): Redo the APPLE_CHANGES ifdef here.
- src/kdelibs/khtml/khtmlpart_p.h: Update to latest kde.
- src/kdelibs/khtml/khtmlview.cpp: (KHTMLView::KHTMLView): Add ifdef APPLE_CHANGES. (KHTMLView::~KHTMLView): Add ifdef APPLE_CHANGES. (KHTMLView::print): Remove code left in here during merge process.
- src/kwq/KWQKHTMLPart.mm: Remove unused setFontSizes(), fontSizes(), and resetFontSizes(). After the merge is landed, remove more.
- src/libwebcore.exp: Export updateStyleSelector() for WebKit.
Fix text to it displays at the right font size.
- src/kdelibs/khtml/css/cssstyleselector.cpp: (CSSStyleSelector::computeFontSizes): Apply the same SCREEN_RESOLUTION hack here that we do elsewhere.
- src/kdelibs/khtml/rendering/font.cpp: (Font::width): Use kMin instead of max (oops). (Font::update): Turn off font database chicanery.
- src/kwq/KWQKHTMLPart.mm: (KHTMLPart::zoomFactor): Use zoom factor 100, not 1.
More fixes so text displays (still at wrong font size).
- src/kdelibs/khtml/rendering/font.cpp: (max): New helper. (Font::drawText): Simplified implementation for now. (Font::width): Simplified implementation for now.
- src/kwq/KWQColorGroup.mm: Reinstated QCOLOR_GROUP_SIZE.
- src/kwq/qt/qfontmetrics.h: Removed charWidth and changed _width to take QChar *.
- src/kwq/KWQFontMetrics.mm: Removed charWidth and changed _width to take QChar *.
Merged changes from KDE 3.0 final. Other fixes to get things compiling.
- src/kdelibs/khtml/css/css_valueimpl.cpp: (CSSStyleDeclarationImpl::setProperty): Fix unused variable.
- src/kdelibs/khtml/khtmlview.cpp: (KHTMLView::contentsContextMenuEvent): Fix unused variable.
- src/kdelibs/khtml/rendering/font.cpp: (Font::drawText), (Font::width), (Font::update): Disable special "nsbp" logic for now. We can reenable it if necessary.
- src/kdelibs/khtml/rendering/render_replaced.cpp: Fix mismerge.
- src/kdelibs/khtml/rendering/render_text.cpp: (RenderText::nodeAtPoint): Fix unused variable.
- src/kwq/KWQApplication.mm: (QDesktopWidget::width), (QApplication::desktop): Fix mismerge.
- src/kwq/KWQColorGroup.mm: Fix QCOLOR_GROUP_SIZE.
- src/kwq/KWQFontMetrics.mm: (QFontMetrics::lineSpacing): New. (QFontMetrics::width): Remove unused optimization.
- src/kwq/qt/qfontmetrics.h: Add lineSpacing().
Merged changes from previous merge pass.
2002-03-25 Darin Adler <Darin Adler>
Last bit of making stuff compile and link. Probably will drop the merge now
and take it up again when it's time to merge in KDE 3.0 final.
- src/kwq/KWQEvent.mm: (QFocusEvent::reason): New.
- src/kwq/KWQPainter.mm: (QPainter::drawText): New overload.
2002-03-25 Darin Adler <Darin Adler>
- src/kdelibs/khtml/rendering/font.cpp: (Font::width): Make it call _width so we don't lose the optimization.
- src/kwq/KWQApplication.mm: (QDesktopWidget::screenNumber): New. (QDesktopWidget::screenGeometry): New. (QApplication::style): New.
- src/kwq/KWQColorGroup.mm: (QColorGroup::highlight): New. (QColorGroup::highlightedText): New.
- src/kwq/KWQFont.mm: (QFont::setPixelSize): New.
- src/kwq/KWQFontMetrics.mm: (QFontMetrics::charWidth): New.
- src/kwq/KWQKGlobal.mm: (KGlobal::locale): Implement. (KLocale::KLocale): New. (KLocale::languageList): New.
- src/kwq/KWQKHTMLPart.mm: (KHTMLPart::sheetUsed): New. (KHTMLPart::setSheetUsed): New. (KHTMLPart::zoomFactor): New.
- src/kwq/KWQKHTMLSettings.mm: (KHTMLSettings::mediumFontSize): New.
- src/kwq/KWQScrollView.mm: (QScrollView::childX): New. (QScrollView::childY): New.
- src/kwq/qt/qapplication.h: style() returns a QStyle &.
- src/kwq/qt/qpalette.h: Add Highlight and HighlightedText.
2002-03-24 Darin Adler <Darin Adler>
More compiling. Still won't link.
- src/kdelibs/khtml/khtmlview.cpp: Disable printing and drag and drop code.
- src/kdelibs/khtml/rendering/render_text.cpp: (TextSlave::printDecoration): Temporarily turn off our smarter underlining since it relies on access to the string, and TextSlave doesn't have that any more. (RenderText::nodeAtPoint): Get rid of a workaround we don't need any more for a bug that was fixed by KDE folks.
- src/kwq/KWQApplication.mm: (QApplication::desktop): Make the desktop be a QDesktopWidget.
- src/kwq/qt/qnamespace.h: Add MetaButton.
- src/kwq/qt/qtooltip.h: Add a maybeTip virtual function member and a virtual destructor.
2002-03-24 Darin Adler <Darin Adler>
Some fixes to get more stuff to compile.
- src/kdelibs/khtml/ecma/kjs_dom.cpp: (DOMDocument::getValueProperty): Don't try to look at the private m_bComplete to display "complete". Just do "loading" and "loaded".
- src/kdelibs/khtml/khtmlpart_p.h: #ifdef this all out for APPLE_CHANGES.
- src/kdelibs/khtml/rendering/font.cpp: (Font::update): Add an explicit cast to int to avoid float -> int warning.
- src/kdelibs/khtml/rendering/render_table.cpp: (RenderTable::calcColMinMax): Add an explicit cast to int to avoid uint compared with int warning.
- src/kdelibs/khtml/xml/dom_docimpl.cpp: (DocumentImpl::recalcStyleSelector): Use sheetUsed() and setSheetUsed() functions on KHTMLPart intead of getting at private fields the way the real KDE code does.
- src/kwq/KWQKHTMLPart.h: Declare zoomFactor(), sheetUsed(), and setSheetUsed().
- src/kwq/KWQStyle.h: Add PM_DefaultFramWidth as another metric.
- src/kwq/kdecore/klocale.h: Add languageList().
- src/kwq/khtml/khtml_settings.h: Add mediumFontSize().
- src/kwq/qt/qapplication.h: Add style() and QDesktopWidget.
- src/kwq/qt/qevent.h: Add reason().
- src/kwq/qt/qfont.h: Add setPixelSize(int).
- src/kwq/qt/qfontmetrics.h: Add charWidth() and _charWidth() functions.
- src/kwq/qt/qpainter.h: Add drawText() overload with position parameter.
- src/kwq/qt/qpalette.h: Add highlight() and highlightedText().
- src/kwq/qt/qscrollview.h: Add childX() and childY().
- src/kwq/KWQApplication.mm: Change KWQDesktopWidget to QDesktopWidget.
WebKit:
- WebView.subproj/IFPreferences.h:
- WebView.subproj/IFPreferences.mm: (+[IFPreferences load]): Remove the old WebKitFontSizes preference. (-[IFPreferences mediumFontSize]), (-[IFPreferences setMediumFontSize:]): New.
- WebView.subproj/IFWebView.mm: (-[IFWebView reapplyStyles]): Call updateStyleSelector() instead of recalcStyle().
Merged changes from previous merge branch.
2002-03-25 Darin Adler <Darin Adler>
- WebView.subproj/IFPreferences.mm: (+[IFPreferences load]): Add WebKitMediumFontSizePreferenceKey.
WebBrowser:
- Preferences.subproj/TextPreferences.m: (-[TextPreferences defaultFontSize]), (-[TextPreferences setDefaultFontSize:]): Just get and set the new mediumFontSize preference rather than doing the whole fontSizes preference dance.
- 4:17 PM Changeset in webkit [1023] by
-
- 5 edits in branches/kde_3_0_merge/WebCore
- src/kdelibs/khtml/rendering/render_text.cpp: (TextSlave::printDecoration): Remove some minor gratuitous diffs vs. KDE.
- 4:09 PM Changeset in webkit [1022] by
-
- 5 edits in branches/kde_3_0_merge/WebCore
Updated to reflect changes in KDE.
- 2:57 PM Changeset in webkit [1021] by
-
- 8 edits in branches/kde_3_0_merge/WebKit
WebKit:
- WebView.subproj/IFPreferences.h:
- WebView.subproj/IFPreferences.mm: (+[IFPreferences load]): Remove the old WebKitFontSizes preference. (-[IFPreferences mediumFontSize]), (-[IFPreferences setMediumFontSize:]): New.
- WebView.subproj/IFWebView.mm: (-[IFWebView reapplyStyles]): Call updateStyleSelector() instead of recalcStyle().
WebBrowser:
- Preferences.subproj/TextPreferences.m: (-[TextPreferences defaultFontSize]), (-[TextPreferences setDefaultFontSize:]): Just get and set the new mediumFontSize preference rather than doing the whole fontSizes preference dance.
- 2:56 PM Changeset in webkit [1020] by
-
- 22 edits in branches/kde_3_0_merge/WebCore
- src/kdelibs/khtml/css/css_valueimpl.cpp: (FontFamilyValueImpl::FontFamilyValueImpl): Fix comment.
- src/kdelibs/khtml/css/cssstyleselector.cpp: Remove some gratuitous diffs vs. KDE.
- src/kdelibs/khtml/html/html_objectimpl.cpp: (HTMLEmbedElementImpl::parseAttribute): Remove unneeded copy from KWQ's early days.
- src/kdelibs/khtml/html/html_tableimpl.cpp: (HTMLTableElementImpl::parseAttribute), (HTMLTablePartElementImpl::parseAttribute): Remove unneeded copy from KWQ's early days.
- src/kdelibs/khtml/html/htmltokenizer.cpp: (HTMLTokenizer::processToken): Redo the APPLE_CHANGES ifdef here.
- src/kdelibs/khtml/khtmlpart_p.h: Update to latest kde.
- src/kdelibs/khtml/khtmlview.cpp: (KHTMLView::KHTMLView): Add ifdef APPLE_CHANGES. (KHTMLView::~KHTMLView): Add ifdef APPLE_CHANGES. (KHTMLView::print): Remove code left in here during merge process.
- src/kwq/KWQKHTMLPart.mm: Remove unused setFontSizes(), fontSizes(), and resetFontSizes(). After the merge is landed, remove more.
- src/libwebcore.exp: Export updateStyleSelector() for WebKit.
- 2:55 PM Changeset in webkit [1019] by
-
- 6 edits in branches/kde_3_0_merge/JavaScriptCore
- kjs/internal.cpp:
- kjs/property_map.cpp:
- kjs/ustring.h: Removed some unneeded <config.h> includes so we are more similar to the real KDE sources.
- 2:02 PM Changeset in webkit [1018] by
-
- 2 deletes in branches/kde/JavaScriptCore/kjs
These files don't belong in the tree.
- 1:34 PM Changeset in webkit [1017] by
-
- 4 edits in trunk/WebKit
- Plugins.subproj/IFNullPluginView.mm: (-[IFNullPluginView drawRect:]): Moved a line of code to prevent pluginNotFound message from being sent twice.
Fixed 2896326 -- Alexander should show an error when pluginNotFoundForMIMEType: pluginPageURL: is called
Also made the minimum change required to use Alexander without running into
assertions, until the locationChangeHandler changes are finished.
- BrowserDocument.m: (-[BrowserDocument _saveScrollPosition]), (-[BrowserDocument _restoreScrollPosition]): Commented out guts of these methods, which were triggering an assertion. (The assertion is being triggered by the in-flux state of the locationChangeHandler stuff.)
(-[BrowserDocument locationChangeStartedForFrame:]),
(-[BrowserDocument locationChangeCommittedForFrame:]),
(-[BrowserDocument locationChangeDone:forFrame:]):
Changed wording of WEBKITDEBUG messages.
(-[BrowserDocument pluginNotFoundSheetEnded:returnCode:contextInfo:]),
(-[BrowserDocument pluginNotFoundForMIMEType:pluginPageURL:]):
Implementation for sheet that appears if plugin isn't found.
- 1:21 PM Changeset in webkit [1016] by
-
- 3 edits in trunk/WebKit
Fixed (removed) experimental code.
- 1:15 PM Changeset in webkit [1015] by
-
- 10 edits in branches/kde_3_0_merge/WebCore
Fix text to it displays at the right font size.
- src/kdelibs/khtml/css/cssstyleselector.cpp: (CSSStyleSelector::computeFontSizes): Apply the same SCREEN_RESOLUTION hack here that we do elsewhere.
- src/kdelibs/khtml/rendering/font.cpp: (Font::width): Use kMin instead of max (oops). (Font::update): Turn off font database chicanery.
- src/kwq/KWQKHTMLPart.mm: (KHTMLPart::zoomFactor): Use zoom factor 100, not 1.
- 1:12 PM Changeset in webkit [1014] by
-
- 1 edit in trunk/WebKit/Misc.subproj/WebKitDebug.m
Fixed compile problem.
- 1:05 PM Changeset in webkit [1013] by
-
- 1 edit in trunk/WebKit/Misc.subproj/WebKitDebug.m
removerd o
- 12:56 PM Changeset in webkit [1012] by
-
- 23 edits4 adds in trunk/WebKit
Changes to IFLocationChangeHandler.
Experimental allocator code, not to be used, not thread safe.!
- 12:26 PM Changeset in webkit [1011] by
-
- 10 edits in trunk/WebKit
- MIME.subproj/IFContentHandler.m: (-[IFContentHandler HTMLDocument]):
Made sure I didn't unnecessarily allocate html document strings
- MIME.subproj/IFDownloadHandler.h:
- MIME.subproj/IFDownloadHandler.m: (-[IFDownloadHandler suggestedFilename]), (-[IFDownloadHandler openAfterDownload:]):
Added the mentioned API's
- MIME.subproj/IFDownloadHandlerPrivate.h:
- MIME.subproj/IFDownloadHandlerPrivate.m: (-[IFDownloadHandlerPrivate init]), (-[IFDownloadHandlerPrivate dealloc]), (-[IFDownloadHandlerPrivate _suggestedFilename]), (-[IFDownloadHandlerPrivate _cancelDownload]), (-[IFDownloadHandlerPrivate _storeAtPath:]), (-[IFDownloadHandlerPrivate _finishedDownload]), (-[IFDownloadHandlerPrivate _openAfterDownload:]), (-[IFDownloadHandlerPrivate _openFile]), (-[IFDownloadHandlerPrivate _saveFile]), (-[IFDownloadHandler _initWithURLHandle:mimeHandler:]):
Cleaned up and added a lot error checking code to IFDownloadHandlerPrivate
- Plugins.subproj/IFNullPluginView.mm: (-[IFNullPluginView initWithFrame:mimeType:arguments:]), (-[IFNullPluginView drawRect:]):
Made sure I didn't unnecessarily allocate images
- Resources/plugin_document_template.html:
Plugins now have 100% of the window
- 12:23 PM Changeset in webkit [1010] by
-
- 15 edits in branches/kde_3_0_merge/WebCore
More fixes so text displays (still at wrong font size).
- src/kdelibs/khtml/rendering/font.cpp: (max): New helper. (Font::drawText): Simplified implementation for now. (Font::width): Simplified implementation for now.
- src/kwq/KWQColorGroup.mm: Reinstated QCOLOR_GROUP_SIZE.
- src/kwq/qt/qfontmetrics.h: Removed charWidth and changed _width to take QChar *.
- src/kwq/KWQFontMetrics.mm: Removed charWidth and changed _width to take QChar *.
- 11:30 AM Changeset in webkit [1009] by
-
- 28 edits in branches/kde_3_0_merge
Merged changes from KDE 3.0 final and did some build fixes.
- JavaScriptCore.pbproj/project.pbxproj: Added nodes2string.cpp.
- kjs/grammar.*: Regenerated.
- kjs/*.lut.h: Regenerated.
WebCore:
Merged changes from KDE 3.0 final. Other fixes to get things compiling.
- src/kdelibs/khtml/css/css_valueimpl.cpp: (CSSStyleDeclarationImpl::setProperty): Fix unused variable.
- src/kdelibs/khtml/khtmlview.cpp: (KHTMLView::contentsContextMenuEvent): Fix unused variable.
- src/kdelibs/khtml/rendering/font.cpp: (Font::drawText), (Font::width), (Font::update): Disable special "nsbp" logic for now. We can reenable it if necessary.
- src/kdelibs/khtml/rendering/render_replaced.cpp: Fix mismerge.
- src/kdelibs/khtml/rendering/render_text.cpp: (RenderText::nodeAtPoint): Fix unused variable.
- src/kwq/KWQApplication.mm: (QDesktopWidget::width), (QApplication::desktop): Fix mismerge.
- src/kwq/KWQColorGroup.mm: Fix QCOLOR_GROUP_SIZE.
- src/kwq/KWQFontMetrics.mm: (QFontMetrics::lineSpacing): New. (QFontMetrics::width): Remove unused optimization.
- src/kwq/qt/qfontmetrics.h: Add lineSpacing().
- 10:32 AM Changeset in webkit [1008] by
-
- 57 edits in branches/kde_3_0_merge
Add changes from KDE 3.0rc2 to 3.0 final.
- 9:50 AM Changeset in webkit [1007] by
-
- 486 edits2 adds in branches/kde_3_0_merge
Merged in changes from 3.0rc3 merge.
Apr 12, 2002:
- 7:28 PM Changeset in webkit [1006]
-
- 19 copies in branches/kde_3_0_merge
This commit was manufactured by cvs2svn to create branch
'kde_3_0_merge'.
- 7:28 PM Changeset in webkit [1005]
-
- 19 copies in tags/KDE_3_0_MERGE_ANCHOR
This commit was manufactured by cvs2svn to create tag
'KDE_3_0_MERGE_ANCHOR'.
- 7:28 PM Changeset in webkit [1004] by
-
- 3 edits in trunk/WebKit
Fixed build failure. Forgot to make IFDownloadHandler.h
a public header.
- WebKit.pbproj/project.pbxproj:
- 6:03 PM Changeset in webkit [1003] by
-
- 15 edits4 adds in trunk/WebKit
First implementation of IFDownloadHandler and IFDownloadHandlerPrivate.
Added:
- (void) startedDownloadWithHandler:(IFDownloadHandler *)downloadHandler
- (void) receivedProgress:(IFLoadProgress *)progress forDownloadHandler$
- (void) receivedError:(IFError *)error forDownloadHandler:(IFDownloadH$
to Alex's WebController.