Re: [webkit-dev] New WebKit reviewer: Gyuyoung Kim

2012-08-21 Thread Kihong Kwon
Congratulation, Gyugoung! :-)

On Tuesday, August 21, 2012, Thiago Marcos P. Santos wrote:

> On Tue, Aug 21, 2012 at 10:38 AM, Kenneth Rohde Christiansen
> > wrote:
> > I’m pleased to announce that Gyuyoung Kim is now a WebKit reviewer.
> >
> > Gyuyoung joined the WebKit team as part of an effort to port WebKit to
> > the EFL platform. Since then he has taken leadership of the Samsung
> > activities in WebKit trunk and helped integrating his team members in
> > the community and community practices. Lately, Gyuyoung have been
> > focused on adding device API's to WebKit, as well as refocusing the
> > EFL efforts on WebKit2.
> >
> > Please join me in congratulating him in his new WebKit reviewer role.
> >
>
> Congratulations!
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org 
> http://lists.webkit.org/mailman/listinfo/webkit-dev
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Can we remove webkit prefix from Battery Status API and from Vibration API?

2012-08-01 Thread Kihong Kwon
I have made bugs.
https://bugs.webkit.org/show_bug.cgi?id=92839
https://bugs.webkit.org/show_bug.cgi?id=92840

Kihong

2012/8/1 Kihong Kwon :
>> Has a test suite been published we can test against?
>
> I didn't see a test suite which is opened to everyone yet.
> Is this a problem for dropping prefix?
>
>> Are there any other implementations of the APIs? Besides the time-based
>> requirement of dropping vendor prefixes when a specification goes to
>> Candidate Recommendation status, unprefixing also implies operability with
>> both the specification and other implementations. It'll be good to confirm
>> that.
>
> Firefox already implements these APIs.
> https://wiki.mozilla.org/WebAPI
> https://developer.mozilla.org/en/DOM/window.navigator.battery
> https://developer.mozilla.org/en/DOM/window.navigator.battery
>
> And these APIs have been entered CR as you know.
>
> BR,
> Kihong.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Can we remove webkit prefix from Battery Status API and from Vibration API?

2012-07-31 Thread Kihong Kwon
> Has a test suite been published we can test against?

I didn't see a test suite which is opened to everyone yet.
Is this a problem for dropping prefix?

> Are there any other implementations of the APIs? Besides the time-based
> requirement of dropping vendor prefixes when a specification goes to
> Candidate Recommendation status, unprefixing also implies operability with
> both the specification and other implementations. It'll be good to confirm
> that.

Firefox already implements these APIs.
https://wiki.mozilla.org/WebAPI
https://developer.mozilla.org/en/DOM/window.navigator.battery
https://developer.mozilla.org/en/DOM/window.navigator.battery

And these APIs have been entered CR as you know.

BR,
Kihong.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] Adding Proximity Events

2012-07-31 Thread Kihong Kwon
Hello, webkit-dev

 

I would like to let you know, I am planning to add Proximity Events to
WebCore.

This feature will be behind the ENABLE_PROXIMITY_EVENTS. Please see :

http://www.w3.org/TR/proximity/

https://bugs.webkit.org/show_bug.cgi?id=92837

 

If you have any comments, please let me know.

 

BR,

Kihong.

 

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] Can we remove webkit prefix from Battery Status API and from Vibration API?

2012-07-30 Thread Kihong Kwon
Hi, webkit-dev

 

As you can see with these links,

http://www.w3.org/TR/battery-status/

http://www.w3.org/TR/vibration/

the status of Battery Status API and Vibration API have been changed to the
CR quite ago and specs are almost stable now.

Therefore, I think we can remove webkit prefix from webkitBattery and from
webkitvibrate.

If someone has objection or other opinion please let me know.

 

BR,

Kihong.

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] Announcement for landing the Battery status API

2012-03-16 Thread Kihong Kwon
Hi. Webkit-dev.

I want to let you know that the Battery Status API is just landed.
: https://bugs.webkit.org/show_bug.cgi?id=62698,
http://www.w3.org/TR/battery-status/
This is behind ENABLE_BATTERY_STATUS feature define.

This feature is enabled on the Efl port now. If you have any comments or
questions please let me know. Thank you.

Cheers.
Kihong
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Looking forward to get an advice about event listeners for navigator.battery.

2012-03-05 Thread Kihong Kwon
Thank you for your kind comments.
I will change my patch like your suggestion.

BR.
Kihong.

> -Original Message-
> From: aba...@gmail.com [mailto:aba...@gmail.com] On Behalf Of Adam Barth
> Sent: Monday, March 05, 2012 5:45 PM
> To: Kihong Kwon
> Cc: webkit-dev@lists.webkit.org
> Subject: Re: [webkit-dev] Looking forward to get an advice about event
> listeners for navigator.battery.
> 
> There's likely a better design for your patch.  For example, each
> BatterManager could register itself with the BatteryController.  When one
> of these events occurs, the BatteryController could fire the event on all
> the BatterManager class, regardless of whether they have listeners added.
> That would relieve you of the need to override any of EventTarget's
> methods (and reduce the amount of state that BatteryController could need
> to keep).
> 
> Adam
> 
> 
> On Mon, Mar 5, 2012 at 12:35 AM, Kihong Kwon 
> wrote:
> > Hi.
> > I'm implementing Battery Status API.
> > (https://bugs.webkit.org/show_bug.cgi?id=62698)
> > (http://www.w3.org/TR/battery-status/)
> >
> > I have an issue which would need your comments.
> >
> > Battery Status API needs to be added under the Navigator class, but
> > there is not any event handling logic there.
> > Therefore, because I have no other choice, I have implemented the
> > necessary event handling logic in the BatteryManager.
> > I, however, think it may not look good to add the event listener in
> > the Batter Status API itself.
> >
> > IMHO, the Navigator class would need some sort of event listener
> > handling logic similar to DOMWindow.
> > I would like to have your comments how you think this.
> >
> > Thank you.
> >
> > Best Regards.
> > Kihong
> >
> >
> > ___
> > webkit-dev mailing list
> > webkit-dev@lists.webkit.org
> > http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Looking forward to get an advice about event listeners for navigator.battery.

2012-03-05 Thread Kihong Kwon
Hi.
I'm implementing Battery Status API.
(https://bugs.webkit.org/show_bug.cgi?id=62698)
(http://www.w3.org/TR/battery-status/)

I have an issue which would need your comments.

Battery Status API needs to be added under the Navigator class, but there is
not any event handling logic there.
Therefore, because I have no other choice, I have implemented the necessary
event handling logic in the BatteryManager.
I, however, think it may not look good to add the event listener in the
Batter Status API itself.

IMHO, the Navigator class would need some sort of event listener handling
logic similar to DOMWindow.
I would like to have your comments how you think this.

Thank you.

Best Regards.
Kihong


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] For debugging in xcode - Breakpoint does not work.

2011-12-08 Thread Kihong Kwon
It'w working now.
Thank you.

BR.
Kihong

2011년 12월 8일 오전 1:40, Dan Bernstein 님의 말:
>
>
> On Dec 6, 2011, at 11:01 PM, Kihong Kwon  wrote:
>
>> Hello.
>>
>> I am a new to mac. Can anyone help me for debugging WebCore?
>>
>> I have a problem about breakpoint with xcode.
>> What I want to say, I can't use a breakpoint with WebCore in the xcode.
>>
>> After finish to build webkit, I put a breakpoint to the DOMWindow.cpp
>> (I  put a breakpoint to DOMWindow::alert and make a alert for testing)
>> But breakpoint does work.
>>
>> I did googling for this...
>> I found below solution. but It doesn't work too.
>>
>> 1. Launch safari.
>
> In order for the instance of Safari you're trying to debug to link against 
> the WebCore framework you've built, rather than the system WebCore, you need 
> to launch it in a way that sets the DYLD_FRAMEWORK_PATH environment variable 
> to point to your build products directory. One easy way to do this is to use 
> Tools/Scripts/run-safari. Another way is to add Safari as a custom executable 
> to the Xcode project. Also, make sure that you are building all of the 
> projects (JavaScriptCore, WebCore, WebKit and WebKit2) and that they're all 
> building into the same directory. Again, the build-webkit script takes care 
> of this for you.
>
>> 2. Run -> attach to process -> select WebProcess (My XCODE version is 3.2.6)
>> 3. Click debug in the WebCore project window.
>>
>> Did I make wrong? or have I to do anything else?
>>
>> Thanks in advance
>> Kihong
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org
>> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] For debugging in xcode - Breakpoint does not work.

2011-12-06 Thread Kihong Kwon
Hello.

I am a new to mac. Can anyone help me for debugging WebCore?

I have a problem about breakpoint with xcode.
What I want to say, I can't use a breakpoint with WebCore in the xcode.

After finish to build webkit, I put a breakpoint to the DOMWindow.cpp
(I  put a breakpoint to DOMWindow::alert and make a alert for testing)
But breakpoint does work.

I did googling for this...
I found below solution. but It doesn't work too.

1. Launch safari.
2. Run -> attach to process -> select WebProcess (My XCODE version is 3.2.6)
3. Click debug in the WebCore project window.

Did I make wrong? or have I to do anything else?

Thanks in advance
Kihong
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Adding ENABLE_BATTERY_STATUS to WebCore

2011-06-15 Thread Kihong Kwon
> From: ryosuke.n...@gmail.com [mailto:ryosuke.n...@gmail.com] On Behalf Of 
> Ryosuke Niwa

> 2011/6/15 권기홍 
> I wanted to let you know that I plan to add battery status event support to 
> WebCore.
> The Battery Status Event is a new feature that is defined by W3C 
> (http://www.w3.org/TR/battery-status)
>
> It seems like the working draft has a couple of TODOs now.  Is the spec 
> sufficiently stable?  

It's quite stable, just before last call.
Here is a editor's draft for LC and there is no TODO in here
(http://dev.w3.org/2009/dap/system-info/battery-status.html)

> Are other browser vendors implementing this feature?

I don't think so, but I'm not sure about that.
But I'd like to make this to an "call for implementation" for this spec.

Kihong

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Adding ENABLE_BATTERY_STATUS to WebCore

2011-06-15 Thread Kihong Kwon
Dear. holger

I agree with you.
This spec is too simple, and I think there may be some other needs.
So I reported your concern to DAP WG for this spec, I'm joining in the DAP WG 
in the W3C.

But this is a minimum set of battery status report to WebApps or a Web pages,
So I think this event and attributes are not dropped.
And if this spec is changed or modified, I'll fix or add my source to the 
WebKit.

In my opinion, the WebKit support this feature is no problem now.
How do you think about?

Thank you for your comment.

BR.
Kihong Kwon

> -Original Message-
> From: webkit-dev-boun...@lists.webkit.org [mailto:webkit-dev-
> boun...@lists.webkit.org] On Behalf Of Holger Freyther
> Sent: Wednesday, June 15, 2011 6:41 PM
> To: webkit-dev@lists.webkit.org
> Subject: Re: [webkit-dev] Adding ENABLE_BATTERY_STATUS to WebCore
> 
> On 06/15/2011 10:21 AM, 권기홍 wrote:
> > Hi webkit-dev!
> >
> >
> >
> > I wanted to let you know that I plan to add battery status event support
> to
> > WebCore.
> >
> > The Battery Status Event is a new feature that is defined by W3C
> > (http://www.w3.org/TR/battery-status <http://www.w3.org/TR/battery-
> status/>)
> 
> I am not participating in any W3C group so this might or might have been
> discussed but this specification seems to be over simplified, specially if
> you
> compare it what is provided by the power supply class of the Linux
> kernel[1].
> 
> What happens if you have more than one battery? Many modern devices have
> backup batteries, e.g. to keep the RTC. What is the upgrade path for this
> event to support applications that want to have a more detailed view (e.g.
> a
> dashboard in a server farm that also wants to query the UPS)?
> 
> sorry for my two cents
>   holger
> 
> 
> [1]
> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-
> 2.6.git;a=blob;f=Documentation/power/power_supply_class.txt;h=9f16c5178b66
> 2b8f9ec67f3dd7eafd6f4c89e39a;hb=HEAD
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev