Re: [webkit-dev] Seeking for the document of designing webkit or webcore.

2007-07-05 Thread Shraddhesh Chaturvedi
http://developer.apple.com/documentation/Cocoa/Conceptual/DisplayWebContent/DisplayWebContent.html

http://websvn.kde.org/*checkout*/trunk/KDE/kdelibs/khtml/DESIGN.html?pathrev=496562

The second link is actually about KHTML(rendering library of WebCore). I
benefited a lot from it. 

On Fri, 2007-07-06 at 09:56 +0800, wallace lee wrote:
> Hi all,
> I am doing some research about the webkit,especially webcore.
> I have not found some useful  document on the internet,even on
> webkit.org.
> If you have the document or information on this aspect,please send to
> me. It will do great favor for me.
> Thanks in advance.
> best wishes.
> lee.wallace
> ___
> 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] lists and tables in contentEditable

2007-07-05 Thread Timothy Hatcher
We don't have plans to add support for these yet. But bug reports  
requesting the features and patches are always are always welcome.


— Timothy Hatcher


On Jul 5, 2007, at 6:54 PM, piet wrote:

NSTextView supports the edition of lists and tables through  
orderFrontListPanel: and orderFrontTablePanel:


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


Re: [webkit-dev] lists and tables in contentEditable

2007-07-05 Thread Maciej Stachowiak


On Jul 5, 2007, at 7:40 PM, Oliver Hunt wrote:


What do you mean?

The contenteditable attribute is already supported on more or less  
all elements, including , , , , , , etc


We don't have special pop-up panels for list and table editing.  
However, we do have support for the right operations in JavaScript.


Regards,
Maciej



--Oliver

On 5/07/2007, at 6:54 PM, piet wrote:

NSTextView supports the edition of lists and tables through  
orderFrontListPanel: and orderFrontTablePanel:


Is there any plan to support these in the contentEditable fields of  
a WebView?



Be a better Globetrotter. Get better travel answers from someone  
who knows.

Yahoo! Answers - Check it out.
___
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


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


Re: [webkit-dev] lists and tables in contentEditable

2007-07-05 Thread Oliver Hunt

What do you mean?

The contenteditable attribute is already supported on more or less  
all elements, including , , , , , , etc


--Oliver

On 5/07/2007, at 6:54 PM, piet wrote:

NSTextView supports the edition of lists and tables through  
orderFrontListPanel: and orderFrontTablePanel:


Is there any plan to support these in the contentEditable fields of  
a WebView?



Be a better Globetrotter. Get better travel answers from someone  
who knows.

Yahoo! Answers - Check it out.
___
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


[webkit-dev] Seeking for the document of designing webkit or webcore.

2007-07-05 Thread wallace lee

Hi all,
I am doing some research about the webkit,especially webcore.
I have not found some useful  document on the internet,even on webkit.org.
If you have the document or information on this aspect,please send to me. It
will do great favor for me.
Thanks in advance.
best wishes.
lee.wallace
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] lists and tables in contentEditable

2007-07-05 Thread piet
NSTextView supports the edition of lists and tables through 
orderFrontListPanel: and orderFrontTablePanel:

Is there any plan to support these in the contentEditable fields of a WebView?
 

   
-
Be a better Globetrotter. Get better travel answers from someone who knows.
Yahoo! Answers - Check it out.___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] where is a documentation?

2007-07-05 Thread Geoffrey Garen
WebKit also has COM and C++ interfaces. There's no official  
documentation on them.


Geoff

On Jul 2, 2007, at 4:02 AM, Oleg Sukhodolsky wrote:

The doc is about Objective-C interface.  Does this mean that this is  
the only interface WebKit has?  or there is some C/C++/any-other- 
language one?


Thanks, Oleg.

Geoffrey Garen wrote:
I'm investigating possibility to use WebKit as a embedded html  
renderer, but I've failed to find any documentation on API I could  
use for this :(
http://developer.apple.com/documentation/Cocoa/Conceptual/DisplayWebContent/index.html#/ 
/apple_ref/doc/uid/1164i Geoff


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


Re: [webkit-dev] Cookies in GDK Port

2007-07-05 Thread sachin J Puranik
Actully,
Once you give the file name ,I think by default curl starts saving your
cookies as and when you receive them. So i think you need not to call
curl_easy_clenup(). I am not sure of this.

The best solution i think is disable the cookie handling in the curl.
and handle it on your own outside the webkit, Through the Cookiejar
interface. setCookie,Cookies, and cookiesEnabled functions.

if curl creates the cookie file , you will have following problems.

1) Deleting individual cookie from the Cookie list is not supported.
2) Disabling the Cookies Runtime is not supported. if you want to
achieve this you need to forcefully add the cookie header in the
request , so that curl does not add , which is a over head.
3)you will not be able to show the cookie list with the details to user.
It's not that it is not possible. but then again you need to get the
info from curl and show it..
4) you will have to maintain the list of Blocked domains outside and
handle it. so cookie handling will be at two places.
5) even i saw a bug in the curl cookie handling in GDK port. 
login to gmail.com>close the window> Try to fetch the gmail...gmail
will not come. it is due to cookies.


Regards
Sachin




On Wed, 2007-07-04 at 21:48 +0200, Holger Freyther wrote:
> Am 22.06.2007 um 16:26 schrieb sachin J Puranik:
> 
> > Basically file WebCore/platform/gdk/CookieJarGdk.cpp contains  
> > setCookies, cookies, enableCookies functions.
> > Which are called from JS Core through Document->HTMLDocument.This i  
> > already know.
> >>> From ResourceHandleManager I already checked and it is actully  
> >>> passing setings to curl along with the CallBackfunctions.
> > It also facilitates to pass the CookieJar file name to curl ...and  
> > further curl maintains it. this also i checked earlier.
> >
> > So from my thinking curl is responsible for adding the cookies to  
> > the request and saving them in the file.
> > But there are following problems...
> >
> > 1) I Gave the CookieJar file name to curl, and even file is  
> > created. Now if i Login to Gmail, Close the browser and Again try  
> > to load Gmail it's not opening.
> > it is definitely due to problem in cookie handling.
> > 2) If i Want to show the Available Cookies details to user , i can  
> > not do that , as file exists with curl.
> >
> > Please suggest me some architectural changes ..?? which solves my  
> > both the problems...??
> > the solution you suggested earlier may not serve my purpose.
> 
> Well,
> 
> I just browsed the documentation of curl and stumbled across this part
> 
> "CURLOPT_COOKIEJAR
> Pass a file name as char *, zero terminated. This will make libcurl  
> write all internally known cookies to the specified file when  
> curl_easy_cleanup(3) is called."
> 
> And we never call curl_easy_cleanup, actually I make it call  
> curl_easy_cleanup but the d'tor of ResourceHandleManager is never  
> called. The question is how to call curl_easy_cleanup without  
> interfering with pending requests.
> 
> What about you sharing some ideas on how to solve this problem?
> 
> One of the obvious solutions is to call cleanup when all pending  
> operations are done and then create a new one. The danger is  
> "starving", to avoid this we could hot-swap but risk losing a cookie  
> on this way. Looking forward for your ideas.
> 
> 
> 
> z.
> 
> 
> 
> 
> ___
> 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] Accessing Web Kit DOM properties via Javascript

2007-07-05 Thread Andrew Murphy
Thank you. :) 


- - - - - - - - -
-[andrew murphy]-
flash subject matter expert
[EMAIL PROTECTED]

delvinia interactive
214 king street west, suite 214
toronto canada M5H 3S6
voice 416.364.1455 ext. 232
fax 416.364.9830
www.delvinia.com

CONFIDENTIALITY NOTICE
This email message may contain privileged or confidential information. If
you are not the intended recipient or received this communication by error,
please notify the sender and delete the message without copying or
disclosing it.

AVIS DE CONFIDENTIALITÉ
Ce message peut contenir de l'information légalement privilégiée ou
confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
détruire le contenu sans le communiquer a d'autres ou le reproduire.


-Original Message-
From: Maciej Stachowiak [mailto:[EMAIL PROTECTED] 
Sent: July 4, 2007 5:44 PM
To: Andrew Murphy
Cc: webkit-dev@lists.webkit.org
Subject: Re: [webkit-dev] Accessing Web Kit DOM properties via Javascript


On Jul 4, 2007, at 11:22 AM, Andrew Murphy wrote:

> Ahh.. I see now.  Thank you for clearing that up for me. :)
>
> Forgive me for asking but, does anyone know if there is a way to 
> access the true coordinates of page elements?

Yes, you can use offsetTop and offsetLeft properties in combination with
offsetParent. Some Googling will tell you how to make it work.

  - Maciej

>
>
>
> - - - - - - - - -
> -[andrew murphy]-
> flash subject matter expert
> [EMAIL PROTECTED]
>
> delvinia interactive
> 214 king street west, suite 214
> toronto canada M5H 3S6
> voice 416.364.1455 ext. 232
> fax 416.364.9830
> www.delvinia.com
>
> CONFIDENTIALITY NOTICE
> This email message may contain privileged or confidential information. 
> If you are not the intended recipient or received this communication 
> by error, please notify the sender and delete the message without 
> copying or disclosing it.
>
> AVIS DE CONFIDENTIALITÉ
> Ce message peut contenir de l'information légalement privilégiée ou 
> confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir 
> reçu par erreur ce message, nous vous saurions gré d'en aviser 
> l'émetteur et d'en détruire le contenu sans le communiquer a d'autres 
> ou le reproduire.
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Maciej  
> Stachowiak
> Sent: July 3, 2007 5:16 PM
> To: Darin Adler
> Cc: webkit-dev Development
> Subject: Re: [webkit-dev] Accessing Web Kit DOM properties via  
> Javascript
>
>
> On Jul 3, 2007, at 2:10 PM, Darin Adler wrote:
>
>> On Jul 3, 2007, at 2:07 PM, Maciej Stachowiak wrote:
>>
>>> On Jul 3, 2007, at 1:51 PM, Andrew Murphy wrote:
>>>
 For example, is it possible to access the "coords" property of an
 "HTMLAnchorElement" like this:
>>>
>>> "coords" only applies to an HTMLAreaElement, not an
>>> HTMLAnchorElement.
>>
>> Are you sure?
>>
>> This lists coords for the anchor element: http://www.w3.org/TR/DOM-
>> Level-2-HTML/html.html
>
> You're right, and the coords markup attribute is even allowed for A.
> Looking at the original example more closely, the result is an empty  
> string
> because no coords attribute is set on the A element in the markup.  
> coords
> reflects an attribute value, it does not give the true coordinates  
> of the A
> element. coords is meant for use with client- side image maps, and  
> to my
> knowledge only has an actual effect for AREA, not A.
>
> Regards,
> Maciej
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo/webkit-dev
>
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.5.476 / Virus Database: 269.10.0/886 - Release Date:  
> 04/07/2007
> 1:40 PM
>
>
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.5.476 / Virus Database: 269.10.0/886 - Release Date:  
> 04/07/2007
> 1:40 PM
>
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo/webkit-dev

No virus found in this incoming message.
Checked by AVG Free Edition. 
Version: 7.5.476 / Virus Database: 269.10.0/886 - Release Date: 04/07/2007
1:40 PM
 

No virus found in this outgoing message.
Checked by AVG Free Edition. 
Version: 7.5.476 / Virus Database: 269.10.0/886 - Release Date: 04/07/2007
1:40 PM
 

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


[webkit-dev] S60 build error : mwldsym2.exe: Undefined symbol:

2007-07-05 Thread Mayur Kankanwadi
Hi All,

Fixed it, was caused by one of the variables pointing to a defunct
installation folder.

--Mayur.


DISCLAIMER
==
This e-mail may contain privileged and confidential information which is the 
property of Persistent Systems Pvt. Ltd. It is intended only for the use of the 
individual or entity to which it is addressed. If you are not the intended 
recipient, you are not authorized to read, retain, copy, print, distribute or 
use this message. If you have received this communication in error, please 
notify the sender and delete all copies of this message. Persistent Systems 
Pvt. Ltd. does not accept any liability for virus infected mails.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] Help making a focus loop test case that works under IE and Gecko?

2007-07-05 Thread Darin Adler

This is a strange place to be asking this, but:

Does anyone know how to make JavaScript that advances the currently  
focused node as hitting the tab key would for IE and for Gecko? Not  
focusing a particular node, but advancing the focus using the  
engine's concept of which is the next node that receives focus when  
you hit the tab key.


This would really help me in building a test case.

In WebKit, I can create a tab key keyboard event, and then when I  
dispatch it focus advances as it would if you hit the tab key. Is  
there an equivalent in these other browsers? Do you have a working  
example?


-- Darin

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