[webkit-dev] More Flood: QCookieJar and Cookie Handling

2008-02-17 Thread Fuenty, Chris
Hello. I don't see much of a way to handle cookies within QtWebkit. I see that there is a QCookieJar created when needed to save cookies for a site session, but discarded after words, and I can't seem to see where/how to access cookies saved from that site. Unless there's already a way for an

Re: [webkit-dev] WebKit application

2008-02-17 Thread Bin Chen
You can see the GtkLauncher accompanied with webkit source code. On Sun, Feb 17, 2008 at 11:22 PM, sval <[EMAIL PROTECTED]> wrote: > > Hi all, > > Can any one suggest me a simple WebKit application..But > I want to test this application on a cross compile platform. > > plz help > >

Re: [webkit-dev] Authentication dialog

2008-02-17 Thread Darin Adler
On Feb 17, 2008, at 8:06 AM, Bill Patterson wrote: > I've tried didReceiveAuthenticationChallenge delegates, but this > hasn't worked in every case, especially on Leopard. The above- > mentioned dialogs work for me every time. Safari uses this delegate to put up authentication sheets for HTTP

Re: [webkit-dev] JavaScript for XML with XSL

2008-02-17 Thread Pierre Bernard
Hi Mark, Eric and all, the following works: function displayResult() { var xmlRequest = new XMLHttpRequest(); xmlRequest.open("GET", "cdcatalog.xml", false); xmlRequest.send(null); xml= xmlRequest.responseXML; var xslRequest = new XMLHttpRequest(); xslRequest.open("GET","cdcatalog.xsl", fals

Re: [webkit-dev] Regarding WebKit Support Libraries

2008-02-17 Thread Guenter Obiltschnig
... and not to mention the very liberal licensing terms (Boost license). Günter On Feb 17, 2008, at 22:20 , Guenter Obiltschnig wrote: > Hi there, > > Another option/alternative to Curl would be POCO - > . It has the advantage of being nice C++ cross-platform code, > a

Re: [webkit-dev] Regarding WebKit Support Libraries

2008-02-17 Thread Guenter Obiltschnig
Hi there, Another option/alternative to Curl would be POCO - . It has the advantage of being nice C++ cross-platform code, available for all major platforms. Already has nice HTTP(S) and FTP client support. Günter On Feb 17, 2008, at 18:15 , Daniel Zucker wrote: >

Re: [webkit-dev] Regarding WebKit Support Libraries

2008-02-17 Thread Brent Fulgham
On Feb 17, 2008, at 10:25 AM, Mike Emmel wrote: > A obvious reason to have this available is it makes it easier to > support > new standards or get around show stopper bugs in closed libraries. I major point in its favor is that it allows several platforms (Qt, GTK, and win32 [modulo non-red

Re: [webkit-dev] Regarding WebKit Support Libraries

2008-02-17 Thread Alp Toker
Daniel Zucker wrote: > Hi Alp and Brent, > > My vote is to use Wininet. Hi Daniel, You can register your vote by writing and offering to maintain a WinINet http backend. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/m

Re: [webkit-dev] Regarding WebKit Support Libraries

2008-02-17 Thread Mike Emmel
I'd like to see a pretty much pure open source solution available for all platforms. By pure I mean down to the core windowing and libc level. As far as porting curl to WinCE. Found this. http://curl.haxx.se/mail/lib-2002-07/0085.html A obvious reason to have this available is it makes it easier

Re: [webkit-dev] Regarding WebKit Support Libraries

2008-02-17 Thread Daniel Zucker
Hi Alp and Brent, My vote is to use Wininet. This is because my objective is to eventually support a WinCE version. Wininet is used in both Win32 and WinCE, so it is a convenient choice from this point of view. CURL would be OK if it could be easily ported to WinCE. I haven't looked into that,

[webkit-dev] Authentication dialog

2008-02-17 Thread Bill Patterson
In Safari, when a site requires authentication, a dialog/sheet is put up requesting username and password. How can I trigger that in my WebKit based application? I noticed Shiira puts up the exact same dialog (accept with a different icon), so I assumed this is a system function. I've

Re: [webkit-dev] JavaScript for XML with XSL

2008-02-17 Thread Mark Rowe
Pierre, On 18/02/2008, at 02:10, Pierre Bernard wrote: function loadXMLDoc(fname) { var xmlDoc; xmlDoc=document.implementation.createDocument("","",null); xmlDoc.async=false; xmlDoc.load(fname); return(xmlDoc); } The code fails with the following error: Value undefined (result of expressi

[webkit-dev] WebKit application

2008-02-17 Thread sval
Hi all, Can any one suggest me a simple WebKit application..But I want to test this application on a cross compile platform. plz help Thanking you'll in advance Regards Sval -- View this message in context: http://www.nabble.com/WebKit-application-tp15530577p15530577

[webkit-dev] Building WebKit using auto tools

2008-02-17 Thread sval
Hi all I have build WebKit using auto tools using the following commands $ ./autogen.sh --prefix=/path/to/install/directory $ make $ ./Programs/GtkLauncher $ make install Running GtkLauncher works fine.=) How different is this from building WebKit using WebKit/WebKitTools/Scr

Re: [webkit-dev] JavaScript for XML with XSL

2008-02-17 Thread Pierre Bernard
Hi Eric, Running Safari 3.1, this produces no output, when entered at http://www.w3schools.com/xsl/tryit.asp?filename=cdcatalog : function loadXMLDoc(fname) { var xmlDoc; xmlDoc=document.implementation.createDocument("","",null); xmlDoc.async=false; xmlDoc.load(fname); return(xmlDoc); }

Re: [webkit-dev] JavaScript for XML with XSL

2008-02-17 Thread Eric Seidel
Safari 3.0 and later supports XSLTProcessor. You can use that. The FAQ is wrong: http://developer.apple.com/internet/safari/faq.html#anchor21 Perhaps one of the Apple guys on this list can get it fixed. -eric On Sun, Feb 17, 2008 at 2:48 AM, Pierre Bernard <[EMAIL PROTECTED]> wrote: > Hi! > >

[webkit-dev] JavaScript for XML with XSL

2008-02-17 Thread Pierre Bernard
Hi! I would like to display XML with an XSL transformation. I know the easy way is to have an iframe point at the XML. Here the XML needs to refer to the XSL. That's precisely what I want to avoid. I don't want the XML to know about the XSL as I want it to be used with several different XSL