[webkit-dev] TeaShark

2009-07-21 Thread Hieu Le Trung
Hi,

 

According to the following archive
http://lists.macosforge.org/pipermail/webkit-dev/2007-September/002427.h
tml

I wonder if there is source code release of TeaShark or not.

 

Thanks,

-Hieu

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


Re: [webkit-dev] Development Tools on Safari

2009-07-14 Thread Hieu Le Trung
Adam,

Let me check the Chrome. I'd like to have Web Inspector run as a
separate process and connect to WebKit instance for profiling,
performance measuring...It's also good if we can have it connect
remotely, WebKit run on the target (embedded) and Web Inspector remote
connect to do profile.
Something like oProfileUI (http://labs.o-hand.com/oprofileui/)

Regards,
-Hieu


-Original Message-
From: Adam Roben [mailto:aro...@apple.com] 
Sent: Tuesday, July 14, 2009 8:42 PM
To: Hieu Le Trung
Cc: Maciej Stachowiak; Juan Madrigal; webkit-dev@lists.webkit.org
Subject: Re: [webkit-dev] Development Tools on Safari

On Jul 13, 2009, at 11:24 PM, Hieu Le Trung wrote:

 Can we separate the tools from WebKit menu?

I don't think I understand this question. What is the WebKit menu?

 I want to run them as a stand-alone and connect to existing WebKit  
 instance.

Right now each Web Inspector window is tied to a particular WebView,  
and the Web Inspector and the WebView must be in the same process.

The Chrome guys have been doing some work on having the Inspector run  
in a separate process from the WebView, but we haven't adopted that in  
Apple's ports yet.

You can use the Inspector in any WebView in any application on OS X if  
you set the WebKitDeveloperExtrasEnabledPreferenceKey preference to  
YES. Here's how you'd do it for Safari:

defaults write com.apple.Safari  
WebKitDeveloperExtrasEnabledPreferenceKey YES

Just replace com.apple.Safari with the bundle ID of the application  
in question.

-Adam



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


Re: [webkit-dev] How to develop NPAPI plugin with webkit lib

2009-07-13 Thread Hieu Le Trung
Zhang,

The napi.h is located under WebCore/bridge folder. Please check to see
why it didn't include in the build.

-Hieu

-Original Message-
From: webkit-dev-boun...@lists.webkit.org
[mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of Jack Wootton
Sent: Monday, July 13, 2009 4:50 PM
To: Harry Zhang
Cc: webkit-dev@lists.webkit.org; webkit-h...@lists.webkit.org
Subject: Re: [webkit-dev] How to develop NPAPI plugin with webkit lib

Are you calling NPN_CreateObject using the function pointers that were
exchanged during initialization?

You're probably aware that the browser provides pointers to the
browser side of the NPAPI and it is your job as the plugin author to
populate the function pointers that make up the plugin side of the
NPAPI.

On Mon, Jul 13, 2009 at 4:06 AM, Harry Zhangzhangha...@gmail.com
wrote:
 Besides the issue of missing NPAPI headers, i also failed to find
npruntime
 symbols such as NPN_CreateObject in libwekbit-1.0 (i used objdump -t
to
 check the symbols), so i got undefined reference to NPN_CreateObject
 during the link phase, somehow confused.
 I'm a newbie in this NPAPI plugin area, am i on the right track?

 On Fri, Jul 10, 2009 at 7:27 PM, Harry Zhang zhangha...@gmail.com
wrote:

 Hi all, after i built and make install the webkit (r4) gtk port
on
 Ubuntu, i want to develop a NPAPI plugin for webkit, however i cannot
found
 related NPAPI headers (such as npapi.h, npruntime.h) in webkit-1.0
include
 directory, can anybody point out where to find these headers, or what
i've
 missed in the build and install steps?

 Many thanks in advance!

 Regards,
 Harry


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





-- 
Regards
Jack
___
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


Re: [webkit-dev] Error during Cross compiling icu library

2009-07-08 Thread Hieu Le Trung
Hi,

 

You can follow the guide at 
http://source.icu-project.org/repos/icu/icu/trunk/readme.html#HowToCrossCompileICU

 

Regards,

-Hieu

 

From: webkit-dev-boun...@lists.webkit.org 
[mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of deuxliquid
Sent: Wednesday, July 08, 2009 3:23 PM
To: webkit-dev@lists.webkit.org
Subject: [webkit-dev] Error during Cross compiling icu library

 

Hi all,
I am cross compiling webkit gtk for MIPS but it is lack of icu. I built icu but 
get an error as below:
icudefs.mk:257: /tango/usr/local/config/icucross.mk: No such file or directory

It seems icucross.mk must be installed first into config folder but I don't 
understand why and how.
Can anybody help me?
Thank in advance!
Hai

 



Địa chỉ email mới dành cho bạn! 
http://sg.rd.yahoo.com/vn/mail/domainchoice/mail/signature/*http:/mail.promotions.yahoo.com/newdomains/vn/
 
Chọn ngay một tên truy nhập bạn từng muốn lập với tên miền mới ymail và 
rocketmail.
Nhanh nhanh trước khi có người xí mất!

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


Re: [webkit-dev] How to write a hello world example in Webkit Gtk?

2009-07-06 Thread Hieu Le Trung
Hi,

 

There is no WebKit in GTK, you must compile the WebKit and use the GtkLauncher 
in order to test the webkit.

You can try some GTK sample to see if GTK works well or not.

 

Regards,

-Hieu

 

From: webkit-dev-boun...@lists.webkit.org 
[mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of deuxliquid
Sent: Tuesday, July 07, 2009 8:37 AM
To: webkit-dev@lists.webkit.org
Subject: [webkit-dev] How to write a hello world example in Webkit Gtk?

 

Hi all,
I have just installed Gtk-2.16.0 on my computer. Next, I must install webkit 
that base Gtk but I am not able. It seems Webkit is too big(?) so that it has 
number of errors.
I wonder if there is a Gtk that has already integrated webkit? Because I know 
Qt has also itegerated Webkit in it. 
Can anybody help me to write a small example like hello world in Gtk Webkit?
Thank you in advance!
Hai

 



Lướt web nhanh hơn 
http://us.lrd.yahoo.com/_ylc=X3oDMTFnYXY0dG83BHRtX2RtZWNoA1RleHQgTGluawR0bV9sbmsDVTExMDM0NjgEdG1fbmV0A1lhaG9vIQ--/SIG=11ka86nha/**http%3A/downloads.yahoo.com/vn/internetexplorer/
 
Internet Explorer 8 tối ưu hóa cho Yahoo!, tự động khởi động 2 trang bạn thích 
mỗi lần mở trình duyệt. Tải IE8 tại đây! (Miễn phí) 
http://us.lrd.yahoo.com/_ylc=X3oDMTFnYXY0dG83BHRtX2RtZWNoA1RleHQgTGluawR0bV9sbmsDVTExMDM0NjgEdG1fbmV0A1lhaG9vIQ--/SIG=11ka86nha/**http%3A/downloads.yahoo.com/vn/internetexplorer/
 

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