Dynamic, Interactive and Reactive Statistical Graphics for the Web | Simon J. Potter

Total Page:16

File Type:pdf, Size:1020Kb

Dynamic, Interactive and Reactive Statistical Graphics for the Web | Simon J. Potter University of Auckland Department of Statistics Dynamic, Interactive and Reactive Statistical Graphics for the Web Author: Supervisor: Simon J. Potter Dr. Paul Murrell A thesis submitted in partial fulfilment of the requirements for the degree of Master of Science in Statistics, The University of Auckland, 2013. Abstract This thesis describes a body of work in the area of web-based statistical graphics. This is primarily concerned with the development of gridSVG, a package for the R statistical software system. The result of developing gridSVG is that flexible dynamic, interactive, reactive graphics for web pages can now be produced by R. In addition, two other packages have been developed to assist the creation of graphics with gridSVG: selectr and animaker. The motivation and development of all three packages and their intended use cases are discussed. Acknowledgements I would like to thank Dr. Paul Murrell for not only introducing me to grid graphics, but also to gridSVG. Without his prior work, none of this would have been possible. Whenever I needed guidance, he was always there to give clarity to my thoughts or an insightful path for me to pursue. His supervision throughout the duration of my thesis was fantastic and I could not have asked for anything more. I would also like to thank Prof. Chris Wild for leading me to think of the motivating idea for this thesis. His interest in my work, and the suggestions he put forward were greatly appreciated. Preface The content described in this thesis refers to web pages and images that are dynamic, interactive and animated. The nature of this printed document means that it cannot accurately reproduce some of the described content. However, technical reports have been published for most chapters and are viewable as web pages which demonstrate the full dynamic and interactive features of gridSVG images. All technical reports were published on the University of Auckland’s Department of Statistics Technical Report Blog (http://stattech.wordpress.fos.auckland.ac.nz/). These reports contain examples (and their source code) that are interactive and animated, consequently they may be of interest to readers and are listed below: • Title: Working with the gridSVG Coordinate System URL: http://stattech.wordpress.fos.auckland.ac.nz/2012-6-working-with- the-gridsvg-coordinate-system/ Notes: Relates to the content written in chapter 4. • Title: A Structured Approach for Generating SVG URL: http://stattech.wordpress.fos.auckland.ac.nz/2012-7-a-structured- approach-for-generating-svg/ Notes: Relates to the content written in chapter 3. • Title: Introducing the selectr Package URL: http://stattech.wordpress.fos.auckland.ac.nz/2012-10-introducing- the-selectr-package/ Notes: Relates to the content written in chapter 5. • Title: Generating Animation Sequence Descriptions URL: http://stattech.wordpress.fos.auckland.ac.nz/2012-11-generating- animation-sequence-descriptions/ Notes: Relates to the content written in chapter 6. In particular this relates to section 6.1. vi • Title: TimingManager: Animation Sequences in JavaScript URL: http://stattech.wordpress.fos.auckland.ac.nz/2012-13-timingmanager- animation-sequences-in-javascript/ Notes: Relates to the content written in chapter 6. In particular this relates to subsection 6.2.2. • Title: Generating Unique Names in gridSVG URL: http://stattech.wordpress.fos.auckland.ac.nz/2013-3-generating- unique-names-in-gridsvg/ Notes: Relates to the content written in chapter 2. • Title: Generating Structured and Labelled SVG URL: http://stattech.wordpress.fos.auckland.ac.nz/2013-4-generating- structured-and-labelled-svg/ Notes: Relates to the content written in chapter 2. It gives an overview on why and how it is particularly useful. • Title: Advanced SVG Graphics from R URL: http://www.stat.auckland.ac.nz/~paul/Reports/leaf/leaf.html Notes: Relates to the content written in chapter 7. Software The software developed during the course of this thesis are hosted in various locations online. These are listed below: • gridSVG The majority of the content in this thesis describes features of gridSVG that are present in version 1.2. This R package is hosted on R’s CRAN and is therefore installable in R by running the command install.packages("gridSVG"). It is developed on R-Forge, so more up-to-date versions of gridSVG may be available at http://r-forge.r-project. org/projects/gridsvg/. vii • selectr This R package is hosted on R’s CRAN and can be installed by running the command install.packages("selectr"). It is developed on GitHub at https: //github.com/sjp/selectr/, where more recent versions of the package may be available. • animaker At the time of writing, this R package is not available on CRAN. However, the code is freely available online on GitHub https://github.com/pmur002/animaker/. This does means that users will have to download, build and install the package in order to use animaker. • TimingManager This is a JavaScript library that is available at http://sjp.co.nz/projects/timing- manager/. Development occurs on GitHub at https://github.com/sjp/TimingManager/ where more recent versions of the library may be available. Conventions The following typographical conventions are used throughout this thesis: softwareName Indicates that the text is a proper noun, referring to the name of a software application or package, or a programming language. code Indicates computer code in a broad sense. This may include: SVG and HTML tags, keywords, attributes, values, variables. function() Indicates computer code that refers to a function. Contents 1 Introduction 1 1.1 What are these Graphics? . .1 1.2 Existing Software . .7 1.2.1 Server-side Software . .8 1.2.2 Client-side Software . 10 1.3 Summary . 11 2 Generating Unique Names 13 2.1 Name Translation . 13 2.2 Paths . 15 2.3 Name Sharing . 19 2.4 Sub-grobs . 20 2.5 Controlling Output . 23 2.5.1 Paths . 23 2.5.2 Custom Separators . 27 2.5.3 Unique Names . 29 2.5.4 Prefixes . 31 2.5.5 Classes . 34 2.5.6 Output Annotation . 37 2.6 Mappings . 38 2.7 Conclusion . 43 3 Structured SVG Generation 45 3.1 The Previous Approach . 45 3.2 Structured Output with the XML package . 48 3.2.1 Image Construction . 48 3.2.2 In-Memory Images . 50 x Contents 3.2.3 XPath . 50 3.2.4 Inserting Nodes . 53 3.2.5 Tree Simplification . 54 3.3 Conclusion . 54 4 The gridSVG Coordinate System 57 4.1 Introduction . 57 4.2 The gridSVG Coordinate System . 59 4.3 Browser-based Modification . 62 4.4 Modification via the XML Package . 67 4.5 Conclusion . 69 5 The selectr Package 71 5.1 Introduction . 71 5.2 Parsing ..................................... 72 5.3 Translating . 73 5.4 Usage . 76 5.5 Examples . 79 5.5.1 A Complex Example . 81 5.6 Conclusion . 83 6 Animation Sequencing 85 6.1 Describing Animation Sequences . 85 6.1.1 Introduction . 85 6.1.2 Atomic animations . 86 6.1.3 Container animations . 88 6.1.4 Controlling the start and duration of containers . 90 6.1.5 Controlling the start and duration of container content . 90 6.1.6 Operations on containers . 95 6.1.7 Timing schemes . 98 6.1.8 Drawing animation diagrams . 103 6.1.9 Examples . 103 6.1.10 Conclusion . 110 6.2 Applying Animation Sequences in JavaScript ................. 111 6.2.1 Exporting an Animation Sequence . 112 6.2.2 Using Timing Information in the Browser . 114 6.2.3 Complex Examples . 119 Contents xi 6.2.4 Conclusion . 124 7 Advanced SVG Features 127 7.1 Patterns . 127 7.2 Gradients . 135 7.2.1 Linear Gradients . 135 7.2.2 Radial Gradients . 142 7.3 Clipping Paths and Masks . 148 7.3.1 Clipping Paths . 148 7.3.2 Masks . 154 7.3.3 Contexts . 160 7.4 Filter Effects . 164 7.5 Definition and Registration . 167 7.5.1 Inspecting Registered Definitions . 170 7.6 Element Grobs . 173 7.7 Conclusion . 176 8 Examples 177 8.1 LOESS Smoothing . 177 8.2 Interactive ARIMA Model Diagnostics . 181 8.3 Sampling Variation Teaching Visualisation . 183 9 Discussion 193 9.1 Improvements . 193 9.1.1 Naming . 193 9.1.2 Coordinate Systems . 194 9.1.3 Node-based SVG . 194 9.1.4 Content Selection . 195 9.1.5 Animation Sequencing . 195 9.1.6 Advanced SVG Content . 196 9.2 Complexity . 197 9.3 Limitations . 197 9.4 Future Directions . 199 9.5 Conclusion . 200 Bibliography 201 List of Figures 1.1 An R image being included within an HTML document. .1 1.2 Multiple static images generated by the animation package are included in an HTML document. The images are stitched together to create an animation. .2 1.3 Multiple static images can be included within an HTML document with custom JavaScript used to provide interactivity and/or animation. .3 1.4 A plot generated by packages that can embed animation in an SVG image. The image is included within an HTML document, with interactivity provided by JavaScript..............................4 1.5 A change in the state of a web page allows new static images to be requested from R.
Recommended publications
  • Jeff Jaffe, CEO, W3C
    Publishing and the Open Web Platform W3C and the Publishing Industry Edupub Conference Jeff Jaffe, CEO, W3C Photo from Cristina Diaz 20 years ago the Web created new experiences for publishing Reading . Hyperlinks (i.e., non-linear reading) Publishing . Global distribution . Anyone could publish (low barriers) . New advertising opportunities (search engines, pop-ups) But… . impoverished style, layout of early Web no match for print . low resolution screens, slow processors Trends of past decade have further transformed reading, publishing Internet everywhere Mobility Social Customization Cloud Broadband Multi-function devices Much higher quality display, typesetting, speed Many industries feeling the impact Mobile Television Automotive Health Care Gaming Digital signage Government But publishing in particular Pew: Survey Finds Rising Reliance on Libraries as a Gateway to the Web But publishing in particular Pew: “News is becoming a shared social experience as people exchange links and recommendations as a form of cultural currency in their social networks.” Pew: “In the past year, the number of those who read e-books increased from 16% of all Americans ages 16 and older to 23%. At the same time, the number of those who read printed books in the previous 12 months fell from 72% of the population ages 16 and older to 67%.” The Bookseller: “In all of 2012, e-book sales doubled their volume […] in the United Kingdom” Pew: “[The] number of owners of either a tablet computer or e-book reading device […] grew from 18% in late 2011 to 33% in late 2012.” That is because Publishing = Web Web is “intimately” tied to the intrinsic purpose of publishing .
    [Show full text]
  • D3.3 Workshop Report
    Ref. Ares(2011)1319643 - 07/12/2011 OMWeb Open Media Web Deliverable N° D3.3 Standardisation Workshop report 3 December 2011 D3.3 Standardisation Workshop Report 3 Page 1 of 71 Standardisation Workshop Report 3 Name, title and organisation of the scientific representative of the project's coordinator1: Dr Philipp Hoschka Tel: +33-4-92385077 Fax: +33-4-92385011 E-mail: [email protected] Project website2 address: http://openmediaweb.eu/ Project Grant Agreement number 248687 Project acronym: OMWeb Project title: Open Media Web Funding Scheme: Coordination & Support Action Date of latest version of Annex I against which the August 15, 2009 assessment will be made: Deliverable number: D3.3 Deliverable title Standardisation Workshop Report 3 Contractual Date of Delivery: M24 Actual Date of Delivery: December 5, 2011 Editor (s): François Daoust Author (s): François Daoust Reviewer (s): Dr. Philipp Hoschka Participant(s): ERCIM/W3C Work package no.: 3 Work package title: Standardisation Work package leader: François Daoust Work package participants: ERCIM/W3C Distribution: PU Version/Revision (Draft/Final): Version 1 Total N° of pages (including cover): 71 Keywords: HTML5, Games, Standardisation, W3C 1 Usually the contact person of the coordinator as specified in Art. 8.1. of the grant agreement 2 The home page of the website should contain the generic European flag and the FP7 logo which are available in electronic format at the Europa website (logo of the European flag: http://europa.eu/abc/symbols/emblem/index_en.htm ; logo of the 7th FP: http://ec.europa.eu/research/fp7/index_en.cfm?pg=logos). The area of activity of the project should also be mentioned.
    [Show full text]
  • Cascading Style Sheets Programmers Reference.Pdf
    Cascading Style Sheets 2.0 Programmer's Reference Cascading Style Sheets 2.0 Programmer’s Reference Eric A. Meyer Osborne/McGraw-Hill 2600 Tenth Street Berkeley, California 94710 U.S.A. To arrange bulk purchase discounts for sales promotions, premiums, or fund-raisers, please contact Osborne/McGraw-Hill at the above address. For information on translations or book distributors outside the U.S.A., please see the International Contact Information page immediately following the index of this book. Cascading Style Sheets 2.0 Programmer’s Reference Copyright © 2001 by The McGraw-Hill Companies. All rights reserved. Printed in the United States of America. Except as permitted under the Copyright Act of 1976, no part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior written permission of the publisher, with the exception that the program listings may be entered, stored, and executed in a computer system, but they may not be reproduced for publication. 1234567890 DOC DOC 01987654321 ISBN 0-07-213178-0 Publisher Brandon A. Nordin Vice President & Associate Publisher Scott Rogers Acquisitions Editor Jim Schachterle Project Editor Madhu Prasher Acquisitions Coordinator Tim Madrid Copy Editor Mike McGee Proofreader Paul Tyler Indexer Claire Splan Computer Designers Tara Davis and Lucie Ericksen Illustrator Michael Mueller Series Design Peter F. Hancik This book was composed with Corel VENTURA™ Publisher. Information has been obtained by Osborne/McGraw-Hill from sources believed to be reliable. However, because of the possibility of human or mechanical error by our sources, Osborne/McGraw-Hill, or others, Osborne/McGraw-Hill does not guarantee the accuracy, adequacy, or completeness of any information and is not responsible for any errors or omissions or the results obtained from use of such information.
    [Show full text]
  • Web for Everyone Web on Everything Knowledge Base Trust and Confidence
    newsletter http://www.w3c.nl Nieuwsbrief december 2011 Editorial Om het nieuwe jaar goed te beginnen nodigen we je graag uit om op donderdag 12 januari 2012 Editde gezamenlijke nieuwjaarsbijeenkomst te bezoeken, die we organiseren samen met meer dan 20 nationale en internationale organisaties uit de internetwereld. Locatie is het sfeervolle Felix Meritis in Amsterdam. Van e-infrastructuur tot .nl, van digitale burgerrechten tot en met digitale certifica- ten, van toegankelijkheid voor blinden tot hosting providers - iedereen doet mee. En er is genoeg te bespreken, want het afgelopen jaar is een bewogen jaar geweest voor het internet. De discussie rondom netneutraliteit, de teloorgang van DigiNotar, het op raken van IPv4. Tijdens de avond zelf zijn er parallel aan het grootschalige 'social event' ook de nodige inhoudelijke activiteiten, waaron- der het traditionele voorzittersdebat en een aantal interessante 'lightning talks'. Dit jaar is er een informele programmacommissie in het leven geroepen (Fons Kuijk, Sandra Gijzen, Mirjam Kuehne, Cees de Laat, Michiel Leenaars en Romeo Zwart) om het programma voor de Lightning talks vorm te geven. We nodigen iedereen binnen de Nederlandse internetgemeenschap uit om ons hun voorstellen voor lezingen en presentaties te sturen - liefst zo snel mogelijk - zodat we de aanwezigen op 12 januari het beste programma ooit kunnen voorschotelen. Stuur je ideeën naar de programmacommissie. Zorg dat je er in ieder geval bij bent en registreer vandaag nog! [met dank aan RIPE NCC voor het verzorgen van de registratie] Indien u vragen heeft, neem contact op met Michiel Leenaars of met Sandra Gijzen. Fons Kuijk Nieuwsbrieven worden met regelmaat door het W3C Kantoor Benelux uitgegeven.
    [Show full text]
  • Web for Everyone Web on Everything Knowledge Base Trust and Confidence
    newsletter http://www.w3c.nl Nieuwsbrief j u n i 2 0 1 1 E d i t o r i a l Het is handig om vorm en inhoud van elkaar gescheiden te houden. Dat is een standpunt die je Editsnel duidelijk kunt maken en als die les eenmaal is geleerd blijft die ook wel bij. In het kort is dat de gedachte die heeft geleid tot Cascading Style Sheets (CSS). Dat is niet bepaald nieuws, want in 1994 werd al aan CSS gewerkt. Het is niet bepaald een controversieel onderwerp, dus dan is het toch wel opmerkelijk te noemen dat nu pas gemeld kan worden dat bestaande implementaties de standaard volgen (zie "Cascading Style Sheets trots op ongekende Interoperabiliteit"). Een bewijs dat voor het werk aan standaarden geduld en uithoudingsvermogen nodig is. Bert Bos kan trots zijn op het resultaat. Alle leden van W3C hebben een vertegenwoordiger in de Adviescommissie. Een van de taken van die commissie is het benoemen van de leden van de Adviesraad, een negenkoppig orgaan dat advies geeft aan het W3C management. Zie "W3C Advisory Committee kiest Advisory Board" voor de nieuwe samenstelling van de raad. Hoeveel zintuigen heeft een mens? Via het web komen daar vele nieuwe "zintuigen" bij volgens het rapport van de Semantic Sensor Network Incubator Group (zie "Incubator Group Report: Semantic Sensor Network XG Final Report"). Fons Kuijk Nieuwsbrieven worden met regelmaat door het W3C Kantoor Benelux uitgegeven. Ze bevatten het laatste nieuws over W3C activiteiten en evenementen die door of in samenwerking met het Kantoor Benelux worden georganiseerd. Aanmelden of afmelden voor deze nieuwsbrief kan via een bericht naar: [email protected].
    [Show full text]
  • Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification W3C First Public Working Draft 12 April 2016
    Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification W3C First Public Working Draft 12 April 2016 This version: http://www.w3.org/TR/2016/WD-CSS22-20160412/ Latest version: http://www.w3.org/TR/CSS22/ Latest CSS level 2: http://www.w3.org/TR/CSS2/ Latest CSS: http://www.w3.org/TR/CSS/ Editors' draft: http://dev.w3.org/csswg/css2/ Editors: Bert Bos <BERT @w3.org> Former editors: Tantek Çelik <TANTEK @cs.stanford.edu> Ian Hickson <IAN @hixie.ch> Håkon Wium Lie <HOWCOME @opera.com> Chris Lilley <CHRIS @w3.org> Ian Jacobs <IJ @w3.org This document is also available in these non-normative formats: plain text p.0, gzip'ed tar file p.0, ZIP FILEp.0, gzip'ed PostScript p.0, PDFp.0. See also translations. Copyright © 2016 W3C® (MIT, ERCIM, Keio, Beihang). W3C LIABILITY, TRADEMARK AND document use rules apply. Abstract This specification defines Cascading Style Sheets level 2. CSS is a style sheet language that allows au- thors and users to attach style (e.g., fonts and spacing) to structured documents (e.g., HTML documents and XML applications). By separating the presentation style of documents from the content of documents, CSS simplifies Web authoring and site maintenance. CSS 2.2 is the second revision of CSS level 2 [CSS2]p.363. It corrects a few errors in CSS 2.1, the first revision of CSS level 2. It is not the latest version of CSS. See the "CSS Snapshot" [CSS]p.363 for an overview of specifications that make up the whole of CSS.
    [Show full text]
  • Sample Slides
    Styling the New Web: Web Usability with Style Sheets Page 1 of 17 Styling the New Web Web Usability with Style Sheets A CHI 2003 Tutorial Steven Pemberton CWI and W3C Kruislaan 413 1098 SJ Amsterdam The Netherlands [email protected] www.cwi.nl/~steven This document is an extract from the full notes; it is written in XHTML and uses CSS. It should go without saying that to properly appreciate this document, you have to view it with a browser with good CSS support. Such browsers include IE 5 or higher, Netscape 5 or higher, Mozilla or its derivatives, and Opera. Extracts are divided by thick lines that look like this: Styling the New Web: Web Usability with Style Sheets Page 2 of 17 Agenda The day is split into four blocks, each of 90 minutes. Each block consists of about 45 minutes lecture, followed by 45 minutes practical. The breaks between blocks are 30 minutes, with 90 minutes for lunch. Block 1 Introduction, basic CSS: selectors, fonts, colours. Break Block 2 Intermediate level: advanced selectors, inheritance, margins, borders, padding. Lunch Block 3 Advanced: text properties, background, positioning, cascading. Break Block 4 The Future: XML and XHTML. Styling the New Web: Web Usability with Style Sheets Page 3 of 17 About the Instructor Steven Pemberton is a researcher at the CWI, The Centre for Mathematics and Computer Science, a nationally-funded research centre in Amsterdam, The Netherlands, the first non-military Internet site in Europe. Steven's research is in interaction, and how the underlying software architecture can support the user.
    [Show full text]
  • Introducing Constraints Into Web Layouts
    Introducing Constraints into Web Layouts: Evaluating the Intuitiveness of Current Approaches for Designers MASTER’S THESIS by William Clear, 11101906 submitted to obtain the degree of MASTER OF SCIENCE (M.SC.) at TH KÖLN – UNIVERSITY OF APPLIED SCIENCES INSTITUTE OF INFORMATICS Course of Studies WEB SCIENCE First supervisor: Prof. Dr. Kristian Fischer TH Köln - University of Applied Sciences Second supervisor: Prof. Christian Noss TH Köln - University of Applied Sciences Cologne, July 2016 Contact Details: William Clear [email protected] Prof. Dr. Kristian Fischer TH Köln – University of Applied Sciences Institute of Informatics Steinmüllerallee 1 51643 Gummersbach [email protected] Prof. Christian Noss TH Köln – University of Applied Sciences Institute of Informatics Steinmüllerallee 1 51643 Gummersbach [email protected] 2 Abstract When it comes to web applications and their dynamic content, one seemingly common trouble area is that of layouts. Frequently, web designers resort to frameworks or JavaScript- based solutions to achieve various layouts where the capabilities of Cascading Style Sheets (CSS) fall short. Although the World Wide Web Consortium (W3C) is attempting to address the demand for more robust and concise layout solutions to handle dynamic content with the recent and upcoming specifications, a generic approach to creating layouts using constraint syntax has been proposed and implementations have been created. Yet, the introduction of constraint syntax would change the CSS paradigm in a fundamental way, demanding further analysis to determine the viability of its inclusion in core web standards. This thesis focuses on one particular aspect of the introduction of constraint syntax: how intuitive constraint syntax will be for designers.
    [Show full text]
  • Cascading Style Sheets
    Cascading Style Sheets Cascading Style Sheets, fondly referred to as CSS, is a simple design language intended to simplify the process of making web pages presentable. CSS handles the look and feel part of a web page. Using CSS, you can control the color of the text, the style of fonts, the spacing between paragraphs, how columns are sized and laid out, what background images or colors are used, layout designs,variations in display for different devices and screen sizes as well as a variety of other effects. CSS is easy to learn and understand but it provides powerful control over the presentation of an HTML document. Most commonly, CSS is combined with the markup languages HTML or XHTML. Advantages of CSS CSS saves time − You can write CSS once and then reuse same sheet in multiple HTML pages. You can define a style for each HTML element and apply it to as many Web pages as you want. Pages load faster − If you are using CSS, you do not need to write HTML tag attributes every time. Just write one CSS rule of a tag and apply it to all the occurrences of that tag. So less code means faster download times. Easy maintenance − To make a global change, simply change the style, and all elements in all the web pages will be updated automatically. Superior styles to HTML − CSS has a much wider array of attributes than HTML, so you can give a far better look to your HTML page in comparison to HTML attributes. Multiple Device Compatibility − Style sheets allow content to be optimized for more than one type of device.
    [Show full text]
  • Preview CSS Tutorial (PDF Version)
    About the Tutorial CSS is used to control the style of a web document in a simple and easy way. CSS stands for Cascading Style Sheets. This tutorial covers both the versions CSS1 and CSS2 and gives a complete understanding of CSS, starting from its basics to advanced concepts. Audience This tutorial will help both students as well as professionals who want to make their websites or personal blogs more attractive. Prerequisites You should be familiar with: Basic word processing using any text editor. How to create directories and files. How to navigate through different directories. Internet browsing using popular browsers like Internet Explorer or Firefox. Developing simple Web Pages using HTML or XHTML. If you are new to HTML and XHTML, then we would suggest you to go through our HTML Tutorial or XHTML Tutorial first. Copyright & Disclaimer Copyright 2017 by Tutorials Point (I) Pvt. Ltd. All the content and graphics published in this e-book are the property of Tutorials Point (I) Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute or republish any contents or a part of contents of this e-book in any manner without written consent of the publisher. We strive to update the contents of our website and tutorials as timely and as precisely as possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt. Ltd. provides no guarantee regarding the accuracy, timeliness or completeness of our website or its contents including this tutorial. If you discover any errors on our website or in this tutorial, please notify us at [email protected] i Table of Contents About the Tutorial ....................................................................................................................................
    [Show full text]
  • Web Performance E As Plataformas De Venda Online
    Web Performance e as plataformas de venda online JOÃO PEDRO FERNANDES GAMEIRO Outubro de 2019 Web Performance and e-commerce platforms João Pedro Fernandes Gameiro Dissertação para obtenção do Grau de Mestre em Engenharia Informática, Área de Especialização em Engenharia de Software Orientador: Ana Madureira Porto, Outubro 2019 ii Acknowledgements I would like to thank my advisor Dra. Ana Madureira for a great deal of support and assistance, and their availability to answer my questions whenever needed. I would also like to thank to my family for their wise counsel and sympathetic ear. You are always there for me, especially for my mom there were indispensable. Finally, there are my friends, specially Rui Meireles, who were of great support in deliberating over problems and findings, as well as providing happy distraction to rest my mind outside of my research. iii iv Resumo As plataformas de venda de produtos online têm estado cada vez mais presentes na sociedade e no dia a dia das pessoas, sendo vendidos produtos de várias categorias como por exemplo, de vestuário, artigos tecnológicos, decoração, alimentação, entre outros. Todo o processo de compra online pode ditar o sucesso de uma empresa, sendo crucial garantir que todos os clientes tenham uma ótima experiência de compra sem qualquer tipo de fricção, pois estes impedimentos podem fazer com que o consumidor desista da sua intenção. Como consequência, não se pode menosprezar nenhum tipo de consumidor sendo imprescindível garantir que as aplicações de venda online possam ser acedidas com o mesmo nível de qualidade em qualquer tipo de ambiente ou dispositivo.
    [Show full text]
  • Web Development Technologies: HTML and CSS
    Web Development Technologies: HTML and CSS Paul Fodor CSE316: Fundamentals of Software Development Stony Brook University http://www.cs.stonybrook.edu/~cse316 1 Topics HTML CSS 2 (c) Paul Fodor (CS Stony Brook) HTML Hypertext Markup Language Describes structure of a web page Contains elements Elements describe how to render content Elements are enclosed in Tags Tags surround and describe content Start tag –Text in angle brackets (i.e. <body>) End tag –Text with leading slash in angle brackets (i.e. </body>) Tags must be properly nested! Attributes contained inside tags refine the operation of the tag Format is: <tagname attr1=value, attr2=value…> 3 (c) Paul Fodor (CS Stony Brook) A brief history of HTML In 1989, Tim Berners-Lee wrote a memo proposing an Internet-based hypertext system Berners-Lee specified HTML and wrote the browser and server software in late 1990 and released it in 1991 (it had 18 elements/tags) HTML 2.0 was published as RFC 1866 in 1995 https://tools.ietf.org/html/rfc1866 A Request for Comments (RFC) is a publication from the Internet Society (ISOC) The Internet Society (ISOC) is an American nonprofit organization founded in 1992 to provide leadership in Internet- related standards, education, access, and policy. (c) Paul Fodor (CS Stony Brook) A brief history of HTML HTML 3.2 was published as a W3C Recommendation in January 1997 The World Wide Web Consortium (W3C) is the international standards organization for the World Wide Web, founded in 1994 by Tim Berners-Lee after he left the European Organization for Nuclear Research (CERN).
    [Show full text]