Timeline
Jul 2, 2006:
- 4:36 PM Changeset in webkit [15140] by
-
- 5 edits in trunk/WebCore
Reviewed and landed by ggaren.
- platform/gdk/TransferJobManager.cpp Fixed broken dowload logic
- platform/gdk/ScrollViewGdk.cpp Add comment that scrollbarSize is a temporary variable
- Projects/gdk/webcore-gdk.bkl Defined NDEBUG build executable is miscompiled otherwise
- WebCoreSources.bkl added icon/SiteIcon.cpp editing/IndentOutdentCommand.cpp html/HTMLViewSourceDocument.cpp
- 11:17 AM Changeset in webkit [15139] by
-
- 2 edits in trunk/JavaScriptCore
Reviewed by Adele.
- Fixed <rdar://problem/4611197> REGRESSION: Liveconnect with Java test fails at http://www-sor.inria.fr/~dedieu/notes/liveconnect/simple_example.html
- JavaScriptCore.exp: Export symbols used by liveconnect
- 6:05 AM Changeset in webkit [15138] by
-
- 2 edits in trunk/WebKitTools
WebKitTools:
Reviewed by Alexy Proskuryakov. Patch by Mark Rowe.
Bug 9692: Warning about Safari extensions on every launch is obnoxious
http://bugzilla.opendarwin.org/show_bug.cgi?id=9692
- WebKitLauncher/WebKitNightlyEnabler.m: (myApplicationWillTerminate): Note that we are exiting cleanly. (cleanUpAfterOurselves): Install bundle load tracking only if we failed to exit cleanly on our last invocation. This doesn't play nicely with multiple concurrent instances of WebKit.app so it can be disabled via defaults write com.apple.Safari WKNEShouldMonitorShutdowns -bool NO.
- 5:23 AM Changeset in webkit [15137] by
-
- 2 edits in trunk/WebKitTools
WebKitTools:
Reviewed by Alexy Proskuryakov. Patch by Mark Rowe.
Bug 9654: Refresh Loop when accessing feed URLs
http://bugzilla.opendarwin.org/show_bug.cgi?id=9654
- WebKitLauncher/Info.plist: Don't claim to handle feed:// URLs.
- 5:02 AM Changeset in webkit [15136] by
-
- 3 edits in trunk/WebKitTools
WebKitTools:
Reviewed by Timothy Hatcher. Patch by Mark Rowe.
Bug 9689: Nightly builds should warn a user about potential problems when using
"Safari extensions"
http://bugzilla.opendarwin.org/show_bug.cgi?id=9689
- WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
- WebKitLauncher/WebKitNightlyEnabler.m: (myBundleDidLoad): Keep track of if any bundles that are loaded. (myApplicationWillFinishLaunching): Notify user if any bundles are loaded. (cleanUpAfterOurselves): Register for NSBundleDidLoadNotification and NSApplicationWillFinishLaunchingNotification notifications so that we can track bundle loads and notify the user at launch completion.
- 4:59 AM Changeset in webkit [15135] by
-
- 4 edits in trunk/WebCore
WebCore:
Reviewed by Timothy Hatcher. Build fix for Linux. Patch by Shawn Stricker.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=9684 [GDK] multiple little fixes and a few new things for Templinkstubs
- platform/gdk/ScrollViewGdk.cpp: (WebCore::ScrollView::setDrawable): Changed SCROLLBAR_SIZE to scrollbarSize.
- platform/gdk/TemporaryLinkStubs.cpp: (Image::drawTiled): Added missing parameter to argument list.
- platform/gdk/TransferJobManager.cpp: (WebCore::writeCallback): Added missing parenthesis to static_cast.
- 4:39 AM Changeset in webkit [15134] by
-
- 4 edits4 adds in trunk
WebCore:
Reviewed by Darin. Patch by Mitz.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=9674 REGRESSION (r15075): Blank or incomplete pages on digg.com
Replaced the requestingScript state bit added in the fix for bug 9317
with a m_requestingScript bool that is set before and restored
after calling ref() on a CachedScript.
Test: fast/tokenizer/nested-cached-scripts.html
- html/HTMLTokenizer.cpp: (WebCore::HTMLTokenizer::HTMLTokenizer): (WebCore::HTMLTokenizer::begin): (WebCore::HTMLTokenizer::scriptHandler): (WebCore::HTMLTokenizer::notifyFinished):
- html/HTMLTokenizer.h: (WebCore::HTMLTokenizer::State::):
LayoutTests:
Reviewed by Darin. Patch by Mitz.
- test for http://bugzilla.opendarwin.org/show_bug.cgi?id=9674 REGRESSION (r15075): Blank or incomplete pages on digg.com
- fast/tokenizer/nested-cached-scripts-expected.txt: Added.
- fast/tokenizer/nested-cached-scripts.html: Added.
- fast/tokenizer/resources/nested-1.js: Added.
- fast/tokenizer/resources/nested-2.js: Added.
Jul 1, 2006:
- 9:06 PM Changeset in webkit [15133] by
-
- 17 edits14 adds in trunk/JavaScriptCore
Reviewed by Maciej.
- Phase 2 in the JS API.
- Added support for specifying static tables of values -- this should obviate the need for using complicated callbacks for most lookups.
- API objects are now created with classes (JSClassRef) -- in order to support static values, and in order to prevent API objects from storing their data inline, and thus falling into the oversized (read: slow and prone to giving Maciej the frowny face) heap.
- Added two specialized JSObject subclasses -- JSCallbackFunction and JSCallbackConstructor -- to allow JSFunctionMake and JSConstructorMake to continue to work with the new class model. Another solution to this problem would be to create a custom class object for each function and constructor you make. This solution is more code but also more efficient.
- Substantially beefed up the minidom example to demonstrate and test a lot of these techniques. Its output is still pretty haphazard, though.
- Gave the <kjs/ preface to some includes -- I'm told this matters to building on some versions of Linux.
- Implemented JSValueIsInstanceOf and JSValueIsObjectOfClass
- Removed GetDescription callback. Something in the class datastructure should take care of this.
- API/JSBase.h:
- API/JSCallbackConstructor.cpp: Added. (KJS::): (KJS::JSCallbackConstructor::JSCallbackConstructor): (KJS::JSCallbackConstructor::implementsConstruct): (KJS::JSCallbackConstructor::construct): (KJS::JSCallbackConstructor::setPrivate): (KJS::JSCallbackConstructor::getPrivate):
- API/JSCallbackConstructor.h: Added. (KJS::JSCallbackConstructor::classInfo):
- API/JSCallbackFunction.cpp: Added. (KJS::): (KJS::JSCallbackFunction::JSCallbackFunction): (KJS::JSCallbackFunction::implementsCall): (KJS::JSCallbackFunction::callAsFunction): (KJS::JSCallbackFunction::setPrivate): (KJS::JSCallbackFunction::getPrivate):
- API/JSCallbackFunction.h: Added. (KJS::JSCallbackFunction::classInfo):
- API/JSCallbackObject.cpp: (KJS::): (KJS::JSCallbackObject::JSCallbackObject): (KJS::JSCallbackObject::init): (KJS::JSCallbackObject::~JSCallbackObject): (KJS::JSCallbackObject::className): (KJS::JSCallbackObject::getOwnPropertySlot): (KJS::JSCallbackObject::put): (KJS::JSCallbackObject::deleteProperty): (KJS::JSCallbackObject::implementsConstruct): (KJS::JSCallbackObject::construct): (KJS::JSCallbackObject::implementsCall): (KJS::JSCallbackObject::callAsFunction): (KJS::JSCallbackObject::getPropertyList): (KJS::JSCallbackObject::toBoolean): (KJS::JSCallbackObject::toNumber): (KJS::JSCallbackObject::toString): (KJS::JSCallbackObject::inherits): (KJS::JSCallbackObject::staticValueGetter): (KJS::JSCallbackObject::staticFunctionGetter): (KJS::JSCallbackObject::callbackGetter):
- API/JSCallbackObject.h:
- API/JSCharBufferRef.cpp:
- API/JSClassRef.cpp: Added. (JSClassCreate): (JSClassRetain): (JSClassRelease):
- API/JSClassRef.h: Added. (StaticValueEntry::StaticValueEntry): (StaticFunctionEntry::StaticFunctionEntry): (JSClass::JSClass):
- API/JSContextRef.cpp: (JSContextCreate): (JSEvaluate):
- API/JSContextRef.h:
- API/JSNode.c: Added. (JSNodePrototype_appendChild): (JSNodePrototype_removeChild): (JSNodePrototype_replaceChild): (JSNodePrototype_class): (JSNode_getNodeType): (JSNode_getChildNodes): (JSNode_getFirstChild): (JSNode_finalize): (JSNode_class): (JSNode_prototype): (JSNode_new): (JSNode_construct):
- API/JSNode.h: Added.
- API/JSNodeList.c: Added. (JSNodeListPrototype_item): (JSNodeListPrototype_class): (JSNodeList_length): (JSNodeList_getProperty): (JSNodeList_finalize): (JSNodeList_class): (JSNodeList_prototype): (JSNodeList_new):
- API/JSNodeList.h: Added.
- API/JSObjectRef.cpp: (JSObjectMake): (JSFunctionMake): (JSConstructorMake): (JSPropertyEnumerator::JSPropertyEnumerator): (JSObjectCreatePropertyEnumerator): (JSPropertyEnumeratorGetNext): (JSPropertyEnumeratorRetain): (JSPropertyEnumeratorRelease):
- API/JSObjectRef.h: (JSObjectCallbacks::):
- API/JSValueRef.cpp: (JSValueIsObjectOfClass): (JSValueIsInstanceOf):
- API/JSValueRef.h:
- API/Node.c: Added. (Node_new): (Node_appendChild): (Node_removeChild): (Node_replaceChild): (Node_ref): (Node_deref):
- API/Node.h: Added.
- API/NodeList.c: Added. (NodeList_new): (NodeList_length): (NodeList_item): (NodeList_ref): (NodeList_deref):
- API/NodeList.h: Added.
- API/minidom.c: (main): (print): (createStringWithContentsOfFile):
- API/minidom.js:
- API/testapi.c: (assertEqualsAsCharacters): (MyObject_getProperty): (MyObject_class): (myConstructor_callAsConstructor): (main):
- API/testapi.js:
- JavaScriptCore.xcodeproj/project.pbxproj:
- 8:20 PM Changeset in webkit [15132] by
-
- 2 edits in trunk/WebCore
WebCore:
Reviewed by NOBODY (build fix).
- platform/gdk/TransferJobManager.cpp: (WebCore::writeCallback): Changed 'static_cat' to 'static_cast'.
- 7:50 PM Changeset in webkit [15131] by
-
- 2 edits in trunk/WebKit
WebKit:
Reviewed by NOBODY (fixed Tim's build fix).
- WebView/WebView.m: Added back missing '/' at the beginning of the file.
- 6:31 PM Changeset in webkit [15130] by
-
- 2 edits in trunk/WebKit
Reviewed by NOBODY (build fix)
- WebView/WebView.m: (-[WebView _isMIMETypeRegisteredAsPlugin:]): Changed nil to NO (typo).
- 12:13 PM Changeset in webkit [15129] by
-
- 2 edits in tags/WebKit-521.14.1/WebKit
Build fix for case-sensitive filesystems and versioning.
- 12:11 PM Changeset in webkit [15128] by
-
- 1 copy in tags/WebKit-521.14.1/WebKit
New tag part 2.
- 12:10 PM Changeset in webkit [15127] by
-
- 1 add in tags/WebKit-521.14.1
New tag.
- 12:08 PM Changeset in webkit [15126] by
-
- 1 edit in trunk/WebKit/WebKit.xcodeproj/project.pbxproj
Build fix for case-sensitive filesystems.