Re: [webkit-dev] Handling upload progresses

2008-11-11 Thread Holger Freyther
On Wednesday 12 November 2008 02:16:03 André Pedralho wrote: > A network reply handler might be good, but if could not get a network > reply when one upload starts I guess I will not be able to get a > handler for it... > > Did I miss something? Well, you can set the QNetworkAccessManager or such

Re: [webkit-dev] Handling upload progresses

2008-11-11 Thread André Pedralho
On Tue, Nov 11, 2008 at 2:32 PM, Holger Freyther <[EMAIL PROTECTED]> wrote: > On Tuesday 11 November 2008 14:46:12 André Pedralho wrote: >> Hi all, >> >> I'm just wondering if there is a way to get upload progresses the same >> way we can do with download ones. >> > > Not out of the box. Are you ta

Re: [webkit-dev] Handling upload progresses

2008-11-11 Thread Holger Freyther
On Tuesday 11 November 2008 14:46:12 André Pedralho wrote: > Hi all, > > I'm just wondering if there is a way to get upload progresses the same > way we can do with download ones. > Not out of the box. Are you talking about PUSH/PUT. You might want to look at this[1]. So basicly we know how big t

Re: [webkit-dev] Moving forward with Gtk

2008-11-11 Thread lkcl
Phoenix Revived wrote: > > I am trying to write a browser that uses a remote controller for input. I > also need the DOM stuff working. If nothing hapens soon, I may have to > abandon Webkit/Gtk and either use mozilla's crappy API or do my own > home-brewed stuff. I have also been playing with

Re: [webkit-dev] Moving forward with WebKit/GTK+

2008-11-11 Thread lkcl
Gustavo Noronha Silva-5 wrote: > > The fact that WebKit/GTK+ doesn't go forward is starting to harm its > momentum in the GNOME community, from my point of view - Epiphany is > already having to decide if they take back the decision to move from > Gecko to WebKit > that would be most unfor

Re: [webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Justin Haygood
Or maybe even xdg-open, which opens a URL in the user's preferred web browser - Original Message - From: "Pierre-Luc Beaudoin" <[EMAIL PROTECTED]> To: "Ajay Gautam" <[EMAIL PROTECTED]> Cc: Sent: Tuesday, November 11, 2008 8:09 AM Subject: Re: [webkit-dev] launch webkit browser from my

[webkit-dev] Handling upload progresses

2008-11-11 Thread André Pedralho
Hi all, I'm just wondering if there is a way to get upload progresses the same way we can do with download ones. I mean, when a download starts it raises a download requested signal (QWebPage), which can be used to get the related QNetworkRequest. With this network request I'm able to get a netwo

[webkit-dev] how to reduce memory usage?

2008-11-11 Thread Robin C
Hi, I have ported webkit to a mobile platform. I'm wondering if there is anyway to reduce the overall memory usage, regardless of the performance. Can anyone give me a clue? Thanks! ___ webkit-dev mailing list webkit-dev@lists.webkit.org http:/

Re: [webkit-dev] Doubts on QNetworkAccessManager

2008-11-11 Thread André Pedralho
Hi Benjamin, thanks for your elucidations and sorry if I'm being newbie with my questions. Follows some more ones: On Fri, Nov 7, 2008 at 5:19 PM, Benjamin Meyer <[EMAIL PROTECTED]> wrote: > On Nov 3, 2008, at 11:34 AM, André Pedralho wrote: > > Hi all, >> >> I'm using the new QNetworkAccessMan

Re: [webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Pierre-Luc Beaudoin
Le mardi 11 novembre 2008 à 14:17 +0530, Ajay Gautam a écrit : > I want to launch my webkit browser from my c code as following: GtkLauncher is not a real browser, you should rather use Epiphany or Midori, which are much more feature complete. -- Pierre-Luc Beaudoin Collabora __

Re: [webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Mark Rowe
On Nov 11, 2008, at 12:47 AM, Ajay Gautam wrote: Hi , I want to launch my webkit browser from my c code as following: pId = fork(); if(pId) { execl("/GtkLauncher","sh","-c",NULL); } but its not launching . Please can anybody tell me that where i am doing wrong?

[webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Ajay Gautam
Hi , I want to launch my webkit browser from my c code as following: pId = fork(); if(pId) { execl("/GtkLauncher","sh","-c",NULL); } but its not launching . Please can anybody tell me that where i am doing wrong? Thanx Ajay _