Re: [webkit-dev] Spatial Navigation: any users?

2014-03-17 Thread Mohan, Nitin
We at Sony use spatial navigation on consoles and hand helds. /N -Original Message- From: webkit-dev-boun...@lists.webkit.org [mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of Brian Holt Sent: Tuesday, February 18, 2014 1:49 AM To: 'Konstantin Tokarev'; 'Andreas Kling'; webkit-de

[webkit-dev] [patch] fix webkit-gtk build with automake 1.12

2012-07-10 Thread Kamble, Nitin A
automake 1.12 has deprecated use of mkdir_p, and it recommends use of MKDIR_P instead. Changed the code to avoid these kind of warning-errors. ./.deps/DerivedSources make[1]: ./.deps/DerivedSources: Command not found make[1]: *** [all-local] Error 127 Signed-Off-By: Nitin A Kamble 2012/07/10

[webkit-dev] Need help in understanding Frame::setZoomFactor

2009-09-03 Thread Nitin Mahajan
scaling of Frame occurs? regards -Nitin Get your new Email address! Grab the Email name you've always wanted before someone else does! http://mail.promotions.yahoo.com/newdomains/aa/ ___ webkit-dev mailing list webkit-dev@lists.webkit.org

[webkit-dev] How to Adjust scrollPosition after Frame::setZoomFactor

2009-08-25 Thread Nitin Mahajan
correct post zooming scrollPosition so that I can call setScrollPosition with appropriate args and I can see the same content in the view port even after zooming? regards -Nitin Get your new Email address! Grab the Email name you've always wanted before someone else does!

Re: [webkit-dev] Browser application, how to serialize

2009-07-01 Thread Nitin Mahajan
k such questions on qt-interest list, or post it to > StackOverflow, or > contact Qt support if you are a paid customer, or just call > your nearest Qt > consultant. I will take care of this. regards -Nitin Get your preferred Email name! Now you can @ymail.com and @rocketma

[webkit-dev] Browser application, how to serialize

2009-06-30 Thread Nitin Mahajan
get displayed on console in s sequence they are written in code. I want to display the label before starting to zoom and hide the label after the frame has been zoomed. Can you please help me in knowing how can I serialize these functionalities? regards -Nitin New Email addresses a

Re: [webkit-dev] webkit-dev Digest, Vol 47, Issue 27

2009-04-29 Thread Nitin
hi, One question to ask Where is the code for operator loading like "==" ">" etc etc for built in objects like Date n so on? On Tue, Apr 28, 2009 at 7:32 PM, wrote: > Send webkit-dev mailing list submissions to >webkit-dev@lists.webkit.org > > To subscribe or unsubscribe via the World Wi

Re: [webkit-dev] webkit-dev Digest, Vol 47, Issue 5

2009-04-05 Thread Nitin
Answer To Question 5. 1.You need to build yr webkit with ./autogen --enable-debug option , I hope yu already gone thru this. 2.If ddd is nt working (which shud happen in ideal case), why dont yu better ui debugger kdbg . On Sun, Apr 5, 2009 at 7:32 PM, wrote: > Send webkit-dev mailing list sub

Re: [webkit-dev] webkit-dev Digest, Vol 46, Issue 11

2009-03-11 Thread Nitin
hello, I got some questions which are basic , but they confuse me so Can AnyOne tell me where I can send my doubts. One simple among them is what is run-time and built in type object, which are they . Like we have something like Array Object, Date objects , N i suppose they are built-in types , but

Re: [webkit-dev] webkit-dev Digest, Vol 46, Issue 9

2009-03-09 Thread Nitin
hello, I have some thing to ask :- how can i get the diff between two revisions of webkit. lets take an example of r36XXX and r40XXX. Is there any Logging system with webkit.org developers that they changed this and that , this could be very helpful for us. Thank you. On Mon, Mar 9, 2009 at 7:34 P

[webkit-dev] How to render error message in to main window from webkit

2009-03-02 Thread Nitin Walke
Hi, I can show curl error message in Dialog window. But I want to show message in main window so how can I proceed?How can we render our curl error message from webkit to main window or from gtk+ to main window? any suggestion is appreciated.. Regard, Nitin Walke

Re: [webkit-dev] How to show text message on browser

2009-02-24 Thread Nitin Walke
Hi , I have caught this errorcode in FrameLoaderGtkClient.cpp ,from here can we send message to browser?i.e Can we send user message in browser from webkit? Regards, On Mon, Feb 23, 2009 at 7:58 PM, Nitin Walke wrote: > Hi all, > > I have to show some user defined message in browser.

[webkit-dev] How to show text message on browser

2009-02-23 Thread Nitin Walke
Hi all, I have to show some user defined message in browser.How can I show in browser? pop-window is one where we can show, but I want to show it in browser main window.I am using gtk as front end. suggestion will be appreciated Regards, Nitin

Re: [webkit-dev] Error Handling in webkit

2009-02-22 Thread Nitin Walke
gards, Nitin On Fri, Feb 20, 2009 at 6:58 AM, Jenson Lui wrote: > Hello, > > For the errorcode, my code just directly pass the curl error > code. Refer to the > curl header file for the error code and do a curl error <-> http error > convert. > > Regards, > Jenson

[webkit-dev] Error Handling in webkit

2009-02-19 Thread Nitin Walke
roper errormessage on browser using this errorcode? Regards, Nitin ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

[webkit-dev] How can I debug webkit in debugger?

2009-02-18 Thread Nitin Walke
Hi all, How can I debug webkit in debugger? I am using opensuse and I have build webkit using "WebKitTools/Scripts/build-webkit --gtk --debug" command. How can I debug webkit in ddd debugger using GtkLauncher? Regards, ___ webkit-dev mailing list webkit

Re: [webkit-dev] How to handle error response on the browser when the HTTP request fails

2009-02-16 Thread Nitin Walke
ResourceError that I don't know.Can I get exact steps to get the error like changes in the files and build the webkit,gtk etc. Thanks & Regards, Nitin On Fri, Feb 13, 2009 at 10:50 AM, zaheer ahmad wrote: > I think you need to set CURLOPT_FAILONERROR on the curl handle for the curl >

Re: [webkit-dev] How to handle error response on the browser when the HTTP request fails

2009-02-12 Thread Nitin Walke
FrameloaderClient::dispatchDidFailLoading for GTK; and found that the control flow does not reach there. Am I missing something here? Your inputs will be appreciated. Regards, Nitin On Thu, Feb 12, 2009 at 11:55 AM, zaheer ahmad wrote: > If you are using curl backend, network errors are already repor

[webkit-dev] How to handle error response on the browser when the HTTP request fails

2009-02-11 Thread Nitin Walke
Hi, I am new to Webkit and have developed a basic browser using Webkit GTK port on linux. I want to show error response on the browser when the HTTP request fails for some reason like bad gateway or Server error etc. Currently the browser does not show any response in case of any error. Please adv

[webkit-dev] Error Handling in webkit

2009-02-05 Thread Nitin Walke
Hi all How can I do error handling in webkit? Suppose I have given wrong URL then how can I show proper message? How can I handle this situation?Can you give sample example? Thanks in advance.. Regards, Nitin Walke ___ webkit-dev mailing list webkit

[webkit-dev] glibmm-2.4.8 make error

2009-01-13 Thread Nitin Walke
Hi all, package glibmm-2.4.8 is required for gtkmm. I am getting the following error make[3]: Entering directory `/home/nitin/Desktop/Downloads/glibmm-2.4.8/glib/glibmm' if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"glibmm\" -DG_DISABLE

[webkit-dev] IDE for gtk+

2009-01-08 Thread Nitin Walke
Hi all, I have created sample browser in GTK+ with webkit. I want to debug it so which IDE should use to debug. Can you give me sample application in debug mode for gtk+. Thanks in advance Regards, Nitin Walke ___ webkit-dev mailing list webkit-dev

Re: [webkit-dev] start with webkit

2009-01-06 Thread Nitin Walke
Hello , I have build webkit for gtk port. problem was with libicu that I have installed now and I am able to created one sample browser with basic functionality and it works fine. thanks for help Regards, Nitin Walke On Fri, Jan 2, 2009 at 9:53 PM, Shariq Rizvi wrote: > > This page i

[webkit-dev] start with webkit

2009-01-02 Thread Nitin Walke
Hi, I am new and I am starting study of webkit. I have downloaded source code of webkit and want to build for GTK port. iwch command to give that I don't know. right now I am building it on suse platform. Please give some link to start with sample application. Regards, Nit ___

Re: [webkit-dev] NPAPI Support

2008-03-24 Thread Nitin Mahajan
dnesday 19 March 2008 14:04:32 Nitin Mahajan wrote: > > Hello! > > > > Is there an NPAPI support on qt platform already > implemented and whether > > Mozilla mplayer-plugin should work straightaway? > > > > Thanking in advance > > > > regards &g

Re: [webkit-dev] NPAPI Support

2008-03-19 Thread Nitin Mahajan
--- On Wed, 19/3/08, Benjamin Meyer <[EMAIL PROTECTED]> wrote: > From: Benjamin Meyer <[EMAIL PROTECTED]> > Subject: Re: [webkit-dev] NPAPI Support > To: [EMAIL PROTECTED] > Cc: webkit-dev@lists.webkit.org > Date: Wednesday, 19 March, 2008, 7:06 PM > On Wednesda

[webkit-dev] NPAPI Support

2008-03-19 Thread Nitin Mahajan
Hello! Is there an NPAPI support on qt platform already implemented and whether Mozilla mplayer-plugin should work straightaway? Thanking in advance regards regards -Nitin Send instant messages to your online friends http://uk.messenger.yahoo.com

[webkit-dev] MPlayer plugin

2008-03-13 Thread Nitin Mahajan
to the r30028 version of WebKit, it crashes very frequently, even when I don't try to open any media file. Thanking in advance regards -Nitin Send instant messages to your online friends http://uk.messenger.yahoo.com ___ webkit-dev mailing

Re: [webkit-dev] MPlayer plugin

2008-03-12 Thread Nitin Mahajan
hi! --- Andre-John Mas <[EMAIL PROTECTED]> wrote: > > On 10-Mar-08, at 05:30 , Nitin Mahajan wrote: > > > HI All! > > > > Is there a MPlayer plugin for Web Kit? > > What platform? On MacOS X for example Safari, and > the nightly WebKit, > buil

Re: [webkit-dev] MPlayer plugin

2008-03-10 Thread Nitin Mahajan
--- Andre-John Mas <[EMAIL PROTECTED]> wrote: > > On 10-Mar-08, at 05:30 , Nitin Mahajan wrote: > > > HI All! > > > > Is there a MPlayer plugin for Web Kit? > > What platform? On MacOS X for example Safari, and > the nightly WebKit, > buil

[webkit-dev] MPlayer plugin

2008-03-10 Thread Nitin Mahajan
HI All! Is there a MPlayer plugin for Web Kit? regards -Nitin Send instant messages to your online friends http://uk.messenger.yahoo.com ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

[webkit-dev] MPlayer plugin

2008-03-07 Thread Nitin Mahajan
HI! I was thinking of playing streaming movies through the WebKit based browser application. The Trac says that MPlayer is also known to work as plug-in. Any pointers to that? Also, whether the Web Kit based plug-ins will work only on Mac OS and not on Linux? regards -Nitin Send instant