Re: [webkit-dev] Safari support for Web Speech API

2013-05-15 Thread Michelangelo De Simone
Hi there, Dan has simply pointed out that you've posed a specific question about Safari (which is a proprietary Apple product). This list is dedicated to WebKit which is an open-source library being used by many vendors (including Apple). -- Bye, Michelangelo On May 15, 2013, at 5:09 PM,

Re: [webkit-dev] Debugging Memory Errors

2013-05-15 Thread Michelangelo De Simone
Doesn't debug-safari --debug --guard-malloc make the trick? If you need to target the web-process - as I think - you may also want to append --target-web-process. -- Bye, Michelangelo On May 15, 2013, at 5:54 PM, Bear Travis betra...@adobe.com wrote: Hi WebKit, I was wondering how folks

Re: [webkit-dev] Alexandru Chiculita is now a WebKit reviewer

2013-04-24 Thread Michelangelo De Simone
Kudos! -- Bye, Michelangelo On Apr 24, 2013, at 2:42 PM, Dean Jackson d...@apple.com wrote: I'm happy to announce that Alex is now a WebKit reviewer. Congratulations Alex! Alex has done a lot of work in CSS Filters, amongst other places. For those who want to see him in action, here is

Re: [webkit-dev] [blink-dev] Fwd: Unmaintained feature list

2013-04-08 Thread Michelangelo De Simone
[Moved/Reposted to WebKit-Dev] On Mon, Apr 8, 2013 at 11:08 AM, Ryosuke Niwa rn...@chromium.org wrote: What about adding a NeedsOwner keyword to orphan feature bugs, marking them RESOLVED/LATER? I would be resistent to add such a keyword given there is no official owner for any feature in

Re: [webkit-dev] Opera and WebKit

2013-02-13 Thread Michelangelo De Simone
Hi there, it's great to have you in the community, welcome! A question, that it's likely to be OT for this list [1]: do you guys have any plan to open Presto's source? [1] …but given the magnitude of this, I guess I'll be indulged.:) -- Bye, Michelangelo Il giorno Feb 13, 2013, alle ore

Re: [webkit-dev] webkit-gem gtk2 installation error

2013-02-09 Thread Michelangelo De Simone
I don't mean to be rude, but please let's keep this kind of questions in webkit-help. -- Bye, Michelangelo Il giorno Feb 9, 2013, alle ore 8:43 AM, Ebru Akagunduz ebru.akagun...@gmail.com ha scritto: I installed necessary all packages i think. I installed them sudo yum install ruby-devel

Re: [webkit-dev] Testing feature suggestion: animation/interaction pixel-results on the fly

2013-02-08 Thread Michelangelo De Simone
I'd like to propose a solution, and would welcome some feedback on whether it's a good one... The idea is that you would be able to programatically retrieve the current snapshot into a canvas ImageData, and then compare the pixel results with JavaScript in the LayoutTest. Something like:

Re: [webkit-dev] wiki spammers

2012-12-18 Thread Michelangelo De Simone
Heya, Shouldn't we restrict modifying the wiki for contributors in commmiters.py only? Or what if adding a captcha and mail verification for registering to trac? I'd personally go with the committers.py idea, adding also the chance for random contributors to manually ask for an account.

Re: [webkit-dev] Small patch to improve webkit build on windows

2012-09-09 Thread Michelangelo De Simone
On Sun, Sep 9, 2012 at 4:37 AM, foru...@smartmobili.com wrote: Could someone review the patch, check it works with your build system and commit it ? Please, open a bug and attach your patch to it following the guidelines on [1] and [2]. Thanks. [1]

Re: [webkit-dev] possible repository corruption on the remote side

2009-12-12 Thread Michelangelo De Simone
Il giorno 12/dic/2009, alle ore 13.55, Julián de Navascués ha scritto: remote: error: failed to unpack compressed delta at offset 721420248 from ./objects/pack/pack-5e8ffe535a2c4b156009904da09e511778104665.pack Confirmed, here too. Bye, Michelangelo

[webkit-dev] Cross-port localized strings

2009-10-20 Thread Michelangelo De Simone
Hi guys, I need to make available some localized string (my apologies, it's from HTML5 specs;)) in WebCore but I need to understand whether or not I am supposed to provide a blind implementation for every available port in the trunk, even if this means a potential port specific break.

Re: [webkit-dev] How to deal with localized strings

2009-08-28 Thread Michelangelo De Simone
2009/8/25 Ryan Leavengood leaveng...@gmail.com: WebCore/platform/LocalizedStrings.h seems appropriate :) Thanks for the tip Ryan; I've been wondering if I have to modify all the LocalizedStringPort files: I don't want to incidentally brake some port and, in the same time, I must bring the same

Re: [webkit-dev] How to deal with localized strings

2009-08-28 Thread Michelangelo De Simone
2009/8/28 Michelangelo De Simone micde...@gmail.com: Any illuminating suggestion?:) It's nice to self-answer:) Anyway, there's no need for illuminating suggestions, returning an empty String on each port seems a good choice.:) -- Bye, Michelangelo

[webkit-dev] How to deal with localized strings

2009-08-24 Thread Michelangelo De Simone
Hi guys, I'm gonna implement the support to the validationMessage HTML5 DOM attribute of form control elements, it shall return a string that describes which validation state the element is in. AFAIK this should be a localized string to be presented to the user: I tought to write a simple: enum

[webkit-dev] About events in WebCore

2009-08-18 Thread Michelangelo De Simone
Hi, I've been working to add support for the checkValidity() method on (#27452); in order to complete that check I need to understand whether or not a specific event (invalid), previously fired from an element, has been canceled. Now, is there any generic/trivial way to accompish such checks? I

Re: [webkit-dev] About events in WebCore

2009-08-18 Thread Michelangelo De Simone
If by canceled you mean preventDefault has been called on the event, then you can tell by the return value from dispatchEvent(). dispatchEvent will return false if any of the event listeners called preventDefault() on the event in the course of dispatch. That's exactly what I was looking for.

Re: [webkit-dev] ENABLE_FORM_VALIDATION

2009-07-13 Thread Michelangelo De Simone
2009/7/13 Darin Fisher da...@chromium.org: I'd like to propose that we add an ENABLE_FORM_VALIDATION flag (or something similarly named).  I'm writing this to webkit-dev because I want to make sure that other new web platform features that may be in development get similar treatment while

Re: [webkit-dev] ENABLE_FORM_VALIDATION

2009-07-13 Thread Michelangelo De Simone
2009/7/13 Peter Kasting pkast...@google.com: When it relands I will see if I can figure out what the ENABLE flag should cover and make sure it's covered.  I'm concerned about other things already in the tree with valid in their name, e.g. readonly attribute boolean willValidate -- not sure if

Re: [webkit-dev] GSoC

2009-03-13 Thread Michelangelo De Simone
2009/3/12 Adam Roben aro...@apple.com: I've heard only a little discussion about it. So far no one has stepped up to say I will be responsible for submitting WebKit's application to GSoC. That's very unfortunate, I and a prof of mine really liked to apply for a thesis work this year. -- Jay

[webkit-dev] GSoC

2009-03-12 Thread Michelangelo De Simone
Hi guys, I was wondering if WebKit will apply for GSoC this year as it did last one; anyone has any update about it? -- Joan Collins - The problem with beauty is that it's like being born rich and getting poorer. ___ webkit-dev mailing list

Re: [webkit-dev] webkit.patch for WebKit

2008-11-16 Thread Michelangelo De Simone
On Sun, Nov 16, 2008 at 4:08 PM, houda hocine [EMAIL PROTECTED] wrote: I want to apply to the webkit source , but I have no ideas of how i can do , you can help me? If I'm correct you just wanted to apply a patch; in order to accomplish that the svn-apply script should be enough. It resides

Re: [webkit-dev] webkit.patch for WebKit

2008-11-16 Thread Michelangelo De Simone
On Sun, Nov 16, 2008 at 4:52 PM, houda hocine [EMAIL PROTECTED] wrote: I don't want to do this manualy, but I would like to know how to automatically apply the patch to source code, First, you must have a copy of the source tree on your local drive (see

[webkit-dev] Git repo down?

2008-07-05 Thread Michelangelo De Simone
Hi guys, I've been trying for the whole day to pull up the updates from the WebKit Git repo. Is it just a problem of mine? stargazer:WebKit Michelangelo$ git pull fatal: The remote end hung up unexpectedly -- // Et quid amabo nisi quod rerum enigma est? smime.p7s Description: S/MIME

Re: [webkit-dev] GIT and patch submission

2008-06-23 Thread Michelangelo De Simone
Il giorno 23/giu/08, alle ore 14:01, Rob Kroeger ha scritto: I have cloned the WebKit source tree with git and prepared a patch with git format-patch. Is this acceptable for attaching to the bug report or is there a better approach? Personally I make my patches with the old fashioned

Re: [webkit-dev] renaming some WebCore, too

2008-06-13 Thread Michelangelo De Simone
Il giorno 14/giu/08, alle ore 01:26, Darin Adler ha scritto: Use a less confusing name for the base class for all form controls. It's hard to understand how HTMLGenericFormElement (a control within a form) differs from HTMLFormElement (the form itself). I can't agree more (for what my

Re: [webkit-dev] New IDL return type

2008-06-11 Thread Michelangelo De Simone
Il giorno 11/giu/08, alle ore 15:50, David Kilzer ha scritto: My guess is that DOMHTMLInputElement.mm needs an #import statement to compile without warnings. Look in WebCore/bindings/scripts/ CodeGeneratorObjC.pm to see how #import statements are included in generated sources, and make

Re: [webkit-dev] Safari won't run for me.

2008-05-25 Thread Michelangelo De Simone
Il giorno 25/mag/08, alle ore 08:54, Paul Pedriana ha scritto: /cygdrive/d/WebKit/WebKitTools/Scripts/run-safari You compiled WebKit with the --debug flag; this has generated for you a slightly different directory layout for builds. In order to let Safari use those builds instead of the

Re: [webkit-dev] GSoC: MathML

2008-03-24 Thread Michelangelo De Simone
Il giorno 24/mar/08, alle ore 14:26, Dmitriy Dzema ha scritto: I want to implement MathML in WebKit. I want to talk about this with a person, who wants to be a mentor, to understand my chances to start/finish this project :) and write a better application for google. I'm looking for a