Re: [webkit-dev] How to add Maxthon's port.

2009-06-29 Thread David Kilzer
The Haiku port is Submitting their patches now. See the details here. https://bugs.webkit.org/show_bug.cgi?id=26620 Dave From: zengweihong weihong.z...@hotmail.com To: bfulg...@gmail.com Cc: webkit webkit-dev@lists.webkit.org; opensou...@maxthon.net Sent:

Re: [webkit-dev] Crash on the Mac (RapidWeaver plugin and Safari 4)

2009-06-12 Thread David Kilzer
Hi Gilberto, Please file a bug on either https://bugreport.apple.com/ or https://bugs.webkit.org with explicit steps on how to reproduce the crash, then report the bug number here. Thanks! Dave From: Gilberto De Faveri gilberto.defav...@omnidea.it To:

Re: [webkit-dev] [wxWindows] ubuntu build problem

2009-06-12 Thread David Kilzer
It sounds like the wxWindows build is broken due to a file missing from its build system. (Find the source file with JSC::jsonTable() defined in it, then add it to the wx build system files.) I've copied Kevin Ollivier, the port maintainer, so that he's aware of the issue. Kevin, any chance

Re: [webkit-dev] What's going on with the debug Leopard bot on build.webkit.org?

2009-06-05 Thread David Kilzer
I filed two bugs which seem to cover all the failures (although I did not click on every single failing SVG result diff): Bug 26218: REGRESSION: LayoutTests/fast/dom/Window/orphaned-frame-access.html fails on Debug builds https://bugs.webkit.org/show_bug.cgi?id=26218 Bug 26219: REGRESSION: 92

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-05 Thread David Kilzer
I think this is a great direction to move in, but (IMO) any such tool should be tightly integrated with bugs.webkit.org so that (a) you don't have to post the same patch more than once, (b) the review status of the patch is visible in bugs.webkit.org without clicking on a link and (c) it's easy

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-05 Thread David Kilzer
o...@chromium.org To: Darren VanBuren onekop...@gmail.com Cc: David Kilzer ddkil...@webkit.org; Jeremy Orlow jor...@chromium.org; WebKit Development webkit-dev@lists.webkit.org Sent: Friday, June 5, 2009 7:25:40 PM Subject: Re: [webkit-dev] to reitveld or not to reitveld This is what I meant

Re: [webkit-dev] Safari 4: all apps which use Webkit freezing at same time

2009-05-29 Thread David Kilzer
Hi Ben, The best thing to do in this case is to file a bug report with Apple on https://bugreport.apple.com/. I'll send you a list of steps on how to do this off the list. Dave From: Benjamin Jackson bhjack...@gmail.com To: webkit-dev@lists.webkit.org

Re: [webkit-dev] Webkit Rendered Image

2009-05-27 Thread David Kilzer
Try looking at source in WebCore/rendering/. Dave From: webkitUser psai...@yahoo.com To: webkit-dev@lists.webkit.org Sent: Wednesday, May 27, 2009 3:59:28 AM Subject: Re: [webkit-dev] Webkit Rendered Image Hi, Can somebody please give me some pointers

Re: [webkit-dev] Multithread issue

2009-05-27 Thread David Kilzer
This assertion is telling you that the code expects to be running on the main thread. You're also probably running a debug build since assertions are disabled in release builds. Dave From: Matt Bockt bocktm...@gmail.com To: webkit-dev@lists.webkit.org Sent:

Re: [webkit-dev] Proposal for a new way to handle porting #ifdefs

2009-05-23 Thread David Kilzer
Another aspect of this proposal is how to handle source files that have #if ENABLE(FEATURE)/#endif guards around all of their source code, for example: Bug 25756: Explicit guards for ENABLE_GEOLOCATION https://bugs.webkit.org/show_bug.cgi?id=25756 There are essentially two options here: 1. Add

Re: [webkit-dev] A problem with the data attribute of the object tag

2009-05-19 Thread David Kilzer
Unless the movie was loaded from a file:/// URL, it's probably your web server setting the MIME type for the movie file: $ grep 'avi$' /etc/httpd/mime.types video/x-msvideo avi $ grep 'wmv$' /etc/httpd/mime.types video/x-ms-wmv wmv

Re: [webkit-dev] build on ubuntu not working as expected

2009-05-19 Thread David Kilzer
Yes, your messages are getting to the list. Your best bet is to contact the wxWebKit maintainer, Kevin Ollivier, who I've copied on this message. Dave From: anurag uniyal anuraguni...@yahoo.com To: webkit-dev@lists.webkit.org Sent: Tuesday, May 19, 2009

Re: [webkit-dev] Proposal for a new way to handle porting #ifdefs

2009-05-05 Thread David Kilzer
1b) WINCE actually includes plenty of WIN but in some cases does things differently. How to make this distinction without lots of and ||? There are various design patterns that may be used to alleviate macros, such as subclassing and use of delegates. Each case will probably require a

Re: [webkit-dev] how does Webkit handle font

2009-04-21 Thread David Kilzer
No, libicu is used to lay out international text. CSS fonts are handled by files with CSS and font in their name, which will lead you to other files with font in their name under the WebCore/platform/graphics/ directory. $ find WebCore -iname \*font\* -print | grep -i css

Re: [webkit-dev] How to write plug-ins in webkit?

2009-04-10 Thread David Kilzer
Apple documentation for NSAPI (Netscape) plug-ins and Web (Objective-C) plug-ins: http://developer.apple.com/DOCUMENTATION/InternetWeb/Conceptual/WebKit_PluginProgTopic/WebKitPluginTopics.html Example/test code in the WebKit source tree:

Re: [webkit-dev] WebKit caching

2009-04-10 Thread David Kilzer
Why don't you just send a couple HTTP headers with the JavaScript and CSS resources when they leave your web server: Pragma: no-cache Cache-Control: no-cache Or do you need a generalized solution for any web site? Note that this may not work except in recent nightly builds due to

Re: [webkit-dev] Customization of WebKit.

2009-04-02 Thread David Kilzer
The FEATURE_DEFINES variables in *.xcconfig files are only used when building WebKit for Safari on Mac OS X. Unless you're working on that specific port, you need to enable/disable those flags elsewhere. Hint: $ grep -l -r ENABLE_XSLT WebCore WebCore/Configurations/WebCore.xcconfig

Re: [webkit-dev] webkit-dev:loadURL failed.

2009-03-31 Thread David Kilzer
Hi Partin, Please file a bug report on https://bugs.webkit.org/. Thanks! Dave From: Partin-巴丁 xyts...@gmail.com To: webkit-dev@lists.webkit.org Sent: Tuesday, March 31, 2009 3:08:45 AM Subject: Re: [webkit-dev] webkit-dev:loadURL failed. The project

Re: [webkit-dev] Running test case under debugger gdb

2009-03-20 Thread David Kilzer
On Mac OS X, you can start gdb and use: (gdb) attach -waitfor DumpRenderTree Then start run-webkit-tests. If your gdb doeesn't have attach -waitfor, you can just put a timeout in run-webkit-tests like this after the dump tool is opened but before any tests are sent to it: sleep(15); # sleep

Re: [webkit-dev] Diabling XML, XPATH, SVG, and XSLT features of WebKit

2009-03-19 Thread David Kilzer
For the Apple Mac port, look at the list of FEATURE_DEFINES in JavaScriptCore/Configurations/JavaScriptCore.xcconfig, WebCore/Configurations/WebCore.xcconfig and WebKit/mac/Configurations/WebKit.xcconfig. For other ports, look in related build files for the ENABLE_FOO macros. Dave

Re: [webkit-dev] about WebCore\bindings\scripts documents

2009-03-18 Thread David Kilzer
The *.idl files are a custom Interface Definition Language for generating source code for DOM bindings. On the Apple Mac port, there are (generally speaking) two such bindings built for each *.idl file: - JavaScript bindings in C++ created by CodeGeneratorJS.pm; these files are the glue

Re: [webkit-dev] Use SquirrelFishExtreme Alone, Many Questions

2009-03-18 Thread David Kilzer
On Wednesday, March 18, 2009 9:02:04 AM, Brian Barnes wrote: 1) Can I compile SFE alone (without webkit) Yes. Squirrelfish Extreme (SFX) is an implementation detail (albeit a very significant detail :) of the JavaScriptCore framework. 2) Are there XCode and MVC projects (for SPE alone),

Re: [webkit-dev] Use SquirrelFishExtreme Alone, Many Questions

2009-03-18 Thread David Kilzer
[...] Is there good example code for: (1) adding an object to the global objects that has it's own functions and properties (2) getting call backs for getters, setters, etc, in objects You might try the files in the JavaScriptCore/API/tests/ directory. I haven't used the API before, so

Re: [webkit-dev] how to obtain the value of the html input by ID

2009-03-17 Thread David Kilzer
There currently aren't C++ bindings available for the DOM (that mirror the DOM available in JavaScript). They would have to be implemented. See the scripts in the WebCore/bindings/scripts directory. Dave - Original Message From: zhenghe zhang zhenghe.zh...@gmail.com To:

Re: [webkit-dev] where strore html widget name and id

2009-03-17 Thread David Kilzer
In WebCore/dom/Element.h, there is a member variable named 'nameAttrMap' that holds name/value pairs for the attributes of each element. If you then look at WebCore/html/HTMLElement.cpp, you'll find an id() method that pulls the id out of the map, for example. Dave

Re: [webkit-dev] x86-64 JIT

2009-03-17 Thread David Kilzer
Which version of gcc are you using? Older versions (think gcc-3.x) are known to have issues compiling JavaScriptCore, although I don't recall reading about this particular issue. Dave - Original Message From: Mike Hommey mh+web...@glandium.org To: webkit-dev@lists.webkit.org

Re: [webkit-dev] How can I search through webkit-dev mailling list archive?

2009-03-11 Thread David Kilzer
Yes, use site:lists.webkit.org/pipermail/webkit-dev as a keyword in a Google search. For example: http://www.google.com/search?client=safarirls=enq=site:lists.webkit.org/pipermail/webkit-dev+helpie=UTF-8oe=UTF-8 Dave From: 조정흠 journeyer...@gmail.com To:

Re: [webkit-dev] JavaScriptCore or WebCore

2009-03-11 Thread David Kilzer
JavaScriptCore/kjs was removed and files were moved to other subdirectories like JavaScriptCore/runtime. Running svn log -v | less and searching for the old file name will usually help you find what was renamed. Or look in JavaScriptCore/ChangeLog* files for the same information. Dave

Re: [webkit-dev] Stable tiger engine build?

2009-03-10 Thread David Kilzer
Try this command: svn ls http://svn.webkit.org/repository/webkit/releases/Apple/ Or this URL: http://trac.webkit.org/browser/releases/Apple/ Dave From: Swp swp2...@gmail.com To: webkit-dev@lists.webkit.org Sent: Tuesday, March 10, 2009 12:58:54 AM Subject:

Re: [webkit-dev] Fwd: RSS support

2009-03-09 Thread David Kilzer
The RSS support (that you see in Safari) is not part of WebKit. Dave From: RamaMohanReddy B b.ramamohanre...@gmail.com To: webkit-dev@lists.webkit.org Sent: Sunday, March 8, 2009 9:40:05 PM Subject: [webkit-dev] Fwd: RSS support Hi, Is RSS/Atom

Re: [webkit-dev] four perl files hard-code the path to gcc

2009-03-08 Thread David Kilzer
I agree that the path shouldn't be hard-coded, so I filed: Bug 24454: Path to perl should not be hard-coded https://bugs.webkit.org/show_bug.cgi?id=24454 Salvation lies within: Bug 392184 - Users should be allowed to delete their own account https://bugzilla.mozilla.org/show_bug.cgi?id=392184

Re: [webkit-dev] request to add SH4 platform

2009-03-05 Thread David Kilzer
Hi Simone, Code contribution guidelines are here: http://webkit.org/coding/contributing.html Please open a new bug on https://bugs.webkit.org/ and post your patch there with its review flag set. (Feel free to CC me on the bug.) Note that your patch should also have ChangeLog entries, as

Re: [webkit-dev] wap support schedule

2009-03-02 Thread David Kilzer
WAP support is not enabled on the Windows or Mac nightly builds on http://nightly.webkit.org/. You must enable it yourself and rebuild from source. Dave From: 조정흠 journeyer...@gmail.com To: webkit-dev@lists.webkit.org Sent: Monday, March 2, 2009 4:00:15 AM

Re: [webkit-dev] wap support schedule

2009-03-02 Thread David Kilzer
Sounds like a bug. Please file a new bug at https://bugs.webkit.org/ about this issue. Thanks! Dave From: 조정흠 journeyer...@gmail.com To: David Kilzer ddkil...@webkit.org Cc: webkit-dev@lists.webkit.org Sent: Monday, March 2, 2009 8:14:10 PM Subject: Re

Re: [webkit-dev] about javaScript parse

2009-02-27 Thread David Kilzer
Change: divinput type=text Name=text1 value=Hello world! //div to: divinput type=text id=text1 value=Hello world! //div and reload. Dave From: zhenghe zhang zhenghe.zh...@gmail.com To: webkit-dev@lists.webkit.org Sent: Friday, February 27, 2009 2:13:06

Re: [webkit-dev] Build error

2009-02-25 Thread David Kilzer
In this case, project would mean one of: JavaScriptCore, WebCore or WebKit. And config would mean one of: Release or Debug. Dave From: bryon smith cassanova_is_back2...@yahoo.com To: webkit-dev@lists.webkit.org Sent: Tuesday, February 24, 2009 11:34:40 PM

Re: [webkit-dev] How to build a webkit release build

2009-02-25 Thread David Kilzer
You need to check out trunk from Subversion first (to get all of the other files): $ svn co http://svn.webkit.org/repository/webkit/trunk WebKit Then update each of the JavaScriptCore, WebCore, and WebKit subdirectories to the Subversion branch you're interested in: $ cd WebKit/JavaScriptCore

Re: [webkit-dev] An old dragging problem

2009-02-24 Thread David Kilzer
Hi Eric, If you're referring to rdar://problem/4792468, please do file a bug on https://bugs.webkit.org/ and attach test cases (unless you're going to host the test cases indefinitely). Also, please add the InRadar keyword to the bug and note rdar://problem/4792468 in a comment. Thanks!

Re: [webkit-dev] Queries on Bug: 23310

2009-02-17 Thread David Kilzer
I don't think modifying KURL to parse JavaScript syntax is the correct approach. I have a fix for this in my local tree. I will try to post a patch for it today for review. Dave From: Vikram Hegde vhegd...@yahoo.com To: webkit-dev@lists.webkit.org Sent:

Re: [webkit-dev] Thank you very much! I edited configure.ac and...

2009-02-17 Thread David Kilzer
) due to the inconsistent package names for this library. Dave From: nguyen hai deuxliq...@yahoo.com To: David Kilzer ddkil...@webkit.org Sent: Monday, February 16, 2009 7:01:24 PM Subject: Thank you very much! I edited configure.ac and... Hi Dave, I opened

Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-17 Thread David Kilzer
Dave, may I suggest that lib version requirements to consider Fedora9? I mean can we loose the requirements, or use OS specific one so FC9 just needs 2.4? Sure. I'd suggest filing a bug on https://bugs.webkit.org/ with a patch for review. I don't use the Linux port of WebKit--was just trying

Re: [webkit-dev] error: Cannot find icu-config. The ICU library is needed.

2009-02-16 Thread David Kilzer
Try installing the libicu package. Dave From: nguyen hai deuxliq...@yahoo.com To: webkit-dev@lists.webkit.org Sent: Sunday, February 15, 2009 11:56:25 PM Subject: [webkit-dev] error: Cannot find icu-config. The ICU library is needed. Hi all, I build webkit

Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-16 Thread David Kilzer
The autogen.sh script wants libsoup-2.4 OR NEWER. libsoup-2.4.1 satisfies that requirement, so try installing that version. Dave From: nguyen hai deuxliq...@yahoo.com To: webkit-dev@lists.webkit.org Sent: Monday, February 16, 2009 1:17:54 AM Subject:

Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-16 Thread David Kilzer
([LIBSOUP_CFLAGS]) AC_SUBST([LIBSOUP_LIBS]) fi Note that $LIBSOUP_REQUIRED_VERSION is set to 2.23 anyway. Dave From: nguyen hai deuxliq...@yahoo.com To: David Kilzer ddkil...@webkit.org Sent: Monday, February 16, 2009 7:05:40 AM Subject: Re: [webkit-dev] checking

Re: [webkit-dev] Contributing to the documentation Wiki?

2009-02-16 Thread David Kilzer
Hi Frank, I believe it is: 1. Create an account (on macosforge.org; the accounts are shared with webkit.org). 2. Edit the wiki. http://trac.webkit.org/wiki Dave From: Frank Zerangue fzer...@cisco.com To: Webkit Development List webkit-dev@lists.webkit.org

Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-16 Thread David Kilzer
09:28:53 -0800 (PST) schrieb David Kilzer ddkil...@webkit.org: Sorry, I was reading that libsoup-2.23 was older than libsoup-2.4. It looks like configure.ac is not comparing the versions correctly. Try making this change (changing libsoup-2.4 to just libsoup in configure.ac) and rerunning

Re: [webkit-dev] Regarding Bug 23310

2009-02-15 Thread David Kilzer
It is valid and it is still open because it's Status is New. https://bugs.webkit.org/show_bug.cgi?id=23310 Dave From: Nilesh Patil vni...@gmail.com To: webkit-dev@lists.webkit.org webkit-dev@lists.webkit.org Sent: Sunday, February 15, 2009 12:02:06 AM

Re: [webkit-dev] Regarding Bug 23310

2009-02-15 Thread David Kilzer
automatically is set to 'about:blank'. I think instead of this it should point to base URL inside Document. I am currently looking at KURL.cpp init() method. Please comment Thanks Regards Niilesh On Sun, Feb 15, 2009 at 4:16 PM, David Kilzer ddkil...@webkit.org wrote: It is valid and it is still

Re: [webkit-dev] li with position outside combined with img float left problem

2009-02-05 Thread David Kilzer
Please file a bug on https://bugs.webkit.org/. Thanks! Dave From: Magnus Rembold magnus.remb...@munterbund.de To: webkit-dev@lists.webkit.org Sent: Thursday, February 5, 2009 11:41:58 AM Subject: [webkit-dev] li with position outside combined with img float

Re: [webkit-dev] Edit mode bug inserting br ?

2009-01-06 Thread David Kilzer
Did you try the WebKit nightly to see if the issue is fixed there? Dave From: Diego Taylor diego.tay...@gmail.com To: David Kilzer ddkil...@webkit.org Sent: Tuesday, January 6, 2009 5:35:00 AM Subject: Re: [webkit-dev] Edit mode bug inserting br ? Hi Dave

Re: [webkit-dev] Webpage Limits

2009-01-05 Thread David Kilzer
Have you tried writing a test and testing each browser? div style=min-width: 100px; min-height: 100px;Hello World/div Dave From: Enrique Francesco enrique.france...@gmail.com To: webkit-dev@lists.webkit.org Sent: Monday, January 5, 2009 10:40:16 AM

Re: [webkit-dev] free lunch for a webCore dev?

2009-01-05 Thread David Kilzer
Have you tried asking questions on the #webkit IRC channel on irc.freenode.net? http://webkit.org/contact.html Dave From: eleith ele...@diffbot.com To: webkit-dev@lists.webkit.org Sent: Monday, January 5, 2009 1:41:51 PM Subject: [webkit-dev] free lunch for a

Re: [webkit-dev] Edit mode bug inserting br ?

2009-01-05 Thread David Kilzer
Which version of Safari did you try? There have been some HTML editing fixes recently in WebKit. Have you tried a nightly WebKit build? http://nightly.webkit.org/ Dave From: Diego Taylor diego.tay...@gmail.com To: webkit-dev@lists.webkit.org Sent: Monday,

Re: [webkit-dev] about cookie

2009-01-04 Thread David Kilzer
$ find WebCore -iname \*cookie\* WebCore/platform/CookieJar.h WebCore/platform/mac/CookieJar.mm WebCore/platform/network/curl/CookieJarCurl.cpp WebCore/platform/network/soup/CookieJarSoup.cpp WebCore/platform/network/soup/CookieJarSoup.h WebCore/platform/network/win/CookieJarCFNetWin.cpp

Re: [webkit-dev] Getting more buildbots green

2009-01-03 Thread David Kilzer
To me it seems like the result of some tests have impact on the others. This usually indicates some state isn't being reset (in DumpRenderTree or in WebKit) between tests for the GTK+ port. Individual test results should not rely on running previous tests. (The --random and --reverse flags

Re: [webkit-dev] About Dom tree

2008-12-31 Thread David Kilzer
The map's parent is a body tag that's implicitly added during parsing to fix the DOM tree. See Ian Hixie's live DOM viewer for a visual representation of this (paste your HTML into the top textarea): http://software.hixie.ch/utilities/js/live-dom-viewer/ Dave

Re: [webkit-dev] globals and guidelines

2008-12-09 Thread David Kilzer
Hi Cary, There currently isn't a convention. It would be great if you filed a bug on https://bugs.webkit.org/ to update the coding-style guidelines (and provided a patch if you have an opinion on the matter). Thanks! Dave From: Cary Clark [EMAIL

Re: [webkit-dev] globals and guidelines

2008-12-09 Thread David Kilzer
And by a patch I meant a patch to coding-style.html, not to change every static variable (yet :). Dave From: David Kilzer [EMAIL PROTECTED] To: Cary Clark [EMAIL PROTECTED] Cc: webkit-dev@lists.webkit.org Sent: Tuesday, December 9, 2008 12:51:57 PM Subject

Re: [webkit-dev] cygwin gives Bad interpreter No such file or directory

2008-12-06 Thread David Kilzer
Run perl --version to see which build/version of Perl you're using, and which perl to see where in your path the perl.exe binary is located. Dave From: Andrew Adcock [EMAIL PROTECTED] To: Darren VanBuren [EMAIL PROTECTED] Cc: webkit-dev@lists.webkit.org Sent:

Re: [webkit-dev] cygwin gives Bad interpreter No such file or directory

2008-12-06 Thread David Kilzer
That means you don't have Perl installed with Cygwin. Try repeating the installation step(s) on webkit.org for installing Cygwin (Step 3 under Windows): http://webkit.org/building/tools.html Dave From: Andrew Adcock [EMAIL PROTECTED] To: David D. Kilzer

Re: [webkit-dev] webkit documentation

2008-11-21 Thread David Kilzer
, David Kilzer [EMAIL PROTECTED] wrote: We update the web site through patches. Just file a bug on bugs.webkit.org and attach a patch with ChangeLog for review! Dave On Mon, 7/21/08, Jack Wootton [EMAIL PROTECTED] wrote: OK, it seems this is a good place to start http://developer.apple.com

Re: [webkit-dev] Problem with transparency and webpages without bgcolor definition - Bug?

2008-11-20 Thread David Kilzer
Hi Bernd, Please file a bug on https://bugs.webkit.org/enter_bug.cgi?product=WebKit and attach a patch for review. Thanks! Dave From: Weber, Bernd [EMAIL PROTECTED] To: webkit-dev@lists.webkit.org Sent: Thursday, November 20, 2008 7:43:26 PM Subject:

Re: [webkit-dev] Build errors

2008-11-18 Thread David Kilzer
I see a warning and an error that should be investigated. This looks like an unsupported command-line switch (may be nothing, or could be the cause of the build failure): if sort /cygdrive/c/Users/DTENNE~1/WebKit/WebCore/css/CSSPropertyNames.in

Re: [webkit-dev] issue: accessing DOM elements directly, without using getElementById() from inside javascripts

2008-11-12 Thread David Kilzer
Please file a bug using https://bugs.webkit.org/enter_bug.cgi?product=WebKit and attach your reduced test case. Thanks! Dave From: Deshpande, Raghavendra [EMAIL PROTECTED] To: webkit-dev@lists.webkit.org webkit-dev@lists.webkit.org Sent: Wednesday, November

Re: [webkit-dev] issue: accessing DOM elements directly, without using getElementById() from inside javascripts

2008-11-12 Thread David Kilzer
, Raghavendra [EMAIL PROTECTED] To: David Kilzer [EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 11:28:33 AM Subject: RE: [webkit-dev] issue: accessing DOM elements directly, without using getElementById() from inside javascripts Hello Dave, I would like to share my opinion. As per my

Re: [webkit-dev] leak

2008-11-04 Thread David Kilzer
On Tue, 11/4/08, mario bensi [EMAIL PROTECTED] wrote: I seen in Changeset 3810, you force a leak, it's the same thing for the cache and others parts in webCore, I would understand why you want leak some part of code ? Do you mean r38104? http://trac.webkit.org/changeset/38104 This

Re: [webkit-dev] make[1]: *** [libWebCore.la] Error 255

2008-11-03 Thread David Kilzer
-ljpeg -L/usr/webkit/lib -lpng12 -lpthread make[1]: *** [libWebCore.la] Error 255 make[1]: Leaving directory `/usr/webkit/src/WebKit-r37990' make: *** [all] Error 2 -Original Message- From: David Kilzer [mailto:[EMAIL PROTECTED] Sent: Friday, October 31, 2008 8:20 PM

Re: [webkit-dev] make[1]: *** [libWebCore.la] Error 255

2008-10-31 Thread David Kilzer
On Fri, 10/31/08, Bn, Sharath [EMAIL PROTECTED] wrote: I get the following error after I give make command, Can anybody help me to fix this problem make[1]: *** [libWebCore.la] Error 255 make[1]: Leaving directory `/usr/webkit/src/WebKit-r37990' make: *** [all] Error 2 The interesting

Re: [webkit-dev] Geolocation questions

2008-10-31 Thread David Kilzer
On Fri, 10/31/08, Holger Freyther [EMAIL PROTECTED] wrote: Hey, I have started implementing a GeoLocation service for Gtk+ using the Gypsy interface. I have some comments and questions: 1.) Could we remove GeolocationService::create from GeolocationService.cpp? Any platform that

Re: [webkit-dev] problems in cross compiling webkit - Execution of JavaScriptCore/kjs/create_hash_table aborted due to compilation errors.

2008-10-30 Thread David Kilzer
/dftables line 245. make: *** [JavaScriptCore/pcre/chartables.c] Error 255 Pls let me know how to solve this build error Sharath -Original Message- From: David Kilzer [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2008 12:00 AM To: Bn, Sharath Cc: webkit-dev

Re: [webkit-dev] Save Page - Ideas

2008-10-30 Thread David Kilzer
On Thu, 10/30/08, zaheer ahmad [EMAIL PROTECTED] wrote: iam working on implementing save page functionality. Looks like its not already supported in the core. Apple's Mac port saves .webarchive files. The format is specific to the CoreFoundation framework, but there is platform-specific

Re: [webkit-dev] How to access resource meta-data

2008-10-29 Thread David Kilzer
On Wed, 10/29/08, Andrew S. Townley [EMAIL PROTECTED] wrote: Fair enough. What I'm looking for at a minimum is the headers associated with each HTTP response. It would be nice to also be able to extract any HTML meta tags and have access to those as well. Other interesting things

Re: [webkit-dev] problems in cross compiling webkit - Execution of JavaScriptCore/kjs/create_hash_table aborted due to compilation errors.

2008-10-23 Thread David Kilzer
] Error 255 Regards Sharath.B.N -Original Message- From: David Kilzer [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 7:44 PM To: Bn, Sharath Cc: webkit-dev@lists.webkit.org Subject: Re: [webkit-dev] problems in cross compiling webkit - Execution of JavaScriptCore/kjs

Re: [webkit-dev] problems in cross compiling webkit - Execution of JavaScriptCore/kjs/create_hash_table aborted due to compilation errors.

2008-10-22 Thread David Kilzer
On Wed, 10/22/08, Bn, Sharath [EMAIL PROTECTED] wrote: /usr/bin/perl JavaScriptCore/kjs/create_hash_table JavaScriptCore/kjs/keywords.table DerivedSources/lexer.lut.h Global symbol @nameEntries requires explicit package name at JavaScriptCore/kjs/create_hash_table line 218. Execution of

Re: [webkit-dev] Webkit (Mobile Safari) issues in the iPhone

2008-10-16 Thread David Kilzer
On Wed, 10/15/08, Diego Taylor [EMAIL PROTECTED] wrote: On Thu, Oct 16, 2008 at 2:09 AM, David Kilzer [EMAIL PROTECTED] wrote: Having said that, if you're seeing an issue with -[UIWebView stringByEvaluatingJavaScriptFromString:], please file a bug on http://developer.apple.com/bugreporter

Re: [webkit-dev] Add HTTP headers to WebView URL request with and without redirection

2008-10-09 Thread David Kilzer
If you want to do it for every request inside a WebView, why not just implement the resource load delegate method this way: - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse

Re: [webkit-dev] install Webkit in Fedora

2008-10-08 Thread David Kilzer
Aren't GLib the dev tools in the glib-dev package? # yum install glib-dev Dave On Wed, 10/8/08, houda hocine [EMAIL PROTECTED] wrote: hi, I am in the process of installing webkit in Fedora 9, but I have this error message: configure: error: You need the GLib dev tools in your path

Re: [webkit-dev] Testing - Compilating Webcore

2008-10-08 Thread David Kilzer
On Wed, 10/8/08, Sherif [EMAIL PROTECTED] wrote: Could any body please help me in compiling the webcore? I ve macos, 10.5 and xcode. Only the souce code of Webcore in a folder. Q1: why Should i compile javascriptcore first before compiling webcore? This is a note in the readme but i

Re: [webkit-dev] Database Storage

2008-10-03 Thread David Kilzer
Not discussed yet is that data is secured between JavaScript from a web page on Site A accessing data originally stored from a web page on Site B. This is not allowed. Note that a web page served from http://www.domain.com/ cannot access a database saved from a web page served from

Re: [webkit-dev] JavascriptCore

2008-09-25 Thread David Kilzer
On Thu, 9/25/08, Sherif [EMAIL PROTECTED] wrote: How can i start editing the javascriptcore to implement letter shaping? Font rendering is done in WebCore, not JavaScriptCore. Arabic is rendered using the complex text code path. Look for files with Font in their name, search for complex,

Re: [webkit-dev] JavascriptCore

2008-09-25 Thread David Kilzer
It is not a nightly build I thought that the webcore can support unicode, thanks, David Kilzer wrote: On Thu, 9/25/08, Sherif [EMAIL PROTECTED] wrote: How can i start editing the javascriptcore to implement letter shaping? Font rendering is done in WebCore

Re: [webkit-dev] rookie questions

2008-09-24 Thread David Kilzer
On Wed, 9/24/08, Albert Law [EMAIL PROTECTED] wrote: 3) I got the code but McAfee On-Access Scan sees LayoutTests\fast\encoding\*\decoder-allow-null-chars.* as containing Exploit-ScriptNull (Trojan). Anyone else? See also: McAfee Antivirus reports false positive when checking out WebKit

Re: [webkit-dev] Some thoughts about platform flags

2008-09-24 Thread David Kilzer
On Wed, 9/24/08, Darin Adler [EMAIL PROTECTED] wrote: PS: We could also consider coming up with a new name for PLATFORM(MAC) or PLATFORM(WIN) that expresses this more clearly. That's a challenge, but I wouldn't rule out changing the name for clarity if we can come up with something

Re: [webkit-dev] iPhone + SVG

2008-09-23 Thread David Kilzer
On Tue, 9/23/08, Nikolas Zimmermann [EMAIL PROTECTED] wrote: I came around a page using SVG on the iPhone today, and I'm puzzled - it actually displays SVG content. That means, iPhone supports SVG?! Since when is it included? Must have been the last firmware update 2.1? Yes, SVG was

Re: [webkit-dev] HTML5 Application Cache

2008-09-22 Thread David Kilzer
On Thu, 9/18/08, Michael Nordman [EMAIL PROTECTED] wrote: * Is this stuff built into shipping Safari or iPhone browsers yet? This feature shipped with iPhone OS 2.1. When you use Add to Home Screen from the + button on Safari for iPhone, a web application with a manifest defined (per the

Re: [webkit-dev] Webkit Support Library

2008-09-16 Thread David Kilzer
On Tue, 9/16/08, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have no means to compile webkit myself. Is there a reason you can't use MS Visual C++ Express 2005 from Microsoft? It's free. Instructions for installing it are here: http://webkit.org/building/tools.html Unless I'm mistaken, I

Re: [webkit-dev] Where can I get basic WebKit software?

2008-09-05 Thread David Kilzer
1) I am really wondering whether the above all modules are related to QtPort or basic independent Webkit library? All of those directories are for the Qt port of WebKit. The platform code just isn't in WebCore/platform, it's in multiple platform directories beneath the WebCore tree. 2) I

Re: [webkit-dev] localization service for Webkit ?

2008-09-05 Thread David Kilzer
On Fri, 9/5/08, Matthieu C [EMAIL PROTECTED] wrote: I'm curious to find out if it will be possible to access from Javascript or other mechanisms the user localization (Lat/Long) and then use them onto my web application ? This is not currently available. Google has written a Geolocation API

Re: [webkit-dev] (no subject)

2008-09-05 Thread David Kilzer
.1.0.0 Dave On Fri, 9/5/08, rakesh sadhu [EMAIL PROTECTED] wrote: i also tried with root permissions!!! sudo make install but still same error!!! On Sat, Sep 6, 2008 at 3:03 AM, David Kilzer [EMAIL PROTECTED] wrote: Do you have write access to /usr/local/lib? Perhaps you need to run make

Re: [webkit-dev] WTF_USE_LOW_BANDWIDTH_DISPLAY

2008-09-04 Thread David Kilzer
WTF_USE_LOW_BANDWIDTH_DISPLAY should be defined in JavaScriptCore/wtf/Platform.h for your platform. I don't think any of the main ports in the WebKit repository use this feature, which is why it probably doesn't work when enabled. Please file a bug on https://bugs.webkit.org/ (and a patch to

Re: [webkit-dev] Where can I get basic WebKit software?

2008-09-04 Thread David Kilzer
You must check out the source code from Subversion: http://webkit.org/building/checkout.html Or git: http://trac.webkit.org/wiki/UsingGitWithWebKit Note that the code base contains code for all the ports, but each platform's code is under a platform/platformname directory, so you know which

Re: [webkit-dev] WebKit-r36013 does not build on Mac OS X 10.5.4 PPC G5

2008-09-04 Thread David Kilzer
: No such file or directory In file included from /Users/fzerangue/ws/WebKit/JavaScriptGlue/ JSBase.h:32, from /Users/fzerangue/ws/WebKit/JavaScriptGlue/ JSBase.cpp:30: Frank Zerangue On Sep 3, 2008, at 5:17 PM, David Kilzer wrote: Please keep this discussion

Re: [webkit-dev] Platform network did.* semantics for status 404 with HTML body

2008-09-04 Thread David Kilzer
A similar bug related to stylesheets was filed as Bug 7381 and again as Bug 15242. https://bugs.webkit.org/show_bug.cgi?id=7381 https://bugs.webkit.org/show_bug.cgi?id=15242 It was fixed as part of Bug 16760 in r30438. https://bugs.webkit.org/show_bug.cgi?id=16760

Re: [webkit-dev] WebKit-r36013 does not build on Mac OS X 10.5.4 PPC G5

2008-09-03 Thread David Kilzer
Platform.h is in JavaScriptCore/wtf/Platform.h. The JavaScript/Platform.h include should be resolved to $SYMROOTS/$BUILD_TYPE/JavaScriptCore.framework/PrivateHeaders/Platform.h. Did JavaScriptCore build successfully? Did you build JavaScriptCore first? Have you tried using the

Re: [webkit-dev] webkit build on 2008

2008-09-01 Thread David Kilzer
On Mon, 9/1/08, Amanda Llewellyn [EMAIL PROTECTED] wrote: Does anyone know if there are any plans to release a build of WebKit compatible with visual studio 2008? Have you tried compiling WebKit with Visual Studio 2008? Are you running into compiler errors or other build errors? Could you

Re: [webkit-dev] Robotized QtLauncher

2008-09-01 Thread David Kilzer
Hi Kelemen, To have your code reviewed, please create a bug on https://bugs.webkit.org/ and post your code in the form of a patch with its review flag set to ?. Please see this web page for more information about contributing code: http://webkit.org/coding/contributing.html Regarding the

Re: [webkit-dev] downloading src

2008-08-29 Thread David Kilzer
: OS = CYGWIN_NT-5.1 i686 SVN = 1.5.1 On Thu, Aug 28, 2008 at 5:56 PM, David Kilzer [EMAIL PROTECTED] wrote: What operating system are you using (uname -a)? Which version of the Subversion client are you using (svn --version)? If it's 1.3.x, please install a newer version. It had

Re: [webkit-dev] downloading src

2008-08-28 Thread David Kilzer
PM, David Kilzer [EMAIL PROTECTED] wrote: Sounds like your connection is timing out. I would suggest deleting (rm -rf dirname) the last directory that SVN was trying to check out, then changing directories into WebKit (cd WebKit), and finally running svn update to pick up the rest

Re: [webkit-dev] webkit on MIPS

2008-08-22 Thread David Kilzer
On Thu, 8/21/08, ashu_ynr [EMAIL PROTECTED] wrote: I have cross compiled webkit on fedora6 (x86) for MIPS but i am in doubt that it wouldn't work on MIPS target. I didn't do any changes regarding the architecture in the webkit source. Kindly guide me that this cross compiled webkit would

Re: [webkit-dev] downloading src

2008-08-22 Thread David Kilzer
On Fri, 8/22/08, Jack Wootton [EMAIL PROTECTED] wrote: I'm attempting to follow the instructions here: http://webkit.org/building/checkout.html The instructions state: Type this command to update your source tree: WebKit/WebKitTools/Scripts/update-webkit However I have no

<    1   2   3   >