Hi there, i would like to establish a webkit community in Jaipur,
Rajasthan, India(the emerging IT place of India). Can you please help
me out with this.?

Regards
- Dron Rathore

On 10/29/12, webkit-help-requ...@lists.webkit.org
<webkit-help-requ...@lists.webkit.org> wrote:
> Send webkit-help mailing list submissions to
>       webkit-help@lists.webkit.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>       http://lists.webkit.org/mailman/listinfo/webkit-help
> or, via email, send a message with subject or body 'help' to
>       webkit-help-requ...@lists.webkit.org
>
> You can reach the person managing the list at
>       webkit-help-ow...@lists.webkit.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of webkit-help digest..."
>
>
> Today's Topics:
>
>    1. Audio broken in coursera.org (Carlos Pita)
>    2. Dragging custom plugin in embedded WebView on osx
>       (Olivier Palliere)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sun, 28 Oct 2012 21:23:49 -0300
> From: Carlos Pita <carlosjosep...@gmail.com>
> To: webkit-help@lists.webkit.org
> Subject: [webkit-help] Audio broken in coursera.org
> Message-ID:
>       <caelgyhcdfcdfdow6mlymadhfg6t87khtjfoo6+oiqc6km-e...@mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi all,
>
> I've built webkitgtk-1.11.1 with webaudio support (against
> gstreamer-0.10, for gstreamer-1.0 compilation aborted with a missing
> header message I can't remember now). I've enabled webaudio with
> g_object_set(G_OBJECT(settings), "enable-webaudio", TRUE, NULL). I've
> tested this with a number of webkit backed browsers also. In each
> case, I got no sound from coursera.org. Test for example any video in
> https://class.coursera.org/gametheory/lecture/preview/index . Sound
> plays fine in firefox and chromium. I'm not even sure whether the
> issue is webaudio related or not but I'm no expert in this subject so
> I ask you for help diagnosing the problem.
>
> Some details of my platform that may be relevant:
>
> up to date archlinux
>
> gstreamer0.10 0.10.36-1
> gstreamer0.10-bad 0.10.23-3
> gstreamer0.10-bad-plugins 0.10.23-3 (gstreamer0.10-plugins)
> gstreamer0.10-base 0.10.36-1
> gstreamer0.10-ffmpeg 0.10.13-1 (gstreamer0.10-plugins)
> gstreamer0.10-good 0.10.31-1
>
> Best regards
> --
> Carlos
>
>
> ------------------------------
>
> Message: 2
> Date: Mon, 29 Oct 2012 17:37:23 +0100
> From: Olivier Palliere <oliv...@molowa.com>
> To: webkit-help@lists.webkit.org
> Subject: [webkit-help] Dragging custom plugin in embedded WebView on
>       osx
> Message-ID: <3e4d3451-2318-475c-b001-47066dbbb...@molowa.com>
> Content-Type: text/plain; charset="us-ascii"
>
> Hi Guys,
>
> I'm using a WebView in my app on mac 10.8 to be used as a text editor, a la
> mail.app.
>
> I have most of what I need, but I'm now facing an issue. I try to move
> around, in editing mode, the content of my webview. If I select text from
> the webview, it works fine, the text is drawn during the drag under the
> mouse, the caret moves under the mouse, and the text is moved to where I
> released my button.
>
> Now if I try to drag around an instance of my plugin (used to display as an
> HTML <object/> an icon with its filename) , nothing happens, the drag is not
> initiated.
>
> I tried to initiate the drag manually with this piece of code:
>
>     DOMRange *selection = [self.myWebview selectedDOMRange];
>
>     if (selection == nil)
>         return;
>
>
>     BOOL selected = ((NSNumber *)[self.currentDOMInformations
> objectForKey:WebElementIsSelectedKey]).boolValue;
>
>     if (selected)
>     {
>
>
>         NSPasteboard *pboard;
>
>         NSArray *types = [[NSArray alloc]
> initWithObjects:WebArchivePboardType, nil];
>
>
>         pboard = [NSPasteboard pasteboardWithName:NSDragPboard];
>         [pboard addTypes:types owner:self];
>
>         //[pboard clearContents];
>
>         [pboard setData:[selection.webArchive data]
> forType:WebArchivePboardType];
>
>         NSImage *image = [NSImage imageNamed:template];
>
>
>          NSPoint mouseLocation = theEvent.locationInWindow;
>
>         [self.myWebview dragImage:image at:mouseLocation
> offset:NSMakeSize(0, 0) event:theEvent pasteboard:pboard
> source:self.myWebview slideBack:YES];
>
>
>     }
> }
>
> It works in the sense that I can now drag the content around (albeit with a
> default image), but dropping actually copies the content instead of moving
> it. And the selection ends up garbaged as the drop seems to prevent my
> webview from processing any new input (keyboard) until I click somewhere in
> the webview to move the caret.
>
> I read on StackOverflow that WebView was one of the most complex views in
> osx, and I tend to agree ;-), so could you let me know if I'm even on the
> right path?
>
> Many thanks;
> Olivier./.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://lists.webkit.org/pipermail/webkit-help/attachments/20121029/27afd83f/attachment-0001.html>
>
> ------------------------------
>
> _______________________________________________
> webkit-help mailing list
> webkit-help@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo/webkit-help
>
>
> End of webkit-help Digest, Vol 40, Issue 13
> *******************************************
>
_______________________________________________
webkit-help mailing list
webkit-help@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-help

Reply via email to