Re: [webkit-dev] Hi

2013-12-08 Thread Alberto Garcia
On Fri, Dec 06, 2013 at 01:12:04AM -0500, larry x.wang wrote:

>  How can I install a specific version of webkitgtk? ie 1.9.X
> in the download tar,When I extract the tar package,the install and
> readme is empty.I don't how build it from source and how to install
> it.

The basic way to build webkitgtk from source is:

$ ./configure
$ make
$ make install

For questions specific to the GTK+ port you can use the webkit-gtk
mailing list:

   https://lists.webkit.org/mailman/listinfo/webkit-gtk

And you can also find us in the #webkitgtk+ IRC channel on freenode.

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


Re: [webkit-dev] Hi

2013-12-06 Thread PERIER Romain
Hi,

Perhaps that webkit-...@lists.webkit.org is more suitable for this question
(as this is related to the gtk port)

Romain


2013/12/6 larry x.wang 

>  How can I install a specific version of webkitgtk? ie 1.9.X
> in the download tar,When I extract the tar package,the install and readme
> is empty.I don't how build it from source and how to install it.
> I also download the full package of webkit-svn about 1G,where I follow the
> instruction,the command error occur.
> the error is like below:
> Trying other mirror.
> Error: Cannot retrieve repository metadata (repomd.xml) for repository:
> adobe-linux-i386. Please verify its path and try again
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] Hi

2013-12-05 Thread larry x.wang

 How can I install a specific version of webkitgtk? ie 1.9.X
in the download tar,When I extract the tar package,the install and 
readme is empty.I don't how build it from source and how to install it.
I also download the full package of webkit-svn about 1G,where I follow 
the instruction,the command error occur.

the error is like below:
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: 
adobe-linux-i386. Please verify its path and try again


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


Re: [webkit-dev] Hi All (Windows WebKit through COM, focus issue)

2009-08-12 Thread Adam Roben

On Jan 4, 2009, at 2:16 AM, Mike wrote:


But, if I create a tab control and add multiple tab pages, and use
panels on those tabs to host the control, when the form is active, the
WebView does not act as if it is active (it doesn't display the cursor
for text boxes and other fields, and the safari theme for the scroll
bar does not light up).

The first tab page works properly, but the other tab pages display
this behavior.


I don't know anything about how the Windows Forms tab control works,  
but I can point you at the code in WebKit that decides whether a  
blinking caret should appear in text fields.


A blinking caret will only appear if the WebView thinks that is is  
"active". A WebView is considered to be "active" if its top-level  
parent window and the top-level parent window of the window returned  
from GetActiveWindow are the same. This code is in WebView::active in  
WebKit/win/WebView.cpp. The active state of the WebView has to be  
passed down to the WebCore level when the state changes. This happens  
in WebView::updateActiveState.


It seems like there are two possibilities:

1) WebView::active is returning the wrong answer (i.e., it's returning  
false but should be returning true)

2) WebView::updateActiveState isn't getting called at the right times

If the problem is (2), you should be able to work around it by calling  
IWebViewPrivate::updateFocusedAndActiveState. I can't think of a good  
workaround for (1). In either case we'll want to investigate further  
to find out what's causing the bug!


-Adam

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


Re: [webkit-dev] Hi All (Windows WebKit through COM, focus issue)

2009-08-12 Thread Kim, ingee

I suffered similar situation few days ago.
I wish I could help you.

"WebKit Windows port" calls SetCapture() in 
WM_LBUTTONDOWN handler of WebViewWndProc().
If you call ReleaseCapture() in proper position, I think, 
you might solve your problem.

I used r39476 of "WebKit Windows port". 
And in that revision, the position of ReleaseCapture() call was 
somewhat wrong. I moved ReleaseCapture() call to the very
first line of WM_LBUTTONUP handler and solved my problem.

Good Luck~



Mike-649 wrote:
> 
> I just joined this list, so hopefully I'm not intruding...
> 
> I recently started work on making a lightweight browser for WebKit on
> Windows through COM+.NET, which actually has been a great success. I'm
> happy to report that I'm able to use the latest nightly build (r39553)
> from within a .NET Windows Form.  I don't mind publishing the wrapper
> in the future to help further the development of WebKit, but I'm
> having an issue which is preventing me from moving forward...
> 
> To sum it up the best I can, if I have a WebView on a form, and I call
> "setHostWindow" with that form's handle, I experience no behavioral
> issues. If I create a panel on the form, and I use that as the host
> handle, the WebView works as designed.
> But, if I create a tab control and add multiple tab pages, and use
> panels on those tabs to host the control, when the form is active, the
> WebView does not act as if it is active (it doesn't display the cursor
> for text boxes and other fields, and the safari theme for the scroll
> bar does not light up).
> 
> The first tab page works properly, but the other tab pages display
> this behavior.
> 
> Example of appropriate behavior on the first tab... form is active,
> control shows proper focus
> http://img49.imageshack.us/img49/9758/example1rc5.jpg
> 
> The second tab, when it's active (and the form is active), the WebView
> control doesn't show proper focus, and the text box does not show the
> focus ring correctly either...
> http://img530.imageshack.us/img530/4653/example2tg6.jpg
> 
> I think the easiest way to fix this problem, would be to allow manual
> control of the "active state" of the WebView control through the COM
> interface. Manually setting the state through events that fire on the
> Windows forms would be an incredibly easy task. But, I'm not sure how
> difficult it is to change the base code (if there's a lot of hoops to
> jump through), or whether or not it's actually appropriate to solve
> this problem in that manner...
> 
> Either way, I would appreciate it a lot if someone got back to me.
> I've been trying to figure out how to get around this issue for the
> last couple days (even tried manually sending signals to the control
> via the windows API), but I haven't been able to get anything working
> yet.
> 
> Thanks for reading,
> Mike
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Hi-All-%28Windows-WebKit-through-COM%2C-focus-issue%29-tp21273592p24934957.html
Sent from the Webkit mailing list archive at Nabble.com.

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


Re: [webkit-dev] Hi All (Windows WebKit through COM, focus issue)

2009-08-12 Thread Kim, ingee

I suffered similar situation some days ago.
I wish I can help you.

"WebKit Windows port" calls SetCapture() 
in WM_LBUTTONDOWN handler of WebViewWndProc().
If you call ReleaseCapture() in proper position, I think, 
you may solve your problem.

I used r39476 of "WebKit Windows port". 
And in that revision, the position of ReleaseCapture() call was 
somewhat wrong. I moved ReleaseCapture() call 
to the very first line of WM_LBUTTONUP handler code and 
solved my problem.

Good Luck~



Mike-649 wrote:
> 
> I just joined this list, so hopefully I'm not intruding...
> 
> I recently started work on making a lightweight browser for WebKit on
> Windows through COM+.NET, which actually has been a great success. I'm
> happy to report that I'm able to use the latest nightly build (r39553)
> from within a .NET Windows Form.  I don't mind publishing the wrapper
> in the future to help further the development of WebKit, but I'm
> having an issue which is preventing me from moving forward...
> 
> To sum it up the best I can, if I have a WebView on a form, and I call
> "setHostWindow" with that form's handle, I experience no behavioral
> issues. If I create a panel on the form, and I use that as the host
> handle, the WebView works as designed.
> But, if I create a tab control and add multiple tab pages, and use
> panels on those tabs to host the control, when the form is active, the
> WebView does not act as if it is active (it doesn't display the cursor
> for text boxes and other fields, and the safari theme for the scroll
> bar does not light up).
> 
> The first tab page works properly, but the other tab pages display
> this behavior.
> 
> Example of appropriate behavior on the first tab... form is active,
> control shows proper focus
> http://img49.imageshack.us/img49/9758/example1rc5.jpg
> 
> The second tab, when it's active (and the form is active), the WebView
> control doesn't show proper focus, and the text box does not show the
> focus ring correctly either...
> http://img530.imageshack.us/img530/4653/example2tg6.jpg
> 
> I think the easiest way to fix this problem, would be to allow manual
> control of the "active state" of the WebView control through the COM
> interface. Manually setting the state through events that fire on the
> Windows forms would be an incredibly easy task. But, I'm not sure how
> difficult it is to change the base code (if there's a lot of hoops to
> jump through), or whether or not it's actually appropriate to solve
> this problem in that manner...
> 
> Either way, I would appreciate it a lot if someone got back to me.
> I've been trying to figure out how to get around this issue for the
> last couple days (even tried manually sending signals to the control
> via the windows API), but I haven't been able to get anything working
> yet.
> 
> Thanks for reading,
> Mike
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Hi-All-%28Windows-WebKit-through-COM%2C-focus-issue%29-tp21273592p24934802.html
Sent from the Webkit mailing list archive at Nabble.com.

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


Re: [webkit-dev] Hi, how can I know the whole architecture of webkit?

2009-05-28 Thread Amit Nargund
Hi,

If you are interested in understanding the painting part of it, there is a
separate folder \WebCore\rendering which cover all rendering part. Although
I would suggest debugging will help you a lot in understaning the webkit
architecture.


On Wed, May 27, 2009 at 4:37 PM, webkitUser  wrote:

>
> Hi,
>
> Am interested in understanding the painting part of it, which specific
> portion of the code should I look at?
>
> Thanks in advance,
>
>
> Holger Freyther-6 wrote:
> >
> > On Thursday 14 May 2009 12:05:29 JIN Wei wrote:
> >> Hi, guys:
> >>
> >> As a newbie to open source software , I wonder where can I find the
> >> docs of the architecture of webkit.
> >> And how can I get start?
> >
> > As hard it might sound. There is no architecture documentation available
> > at
> > this moment, the code is all we have.
> >
> > Regarding starting, the question is what do you want to learn? There are
> > blog
> > posts by Dave Hyatt on the surfin safari blog how the render tree is
> > working,
> > there is a video by Lars Knoll and George Staikos on Yahoo explaining the
> > history and ideas of KHTML/WebKit.
> >
> > Do you have any specific interest? CSS? Layout? Painting? DOM?
> Networking?
> > Editing?
> >
> >   z.
> > ___
> > webkit-dev mailing list
> > webkit-dev@lists.webkit.org
> > http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Hi%2C-how-can-I-know-the-whole-architecture-of-webkit--tp23537660p23740316.html
> Sent from the Webkit mailing list archive at Nabble.com.
>
> ___
> 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] Hi, how can I know the whole architecture of webkit?

2009-05-27 Thread webkitUser

Hi,

Am interested in understanding the painting part of it, which specific
portion of the code should I look at?

Thanks in advance,


Holger Freyther-6 wrote:
> 
> On Thursday 14 May 2009 12:05:29 JIN Wei wrote:
>> Hi, guys:
>>
>> As a newbie to open source software , I wonder where can I find the
>> docs of the architecture of webkit.
>> And how can I get start?
> 
> As hard it might sound. There is no architecture documentation available
> at 
> this moment, the code is all we have.
> 
> Regarding starting, the question is what do you want to learn? There are
> blog 
> posts by Dave Hyatt on the surfin safari blog how the render tree is
> working, 
> there is a video by Lars Knoll and George Staikos on Yahoo explaining the 
> history and ideas of KHTML/WebKit.
> 
> Do you have any specific interest? CSS? Layout? Painting? DOM? Networking? 
> Editing?
> 
>   z.
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Hi%2C-how-can-I-know-the-whole-architecture-of-webkit--tp23537660p23740316.html
Sent from the Webkit mailing list archive at Nabble.com.

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


Re: [webkit-dev] Hi, how can I know the whole architecture of webkit?

2009-05-14 Thread Holger Freyther
On Thursday 14 May 2009 12:05:29 JIN Wei wrote:
> Hi, guys:
>
> As a newbie to open source software , I wonder where can I find the
> docs of the architecture of webkit.
> And how can I get start?

As hard it might sound. There is no architecture documentation available at 
this moment, the code is all we have.

Regarding starting, the question is what do you want to learn? There are blog 
posts by Dave Hyatt on the surfin safari blog how the render tree is working, 
there is a video by Lars Knoll and George Staikos on Yahoo explaining the 
history and ideas of KHTML/WebKit.

Do you have any specific interest? CSS? Layout? Painting? DOM? Networking? 
Editing?

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


[webkit-dev] Hi, how can I know the whole architecture of webkit?

2009-05-14 Thread JIN Wei
Hi, guys:

As a newbie to open source software , I wonder where can I find the docs
of the architecture of webkit.
And how can I get start?

Best regards.

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


[webkit-dev] Hi All (Windows WebKit through COM, focus issue)

2009-01-03 Thread Mike
I just joined this list, so hopefully I'm not intruding...

I recently started work on making a lightweight browser for WebKit on
Windows through COM+.NET, which actually has been a great success. I'm
happy to report that I'm able to use the latest nightly build (r39553)
from within a .NET Windows Form.  I don't mind publishing the wrapper
in the future to help further the development of WebKit, but I'm
having an issue which is preventing me from moving forward...

To sum it up the best I can, if I have a WebView on a form, and I call
"setHostWindow" with that form's handle, I experience no behavioral
issues. If I create a panel on the form, and I use that as the host
handle, the WebView works as designed.
But, if I create a tab control and add multiple tab pages, and use
panels on those tabs to host the control, when the form is active, the
WebView does not act as if it is active (it doesn't display the cursor
for text boxes and other fields, and the safari theme for the scroll
bar does not light up).

The first tab page works properly, but the other tab pages display
this behavior.

Example of appropriate behavior on the first tab... form is active,
control shows proper focus
http://img49.imageshack.us/img49/9758/example1rc5.jpg

The second tab, when it's active (and the form is active), the WebView
control doesn't show proper focus, and the text box does not show the
focus ring correctly either...
http://img530.imageshack.us/img530/4653/example2tg6.jpg

I think the easiest way to fix this problem, would be to allow manual
control of the "active state" of the WebView control through the COM
interface. Manually setting the state through events that fire on the
Windows forms would be an incredibly easy task. But, I'm not sure how
difficult it is to change the base code (if there's a lot of hoops to
jump through), or whether or not it's actually appropriate to solve
this problem in that manner...

Either way, I would appreciate it a lot if someone got back to me.
I've been trying to figure out how to get around this issue for the
last couple days (even tried manually sending signals to the control
via the windows API), but I haven't been able to get anything working
yet.

Thanks for reading,
Mike
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] hi,I am newbie to Webkit,can you help me?

2008-12-14 Thread Zoltan Horvath

Hi,

first and foremost, you should get acquainted with http://webkit.org site.

After this, try to build webkit in your preferred platform. (To do this, you 
have a look at the site "Working with the Code" section.)

You should also have a look at http://trac.webkit.org/wiki pages.

Zoltan

胡 波 wrote at: 2008. 12. 14. 05.10.:
> I am newbie to Webkit,I want to study,could you explain to me the steps
> that study?And how to explant the windowmobile?

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


[webkit-dev] hi,I am newbie to Webkit,can you help me?

2008-12-13 Thread 胡 波
I am newbie to Webkit,I want to study,could you explain to me the steps that 
study?And how to explant the windowmobile?


  ___ 
  好玩贺卡等你发,邮箱贺卡全新上线! 
http://card.mail.cn.yahoo.com/
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Hi, this is my first post - HTML 5

2008-11-06 Thread Michael(tm) Smith
Juan Pablo Goldfinger <[EMAIL PROTECTED]>, 2008-11-07 00:30 -0200:

>  I like to know if there a list of html5's tags that webkit supports.
> 
>  I would like to test the element , is it implemented?

 isn't supported in any browser yet. Nor are most of the
other newly added elements in the HTML5 draft -- with the
exceptions of ,  and 

You can check yourself on implementation status of specific
elements/parts of the draft by taking a look at the marginal
annotations in each section; for example:

  http://www.whatwg.org/specs/web-apps/current-work/#datagrid
  http://www.whatwg.org/specs/web-apps/current-work/#the-canvas-element

Not all of the annotations are up to date, but I think most of the
ones for new elements and features are -- so if the
"Implementation status" part of the annotation for a new element
or feature is blank, it most likely does mean it's not been
implemented in any browser yet.

  --Mike

-- 
Michael(tm) Smith
http://people.w3.org/mike/
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Hi, this is my first post - HTML 5

2008-11-06 Thread Juan Pablo Goldfinger

Hi All,

I like to know if there a list of html5's tags that webkit supports.

I would like to test the element , is it implemented?


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