Re: [webkit-dev] produce a new version of webkit

2008-10-13 Thread houda hocine
Hi ,

Thanks for the answer ,

Please I search the discussion for a long time, but I don't find any thing.
Can you send me the link of discussion please.

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


Re: [webkit-dev] produce a new version of webkit

2008-10-13 Thread Luka Napotnik
Hello.

To remove any dependency to X you have to create a new port and callback
functions for drag/drop, widgets, mouse functionality, .. and redirect
rendering to a surface that isn't dependent on X (like cairo). I tried
that but it's too complex and I was in a hurry. See the mailing list
archives for May 2008, there was a discussion about porting WebKit to
cairo with no X dependency.

Greets,
Luka

Dne 13.10.2008 (pon) ob 02:43 -0700 je goldeneyes zapisal(a):
 Hi,
 
 I made changement in the folowing files
 ChromeClientGtk.h,ContextMenuClientGtk.h, DragClientGtk.h and
 EditorClientGtk.h because they are used bey WebKit / WebKit / gtk / webkit
 / webkitwebview.cpp (I put all lines of code as comments), 
 but when i do . / Programs / GtkLauncher, I got
 lt-GtkLauncher-report-anomalie.txt
 and the message error in the terminal / usr / libexec / lt-GtkLauncher: No
 such file or directory. 
 That it  means that I have removed all graphic?
 
 thank you for any help,
 


signature.asc
Description: To je digitalno podpisan del sporočila
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] produce a new version of webkit

2008-10-13 Thread goldeneyes

Hi,

I made changement in the folowing files
ChromeClientGtk.h,ContextMenuClientGtk.h, DragClientGtk.h and
EditorClientGtk.h because they are used bey WebKit / WebKit / gtk / webkit
/ webkitwebview.cpp (I put all lines of code as comments), 
but when i do . / Programs / GtkLauncher, I got
lt-GtkLauncher-report-anomalie.txt
and the message error in the terminal / usr / libexec / lt-GtkLauncher: No
such file or directory. 
That it  means that I have removed all graphic?

thank you for any help,

-- 
View this message in context: 
http://www.nabble.com/produce-a-new-version-of-webkit-tp19854660p19951606.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] produce a new version of webkit

2008-10-13 Thread Luka Napotnik
Hello.

To remove any dependency to X you have to create a new port and callback
functions for drag/drop, widgets, mouse functionality, .. and redirect
rendering to a surface that isn't dependent on X (like cairo). I tried
that but it's too complex and I was in a hurry. See the mailing list
archives for May 2008, there was a discussion about porting WebKit to
cairo with no X dependency.

Greets,
Luka

Dne 13.10.2008 (pon) ob 02:43 -0700 je goldeneyes zapisal(a):
 Hi,
 
 I made changement in the folowing files
 ChromeClientGtk.h,ContextMenuClientGtk.h, DragClientGtk.h and
 EditorClientGtk.h because they are used bey WebKit / WebKit / gtk / webkit
 / webkitwebview.cpp (I put all lines of code as comments), 
 but when i do . / Programs / GtkLauncher, I got
 lt-GtkLauncher-report-anomalie.txt
 and the message error in the terminal / usr / libexec / lt-GtkLauncher: No
 such file or directory. 
 That it  means that I have removed all graphic?
 
 thank you for any help,
 


signature.asc
Description: To je digitalno podpisan del sporočila
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Compilation error - Javascript

2008-10-13 Thread ehren mann
Hello,

i have the following errors in compilation



--
The following build commands failed:
JavaScriptCore:
CompileC 
/Users/sherifomran/builds/WebKitBuild/JavaScriptCore.build/Deployment/JavaScriptCore.build/Objects-normal/i386/objc_runtime.o
 /Users/sherifomran/builds/JavaScriptCore/bindings/objc/objc_runtime.mm normal 
i386 objective-c++ com.apple.compilers.gcc.4_0
CompileC 
/Users/sherifomran/builds/WebKitBuild/JavaScriptCore.build/Deployment/JavaScriptCore.build/Objects-normal/i386/objc_instance.o
 /Users/sherifomran/builds/JavaScriptCore/bindings/objc/objc_instance.mm normal 
i386 objective-c++ com.apple.compilers.gcc.4_0
(2 failures)
--



kind regards,

Sherif


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


[webkit-dev] My Windows build notes

2008-10-13 Thread Mike Belshe
It took me a while to get my windows build going, so I thought I'd share
what I learned:
1) I had to completely start over with cygwin.  I uninstalled and
reinstalled using the cygwin-downloader from here:
http://webkit.org/building/tools.html

2) Several components were missing from cygwin:
- perl, make, gcc, bison, gperf, curl, unzip, flex

3) Used cpan get Win32API::Registry to download that module

4) After downloading the source, I also had to run update-webkit.  I suspect
this is a required step, although I don't think it is documented?

I'm happy to update documentation if you point me at it; but I'm not sure if
my experience is due to pilot error or if things have changed.

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


[webkit-dev] If you're on Mac, please upgrade to Xcode 3.1

2008-10-13 Thread Maciej Stachowiak
Hello WebKit folks,

We'd like to change some WebKit components to build with GCC 4.2 by  
default on Leopard, for better performance. Unfortunately, this  
compiler is not available on the system by default, so everyone  
building on Mac will have to switch to Xcode 3.1 by default.

We will probably start with a soft switch, where GCC 4.2 is used only  
on Leopard if you have Xcode 3.1, but eventually it will become a hard  
requirement so I recommend upgrading sooner rather than later.

Regards,
Maciej

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


Re: [webkit-dev] WebKit rendering engine for CD autorun program

2008-10-13 Thread Andre-John Mas

On 10-Oct-08, at 16:18 , Михаил Шестаков wrote:

 Hello,

 I need to create a promo CD that starts automatically when disc is
 inserted. I have prepared a bunch of HTML files I want to distibute on
 a CD. These HTML pages are very dynamic and use a lot of JavaScript
 (JQuery to be more exact). The thing is that I don't want to rely on
 end user to have modern browser installed on his machine.

 I am looking for a build of Webkit that is intended for that purpose.
 It would be absolutely amazing to have the same thing available for
 Mac and Linux as well.
 And the best solution would be a program, that builds one big EXE
 package with rendering engine+HTML content which starts fullscreen.

Hi,

Would it not be simpler, to simply have the web pages loaded by the  
user's
favourite browser? Using this approach would ensure that all platforms
have access to the content, and it would probably save you a lot of  
work.

All you need to do is ensure that the auto-run script, if that is the
approach you want to use points to the right place. You should also  
ensure
that an the entry-point HTML is available top level for anyone having
disabled auto-run.

André

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


[webkit-dev] didFailProvisionalLoadWithError with -999 after NSURLConnection initiated during webView willSendRequest

2008-10-13 Thread Bill Patterson
If I initiate a NSURLConnection in a webView willSendRequest, it will  
fail the webView load.
   
-(NSURLRequest *)webView:(WebView *)sender resource:(id)identifier  
willSendRequest:(NSURLRequest *)request redirectResponse: 
(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource  
*)dataSource

{
// Update the status message
   @try
   {

   if (redirectResponse)
   {
   NSMutableURLRequest *mrequest = [request mutableCopy];
   if (mrequest)
   {
   [mrequest retain];
   // create a new connection using NSURLConnection
   myConnection = [[NSURLConnection alloc] initWithRequest:mrequest  
delegate:self]; 
   }

   }
   }
   .
   .
}


2008-10-13 22:55:48.523 MyApp[1653:813] WebView Error  
didFailProvisionalLoadWithError: Error Domain=NSURLErrorDomain  
Code=-999 UserInfo=0x162bc8f0 Operation could not be completed.  
(NSURLErrorDomain error -999.)



Does anyone know why this is happening?

Thanks,

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