Instrucciones Para La Preparación De Ponencias Para Informática

Total Page:16

File Type:pdf, Size:1020Kb

Instrucciones Para La Preparación De Ponencias Para Informática CAZABE: HERRAMIENTA DE AUTOR LIBRE PARA FLASH CAZABE: FREE AUTHORING TOOL FOR FLASH Darien Alonso Camacho Joven Club de Computación y Electrónica, Cuba, [email protected], Colón #222A Sagua la Grande, Villa Clara RESUMEN Cazabe could be useful to designers, cartoons El presente documento refleja un estudio makers and software developers. It might avoid realizado acerca de las opciones para la creación paying for licence of proprietary software. de animaciones y software multimedia usando tecnología flash sobre plataformas GNU/Linux. KeyWords: Flash, free software, linux, open Dada la ausencia de un entorno de desarrollo source integrado para flash en este sistema operativo, se comenzó un proyecto práctico e investigativo que permita suplir esta carencia. Se concibió un 1. INTRODUCCIÓN desarrollo colaborativo, de software libre y código Cuando en el año 2009 fueron creados los abierto, con resultados satisfactorios en la Grupos de Desarrollo de Software en los Joven implementación de la herramienta debido a que Club de Computación y Electrónica (JCCE) de se obtuvo una versión preliminar pero funcional de Cuba, se informó por parte de la dirección que el la misma. perfil de trabajo de los mismos sería el desarrollo Cazabe puede ser útil para diseñadores, de software multimedia y juegos. La plataforma animadores y desarrolladores de software en flash es ampliamente usada en entornos Microsoft general y además evitará el pago de licencias de Windows para la creación de este tipo de programas propietarios de este tipo. programas, sin embargo, al intentar usar únicamente software de código abierto para este Palabras Clave: Flash, software libre, linux, propósito, se llegó a la conclusión de que no código abierto existe una herramienta, distribuida bajo alguna licencia de software libre, que sea lo suficientemente usable para cumplir en tiempo ABSTRACT con un proyecto de envergadura. El proyecto This paper outlines a research about the op­ Cazabe tiene como objetivo lograr un entorno de tions for animations and multimedia software cre­ desarrollo integrado que permita editar gráficos ation using flash technologies on GNU/Linux plat­ vectoriales y código ActionScript en un mismo forms. Because there is not an integrated devel­ ambiente y contribuir a la migración hacia opment environment (IDE) for flash on this oper­ software libre en Cuba y el resto del mundo. ating system, a practical and theoretical project was started to provide it. The purpose is a collab­ 2. METODOLOGÍA orative development of free and open source soft­ ware, encountering good results with this ap­ A continuación se describen algunas proach because nowadays exist an immature but tecnologías y herramientas libres para el functional first version. desarrollo flash sobre GNU/Linux así como algunos proyectos anteriores con metas similares “Informática 2011”. 1 Alonso, Darien. | “CAZABE: HERRAMIENTA DE AUTOR LIBRE PARA FLASH ” a las de Cazabe. Se explican los principales retos Para el desarrollo de aplicaciones de escritorio de implementación y las soluciones brindadas. sobre GNU/Linux, como es este caso, existen varias opciones. En este epígrafe se detallan algunas de las posibilidades y se justifica la 2.1 Estado del arte elección final. Con un estudio acerca de la tecnología flash se pudo constatar que el formato SWF es público y 2.2.1 Lenguajes de programación está bien documentado [1], aunque Adobe controla las modificaciones que se le realizan al Java mismo; por lo tanto crear o usar software que lea Java es un lenguaje de programación o escriba el formato SWF no constituye un delito. completamente orientado a objetos desarrollado En entornos GNU/Linux existen varios por Sun Microsystems a principios de los años 90. reproductores capaces de leer el formato SWF, El lenguaje toma mucha de su sintaxis de C y como gnash C++, pero tiene un modelo de objetos más simple (http://www.gnu.org/software/gnash/) y swfdec y elimina herramientas de bajo nivel, que suelen (http://swfdec.freedesktop.org/), hasta el momento inducir a muchos errores, como la manipulación soportan solamente ActionScript 2.0 y algunas directa de punteros o memoria. características de ActionScript 3.0. Java es un lenguaje multiplataforma, aunque Existe, además, un amplio grupo de proyectos esta portabilidad depende, en gran medida, de la libres relacionados con la tecnología flash que se máquina virtual, es decir, sin la máquina virtual de encuentran hospedados en www.osflash.org, Java instalada tal portabilidad no existe. muchos pensados para propósitos específicos. Permite usar las mismas funcionalidades de En el transcurso del tiempo ha habido intentos escritorio para hacer programas basados en de lograr un clon de Macromedia/Adobe Flash "WEB". Presenta una arquitectura estándar de (Flash) para Linux. QFlash fue uno de ellos, desarrollo orientado a Internet, más que un lográndolo principalmente en la parte de la lenguaje, es toda una plataforma. interfaz gráfica, que es muy parecida, pero aún No tiene punteros y no es necesario destruir así carece de muchas funcionalidades [2]. Por otro los objetos, el sistema posee un recolector lado, F4L [3] fue una aplicación informática que se automático de basura, de forma tal que el desarrolló como alternativa a Flash para programador determina cuándo se crean los GNU/Linux, sin embargo esta no fue muy objetos y el entorno en tiempo de ejecución de difundida. Más tarde QFlash se unió con F4L para Java (JRE) es el responsable de gestionar el ciclo crear un proyecto conjunto llamado UIRA que dejó de vida de los objetos. Las aplicaciones Java de funcionar a mediados de 2007 [4]. están típicamente compiladas en un bytecode, El caso de Ktoon es otro, el objetivo no es aunque la compilación en código máquina nativo realizar un clon de Flash. Ktoon es una también es posible. En tiempo de ejecución, el herramienta de diseño y creación de animaciones rendimiento de una aplicación Java depende más 2D que no persigue ser el reemplazo de Adobe de la eficiencia del compilador, o la JVM, que de Flash en Linux ni brindar la posibilidad de crear las propiedades intrínsecas del lenguaje. El aplicaciones interactivas, está centrado solamente bytecode de Java puede ser interpretado en en la animación [5]. tiempo de ejecución por la máquina virtual, o bien En cuanto a los compiladores de ActionScript, compilado al cargarse el programa, o durante la utilidad indispensable si se desean aplicaciones en propia ejecución, para generar código nativo que flash, sobresalen dos: mtasc y haXe. HaXe es se ejecuta directamente sobre el hardware. Si es capaz de compilar ActionScript 2.0 y 3.0 [6] interpretado, será más lento que usando el código mientras que mtasc solo ActionScript 2.0 [7]. máquina intrínseco de la plataforma destino. Si es compilado, durante la carga inicial o la ejecución, la penalización está en el tiempo necesario para 2.2 Herramientas de desarrollo propuestas llevar a cabo la compilación. El uso de un recolector de basura, añade una sobrecarga que “Informática 2011”. 2 Alonso, Darien. | “CAZABE: HERRAMIENTA DE AUTOR LIBRE PARA FLASH ” puede afectar al rendimiento, o ser apenas apreciable, dependiendo de la tecnología del Python recolector y de la aplicación en concreto. Python es un lenguaje de programación Entre noviembre de 2006 y mayo de 2007, Sun interpretado, creado por Guido Van Rossum a Microsystems liberó la mayor parte de sus principios de los años 90. Se desarrolla como un tecnologías Java bajo la licencia GNU GPL, de proyecto de código abierto, administrado por la acuerdo con las especificaciones del Java Python Software Foundation. Community Process, de tal forma que Es un lenguaje de propósito general, aunque prácticamente todo el Java de Sun es ahora está limitado en el alcance de lo que puede software libre aunque la biblioteca de clases de acceder sobre el sistema; no es adecuado para la Sun que se requiere para ejecutar los programas programación de bajo nivel. Java todavía no es software libre [8]. Python es un lenguaje multiparadigma, permite varios estilos: programación orientada a objetos, C++ programación estructurada y programación C++ es un lenguaje de programación diseñado funcional. Posee una sintaxis sencilla, su tipado es a mediados de los años 1980 por Bjarne dinámico y soporta herencia múltiple. Stroustrup [9]. La intención de su creación fue el El intérprete de Python está disponible en extender al exitoso lenguaje de programación C multitud de plataformas (UNIX, Solaris, Linux, con mecanismos que permitan la manipulación de DOS, Windows, OS/2, Mac OS, etc.), de esta objetos. Su éxito entre los programadores forma los programas escritos sin usar bibliotecas profesionales le ha llevado a ocupar el primer dependientes de una plataforma específica podrán puesto entre las herramientas de desarrollo de correr en todos estos sistemas sin grandes aplicaciones. cambios [10]. C/C++ es multipropósito, diseñado para El hecho de ser interpretado hace que ahorre desarrollar los más diversos tipos de aplicaciones. un tiempo considerable en el desarrollo del Se le conoce como un lenguaje híbrido, dicha programa, pues no es necesario compilar ni denominación proviene de que soporta los enlazar. El intérprete se puede utilizar en modo paradigmas de programación estructurada, la interactivo, lo que facilita experimentar con programación genérica y la programación características del lenguaje, escribir programas orientada a objetos. desechables o probar funciones durante el Su portabilidad es excelente; una gran cantidad desarrollo del
Recommended publications
  • Flash Mx Actionscript Gratis Epub, Ebook
    FLASH MX ACTIONSCRIPT GRATIS Auteur: Bob van Duuren Aantal pagina's: 242 pagina's Verschijningsdatum: 2002-07-20 Uitgever: Duuren Media, Van EAN: 9789059400108 Taal: nl Link: Download hier Macromedia Flash MX & ActionScripting * Hoe worden beoordelingen berekend? Voor het berekenen van de totale sterrenbeoordeling en de procentuele verdeling per ster gebruiken we geen gewoon gemiddelde. In plaats daarvan houdt ons systeem rekening met zaken als hoe recent een recensie is en of de recensent het item op Amazon heeft gekocht. Verder worden recensies ook geanalyseerd om de betrouwbaarheid te verifiëren. Toprecensies Recentste Toprecensies. Beste recensies uit Nederland. Er zijn 0 recensies en 0 beoordelingen van Nederland. Beste recensies uit andere landen. Vertaal alle beoordelingen naar het Nederlands. Geverifieerde aankoop. This is different. Philip achieves this in his own weighty tome nearly pages! Ze kunnen namelijk niet zonder problemen worden vergroot of verkleind. De afbeelding is voor één schermresolutie opgeslagen. Vergroten kan wel, maar dit gaat ten koste van de scherpte van de afbeelding. Vectorafbeeldingen daarentegen kunnen zonder problemen worden aangepast, omdat de coördinaten wiskundig worden herberekend met als gevolg dat vectorafbeeldingen op alle verschillende media hetzelfde worden getoond. Dit garandeert een uniforme presentatie van de gegevens. Samen met de beperkte omvang van het bestand zorgt dit voor een aantal unieke eigenschappen van Flash. Adobe Flash beschikt over een eigen programmeertaal , ActionScript, waarmee men volwaardige websites en applicaties kan ontwikkelen. In nieuwere versies van Flash, vanaf Flash MX, is het door de toevoeging van het LoadVars-object mogelijk gemaakt gemakkelijker te communiceren met MySQL en PHP , waardoor er een wereld opengegaan is voor het gebruiken van dynamische gegevens.
    [Show full text]
  • Using Replicated Execution for a More Secure and Reliable Web Browser
    Using Replicated Execution for a More Secure and Reliable Web Browser Hui Xue Nathan Dautenhahn Samuel T. King University of Illinois at Urbana Champaign huixue2, dautenh1, kingst @uiuc.edu { } Abstract Unfortunately, hackers actively exploit these vulnerabil- ities as indicated in reports from the University of Wash- Modern web browsers are complex. They provide a ington [46], Microsoft [61], and Google [49, 48]. high-performance and rich computational environment Both industry and academia have improved the se- for web-based applications, but they are prone to nu- curity and reliability of web browsers. Current com- merous types of security vulnerabilities that attackers modity browsers make large strides towards improving actively exploit. However, because major browser plat- the security and reliability of plugins by using sandbox- forms differ in their implementations they rarely exhibit ing techniques to isolate plugins from the rest of the the same vulnerabilities. browser [62, 33]. However, these browsers still scatter In this paper we present Cocktail, a system that uses security logic throughout millions of lines of code, leav- three different off-the-shelf web browsers in parallel to ing these systems susceptible to browser-based attacks. provide replicated execution for withstanding browser- Current research efforts, like Tahoma [32], the OP web based attacks and improving browser reliability. Cock- browser [36], the Gazelle web browser [59], and the Illi- tail mirrors inputs to each replica and votes on browser nois Browser Operating System [58] all propose build- states and outputs to detect potential attacks, while con- ing new web browsers to improve security. Although tinuing to run.
    [Show full text]
  • Cross Site Scripting Attacks Xss Exploits and Defense.Pdf
    436_XSS_FM.qxd 4/20/07 1:18 PM Page ii 436_XSS_FM.qxd 4/20/07 1:18 PM Page i Visit us at www.syngress.com Syngress is committed to publishing high-quality books for IT Professionals and deliv- ering those books in media and formats that fit the demands of our customers. We are also committed to extending the utility of the book you purchase via additional mate- rials available from our Web site. SOLUTIONS WEB SITE To register your book, visit www.syngress.com/solutions. Once registered, you can access our [email protected] Web pages. There you may find an assortment of value- added features such as free e-books related to the topic of this book, URLs of related Web sites, FAQs from the book, corrections, and any updates from the author(s). ULTIMATE CDs Our Ultimate CD product line offers our readers budget-conscious compilations of some of our best-selling backlist titles in Adobe PDF form. These CDs are the perfect way to extend your reference library on key topics pertaining to your area of expertise, including Cisco Engineering, Microsoft Windows System Administration, CyberCrime Investigation, Open Source Security, and Firewall Configuration, to name a few. DOWNLOADABLE E-BOOKS For readers who can’t wait for hard copy, we offer most of our titles in downloadable Adobe PDF form. These e-books are often available weeks before hard copies, and are priced affordably. SYNGRESS OUTLET Our outlet store at syngress.com features overstocked, out-of-print, or slightly hurt books at significant savings. SITE LICENSING Syngress has a well-established program for site licensing our e-books onto servers in corporations, educational institutions, and large organizations.
    [Show full text]
  • Free Banners Swf
    Free banners swf Create Free Animated Banners and Sliders. Responsive, mobile friendly. AdWords and DoubleClick compatible. + Free Templates and Image gallery. Online tool, no software installation. Creator for free flash banners. Animate own pictures in the banner. Create flashbanners in 60 seconds without flash skills.​Picture *60 · ​Headers · ​Slide Shows · ​Graphic * Try for Free our online banner creator, choose from over + banner designs and build your advertising campaigns. Make banner ads with stunning designs.​The most advanced yet simple · ​Banner Generator · ​Templates · ​Case Studies. SWF Banner is a software for creating custom flash banners for websites. It is provided with various features designed for this purpose. Free online tool to create Flash banners, menus, buttons and more. Energizing and dynamic animated Flash banner for your website. Size: x Download the latest version of SWF Banner free. Software to make Flash animated intro and banner with multiple scenes. Each flash banner is customizable through a text file. These flash banners are ready to on your website, you don't any flash programming knowledge to use. Insert your Flash SWF movies to the Flash banner. You may download and install the free Adobe Flash Player at Flash Banner Maker is a free and easy-to- use flash banner generator for When you have completed, just publish it in SWF and HTML format and add it to your. Export to SWF, GIF or AVI. SWF Easy - Flash Banner Maker Offer 80+ free and remarkable banner templates, which comply with general industry specs. Step 1: Download the banner SWF file. Please make sure that you understand how to use the free demo banner prior to your purchase.
    [Show full text]
  • Flash E Software Libero Stefano Sabatini
    Flash e software libero Stefano Sabatini GULCh Cagliari, 2009-10-24 GULCh - Gruppo Utenti Linux Cagliari - www.gulch.it Stefano Sabatini, Flash e software libero 1 La tecnologia alla base di Flash ● Un file flash / SWF (Small Web Format / ShockWave Format) è interpretato da una macchina virtuale Flash ● I file SWF possono essere interpretati sia da un interprete standalone sia da un plugin inserito all'interno del browser. ● Il linguaggio della VM è orientato alla renderizzazione di animazioni ● Motore di rendering basato su grafica scalare ● Il linguaggio solitamente utilizzato per la programmazione degli SWF è un file Action Script (2 / 3), gli ambiente di sviluppo visuale generano automaticamente il codice (programmazione “visuale”). ● Esistono vari formati del linguaggio della VM (SWF 1– SWF 10). ● L'esecuzione di uno swiff è soggetto a delle restrizioni di sicurezza ● Con la tecnologia AIR (Adobe Integrate Realtime) è possibile utilizzare la stessa teconologia di sviluppo e renderizzazione per applicazioni desktop native (senza le limitazioni di sicurezza di Flash) ● A partire da Flash 10, supporto a un motore 3D Cagliari, 2009-10-24 GULCh - Gruppo Utenti Linux Cagliari - www.gulch.it Stefano Sabatini, Flash e software libero 2 La tecnologia alla base di Flash ● Supporto a stream multimediali: ● Video: On2 VP6 (Flash 8), Sorenson Spark (Flash 6/7), H.264 (Flash 10) ● Audio: MP3, Nellymoser, Speex (Flash 10), ADPCM ● Tecnologia di comunicazione e streaming multimediale (RTMP, RTMPT, RTMPS, RTMPE) Cagliari, 2009-10-24 GULCh - Gruppo Utenti Linux Cagliari - www.gulch.it Stefano Sabatini, Flash e software libero 3 Ambiti di utilizzo di Flash ● Presentazione di elementi multimediali all'interno di pagine web (youtube / vimeo / facebook) ● Inclusione di animazioni all'interno di pagine web (e.g.
    [Show full text]
  • Entwicklung Interaktiver Quizzes Mit Hilfe Von Adobe Flash, MTASC Und XML
    Institut für Wissensmedien Studienarbeit Entwicklung interaktiver Quizzes mit Hilfe von Adobe Flash, MTASC und XML Thomas Lempa Koblenz, den 27. Juli 2006 Prüfer: Dr. Ingo Dahn Betreuer: Dipl.-Inf., Dipl.-Ing.(FH) Marc Santos STUDIENARBEIT -THOMAS LEMPA Selbstständigkeitserklärung Hiermit erkläre ich, daß ich die vorliegende Arbeit selbstständig angefertigt, nicht ander- weitig zu Prüfungszwecken vorgelegt und keine anderen als die angegebenen Hilfsmittel verwendet habe. Sämtliche wissentlich verwendete Textausschnitte, Zitate oder Inhalte anderer Verfasser wurden ausdrücklich als solche gekennzeichnet. Ja Nein Mit der Einstellung der Arbeit in die Bibliothek bin ich einverstanden. Der Veröffentlichung dieser Arbeit im Internet stimme ich zu. Koblenz, den 27. Juli 2006 Lempa Thomas 2 2 Abstract Zielsetzung: Für die Feuerwehr- und Katastrophenschutzschule Rheinland - Pfalz (LFKS) sollen auf der Basis von Flash und XML interaktive Quizzes realisiert werden, die im Rahmen des Gruppenführerlehrgangs als Lernerfolgskontrolle dienen sollen. Als Grundlage wird ein selbstentwickeltes MVC Framework und Adobe (ehemals Macro- media) Flash herangezogen. Entwicklung: Bei der Entwicklung der Quizzes wurde sehr viel Wert auf eine sys- temunabhängige, bestmöglich standardisierte Datenhaltung gelegt. Hier war die Verbin- dung von Flash und XML eine optimale Lösung. Technik: Mit der Kombination aus ActionScript2, XML und Flash ist es möglich, in- nerhalb kürzester Zeit unterschiedliche Quizzes zu erstellen. Der Grundgedanke bei die- ser Technik ist es, Daten und ihre Repräsentation zu trennen. Die Flash Entwicklungs- umgebung wird für die Erstellung der Views (Darstellungselemente) verwendet. Die Views werden anhand von dynamischen Textfeldern, interaktiven Animationen und wei- teren Darstellungselementen definiert. Diese Views werden über das MVC-Framework mit Actionscript2 angesprochen und mit Inhalten aus einer externen XML Datei gefüllt.
    [Show full text]
  • A Look at Flash Tools for the Linux Environment FLASHFLASH ININ LINUXLINUX Sasan Saidi
    COVER STORY Linux Flash Options A Look at Flash tools for the Linux environment FLASHFLASH ININ LINUXLINUX Sasan saidi, www.sasan.tv saidi, Sasan Flash is today’s tool of choice for animated, interactive web content. But Flash and Linux are worlds colliding. We'll show you the current crop of Open Source Flash authoring solutions. BY JENS FRANKE lash began in 1995, when Future- still the tool that can’t do anything apart And IBM chose Flash as the output Wave presented a forerunner from create annoying intros and flashing format for displaying the content of so- Fknown as FutureSplashAnimator. banners, but that’s a pity, because Flash called Rich Internet Applications on its One year later, Macromedia acquired has come of age. Major IT players are OpenLaszlo open source platform. FutureWave, publishing the first version implementing tools for creating Flash- You may be wondering about some of of Flash in 1997. based user interfaces, such as such as the problems associated with Flash, as Most Flash movies are created in the SAP’s next version of NetWeaver [2]. enumerated by usability guru Jakob Macromedia Flash authoring environ- ment. The file format used with Flash Flash Teething Trouble movies is known as Small Web Format Giving the back button its usual Search engine friendly Flash pages: (SWF). The Macromedia Flash Player [1] function back: http:// codeazur. com. br/ stuff/ fugsp/ has a virtual monopoly on playing SWF http:// www. actionscripts. org/ tutorials/ Flash accessibility support heading in files; according to Macromedia, the fig- intermediate/ Enabling_a_back_button_ the right direction: http:// www.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • A Detailed Look at Cairo's Opengl Spans Compositor Performance
    A Detailed Look at Cairo's OpenGL Spans Compositor Performance Bryce Harrington – Senior Open Source Developer Samsung Research America (Silicon Valley) [email protected] Open Source Group – Silicon Valley 1 © 2013 SAMSUNG Electronics Co. What is Cairo? 2D pen-based drawing model For both display and print Includes backends for acceleration and for vector output formats Open Source Group – Silicon Valley 2 © 2013 SAMSUNG Electronics Co. http://www.tortall.net/mu/wiki/CairoTutorialhttp://www.tortall.net/mu/wiki/CairoTutorial Open Source Group – Silicon Valley 3 © 2013 SAMSUNG Electronics Co. Where is Cairo Used on the Linux Desktop? GTK+/Pango GNOME, XFCE4 Gnuplot Gnucash $$ apt-cache apt-cache rdepends rdepends libcairo2 libcairo2 | |wc wc -l -l Mozilla 712712 Evince (xpdf) Scribus Inkscape : : : Open Source Group – Silicon Valley 4 © 2013 SAMSUNG Electronics Co. Cairo Backends Format backends Platform backends ps image pdf xlib svg xcb cairo-gl quartz win32 beos Open Source Group – Silicon Valley 5 © 2013 SAMSUNG Electronics Co. Cairo-gl on the Linux Desktop Cairo-gl is not enabled for some distros (e.g. Ubuntu): --enable-gl links cairo to libgl NVIDIA's libgl gets linked to every client app Enormous RAM increase per app running (300%) See Launchpad #725434 Several GL backends supported cairo-gl (OpenGL) - EGL, GLX, WGL glesv2 (OpenGL ES 2.0) - EGL glesv3 (OpenGL ES 3.0) - EGL vg (OpenVG) - EGL, GLX cogl - experimental Open Source Group – Silicon Valley 6 © 2013 SAMSUNG Electronics Co. Cairo-gl Compositors Compositing combines visual elements into a single scene The cairo-gl backend has multiple compositors: MSAA Spans Mask Traps cairo-gl heuristically selects best compositor for operation.
    [Show full text]
  • Copyrighted Material
    31136bindex.qxd 5/22/07 8:30 PM Page 349 Index Note to the Reader: Throughout this index bold- dissolves, 258–265 faced page numbers indicate primary discussions filters, 215–220 of a topic. Italicized page numbers indicate FotoBooth application, 270–277 illustrations. masks, 199–206, 207 Media Player, 152–154 metadata A reading, 160, 161 video duration, 163–164 abstract objects, 58 progressive delivery, 48–49, 50 access control lists (ACLs), 308 streaming delivery, 51–52 access control to streams and recording, 308–309 transitions, 225–230 Accordion components, 132 video snapshots, 239–245 ACLs (access control lists), 308 videoconferencing application, 300–305 Action Message Format (AMF), 187 ActionScript Virtual Machine (AVM2), 65 349 ActionScript 2 (AS2) versions addASCuePoint method, 166–167 ■ vs. AS3, 64–66 addEventListener method INDEX bandwidth checking, 111–114 Component, 332 cue points VideoPlayer, 254 captions, 173, 174, 175 Administration Console, 296 chapter links, 178–180, 178 Adobe DevCenter, 313 dynamic, 171 Align property, 79 reading, 168–169 alpha channels dissolves filters with, 207–208, 208 bitmaps for, 246–254 vs. masks, 193 transitions class, 254–257 transparency, 19–20, 193 filters, 210–215 video settings, 34–35 FotoBooth application, 266–270, 267 alternatives in proposals, 12–13 masks, 193–198, 198–199 AMF (Action Message Format), 187 Media Player Animation Codec setting, 20 structure, 94–98 animHandler method, 195, 205 XML playlist in, 149–151 AnimMask.as file, 200 metadata App.as file reading, 160, 161 AS2, 248–250 video duration, 162–163 AS3, 258–260 progressive delivery, 46–47, 47–48 Application class, 291 streaming delivery, 50–51 applyFilter method, 233 transitions, 221–225 archiving, 127 video snapshots, 235–239, COPYRIGHTED235 arrays MATERIAL videoconferencing application, 298–300 cue points, 165 ActionScript 3 (AS3) versions in ListBoxes, 137–138, 138 vs.
    [Show full text]
  • Jabber SDK 9.2 Open Source Documentation
    Open Source Used In Jabber SDK 9.2 This document contains the licenses and notices for open source software used in this product. With respect to the free/open source software listed in this document, if you have any questions or wish to receive a copy of the source code to which you are entitled under the applicable free/open source license(s) (such as the GNU Lesser/General Public License), please contact us at [email protected]. In your requests please include the following reference number 78EE117C99-34115968 Contents 1.1 AES-128 3.0 1.1.1 Available under license 1.2 APR 1.4.6 1.2.1 Available under license 1.3 APR-UTIL 1.4.1 1.3.1 Available under license 1.4 Base64 not versioned 1.4.1 Available under license 1.5 base64.cpp 1.0 1.5.1 Available under license 1.6 csf2g_boost_1.44-modified 1.44 1.6.1 Available under license 1.7 curl 7.25.0 1.7.1 Available under license 1.8 expat 2.1.0 Open Source Used In Jabber SDK 9.2 1 1.8.1 Available under license 1.9 FireBreath 1.6.0 1.9.1 Available under license 1.10 glib 2.27.1 1.10.1 Available under license 1.11 gstreamer 0.10.35.1 1.11.1 Available under license 1.12 gstreamer-plugins-bad 0.10.22.1 1.12.1 Available under license 1.13 gstreamer-plugins-base 0.10.35.1 1.13.1 Available under license 1.14 gstreamer-plugins-good 0.10.30.1 1.14.1 Available under license 1.15 jQuery 1.4.2 1.15.1 Available under license 1.16 ldns 1.6.13 1.16.1 Available under license 1.17 liboil 0.3.16.1 1.17.1 Available under license 1.18 libxml2 2.7.7 1.18.1 Available under license 1.19 libxml2-2.7.7
    [Show full text]
  • Testing and Exploiting Flash Applications
    Testing and exploiting Flash applications fukami @ Chaos Communication Camp, Finowfurt, 2007 Agenda • Introduction • Definitions • Flash and ActionScript Basics • Flash exploitation • Exploits and attacks using Flash • Security on AIR The speaker • works for SektionEins as security consultant and researcher. • deals with web security since 1998 (with interrupts). • recently started FlashSec, a project for documenting and developing methodologies for Flash security auditing. Motivation for this talk • Flash is widely used, the plugin is often activated • Flash has some very funny vectors in sense of security • Interesting bugs and design flaws in player and media servers :) • Start of a Flash security project - www.flashsec.org • Note: Many slides are taken from Stefano di Paolas excellent OWASP talk Some definitions • SWF: Small Web Format / ShockWave Flash • FLA: Proprietary Flash source files used by Adobe Flash IDE • FLV: Flash Video • AS: ActionScript AIR: Adobe Integrated Runtime, Flash/Flex/HTML Desktop • Client • Flex: Flash 9/ActionScript 3 IDE with interface libraries • MXML: XML Interface Markup Language • FDS/LiveCycle: J2EE Services for Flash Remoting • RTMP / RTMPT: Real Time Messaging Protocol (Tunneled) • ABC: ActionScript Byte Code Public Research • Eye On Security (Aug 02) The Flash! Attack Flash Movie with ActionScript function: getURL('javascript: evilcode; ') • Scan Security Wire (Apr 03) Misuse of Macromedia Flash Ads clickTAG getURL (clickTag,'_self'); • Amit Klein (Jul 06) Forging HTTP Request Headers with Flash ActionScript • Stefan Esser (Okt 06) Poking new holes with Flash Crossdomain Policy Files Public Research • Martin Johns, Kanatoko Anvil (Jan 07) Anti-DNS Pinning with AS3 Flash-based scanner (DNS rebinding) • Stefano di Paolo (Mai 07) Talk: Testing Flash Applications bei der OWASP Konferenz in Mailand • There are also quite some advisories regarding Flash Player, JRun, ColdFusion etc.
    [Show full text]