search for: xmlsocket

Displaying 6 results from an estimated 6 matches for "xmlsocket".

2007 Aug 22
0
3 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_function.c test/trace
...SharedObject; +_global.Sound = Sound; +_global.Stage = Stage; +_global.String = String; +_global.System = System; +_global.TextField = TextField; +_global.TextFormat = TextFormat; +_global.TextSnapshot = TextSnapshot; +_global.Video = Video; +_global.XML = XML; +_global.XMLNode = XMLNode; +_global.XMLSocket = XMLSocket; +_global.clearInterval = clearInterval; +_global.clearTimeout = clearTimeout; +_global.enableDebugConsole = enableDebugConsole; +_global.escape = escape; +_global.flash = flash; +_global.isFinite = isFinite; +_global.isNaN = isNaN; +_global.o = o; +_global.parseFloat = parseFloat; +_gl...
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
...quot;_global", "TextField", false], + ["_global", "TextFormat", false], + ["_global", "TextSnapshot", false], + ["_global", "Video", false], + ["_global", "XML", false], + ["_global", "XMLSocket", false], + ["_global", "clearInterval", false], + ["_global", "enableDebugConsole", false], + ["_global", "escape", false], + ["_global", "isFinite", false], + ["_global", "isNaN", false],...
2008 Jan 21
1
70 commits
...various stuff. Unfortunately, this grew a bit out of hand and ended up being very huge. I expect this merge to have broken lots of things, so if you find stuff that used to work and now doesn't work (or even crashes), please poke me about it. What does this patch contain? - We now have sockets (XMLSocket isn't implemented yet though - even that was my original goal). Using the SwfdecSocket class, users can implement their own socket interface (swfdec-gtk has an implementation using libsoup) - The security architecture got a complete revamp - the nice thing is that now there'll be a warning...
2006 Jul 20
16
Juggernaut Released - (a.k.a Armageddon)
...gernaut.rubyforge.org I?ve also finished a demo that illustrates some of Juggernuat?s capabilities. You can sign up for an account here: http://alexmaccaw.no-ip.info:3500/login/sign_up . It might be a tad slow as it?s running from my home machine. Juggernaut for Ruby on Rails initiates a flash xmlsocket between server and browser allowing real time communication between the two. This opens the door to all sorts of functionality such as chats and collaborative wikis/cms. The open socket connection allows the server to ''push'' base64 encoded javascript to the browser which is su...
2007 Dec 18
2
Changes to 'refs/tags/0.5.5'
...9;s properties Forgot to mark the Selection methods as static in the stubs Add special case to trace_properties.as for _global.flash.text.TextRenderer Add stubs for TextRenderer Add stubs for TextSnapshot Add a test for TextSnapshot's properties Add stubs for XMLSocket Add a test for XMLSocket's properties Implement Point Add a test for Point's properties Add a test for Point's methods Add a test for Point's constructor and static polar-method Add libswfdec/swfdec_text_renderer.c that I forgot earlier Some...
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...FDEC_IS_PLAYER (player), NULL); + g_return_val_if_fail (url != NULL, NULL); + + file = g_object_new (SWFDEC_TYPE_POLICY_FILE, NULL); + file->player = player; + file->load_url = swfdec_url_copy (url); + file->url = swfdec_url_new_parent (url); + if (swfdec_url_has_protocol (url, "xmlsocket")) { + SWFDEC_FIXME ("implement xmlsocket: protocol"); + } else { + file->stream = swfdec_loader_load (player->priv->resource->loader, url, + SWFDEC_LOADER_REQUEST_DEFAULT, NULL, 0); + swfdec_loader_set_target (file->stream, SWFDEC_LOADER_TARGET (file)); +...