From: robert Date: Thu, 31 Jan 2013 23:30:23 +0000 (+0000) Subject: add first version of fosdem2013 slides X-Git-Url: https://git-public.kairo.at/?p=slides.git;a=commitdiff_plain;h=2558e56d3ed0f5f49282b108366d669bb5513277 add first version of fosdem2013 slides --- diff --git a/fosdem2013/cc-by-sa-80x15.png b/fosdem2013/cc-by-sa-80x15.png new file mode 100644 index 0000000..c67509f Binary files /dev/null and b/fosdem2013/cc-by-sa-80x15.png differ diff --git a/fosdem2013/index.html b/fosdem2013/index.html new file mode 100755 index 0000000..5bfc09d --- /dev/null +++ b/fosdem2013/index.html @@ -0,0 +1,136 @@ + + + + + + Mozilla Stability + + + + + + + + + + + +
+

Table of Contents

+

Improving Mozilla Stability

+ +
+

The following slides are available in this presentation:

+
+
    +
+
+ +
+

Improving Mozilla Stability

+ +
+Robert Kaiser, +"KaiRo" <kairo@kairo.at> +
Mozilla Stability Tracking +
+ +
+

Slides: + http://kairo.mozdev.org/slides/fosdem2013/

+
+
    +
  • Created for + Mozilla + Developer Room at FOSDEM 2013 in + Brussels.
  • +
  • Written in HTML 5 with CSS 3 and JavaScript.
  • +
  • Navigation via links on all slides, via access keys + (e.g. "n"/Alt+Shift+N for "next") or back/forward arrow keys
  • +
  • Contents
  • +
  • Licensed under CC-BY-SA, 01/2013 Robert Kaiser
  • +
+
+
+
+ +
+

Are We Stable Yet?

+ +
+
    +
  • http://arewestableyet.com/
  • +
  • Common stability indicators
  • +
  • ADI (active daily installations) and crash rate (crashes per 100 ADI)
  • +
  • Startup and Flash crashes, tracked bugs
  • +
+
+
+ +
+

Socorro Data

+ +
+
    +
  • http://crash-stats.mozilla.com/
  • +
  • Collects crash reports, displays contents and statistics
  • +
  • Signature: Last functions(s) called before crash
  • +
  • Top crashes by signature and release
  • +
+
+
+ +
+

Custom Reports

+ +
+
    +
  • https://crash-analysis.mozilla.com/rkaiser/0000.overview.html
  • +
  • Testing ground for reports to be integrated into Socorro in the future
  • +
  • Explosiveness: detection of rising/new crashes
  • +
  • B2G crash list: reports from Firefox OS (testing) devices
  • +
+
+
+ +
+

Bugzilla

+ +
+
    +
  • https://bugzilla.mozilla.org/
  • +
  • Central hub of tracking and QA/developer/etc. interaction
  • +
  • Keywords: crash, topcrash, needURLs
  • +
  • Tracking flags for releases
  • +
+
+
+ +
+

Contacts

+ +
+
    +
  • Mailing list: stability@mozilla.org
  • +
  • irc.mozilla.org: #crashkill
  • +
  • CrashKill meetings: Mondays @ 10am Pacific, Stability room in Vidyo
  • +
+
+
+ + + diff --git a/fosdem2013/local.conf b/fosdem2013/local.conf new file mode 100644 index 0000000..0996d80 --- /dev/null +++ b/fosdem2013/local.conf @@ -0,0 +1,6 @@ + diff --git a/fosdem2013/slides.css b/fosdem2013/slides.css new file mode 100644 index 0000000..fa67a95 --- /dev/null +++ b/fosdem2013/slides.css @@ -0,0 +1,266 @@ +/************************** + * styles for talk slides * + * by Robert Kaiser * + * * + * (for Linuxwochen 2009) * + **************************/ + + +/***** base style *****/ + +html { + overflow: hidden; /* to make translations not paint scrollbars */ +} + +body { + margin: 0px; + padding: 0px; + border: 0px; + font-family: Arial,Helvetica,sans-serif; + font-size: 2em; + color: #6d7581; + background: white url("template/page-background.png") top left repeat-x; +} + +ul { + padding-left: 1.2em; + margin-bottom: 0.5em; +} + +ul:first-child, +ul:last-child { + margin-top: 0; +} + +#header { + height: 38px; + position: relative; + padding: 0 15px 0 0; + z-index: 1; +} + +#headerlogo { + position: relative; + display: block; + text-indent: -500px; + font-size: 1px; + overflow: hidden; + height: 48px; + width: 186px; + background: url("template/firefox-title.png") 5px 3px no-repeat; +} + +#header-text { + float: right; + padding: 7px 20px; + font-size: 24px; + font-weight: bold; + color: #C0C8CA; +} + +#header-text.neartime { + color: #A0C8DA; +} + +#header-text.ontime { + color: #80CC80; +} + +#header-text.overtime { + color: #FF8080; +} + +#slidenav { + padding: 4px 15px 30px 55px; + font-size: 10px; + color: #A0C8DA; +} + +#slidenav a:link, +#slidenav a:visited { + color: #6d7581; +} + +#slidenav a:hover, +#slidenav a:active { + color: #0000FF; +} + +#slidenav .nolink { + color: #A0C8DA; +} + +#subheader-text { + float: right; + padding: 0 20px; + color: #6d7581; +} + +article { + position: absolute; + width: 100%; + /* header is 38px + 1px border, slidenav is 13px + 4px + 30px paddings, + another 5px for safety */ + height: calc(100% - 90px); + overflow: auto; + + transition-property: transform, opacity; + transition-duration: 3s; + transition-timing-function: ease; + transform-origin: center 5em; + + opacity: 0; +/* + transform: translate(-100%, 0); +*/ +/* + transform: scale(0.1) rotate(360deg); +*/ + transform: scale(0.1) rotate(360deg) translate(-200%, 0); +} + +article[aria-selected="true"] { + opacity: 1; + transform: scale(1) rotate(0deg) translate(0, 0); +} + +article[aria-selected="true"] ~ article { + opacity: 0; +/* + transform: translate(100%, 0); +*/ +/* + transform: scale(0.1) rotate(-360deg); +*/ + transform: scale(0.1) rotate(-360deg) translate(200%, 0); +} + +/***** headers *****/ + +h1 { + margin: 0 0 0.5em 0; + font-size: 1.7em; + font-weight: bold; + color: #505050; + text-align: center; + text-shadow: #AAAA80 3px 3px 5px; +} + +h2 { + margin: 0.5em 0; + font-size: 1.3em; + font-weight: bold; + color: #505050; + text-align: center; + text-shadow: #AAAA80 2px 2px 3px; +} + +h3 { + margin: 0.5em 0; + font-size: 1.1em; + font-weight: bold; + color: #505050; + text-align: center; +} + +h4 { + margin: 0.5em 0; + font-size: 1em; + font-weight: bold; + color: #505050; + text-align: left; +} + +/***** boxes *****/ + +.simplebox { + padding: 0.5em; +} + +.captionedbox { + padding: 0px; +} + +.simplebox, +.captionedbox { + margin: 1em; + border: 1px solid #A0C8DA; + background: white url("template/page-background.png") top left repeat-x; + border-radius: .5em; + box-shadow: #6d7581 1px 1px 3px 2px; +} + +.captionedbox-content { + margin: 0px; + padding: 0.5em; + border: 0px; + border-top: 2px solid #A0C8DA; + -moz-border-top-colors: #A0C8DA #6d7581; + border-radius: 0 0 .5em .5em; +} + +.captionedbox-caption { + margin: 0.5em; + font-weight: bold; + text-shadow: #AAAA80 1px 1px 2px; +} + +/***** misc formatting *****/ + +mark { + font-weight: bold; + color: #FF6600; + background-color: transparent; + text-shadow: #AAAA80 2px 2px 3px; +} + +.border { + border: 1px solid #6d7581; + padding: 0.5em; +} + +ul > li { + margin: 0.5em 0; +} + +.cent { + text-align: center; +} + +.topmargin { + margin-top: 0.5em; +} + +.akey { + text-decoration: underline; +} + +a:link, a:visited { color: #447bc4; text-decoration: none; } +a:hover, a:active { color: #FF6600; text-decoration: underline; } + +mark a:link, mark a:visited { color: #FF6600; } +mark a:hover, mark a:active { color: #FF6600; } + +/***** small stuff *****/ + +.small, +.small { + font-size: 0.75em; +} + +ul.small, +.small ul { + padding: 0px; + border: 0px; + margin: 0px 0px 0px 1em; +} + +ul.small > li +.small ul > li { + margin: 0px; + padding: 0px; + border: 0px; +} + +/***** specific slides *****/ + diff --git a/fosdem2013/slides.js b/fosdem2013/slides.js new file mode 100644 index 0000000..306a95c --- /dev/null +++ b/fosdem2013/slides.js @@ -0,0 +1,200 @@ +/****************************** + * JavaScript for talk slides * + * by Robert Kaiser * + * * + * (for FOSDEM 2011) * + ******************************/ + +var slides = {}; +var articleNodes; +var currentSlide; +var currentIdx; +var defaultIdx = 1; // set to slide index to show by default +var firstIdx = 2; // set no value if to use first available +var lastIdx; // set no value if to use first available + +var pageTitle, headerText, subHeaderText; +var navPrev, navNext, navPrevNolink, navNextNolink; + +// Slide timer - color variation of headerText +var slideSeconds = 3 * 60; + +// Called when the document has been loaded. +function docLoaded() { + pageTitle = document.getElementsByTagName("title")[0]; + headerText = document.getElementById("header-text"); + subHeaderText = document.getElementById("subheader-text"); + navPrev = document.getElementById("nav-prev"); + navNext = document.getElementById("nav-next"); + navPrevNolink = document.getElementById("nav-prev-nolink"); + navNextNolink = document.getElementById("nav-next-nolink"); + articleNodes = document.getElementsByTagName("article"); + + if (!firstIdx) + firstIdx = 0; + if (!lastIdx) + lastIdx = articleNodes.length - 1; + + // Get a list of all slides (articles). + subHeaderText.textContent = articleNodes.length + " slides..."; + for (var i = 0; i < articleNodes.length; ++i) { + subHeaderText.textContent = "Indexing slide " + i + " / " + articleNodes.length; + if (!articleNodes[i].id) + articleNodes[i].id = "slide_" + i; + + slides[articleNodes[i].id] = + {"idx": i, + "name": articleNodes[i].id, + "title": articleNodes[i].title ? articleNodes[i].title : articleNodes[i].id, + "obj": articleNodes[i]}; + + if (location.hash.length && + (location.hash == "#" + articleNodes[i].id || location.hash == "#" + i)) { + articleNodes[i].setAttribute("aria-selected", "true"); + currentSlide = slides[articleNodes[i].id]; + currentIdx = i; + } + } + + if (!currentSlide) { + currentIdx = defaultIdx; + currentSlide = slides[articleNodes[currentIdx].id]; + currentSlide.obj.setAttribute("aria-selected", "true"); + location.hash = "#" + currentSlide.name; + } + updateDisplay(); +} + +// Called when the hash part of the location changes. +function locationHashChanged() { + if (location.hash.length > 1) { + var hashtag = location.hash.substring(1); + // If not a number, treat as ID + if (isNaN(hashtag) && slides[hashtag]) { + currentSlide.obj.removeAttribute("aria-selected"); + currentSlide = slides[hashtag]; + currentIdx = currentSlide.idx; + currentSlide.obj.setAttribute("aria-selected", "true"); + updateDisplay(); + } + else if (articleNodes[hashtag]) { + currentSlide.obj.removeAttribute("aria-selected"); + currentIdx = hashtag; + currentSlide = slides[articleNodes[currentIdx].id]; + currentSlide.obj.setAttribute("aria-selected", "true"); + updateDisplay(); + } + } +} +window.onhashchange = locationHashChanged; + +// Update the display after we updated what slide is shown. +function updateDisplay() { + if (currentIdx >= firstIdx && currentIdx <= lastIdx && + currentSlide.name != "toc") + subHeaderText.textContent = (currentIdx - firstIdx + 1) + "/" + + (lastIdx - firstIdx + 1) + " - " + + currentSlide.title; + else + subHeaderText.textContent = currentSlide.title; + pageTitle.textContent = headerText.textContent + ": " + currentSlide.title; + if (currentIdx > firstIdx && currentSlide.name != "toc") { + navPrev.hidden = false; + navPrev.href = "#" + articleNodes[currentIdx - 1].id; + navPrevNolink.hidden = true; + } + else { + navPrev.hidden = true; + navPrevNolink.hidden = false; + } + if (currentIdx < lastIdx && currentSlide.name != "toc") { + navNext.hidden = false; + navNext.href = "#" + articleNodes[currentIdx + 1].id; + navNextNolink.hidden = true; + } + else { + navNext.hidden = true; + navNextNolink.hidden = false; + } + headerText.className = ""; + slideStart = new Date(); + if (currentSlide.name == "toc") + createTOC(); + else + setTimeout("timerFired()", timerMSec); +} + +// Create TOC list. +function createTOC() { + var list = document.getElementById("toc-list"); + if (!list.getElementsByTagName("li").length) { + for (var slide in slides) { + if (slide != "toc") { + var item = document.createElement("li"); + var link = document.createElement("a"); + var slideHeaders = slides[slide].obj.getElementsByTagName("h1"); + if (slideHeaders.length) + link.textContent = slideHeaders[0].textContent; + else + link.textContent = slides[slide].title; + link.href = "#" + slides[slide].name; + item.appendChild(link); + list.appendChild(item); + } + } + } +} + +// Do timed color variation on slides. +function timerFired() { + var slideCurrent = new Date(); + var secondsDiff = Math.round((slideCurrent.getTime() - slideStart.getTime()) / 1000); + if (secondsDiff >= slideSeconds) { + headerText.className = "overtime"; + } + else if (secondsDiff >= Math.round(2 * slideSeconds / 3)) { + headerText.className = "ontime"; + setTimeout("timerFired()", timerMSec); + } + else if (secondsDiff >= Math.round(slideSeconds / 3)) { + headerText.className = "neartime"; + setTimeout("timerFired()", timerMSec); + } + else { + // We should never come here, but if we do, go into a 100ms loop until we get over the upcoming step. + setTimeout("timerFired()", 100); + } +} +var slideStart = new Date(); +var timerMSec = 1000 * (slideSeconds / 3); +setTimeout("timerFired()", timerMSec); + +// Keyboard/click nav functionality, mostly inherited from FOSDEM 2007. +(function() { + function go(where) { + where = where || "next"; + var navElem = document.getElementById("nav-" + where); + if (!navElem.hidden) + window.location.href = navElem.href; + } + + function handleClick(e) { + e = e || event; + var target = (window.event) ? e.srcElement : e.target; + if (e.which == 1 && target.nodeName != "A" && target.nodeName != "VIDEO") + go("next"); + } + + function handleKeyPress(e) { + e = e || event; + switch (e.keyCode) { + case e.DOM_VK_LEFT: + go("prev"); break; + case e.DOM_VK_RIGHT: + go("next"); break; + } + } + + window.onclick = handleClick; + window.onkeypress = handleKeyPress; +})(); diff --git a/fosdem2013/template/firefox-title.png b/fosdem2013/template/firefox-title.png new file mode 100644 index 0000000..2648e79 Binary files /dev/null and b/fosdem2013/template/firefox-title.png differ diff --git a/fosdem2013/template/page-background.png b/fosdem2013/template/page-background.png new file mode 100644 index 0000000..b499bb2 Binary files /dev/null and b/fosdem2013/template/page-background.png differ