From 9c157b9ee779569b4509f02cb9c07788d7675a4e 2012-12-02 07:24:29 From: damianavila Date: 2012-12-02 07:24:29 Subject: [PATCH] Addednew slider converter based in reveal.js --- diff --git a/converters/slider.py b/converters/slider.py new file mode 100644 index 0000000..6b08e7d --- /dev/null +++ b/converters/slider.py @@ -0,0 +1,137 @@ +from converters.markdown import ConverterMarkdown +import io +import os + +class ConverterSlider(ConverterMarkdown): + """Convert a notebook to html suitable for easy pasting into Blogger. + + It generates an html file that has *only* the pure HTML contents, and a + separate file with `_header` appended to the name with all header contents. + Typically, the header file only needs to be used once when setting up a + blog, as the CSS for all posts is stored in a single location in Blogger. + """ + + def __init__(self, infile, highlight_source=False, show_prompts=True, + inline_prompt=True): + super(ConverterMarkdown, self).__init__(infile) + self.highlight_source = highlight_source + self.show_prompts = show_prompts + self.inline_prompt = inline_prompt + + def convert(self, cell_separator='\n'): + """ + Generic method to converts notebook to a string representation. + + This is accomplished by dispatching on the cell_type, so subclasses of + Convereter class do not need to re-implement this method, but just + need implementation for the methods that will be dispatched. + + Parameters + ---------- + cell_separator : string + Character or string to join cells with. Default is "\n" + + Returns + ------- + out : string + """ + lines = [] + lines.extend(self.optional_header()) + top = '
' + text = self.main_body(cell_separator) + for i,j in enumerate(text): + if j == u'---': + text[i] = bottom + top + lines.extend(text) + lines.extend(self.optional_footer()) + return u'\n'.join(lines) + + def save(self, outfile=None, encoding=None): + "read and parse notebook into self.nb" + if outfile is None: + outfile = self.outbase + '_slides.' + 'html' + if encoding is None: + encoding = self.default_encoding + with io.open(outfile, 'w', encoding=encoding) as f: + f.write(self.output) + return os.path.abspath(outfile) + + def optional_header(self): + optional_header_body = [\ +''' + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + +'''] + return optional_footer_body diff --git a/example_slide.ipynb b/example_slide.ipynb new file mode 100644 index 0000000..1965635 --- /dev/null +++ b/example_slide.ipynb @@ -0,0 +1,468 @@ +{ + "metadata": { + "name": "test_example_slide" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": [ + "Notebook Slide Example" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rendered by vIPer using [Reveal.js](http://lab.hakim.se/reveal-js)!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "(also you can get a [pdf](http://www.slideviper.oquanta.info/reveal/slides.pdf) version with chrome!)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "NOTE: This notebook was modified from a Fernando's one" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Since the notebook was introduced with [IPython 0.12](http://ipython.org/ipython-doc/rel-0.12.1/whatsnew/version0.12.html), it has proved to be very popular, and we are seeing great adoption of the tool and the underlying file format in research and education. One persistent question we've had since the beginning (even prior to its official release) was whether it would be possible to easily write blog posts using the notebook." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The combination of easy editing in markdown with the notebook's ability to contain code, figures and results, makes it an ideal platform for quick authoring of technical documents, so being able to post to a blog is a natural request." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Today, in answering a query about this from a colleague, I decided to try again the status of our conversion pipeline, and I'm happy to report that with a bit of elbow-grease, at least on Blogger things work pretty well! \n", + "\n", + "This post was *entirely* written as a notebook, and in fact I have now created a [github repo](https://github.com/fperez/blog), which means that you can see it directly [rendered in IPyhton's nbviewer app](http://nbviewer.ipython.org/urls/raw.github.com/fperez/blog/master/120907-Blogging with the IPython Notebook.ipynb)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Converting your notebook to html with nbconvert" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The first thing you will need is our [nbconvert](https://github.com/ipython/nbconvert) tool that converts notebooks across formats. The README file in the repo contains the requirements for nbconvert (basically [python-markdown](http://pypi.python.org/pypi/Markdown/), [pandoc](http://johnmacfarlane.net/pandoc), [docutils from SVN](http://docutils.svn.sourceforge.net/viewvc/docutils/trunk/docutils/?view=tar) and [pygments](http://pygments.org)).\n", + "\n", + "Once you have nbconvert installed, you can convert your notebook to Blogger-friendly html with:\n", + "\n", + " nbconvert -f blogger-html your_notebook.ipynb" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This will leave two files in your computer, one named `your_notebook.html` and one named `your_noteboook_header.html`; it might also create a directory called `your_notebook_files` if needed for ancillary files. The first file will contain the body of your post and can be pasted wholesale into the Blogger editing area. The second file contains the CSS and Javascript material needed for the notebook to display correctly, you should only need to use this once to configure your blogger setup (see next):" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + " # Only one notebook so far\n", + " (master)longs[blog]> ls\n", + " 120907-Blogging with the IPython Notebook.ipynb fig/ old/\n", + "\n", + " # Now run the conversion:\n", + " (master)longs[blog]> nbconvert.py -f blogger-html 120907-Blogging\\ with\\ the\\ IPython\\ Notebook.ipynb\n", + " \n", + " # This creates the header and html body files\n", + " (master)longs[blog]> ls\n", + " 120907-Blogging with the IPython Notebook_header.html fig/\n", + " 120907-Blogging with the IPython Notebook.html old/\n", + " 120907-Blogging with the IPython Notebook.ipynb" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Configuring your Blogger blog to accept notebooks" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook uses a lot of custom CSS for formatting input and output, as well as Javascript from [MathJax](http://www.mathjax.org) to display mathematical notation. You will need all this CSS and the Javascript calls in your blog's configuration for your notebook-based posts to display correctly:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. Once authenticated, go to your blog's overview page by clicking on its title.\n", + "2. Click on templates (left column) and customize using the Advanced options.\n", + "3. Scroll down the middle column until you see an \"Add CSS\" option.\n", + "4. Copy entire the contents of the `_header` file into the CSS box." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "That's it, and you shouldn't need to do anything else as long as the CSS we use in the notebooks doesn't drastically change. This customization of your blog needs to be done only once.\n", + "\n", + "While you are at it, I recommend you change the width of your blog so that cells have enough space for clean display; in experimenting I found out that the default template was too narrow to properly display code cells, producing a lot of text wrapping that impaired readability. I ended up using a layout with a single column for all blog contents, putting the blog archive at the bottom. Otherwise, if I kept the right sidebar, code cells got too squished in the post area." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "I also had problems using some of the fancier templates available from 'Dynamic Views', in that I could never get inline math to render. But sticking to those from the Simple or 'Picture Window' categories worked fine and they still allow for a lot of customization.\n", + "\n", + "*Note:* if you change blog templates, Blogger does destroy your custom CSS, so you may need to repeat the above steps in that case." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Adding the actual posts" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now, whenever you want to write a new post as a notebook, simply convert the `.ipynb` file to blogger-html and copy its entire contents to the clipboard. Then go to the 'raw html' view of the post, remove anything Blogger may have put there by default, and paste. You should also click on the 'options' tab (right hand side) and select both `Show HTML literally` and `Use
tag`, else your paragraph breaks will look all wrong.\n", + "\n", + "That's it!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "What can you put in?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "I will now add a few bits of code, plots, math, etc, to show which kinds of content can be put in and work out of the box. These are mostly bits copied from our [example notebooks](https://github.com/ipython/ipython/tree/master/docs/examples/notebooks) so the actual content doesn't matter, I'm just illustrating the *kind* of content that works." + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "# Let's initialize pylab so we can plot later\n", + "%pylab inline" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "\n", + "Welcome to pylab, a matplotlib-based Python environment [backend: module://IPython.zmq.pylab.backend_inline].\n", + "For more information, type 'help(pylab)'.\n" + ] + } + ], + "prompt_number": 1 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "With pylab loaded, the usual matplotlib operations work" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "x = linspace(0, 2*pi)\n", + "plot(x, sin(x), label=r'$\\sin(x)$')\n", + "plot(x, cos(x), 'ro', label=r'$\\cos(x)$')\n", + "title(r'Two familiar functions')\n", + "legend()" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "pyout", + "prompt_number": 2, + "text": [ + "" + ] + }, + { + "output_type": "display_data", + "png": "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\ncHL/D9ce9mWkzIEYAAAAAElFTkSuQmCC\n" + } + ], + "prompt_number": 2 + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook, thanks to MathJax, has great LaTeX support, so that you can type inline math $(1,\\gamma,\\ldots, \\infty)$ as well as displayed equations:\n", + "\n", + "$$\n", + "e^{i \\pi}+1=0\n", + "$$\n", + "\n", + "**(the last equation is beatiful, isn't it?... Dami\u00e1n talking... he he!)**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "You can easily include formatted text and code with markdown" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can *italicize*, **boldface**\n", + "\n", + "* build \n", + "* lists\n", + "\n", + "and embed code meant for illustration instead of execution in Python:\n", + "\n", + " def f(x):\n", + " \"\"\"a docstring\"\"\"\n", + " return x**2" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "or other languages:\n", + "\n", + " if (i=0; isection, +.reveal .slides>section>section { + + visibility: visible !important; + position: static !important; + width: 90% !important; + height: auto !important; + display: block !important; + overflow: visible !important; + + left: 0% !important; + top: 0% !important; + margin-left: 0px !important; + margin-top: 0px !important; + padding: 20px 0px !important; + + opacity: 1 !important; + + -webkit-transform-style: flat !important; + -moz-transform-style: flat !important; + -ms-transform-style: flat !important; + transform-style: flat !important; + + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; +} +.reveal section { + page-break-after: always !important; + display: block !important; +} +.reveal section.stack { + page-break-after: avoid !important; +} +.reveal section .fragment { + opacity: 1 !important; +} +.reveal section:last-of-type { + page-break-after: avoid !important; +} +.reveal section img { + display: block; + margin: 15px 0px; + background: rgba(255,255,255,1); + border: 1px solid #666; + box-shadow: none; +} \ No newline at end of file diff --git a/reveal/css/print/pdf.css b/reveal/css/print/pdf.css new file mode 100644 index 0000000..7c1a496 --- /dev/null +++ b/reveal/css/print/pdf.css @@ -0,0 +1,159 @@ +/* Default Print Stylesheet Template + by Rob Glazebrook of CSSnewbie.com + Last Updated: June 4, 2008 + + Feel free (nay, compelled) to edit, append, and + manipulate this file as you see fit. */ + + +/* SECTION 1: Set default width, margin, float, and + background. This prevents elements from extending + beyond the edge of the printed page, and prevents + unnecessary background images from printing */ +* { + -webkit-print-color-adjust: exact; +} + +body { + font-size: 18pt; + width: auto; + height: auto; + border: 0; + margin: 0 5%; + padding: 0; + float: none !important; + overflow: visible; + background-image: none; +} + +html { + width: auto; + height: auto; + overflow: visible; +} + +/* SECTION 2: Remove any elements not needed in print. + This would include navigation, ads, sidebars, etc. */ +.nestedarrow, +.controls, +.reveal .progress, +.reveal.overview, +.fork-reveal, +.share-reveal, +.state-background { + display: none !important; +} + +/* SECTION 3: Set body font face, size, and color. + Consider using a serif font for readability. */ +body, p, td, li, div { + font-size: 18pt; +} + +/* SECTION 4: Set heading font face, sizes, and color. + Diffrentiate your headings from your body text. + Perhaps use a large sans-serif for distinction. */ +h1,h2,h3,h4,h5,h6 { + text-shadow: 0 0 0 #000 !important; +} + +/* SECTION 5: Make hyperlinks more usable. + Ensure links are underlined, and consider appending + the URL to the end of the link for usability. */ +a:link, +a:visited { + font-weight: bold; + text-decoration: underline; +} + + +/* SECTION 6: more reveal.js specific additions by @skypanther */ +ul, ol, div, p { + visibility: visible; + position: static; + width: auto; + height: auto; + display: block; + overflow: visible; + margin: auto; +} +.reveal .slides { + position: static; + width: 100%; + height: auto; + + left: auto; + top: auto; + margin-left: auto; + margin-top: auto; + padding: auto; + + overflow: visible; + display: block; + + text-align: center; + -webkit-perspective: none; + -moz-perspective: none; + -ms-perspective: none; + perspective: none; + + -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ + -moz-perspective-origin: 50% 50%; + -ms-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; +} +.reveal .slides>section, .reveal .slides>section>section { + + visibility: visible !important; + position: static !important; + width: 100% !important; + height: auto !important; + min-height: initial !important; + display: block !important; + overflow: visible !important; + + left: 0% !important; + top: 0% !important; + margin-left: 0px !important; + margin-top: 50px !important; + padding: 20px 0px !important; + + opacity: 1 !important; + + -webkit-transform-style: flat !important; + -moz-transform-style: flat !important; + -ms-transform-style: flat !important; + transform-style: flat !important; + + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; +} +.reveal section { + page-break-after: always !important; + display: block !important; +} +.reveal section.stack { + margin: 0px !important; + padding: 0px !important; + page-break-after: avoid !important; +} +.reveal section .fragment { + opacity: 1 !important; +} +.reveal img { + box-shadow: none; +} +.reveal .roll { + overflow: visible; + line-height: 1em; +} + +.reveal small a { + font-size: 16pt !important; +} + +pre { + font-size: 9pt !important; +} diff --git a/reveal/css/reveal.css b/reveal/css/reveal.css new file mode 100644 index 0000000..412e8ec --- /dev/null +++ b/reveal/css/reveal.css @@ -0,0 +1,1184 @@ +@charset "UTF-8"; + +/*! + * reveal.js + * http://lab.hakim.se/reveal-js + * MIT licensed + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +/********************************************* + * RESET STYLES + *********************************************/ + +html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe, +.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre, +.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code, +.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp, +.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var, +.reveal b, .reveal u, .reveal i, .reveal center, +.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li, +.reveal fieldset, .reveal form, .reveal label, .reveal legend, +.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td, +.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed, +.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup, +.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary, +.reveal time, .reveal mark, .reveal audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure, +.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section { + display: block; +} + + +/********************************************* + * GLOBAL STYLES + *********************************************/ + +html, +body { + width: 100%; + height: 100%; + min-height: 600px; + overflow: hidden; +} + +body { + position: relative; + line-height: 1; +} + +::selection { + background:#FF5E99; + color:#fff; + text-shadow: none; +} + +@media screen and (max-width: 900px) { + .reveal { + font-size: 30px; + } +} + +/********************************************* + * HEADERS + *********************************************/ + +.reveal h1 { font-size: 3.77em; } +.reveal h2 { font-size: 2.11em; } +.reveal h3 { font-size: 1.55em; } +.reveal h4 { font-size: 1em; } + + +/********************************************* + * VIEW FRAGMENTS + *********************************************/ + +.reveal .slides section .fragment { + opacity: 0; + + -webkit-transition: all .2s ease; + -moz-transition: all .2s ease; + -ms-transition: all .2s ease; + -o-transition: all .2s ease; + transition: all .2s ease; +} + .reveal .slides section .fragment.visible { + opacity: 1; + } + +.reveal .slides section .fragment.grow { + opacity: 1; +} + .reveal .slides section .fragment.grow.visible { + -webkit-transform: scale( 1.3 ); + -moz-transform: scale( 1.3 ); + -ms-transform: scale( 1.3 ); + -o-transform: scale( 1.3 ); + transform: scale( 1.3 ); + } + +.reveal .slides section .fragment.shrink { + opacity: 1; +} + .reveal .slides section .fragment.shrink.visible { + -webkit-transform: scale( 0.7 ); + -moz-transform: scale( 0.7 ); + -ms-transform: scale( 0.7 ); + -o-transform: scale( 0.7 ); + transform: scale( 0.7 ); + } + +.reveal .slides section .fragment.roll-in { + opacity: 0; + + -webkit-transform: rotateX( 90deg ); + -moz-transform: rotateX( 90deg ); + -ms-transform: rotateX( 90deg ); + -o-transform: rotateX( 90deg ); + transform: rotateX( 90deg ); +} + .reveal .slides section .fragment.roll-in.visible { + opacity: 1; + + -webkit-transform: rotateX( 0 ); + -moz-transform: rotateX( 0 ); + -ms-transform: rotateX( 0 ); + -o-transform: rotateX( 0 ); + transform: rotateX( 0 ); + } + +.reveal .slides section .fragment.fade-out { + opacity: 1; +} + .reveal .slides section .fragment.fade-out.visible { + opacity: 0; + } + +.reveal .slides section .fragment.highlight-red, +.reveal .slides section .fragment.highlight-green, +.reveal .slides section .fragment.highlight-blue { + opacity: 1; +} + .reveal .slides section .fragment.highlight-red.visible { + color: #ff2c2d + } + .reveal .slides section .fragment.highlight-green.visible { + color: #17ff2e; + } + .reveal .slides section .fragment.highlight-blue.visible { + color: #1b91ff; + } + + +/********************************************* + * DEFAULT ELEMENT STYLES + *********************************************/ + +.reveal .slides section { + line-height: 1.2em; + font-weight: normal; +} + +.reveal img { + /* preserve aspect ratio and scale image so it's bound within the section */ + max-width: 100%; + max-height: 100%; +} + +.reveal strong, +.reveal b { + font-weight: bold; +} + +.reveal em, +.reveal i { + font-style: italic; +} + +.reveal ol, +.reveal ul { + display: inline-block; + + text-align: left; + margin: 0 0 0 1em; +} + +.reveal ol { + list-style-type: decimal; +} + +.reveal ul { + list-style-type: disc; +} + +.reveal ul ul { + list-style-type: square; +} + +.reveal ul ul ul { + list-style-type: circle; +} + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; +} + +.reveal p { + margin-bottom: 10px; + line-height: 1.2em; +} + +.reveal q, +.reveal blockquote { + quotes: none; +} + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 5px auto; + padding: 5px; + + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0,0,0,0.2); +} + .reveal blockquote:before { + content: '\201C'; + } + .reveal blockquote:after { + content: '\201D'; + } + +.reveal q { + font-style: italic; +} + .reveal q:before { + content: '\201C'; + } + .reveal q:after { + content: '\201D'; + } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 15px auto; + + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + + word-wrap: break-word; + + box-shadow: 0px 0px 6px rgba(0,0,0,0.3); +} +.reveal pre code { + padding: 5px; +} + +.reveal code { + font-family: monospace; + overflow: auto; + max-height: 400px; +} + +.reveal table th, +.reveal table td { + text-align: left; + padding-right: .3em; +} + +.reveal table th { + text-shadow: rgb(255,255,255) 1px 1px 2px; +} + +.reveal sup { + vertical-align: super; +} +.reveal sub { + vertical-align: sub; +} + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; +} + +.reveal small * { + vertical-align: top; +} + + +/********************************************* + * CONTROLS + *********************************************/ + +.reveal .controls { + display: none; + position: fixed; + width: 110px; + height: 110px; + z-index: 30; + right: 10px; + bottom: 10px; +} + +.reveal .controls div { + position: absolute; + opacity: 0.1; + width: 0; + height: 0; + border: 12px solid transparent; + + -webkit-transition: opacity 0.2s ease; + -moz-transition: opacity 0.2s ease; + -ms-transition: opacity 0.2s ease; + -o-transition: opacity 0.2s ease; + transition: opacity 0.2s ease; +} + +.reveal .controls div.enabled { + opacity: 0.6; + cursor: pointer; +} + +.reveal .controls div.enabled:active { + margin-top: 1px; +} + +.reveal .controls div.left { + top: 42px; + + border-right-width: 22px; + border-right-color: #eee; +} + +.reveal .controls div.right { + left: 74px; + top: 42px; + + border-left-width: 22px; + border-left-color: #eee; +} + +.reveal .controls div.up { + left: 42px; + + border-bottom-width: 22px; + border-bottom-color: #eee; +} + +.reveal .controls div.down { + left: 42px; + top: 74px; + + border-top-width: 22px; + border-top-color: #eee; +} + + +/********************************************* + * PROGRESS BAR + *********************************************/ + +.reveal .progress { + position: fixed; + display: none; + height: 3px; + width: 100%; + bottom: 0; + left: 0; + z-index: 10; +} + .reveal .progress:after { + content: ''; + display: 'block'; + position: absolute; + height: 20px; + width: 100%; + top: -20px; + } + .reveal .progress span { + display: block; + height: 100%; + width: 0px; + + -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + + +/********************************************* + * ROLLING LINKS + *********************************************/ + +.reveal .roll { + display: inline-block; + line-height: 1.2; + overflow: hidden; + + vertical-align: top; + + -webkit-perspective: 400px; + -moz-perspective: 400px; + -ms-perspective: 400px; + perspective: 400px; + + -webkit-perspective-origin: 50% 50%; + -moz-perspective-origin: 50% 50%; + -ms-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; +} + .reveal .roll:hover { + background: none; + text-shadow: none; + } +.reveal .roll span { + display: block; + position: relative; + padding: 0 2px; + + pointer-events: none; + + -webkit-transition: all 400ms ease; + -moz-transition: all 400ms ease; + -ms-transition: all 400ms ease; + transition: all 400ms ease; + + -webkit-transform-origin: 50% 0%; + -moz-transform-origin: 50% 0%; + -ms-transform-origin: 50% 0%; + transform-origin: 50% 0%; + + -webkit-transform-style: preserve-3d; + -moz-transform-style: preserve-3d; + -ms-transform-style: preserve-3d; + transform-style: preserve-3d; + + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + backface-visibility: hidden; +} + .reveal .roll:hover span { + background: rgba(0,0,0,0.5); + + -webkit-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg ); + -moz-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg ); + -ms-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg ); + transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg ); + } +.reveal .roll span:after { + content: attr(data-title); + + display: block; + position: absolute; + left: 0; + top: 0; + padding: 0 2px; + + -webkit-transform-origin: 50% 0%; + -moz-transform-origin: 50% 0%; + -ms-transform-origin: 50% 0%; + transform-origin: 50% 0%; + + -webkit-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg ); + -moz-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg ); + -ms-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg ); + transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg ); +} + + +/********************************************* + * SLIDES + *********************************************/ + +.reveal .slides { + position: absolute; + max-width: 900px; + width: 80%; + height: 60%; + left: 50%; + top: 50%; + margin-top: -320px; + padding: 20px 0px; + overflow: visible; + z-index: 1; + + text-align: center; + + -webkit-transition: -webkit-perspective .4s ease; + -moz-transition: -moz-perspective .4s ease; + -ms-transition: -ms-perspective .4s ease; + -o-transition: -o-perspective .4s ease; + transition: perspective .4s ease; + + -webkit-perspective: 600px; + -moz-perspective: 600px; + -ms-perspective: 600px; + perspective: 600px; + + -webkit-perspective-origin: 0% 25%; + -moz-perspective-origin: 0% 25%; + -ms-perspective-origin: 0% 25%; + perspective-origin: 0% 25%; +} + +.reveal .slides>section, +.reveal .slides>section>section { + display: none; + position: absolute; + width: 100%; + min-height: 600px; + + z-index: 10; + + -webkit-transform-style: preserve-3d; + -moz-transform-style: preserve-3d; + -ms-transform-style: preserve-3d; + transform-style: preserve-3d; + + -webkit-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -moz-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -ms-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -o-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); +} + +.reveal .slides>section.present { + display: block; + z-index: 11; + opacity: 1; +} + +.reveal .slides>section { + margin-left: -50%; +} + + +/********************************************* + * DEFAULT TRANSITION + *********************************************/ + +.reveal .slides>section.past { + display: block; + opacity: 0; + + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + -moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + -ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); +} +.reveal .slides>section.future { + display: block; + opacity: 0; + + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + -moz-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + -ms-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); +} + +.reveal .slides>section>section.past { + display: block; + opacity: 0; + + -webkit-transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0); + -moz-transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0); + -ms-transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0); + transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0); +} +.reveal .slides>section>section.future { + display: block; + opacity: 0; + + -webkit-transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0); + -moz-transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0); + -ms-transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0); + transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0); +} + + +/********************************************* + * CONCAVE TRANSITION + *********************************************/ + +.reveal.concave .slides>section.past { + -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); + -moz-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); + -ms-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); +} +.reveal.concave .slides>section.future { + -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); + -moz-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); + -ms-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); +} + +.reveal.concave .slides>section>section.past { + -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); + -moz-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); + -ms-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); + transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); +} +.reveal.concave .slides>section>section.future { + -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); + -moz-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); + -ms-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); + transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); +} + + +/********************************************* + * ZOOM TRANSITION + *********************************************/ + +.reveal.zoom .slides>section, +.reveal.zoom .slides>section>section { + -webkit-transition: all 600ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -moz-transition: all 600ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -ms-transition: all 600ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -o-transition: all 600ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + transition: all 600ms cubic-bezier(0.260, 0.860, 0.440, 0.985); +} + +.reveal.zoom .slides>section.past { + opacity: 0; + visibility: hidden; + + -webkit-transform: scale(16); + -moz-transform: scale(16); + -ms-transform: scale(16); + -o-transform: scale(16); + transform: scale(16); +} +.reveal.zoom .slides>section.future { + opacity: 0; + visibility: hidden; + + -webkit-transform: scale(0.2); + -moz-transform: scale(0.2); + -ms-transform: scale(0.2); + -o-transform: scale(0.2); + transform: scale(0.2); +} + +.reveal.zoom .slides>section>section.past { + -webkit-transform: translate(0, -150%); + -moz-transform: translate(0, -150%); + -ms-transform: translate(0, -150%); + -o-transform: translate(0, -150%); + transform: translate(0, -150%); +} +.reveal.zoom .slides>section>section.future { + -webkit-transform: translate(0, 150%); + -moz-transform: translate(0, 150%); + -ms-transform: translate(0, 150%); + -o-transform: translate(0, 150%); + transform: translate(0, 150%); +} + + +/********************************************* + * LINEAR TRANSITION + *********************************************/ + +.reveal.linear .slides>section.past { + -webkit-transform: translate(-150%, 0); + -moz-transform: translate(-150%, 0); + -ms-transform: translate(-150%, 0); + -o-transform: translate(-150%, 0); + transform: translate(-150%, 0); +} +.reveal.linear .slides>section.future { + -webkit-transform: translate(150%, 0); + -moz-transform: translate(150%, 0); + -ms-transform: translate(150%, 0); + -o-transform: translate(150%, 0); + transform: translate(150%, 0); +} + +.reveal.linear .slides>section>section.past { + -webkit-transform: translate(0, -150%); + -moz-transform: translate(0, -150%); + -ms-transform: translate(0, -150%); + -o-transform: translate(0, -150%); + transform: translate(0, -150%); +} +.reveal.linear .slides>section>section.future { + -webkit-transform: translate(0, 150%); + -moz-transform: translate(0, 150%); + -ms-transform: translate(0, 150%); + -o-transform: translate(0, 150%); + transform: translate(0, 150%); +} + + +/********************************************* + * CUBE TRANSITION + *********************************************/ + +.reveal.cube .slides { + -webkit-perspective-origin: 0% 25%; + -moz-perspective-origin: 0% 25%; + -ms-perspective-origin: 0% 25%; + perspective-origin: 0% 25%; + + -webkit-perspective: 1300px; + -moz-perspective: 1300px; + -ms-perspective: 1300px; + perspective: 1300px; +} + +.reveal.cube .slides section { + padding: 30px; + + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + .reveal.cube .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0,0,0,0.1); + border-radius: 4px; + + -webkit-transform: translateZ( -20px ); + -moz-transform: translateZ( -20px ); + -ms-transform: translateZ( -20px ); + -o-transform: translateZ( -20px ); + transform: translateZ( -20px ); + } + .reveal.cube .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0,0,0,0.2); + + -webkit-transform: translateZ(-90px) rotateX( 65deg ); + -moz-transform: translateZ(-90px) rotateX( 65deg ); + -ms-transform: translateZ(-90px) rotateX( 65deg ); + -o-transform: translateZ(-90px) rotateX( 65deg ); + transform: translateZ(-90px) rotateX( 65deg ); + } + +.reveal.cube .slides>section.stack { + padding: 0; + background: none; +} + +.reveal.cube .slides>section.past { + -webkit-transform-origin: 100% 0%; + -moz-transform-origin: 100% 0%; + -ms-transform-origin: 100% 0%; + transform-origin: 100% 0%; + + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg); + -moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg); + -ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg); + transform: translate3d(-100%, 0, 0) rotateY(-90deg); +} + +.reveal.cube .slides>section.future { + -webkit-transform-origin: 0% 0%; + -moz-transform-origin: 0% 0%; + -ms-transform-origin: 0% 0%; + transform-origin: 0% 0%; + + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg); + -moz-transform: translate3d(100%, 0, 0) rotateY(90deg); + -ms-transform: translate3d(100%, 0, 0) rotateY(90deg); + transform: translate3d(100%, 0, 0) rotateY(90deg); +} + +.reveal.cube .slides>section>section.past { + -webkit-transform-origin: 0% 100%; + -moz-transform-origin: 0% 100%; + -ms-transform-origin: 0% 100%; + transform-origin: 0% 100%; + + -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg); + -moz-transform: translate3d(0, -100%, 0) rotateX(90deg); + -ms-transform: translate3d(0, -100%, 0) rotateX(90deg); + transform: translate3d(0, -100%, 0) rotateX(90deg); +} + +.reveal.cube .slides>section>section.future { + -webkit-transform-origin: 0% 0%; + -moz-transform-origin: 0% 0%; + -ms-transform-origin: 0% 0%; + transform-origin: 0% 0%; + + -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg); + -moz-transform: translate3d(0, 100%, 0) rotateX(-90deg); + -ms-transform: translate3d(0, 100%, 0) rotateX(-90deg); + transform: translate3d(0, 100%, 0) rotateX(-90deg); +} + + +/********************************************* + * PAGE TRANSITION + *********************************************/ + +.reveal.page .slides { + -webkit-perspective-origin: 0% 50%; + -moz-perspective-origin: 0% 50%; + -ms-perspective-origin: 0% 50%; + perspective-origin: 0% 50%; + + -webkit-perspective: 3000px; + -moz-perspective: 3000px; + -ms-perspective: 3000px; + perspective: 3000px; +} + +.reveal.page .slides section { + padding: 30px; + + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + .reveal.page .slides section.past { + z-index: 12; + } + .reveal.page .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0,0,0,0.1); + + -webkit-transform: translateZ( -20px ); + -moz-transform: translateZ( -20px ); + -ms-transform: translateZ( -20px ); + -o-transform: translateZ( -20px ); + transform: translateZ( -20px ); + } + .reveal.page .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0,0,0,0.2); + + -webkit-transform: translateZ(-90px) rotateX( 65deg ); + } + +.reveal.page .slides>section.stack { + padding: 0; + background: none; +} + +.reveal.page .slides>section.past { + -webkit-transform-origin: 0% 0%; + -moz-transform-origin: 0% 0%; + -ms-transform-origin: 0% 0%; + transform-origin: 0% 0%; + + -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg); + -moz-transform: translate3d(-40%, 0, 0) rotateY(-80deg); + -ms-transform: translate3d(-40%, 0, 0) rotateY(-80deg); + transform: translate3d(-40%, 0, 0) rotateY(-80deg); +} + +.reveal.page .slides>section.future { + -webkit-transform-origin: 100% 0%; + -moz-transform-origin: 100% 0%; + -ms-transform-origin: 100% 0%; + transform-origin: 100% 0%; + + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.reveal.page .slides>section>section.past { + -webkit-transform-origin: 0% 0%; + -moz-transform-origin: 0% 0%; + -ms-transform-origin: 0% 0%; + transform-origin: 0% 0%; + + -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg); + -moz-transform: translate3d(0, -40%, 0) rotateX(80deg); + -ms-transform: translate3d(0, -40%, 0) rotateX(80deg); + transform: translate3d(0, -40%, 0) rotateX(80deg); +} + +.reveal.page .slides>section>section.future { + -webkit-transform-origin: 0% 100%; + -moz-transform-origin: 0% 100%; + -ms-transform-origin: 0% 100%; + transform-origin: 0% 100%; + + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + + +/********************************************* + * TILE-FLIP TRANSITION (CSS shader) + *********************************************/ + +.reveal.tileflip .slides section.present { + -webkit-transform: none; + -webkit-transition-duration: 800ms; + + -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg), + amount 0, randomness 0, flipAxis 0 1 0, tileOutline 1 + ); +} + +.reveal.tileflip .slides section.past { + -webkit-transform: none; + -webkit-transition-duration: 800ms; + + -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg), + amount 1, randomness 0, flipAxis 0 1 0, tileOutline 1 + ); +} + +.reveal.tileflip .slides section.future { + -webkit-transform: none; + -webkit-transition-duration: 800ms; + + -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg), + amount 1, randomness 0, flipAxis 0 1 0, tileOutline 1 + ); +} + +.reveal.tileflip .slides>section>section.present { + -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg), + amount 0, randomness 2, flipAxis 1 0 0, tileOutline 1 + ); +} + +.reveal.tileflip .slides>section>section.past { + -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg), + amount 1, randomness 2, flipAxis 1 0 0, tileOutline 1 + ); +} + +.reveal.tileflip .slides>section>section.future { + -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg), + amount 1, randomness 2, flipAxis 1 0 0, tileOutline 1 + ); +} + + +/********************************************* + * NO TRANSITION + *********************************************/ + +.reveal.none .slides section { + -webkit-transform: none; + -moz-transform: none; + -ms-transform: none; + -o-transform: none; + transform: none; + + -webkit-transition: none; + -moz-transition: none; + -ms-transition: none; + -o-transition: none; + transition: none; +} + + +/********************************************* + * OVERVIEW + *********************************************/ + +.reveal.overview .slides { + -webkit-perspective: 700px; + -moz-perspective: 700px; + -ms-perspective: 700px; + perspective: 700px; +} + +.reveal.overview .slides section { + padding: 20px 0; + max-height: 600px; + overflow: hidden; + opacity: 1!important; + visibility: visible!important; + cursor: pointer; + background: rgba(0,0,0,0.1); +} +.reveal.overview .slides section .fragment { + opacity: 1; +} +.reveal.overview .slides section:after, +.reveal.overview .slides section:before { + display: none !important; +} +.reveal.overview .slides section>section { + opacity: 1; + cursor: pointer; +} + .reveal.overview .slides section:hover { + background: rgba(0,0,0,0.3); + } + + .reveal.overview .slides section.present { + background: rgba(0,0,0,0.3); + } +.reveal.overview .slides>section.stack { + background: none; + padding: 0; + overflow: visible; +} + + +/********************************************* + * PAUSED MODE + *********************************************/ + +.reveal .pause-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: black; + visibility: hidden; + opacity: 0; + z-index: 100; + + -webkit-transition: all 1s ease; + -moz-transition: all 1s ease; + -ms-transition: all 1s ease; + -o-transition: all 1s ease; + transition: all 1s ease; +} +.reveal.paused .pause-overlay { + visibility: visible; + opacity: 1; +} + + +/********************************************* + * FALLBACK + *********************************************/ + +.no-transforms { + overflow-y: auto; +} + +.no-transforms .slides section { + display: block!important; + opacity: 1!important; + position: relative!important; + height: auto; + min-height: auto; + margin-bottom: 100px; + + -webkit-transform: none; + -moz-transform: none; + -ms-transform: none; + transform: none; +} + + +/********************************************* + * BACKGROUND STATES + *********************************************/ + +.reveal .state-background { + position: absolute; + width: 100%; + height: 100%; + background: rgba( 0, 0, 0, 0 ); + + -webkit-transition: background 800ms ease; + -moz-transition: background 800ms ease; + -ms-transition: background 800ms ease; + -o-transition: background 800ms ease; + transition: background 800ms ease; +} +.alert .reveal .state-background { + background: rgba( 200, 50, 30, 0.6 ); +} +.soothe .reveal .state-background { + background: rgba( 50, 200, 90, 0.4 ); +} +.blackout .reveal .state-background { + background: rgba( 0, 0, 0, 0.6 ); +} + + +/********************************************* + * SPEAKER NOTES + *********************************************/ + +.reveal aside.notes { + display: none; +} + + +/********************************************* + * ZOOM PLUGIN + *********************************************/ + +.zoomed .reveal *, +.zoomed .reveal *:before, +.zoomed .reveal *:after { + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; + + -webkit-backface-visibility: visible !important; + -moz-backface-visibility: visible !important; + -ms-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +.zoomed .reveal .progress, +.zoomed .reveal .controls { + opacity: 0; +} + +.zoomed .reveal .roll span { + background: none; +} + +.zoomed .reveal .roll span:after { + visibility: hidden; +} + + diff --git a/reveal/css/shaders/tile-flip.fs b/reveal/css/shaders/tile-flip.fs new file mode 100644 index 0000000..3481a48 --- /dev/null +++ b/reveal/css/shaders/tile-flip.fs @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2012 Adobe Systems Incorporated. All rights reserved. + * Copyright (c) 2012 Branislav Ulicny + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +precision mediump float; + +// Uniform values from CSS + +uniform float amount; +uniform float tileOutline; + +// Built-in uniforms + +uniform vec2 u_meshSize; +uniform vec2 u_textureSize; + +// Varyings passed in from vertex shader + +varying float v_depth; +varying vec2 v_uv; + +// Main + +void main() +{ + // FIXME: Must swap x and y as a workaround for: + // https://bugs.webkit.org/show_bug.cgi?id=96285 + vec2 u_meshSize = u_meshSize.yx; + + vec4 c = vec4(1.0); + + // Fade out. + c.a = 1.0 - v_depth; + + // Show grid outline. + if (tileOutline >= 0.5) { + float cell_width = u_textureSize.x / u_meshSize.y; + float cell_height = u_textureSize.y / u_meshSize.x; + float dd = 1.0; + + if (mod(v_uv.x * u_textureSize.x + dd, cell_width) < 2.0 + || mod(v_uv.y * u_textureSize.y + dd, cell_height) < 2.0) { + if (amount > 0.0) + c.rgb = vec3(1.0 - sqrt(amount)); + } + } + css_ColorMatrix = mat4(c.r, 0.0, 0.0, 0.0, + 0.0, c.g, 0.0, 0.0, + 0.0, 0.0, c.b, 0.0, + 0.0, 0.0, 0.0, c.a); +} diff --git a/reveal/css/shaders/tile-flip.vs b/reveal/css/shaders/tile-flip.vs new file mode 100644 index 0000000..498e446 --- /dev/null +++ b/reveal/css/shaders/tile-flip.vs @@ -0,0 +1,141 @@ +/* + * Copyright (c)2012 Adobe Systems Incorporated. All rights reserved. + * Copyright (c)2012 Branislav Ulicny + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +precision mediump float; + +// Built-in attributes + +attribute vec4 a_position; +attribute vec2 a_texCoord; +attribute vec3 a_triangleCoord; + +// Built-in uniforms + +uniform mat4 u_projectionMatrix; +uniform vec2 u_meshSize; +uniform vec2 u_textureSize; + +// Uniform passed in from CSS + +uniform mat4 transform; +uniform float amount; +uniform float randomness; +uniform vec3 flipAxis; + +// Varyings + +varying float v_depth; +varying vec2 v_uv; + +// Constants + +const float PI2 = 1.5707963267948966; + +// Create perspective matrix + +mat4 perspectiveMatrix(float p) +{ + float perspective = - 1.0 / p; + return mat4( + 1.0, 0.0, 0.0, 0.0, + 0.0, 1.0, 0.0, 0.0, + 0.0, 0.0, 1.0, perspective, + 0.0, 0.0, 0.0, 1.0 + ); +} + +// Rotate vector + +vec3 rotateVectorByQuaternion(vec3 v, vec4 q) +{ + vec3 dest = vec3(0.0); + + float x = v.x, y = v.y, z = v.z; + float qx = q.x, qy = q.y, qz = q.z, qw = q.w; + + // Calculate quaternion * vector. + + float ix = qw * x + qy * z - qz * y, + iy = qw * y + qz * x - qx * z, + iz = qw * z + qx * y - qy * x, + iw = -qx * x - qy * y - qz * z; + + // Calculate result * inverse quaternion. + + dest.x = ix * qw + iw * -qx + iy * -qz - iz * -qy; + dest.y = iy * qw + iw * -qy + iz * -qx - ix * -qz; + dest.z = iz * qw + iw * -qz + ix * -qy - iy * -qx; + + return dest; +} + +// Convert rotation. + +vec4 axisAngleToQuaternion(vec3 axis, float angle) +{ + vec4 dest = vec4(0.0); + + float halfAngle = angle / 2.0; + float s = sin(halfAngle); + + dest.x = axis.x * s; + dest.y = axis.y * s; + dest.z = axis.z * s; + dest.w = cos(halfAngle); + + return dest; +} + +// Random function based on the tile coordinate. +// This will return the same value for all the vertices in the same tile (i.e. two triangles). + +float random(vec2 scale) +{ + // Use the fragment position as a different seed per-pixel. + return fract(sin(dot(vec2(a_triangleCoord.x, a_triangleCoord.y), scale)) * 4000.0); +} + +// Main + +void main() +{ + // FIXME: We must swap x and y as a workaround for: + // https://bugs.webkit.org/show_bug.cgi?id=96285 + vec2 u_meshSize = u_meshSize.yx; + + vec4 pos = a_position; + float aspect = u_textureSize.x / u_textureSize.y; + + float cx = a_triangleCoord.x / u_meshSize.y - 0.5 + 0.5 / u_meshSize.y; + float cy = a_triangleCoord.y / u_meshSize.x - 0.5 + 0.5 / u_meshSize.x; + + vec3 centroid = vec3(cx, cy, 0.0); + float r = random(vec2(10.0, 80.0)); + float rr = mix(0.0, PI2, amount * (1.0 + randomness * r)); + + vec4 rotation = vec4(flipAxis, rr); + vec4 qRotation = axisAngleToQuaternion(normalize(rotation.xyz), rotation.w); + + vec3 newPosition = rotateVectorByQuaternion((pos.xyz - centroid)* vec3(aspect, 1., 1.0), qRotation) * vec3(1.0 / aspect, 1.0, 1.0) + centroid; + pos.xyz = newPosition; + + gl_Position = u_projectionMatrix * transform * pos; + + // Pass varyings to the fragment shader. + v_depth = abs(rr)/ PI2; + v_uv = a_texCoord; +} diff --git a/reveal/css/theme/README.md b/reveal/css/theme/README.md new file mode 100644 index 0000000..137bdf2 --- /dev/null +++ b/reveal/css/theme/README.md @@ -0,0 +1,5 @@ +Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Find out how to install Sass here http://sass-lang.com/, once Sass is installed run the follwing command to start monitoring the source files for changes. + +``` +sass --watch css/theme/source/:css/theme --style expanded +``` \ No newline at end of file diff --git a/reveal/css/theme/beige.css b/reveal/css/theme/beige.css new file mode 100644 index 0000000..5e40883 --- /dev/null +++ b/reveal/css/theme/beige.css @@ -0,0 +1,163 @@ +@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/** + * Beige theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@font-face { + font-family: 'League Gothic'; + src: url("../../lib/font/league_gothic-webfont.eot"); + src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg"); + font-weight: normal; + font-style: normal; +} + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #f7f2d3; + background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3)); + background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background-color: #f7f3de; +} + +.reveal { + font-family: "Lato", Times, "Times New Roman", serif; + font-size: 36px; + font-weight: 200; + letter-spacing: -0.02em; + color: #333333; +} + +::selection { + color: white; + background: rgba(79, 64, 28, 0.99); + text-shadow: none; +} + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #333333; + font-family: "League Gothic", Impact, sans-serif; + line-height: 0.9em; + letter-spacing: 0.02em; + text-transform: uppercase; + text-shadow: none; +} + +.reveal h1 { + text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); +} + +/********************************************* + * LINKS + *********************************************/ +.reveal a:not(.image) { + color: #8b743d; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + -ms-transition: color .15s ease; + -o-transition: color .15s ease; + transition: color .15s ease; +} + +.reveal a:not(.image):hover { + color: #c0a86e; + text-shadow: none; + border: none; +} + +.reveal .roll span:after { + color: #fff; + background: #564826; +} + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #333333; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); + -webkit-transition: all .2s linear; + -moz-transition: all .2s linear; + -ms-transition: all .2s linear; + -o-transition: all .2s linear; + transition: all .2s linear; +} + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #8b743d; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); +} + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls div.left, +.reveal .controls div.left.enabled { + border-right-color: #8b743d; +} + +.reveal .controls div.right, +.reveal .controls div.right.enabled { + border-left-color: #8b743d; +} + +.reveal .controls div.up, +.reveal .controls div.up.enabled { + border-bottom-color: #8b743d; +} + +.reveal .controls div.down, +.reveal .controls div.down.enabled { + border-top-color: #8b743d; +} + +.reveal .controls div.left.enabled:hover { + border-right-color: #c0a86e; +} + +.reveal .controls div.right.enabled:hover { + border-left-color: #c0a86e; +} + +.reveal .controls div.up.enabled:hover { + border-bottom-color: #c0a86e; +} + +.reveal .controls div.down.enabled:hover { + border-top-color: #c0a86e; +} + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); +} + +.reveal .progress span { + background: #8b743d; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); +} diff --git a/reveal/css/theme/default.css b/reveal/css/theme/default.css new file mode 100644 index 0000000..28ed7d3 --- /dev/null +++ b/reveal/css/theme/default.css @@ -0,0 +1,163 @@ +@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/** + * Default theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@font-face { + font-family: 'League Gothic'; + src: url("../../lib/font/league_gothic-webfont.eot"); + src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg"); + font-weight: normal; + font-style: normal; +} + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #1c1e20; + background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20)); + background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background-color: #2b2b2b; +} + +.reveal { + font-family: "Lato", Times, "Times New Roman", serif; + font-size: 36px; + font-weight: 200; + letter-spacing: -0.02em; + color: #eeeeee; +} + +::selection { + color: white; + background: #ff5e99; + text-shadow: none; +} + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eeeeee; + font-family: "League Gothic", Impact, sans-serif; + line-height: 0.9em; + letter-spacing: 0.02em; + text-transform: uppercase; + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); +} + +.reveal h1 { + text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); +} + +/********************************************* + * LINKS + *********************************************/ +.reveal a:not(.image) { + color: #13daec; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + -ms-transition: color .15s ease; + -o-transition: color .15s ease; + transition: color .15s ease; +} + +.reveal a:not(.image):hover { + color: #71e9f4; + text-shadow: none; + border: none; +} + +.reveal .roll span:after { + color: #fff; + background: #0d99a5; +} + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #eeeeee; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); + -webkit-transition: all .2s linear; + -moz-transition: all .2s linear; + -ms-transition: all .2s linear; + -o-transition: all .2s linear; + transition: all .2s linear; +} + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #13daec; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); +} + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls div.left, +.reveal .controls div.left.enabled { + border-right-color: #13daec; +} + +.reveal .controls div.right, +.reveal .controls div.right.enabled { + border-left-color: #13daec; +} + +.reveal .controls div.up, +.reveal .controls div.up.enabled { + border-bottom-color: #13daec; +} + +.reveal .controls div.down, +.reveal .controls div.down.enabled { + border-top-color: #13daec; +} + +.reveal .controls div.left.enabled:hover { + border-right-color: #71e9f4; +} + +.reveal .controls div.right.enabled:hover { + border-left-color: #71e9f4; +} + +.reveal .controls div.up.enabled:hover { + border-bottom-color: #71e9f4; +} + +.reveal .controls div.down.enabled:hover { + border-top-color: #71e9f4; +} + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); +} + +.reveal .progress span { + background: #13daec; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); +} diff --git a/reveal/css/theme/serif.css b/reveal/css/theme/serif.css new file mode 100644 index 0000000..ece6124 --- /dev/null +++ b/reveal/css/theme/serif.css @@ -0,0 +1,150 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of. + */ +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #f0f1eb; + background-color: #f0f1eb; +} + +.reveal { + font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + font-size: 36px; + font-weight: 200; + letter-spacing: -0.02em; + color: black; +} + +::selection { + color: white; + background: #26351c; + text-shadow: none; +} + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #383d3d; + font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + line-height: 0.9em; + letter-spacing: 0.02em; + text-transform: none; + text-shadow: none; +} + +.reveal h1 { + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); +} + +/********************************************* + * LINKS + *********************************************/ +.reveal a:not(.image) { + color: #51483d; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + -ms-transition: color .15s ease; + -o-transition: color .15s ease; + transition: color .15s ease; +} + +.reveal a:not(.image):hover { + color: #8b7c69; + text-shadow: none; + border: none; +} + +.reveal .roll span:after { + color: #fff; + background: #25211c; +} + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid black; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); + -webkit-transition: all .2s linear; + -moz-transition: all .2s linear; + -ms-transition: all .2s linear; + -o-transition: all .2s linear; + transition: all .2s linear; +} + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #51483d; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); +} + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls div.left, +.reveal .controls div.left.enabled { + border-right-color: #51483d; +} + +.reveal .controls div.right, +.reveal .controls div.right.enabled { + border-left-color: #51483d; +} + +.reveal .controls div.up, +.reveal .controls div.up.enabled { + border-bottom-color: #51483d; +} + +.reveal .controls div.down, +.reveal .controls div.down.enabled { + border-top-color: #51483d; +} + +.reveal .controls div.left.enabled:hover { + border-right-color: #8b7c69; +} + +.reveal .controls div.right.enabled:hover { + border-left-color: #8b7c69; +} + +.reveal .controls div.up.enabled:hover { + border-bottom-color: #8b7c69; +} + +.reveal .controls div.down.enabled:hover { + border-top-color: #8b7c69; +} + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); +} + +.reveal .progress span { + background: #51483d; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); +} diff --git a/reveal/css/theme/simple.css b/reveal/css/theme/simple.css new file mode 100644 index 0000000..6d0771a --- /dev/null +++ b/reveal/css/theme/simple.css @@ -0,0 +1,152 @@ +@import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700); +@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: white; + background-color: white; +} + +.reveal { + font-family: "Lato", Times, "Times New Roman", serif; + font-size: 36px; + font-weight: 200; + letter-spacing: -0.02em; + color: black; +} + +::selection { + color: white; + background: rgba(0, 0, 0, 0.99); + text-shadow: none; +} + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: black; + font-family: "News Cycle", Impact, sans-serif; + line-height: 0.9em; + letter-spacing: 0.02em; + text-transform: none; + text-shadow: none; +} + +.reveal h1 { + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); +} + +/********************************************* + * LINKS + *********************************************/ +.reveal a:not(.image) { + color: darkblue; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + -ms-transition: color .15s ease; + -o-transition: color .15s ease; + transition: color .15s ease; +} + +.reveal a:not(.image):hover { + color: #0000f1; + text-shadow: none; + border: none; +} + +.reveal .roll span:after { + color: #fff; + background: #00003f; +} + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid black; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); + -webkit-transition: all .2s linear; + -moz-transition: all .2s linear; + -ms-transition: all .2s linear; + -o-transition: all .2s linear; + transition: all .2s linear; +} + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: darkblue; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); +} + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls div.left, +.reveal .controls div.left.enabled { + border-right-color: darkblue; +} + +.reveal .controls div.right, +.reveal .controls div.right.enabled { + border-left-color: darkblue; +} + +.reveal .controls div.up, +.reveal .controls div.up.enabled { + border-bottom-color: darkblue; +} + +.reveal .controls div.down, +.reveal .controls div.down.enabled { + border-top-color: darkblue; +} + +.reveal .controls div.left.enabled:hover { + border-right-color: #0000f1; +} + +.reveal .controls div.right.enabled:hover { + border-left-color: #0000f1; +} + +.reveal .controls div.up.enabled:hover { + border-bottom-color: #0000f1; +} + +.reveal .controls div.down.enabled:hover { + border-top-color: #0000f1; +} + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); +} + +.reveal .progress span { + background: darkblue; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); +} diff --git a/reveal/css/theme/sky.css b/reveal/css/theme/sky.css new file mode 100644 index 0000000..18a4863 --- /dev/null +++ b/reveal/css/theme/sky.css @@ -0,0 +1,156 @@ +@import url(http://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); +@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); +/** + * Sky theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #add9e4; + background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4)); + background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background-color: #f7fbfc; +} + +.reveal { + font-family: "Open Sans", sans-serif; + font-size: 36px; + font-weight: 200; + letter-spacing: -0.02em; + color: #333333; +} + +::selection { + color: white; + background: #134674; + text-shadow: none; +} + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #333333; + font-family: "Quicksand", sans-serif; + line-height: 0.9em; + letter-spacing: -0.08em; + text-transform: uppercase; + text-shadow: none; +} + +.reveal h1 { + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); +} + +/********************************************* + * LINKS + *********************************************/ +.reveal a:not(.image) { + color: #3b759e; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + -ms-transition: color .15s ease; + -o-transition: color .15s ease; + transition: color .15s ease; +} + +.reveal a:not(.image):hover { + color: #74a7cb; + text-shadow: none; + border: none; +} + +.reveal .roll span:after { + color: #fff; + background: #264c66; +} + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #333333; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); + -webkit-transition: all .2s linear; + -moz-transition: all .2s linear; + -ms-transition: all .2s linear; + -o-transition: all .2s linear; + transition: all .2s linear; +} + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #3b759e; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); +} + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls div.left, +.reveal .controls div.left.enabled { + border-right-color: #3b759e; +} + +.reveal .controls div.right, +.reveal .controls div.right.enabled { + border-left-color: #3b759e; +} + +.reveal .controls div.up, +.reveal .controls div.up.enabled { + border-bottom-color: #3b759e; +} + +.reveal .controls div.down, +.reveal .controls div.down.enabled { + border-top-color: #3b759e; +} + +.reveal .controls div.left.enabled:hover { + border-right-color: #74a7cb; +} + +.reveal .controls div.right.enabled:hover { + border-left-color: #74a7cb; +} + +.reveal .controls div.up.enabled:hover { + border-bottom-color: #74a7cb; +} + +.reveal .controls div.down.enabled:hover { + border-top-color: #74a7cb; +} + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); +} + +.reveal .progress span { + background: #3b759e; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); +} diff --git a/reveal/css/theme/source/beige.scss b/reveal/css/theme/source/beige.scss new file mode 100644 index 0000000..177216f --- /dev/null +++ b/reveal/css/theme/source/beige.scss @@ -0,0 +1,50 @@ +/** + * Beige theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@font-face { + font-family: 'League Gothic'; + src: url('../../lib/font/league_gothic-webfont.eot'); + src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), + url('../../lib/font/league_gothic-webfont.woff') format('woff'), + url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), + url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); + + font-weight: normal; + font-style: normal; +} + +@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$mainColor: #333; +$headingColor: #333; +$headingTextShadow: none; +$backgroundColor: #f7f3de; +$linkColor: #8b743d; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: rgba(79, 64, 28, 0.99); +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/reveal/css/theme/source/default.scss b/reveal/css/theme/source/default.scss new file mode 100644 index 0000000..da9b268 --- /dev/null +++ b/reveal/css/theme/source/default.scss @@ -0,0 +1,42 @@ +/** + * Default theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@font-face { + font-family: 'League Gothic'; + src: url('../../lib/font/league_gothic-webfont.eot'); + src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), + url('../../lib/font/league_gothic-webfont.woff') format('woff'), + url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), + url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); + + font-weight: normal; + font-style: normal; +} + +@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + +// Override theme settings (see ../template/settings.scss) +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/reveal/css/theme/source/serif.scss b/reveal/css/theme/source/serif.scss new file mode 100644 index 0000000..dc0935f --- /dev/null +++ b/reveal/css/theme/source/serif.scss @@ -0,0 +1,33 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of. + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; +$mainColor: #000; +$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; +$headingColor: #383D3D; +$headingTextShadow: none; +$headingTextTransform: none; +$backgroundColor: #F0F1EB; +$linkColor: #51483D; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: #26351C; + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/reveal/css/theme/source/simple.scss b/reveal/css/theme/source/simple.scss new file mode 100644 index 0000000..713ab44 --- /dev/null +++ b/reveal/css/theme/source/simple.scss @@ -0,0 +1,38 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700); +@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Lato', Times, 'Times New Roman', serif; +$mainColor: #000; +$headingFont: 'News Cycle', Impact, sans-serif; +$headingColor: #000; +$headingTextShadow: none; +$headingTextTransform: none; +$backgroundColor: #fff; +$linkColor: #00008B; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: rgba(0, 0, 0, 0.99); + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/reveal/css/theme/source/sky.scss b/reveal/css/theme/source/sky.scss new file mode 100644 index 0000000..77fd230 --- /dev/null +++ b/reveal/css/theme/source/sky.scss @@ -0,0 +1,41 @@ +/** + * Sky theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(http://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); +@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Open Sans', sans-serif; +$mainColor: #333; +$headingFont: 'Quicksand', sans-serif; +$headingColor: #333; +$headingLetterSpacing: -0.08em; +$headingTextShadow: none; +$backgroundColor: #f7fbfc; +$linkColor: #3b759e; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: #134674; + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( #add9e4, #f7fbfc ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/reveal/css/theme/template/mixins.scss b/reveal/css/theme/template/mixins.scss new file mode 100644 index 0000000..e0c5606 --- /dev/null +++ b/reveal/css/theme/template/mixins.scss @@ -0,0 +1,29 @@ +@mixin vertical-gradient( $top, $bottom ) { + background: $top; + background: -moz-linear-gradient( top, $top 0%, $bottom 100% ); + background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) ); + background: -webkit-linear-gradient( top, $top 0%, $bottom 100% ); + background: -o-linear-gradient( top, $top 0%, $bottom 100% ); + background: -ms-linear-gradient( top, $top 0%, $bottom 100% ); + background: linear-gradient( top, $top 0%, $bottom 100% ); +} + +@mixin horizontal-gradient( $top, $bottom ) { + background: $top; + background: -moz-linear-gradient( left, $top 0%, $bottom 100% ); + background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) ); + background: -webkit-linear-gradient( left, $top 0%, $bottom 100% ); + background: -o-linear-gradient( left, $top 0%, $bottom 100% ); + background: -ms-linear-gradient( left, $top 0%, $bottom 100% ); + background: linear-gradient( left, $top 0%, $bottom 100% ); +} + +@mixin radial-gradient( $outer, $inner, $type: circle ) { + background: $outer; + background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) ); + background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: radial-gradient( center, $type cover, $inner 0%, $outer 100% ); +} \ No newline at end of file diff --git a/reveal/css/theme/template/settings.scss b/reveal/css/theme/template/settings.scss new file mode 100644 index 0000000..bc9f138 --- /dev/null +++ b/reveal/css/theme/template/settings.scss @@ -0,0 +1,33 @@ +// Base settings for all themes that can optionally be +// overridden by the super-theme + +// Background of the presentation +$backgroundColor: #2b2b2b; + +// Primary/body text +$mainFont: 'Lato', Times, 'Times New Roman', serif; +$mainFontSize: 36px; +$mainColor: #eee; + +// Headings +$headingFont: 'League Gothic', Impact, sans-serif; +$headingColor: #eee; +$headingLineHeight: 0.9em; +$headingLetterSpacing: 0.02em; +$headingTextTransform: uppercase; +$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); +$heading1TextShadow: $headingTextShadow; + +// Links and actions +$linkColor: #13DAEC; +$linkColorHover: lighten( $linkColor, 20% ); + +// Text selection +$selectionBackgroundColor: #FF5E99; +$selectionColor: #fff; + +// Generates the presentation background, can be overridden +// to return a background image or gradient +@mixin bodyBackground() { + background: $backgroundColor; +} \ No newline at end of file diff --git a/reveal/css/theme/template/theme.scss b/reveal/css/theme/template/theme.scss new file mode 100644 index 0000000..6a80b62 --- /dev/null +++ b/reveal/css/theme/template/theme.scss @@ -0,0 +1,163 @@ +// Base theme template for reveal.js + +/********************************************* + * GLOBAL STYLES + *********************************************/ + +body { + @include bodyBackground(); + background-color: $backgroundColor; +} + +.reveal { + font-family: $mainFont; + font-size: $mainFontSize; + font-weight: 200; + letter-spacing: -0.02em; + color: $mainColor; +} + +::selection { + color: $selectionColor; + background: $selectionBackgroundColor; + text-shadow: none; +} + +/********************************************* + * HEADERS + *********************************************/ + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: $headingColor; + + font-family: $headingFont; + line-height: $headingLineHeight; + letter-spacing: $headingLetterSpacing; + + text-transform: $headingTextTransform; + text-shadow: $headingTextShadow; +} + +.reveal h1 { + text-shadow: $heading1TextShadow; +} + + +/********************************************* + * LINKS + *********************************************/ + +.reveal a:not(.image) { + color: $linkColor; + text-decoration: none; + + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + -ms-transition: color .15s ease; + -o-transition: color .15s ease; + transition: color .15s ease; +} + .reveal a:not(.image):hover { + color: $linkColorHover; + + text-shadow: none; + border: none; + } + +.reveal .roll span:after { + color: #fff; + background: darken( $linkColor, 15% ); +} + + +/********************************************* + * IMAGES + *********************************************/ + +.reveal section img { + margin: 15px; + background: rgba(255,255,255,0.12); + border: 4px solid $mainColor; + + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); + + -webkit-transition: all .2s linear; + -moz-transition: all .2s linear; + -ms-transition: all .2s linear; + -o-transition: all .2s linear; + transition: all .2s linear; +} + + .reveal a:hover img { + background: rgba(255,255,255,0.2); + border-color: $linkColor; + + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); + } + + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ + +.reveal .controls div.left, +.reveal .controls div.left.enabled { + border-right-color: $linkColor; +} + +.reveal .controls div.right, +.reveal .controls div.right.enabled { + border-left-color: $linkColor; +} + +.reveal .controls div.up, +.reveal .controls div.up.enabled { + border-bottom-color: $linkColor; +} + +.reveal .controls div.down, +.reveal .controls div.down.enabled { + border-top-color: $linkColor; +} + +.reveal .controls div.left.enabled:hover { + border-right-color: $linkColorHover; +} + +.reveal .controls div.right.enabled:hover { + border-left-color: $linkColorHover; +} + +.reveal .controls div.up.enabled:hover { + border-bottom-color: $linkColorHover; +} + +.reveal .controls div.down.enabled:hover { + border-top-color: $linkColorHover; +} + + +/********************************************* + * PROGRESS BAR + *********************************************/ + +.reveal .progress { + background: rgba(0,0,0,0.2); +} + .reveal .progress span { + background: $linkColor; + + -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + + diff --git a/reveal/js/reveal.js b/reveal/js/reveal.js new file mode 100644 index 0000000..d92ee76 --- /dev/null +++ b/reveal/js/reveal.js @@ -0,0 +1,1385 @@ +/*! + * reveal.js 2.1 r37 + * http://lab.hakim.se/reveal-js + * MIT licensed + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +var Reveal = (function(){ + + 'use strict'; + + var HORIZONTAL_SLIDES_SELECTOR = '.reveal .slides>section', + VERTICAL_SLIDES_SELECTOR = '.reveal .slides>section.present>section', + + // Configurations defaults, can be overridden at initialization time + config = { + // Display controls in the bottom right corner + controls: true, + + // Display a presentation progress bar + progress: true, + + // Push each slide change to the browser history + history: false, + + // Enable keyboard shortcuts for navigation + keyboard: true, + + // Enable the slide overview mode + overview: true, + + // Loop the presentation + loop: false, + + // Number of milliseconds between automatically proceeding to the + // next slide, disabled when set to 0, this value can be overwritten + // by using a data-autoslide attribute on your slides + autoSlide: 0, + + // Enable slide navigation via mouse wheel + mouseWheel: true, + + // Apply a 3D roll to links on hover + rollingLinks: true, + + // Transition style (see /css/theme) + theme: null, + + // Transition style + transition: 'default', // default/cube/page/concave/zoom/linear/none + + // Script dependencies to load + dependencies: [] + }, + + // Stores if the next slide should be shown automatically + // after n milliseconds + autoSlide = config.autoSlide, + + // The horizontal and verical index of the currently active slide + indexh = 0, + indexv = 0, + + // The previous and current slide HTML elements + previousSlide, + currentSlide, + + // Slides may hold a data-state attribute which we pick up and apply + // as a class to the body. This list contains the combined state of + // all current slides. + state = [], + + // Cached references to DOM elements + dom = {}, + + // Detect support for CSS 3D transforms + supports3DTransforms = 'WebkitPerspective' in document.body.style || + 'MozPerspective' in document.body.style || + 'msPerspective' in document.body.style || + 'OPerspective' in document.body.style || + 'perspective' in document.body.style, + + supports2DTransforms = 'WebkitTransform' in document.body.style || + 'MozTransform' in document.body.style || + 'msTransform' in document.body.style || + 'OTransform' in document.body.style || + 'transform' in document.body.style, + + // Throttles mouse wheel navigation + mouseWheelTimeout = 0, + + // An interval used to automatically move on to the next slide + autoSlideTimeout = 0, + + // Delays updates to the URL due to a Chrome thumbnailer bug + writeURLTimeout = 0, + + // Holds information about the currently ongoing touch input + touch = { + startX: 0, + startY: 0, + startSpan: 0, + startCount: 0, + handled: false, + threshold: 80 + }; + + /** + * Starts up the presentation if the client is capable. + */ + function initialize( options ) { + if( ( !supports2DTransforms && !supports3DTransforms ) ) { + document.body.setAttribute( 'class', 'no-transforms' ); + + // If the browser doesn't support core features we won't be + // using JavaScript to control the presentation + return; + } + + // Copy options over to our config object + extend( config, options ); + + // Hide the address bar in mobile browsers + hideAddressBar(); + + // Loads the dependencies and continues to #start() once done + load(); + + } + + /** + * Finds and stores references to DOM elements which are + * required by the presentation. If a required element is + * not found, it is created. + */ + function setupDOM() { + // Cache references to key DOM elements + dom.theme = document.querySelector( '#theme' ); + dom.wrapper = document.querySelector( '.reveal' ); + + // Progress bar + if( !dom.wrapper.querySelector( '.progress' ) && config.progress ) { + var progressElement = document.createElement( 'div' ); + progressElement.classList.add( 'progress' ); + progressElement.innerHTML = ''; + dom.wrapper.appendChild( progressElement ); + } + + // Arrow controls + if( !dom.wrapper.querySelector( '.controls' ) && config.controls ) { + var controlsElement = document.createElement( 'aside' ); + controlsElement.classList.add( 'controls' ); + controlsElement.innerHTML = '
' + + '
' + + '
' + + '
'; + dom.wrapper.appendChild( controlsElement ); + } + + // Presentation background element + if( !dom.wrapper.querySelector( '.state-background' ) ) { + var backgroundElement = document.createElement( 'div' ); + backgroundElement.classList.add( 'state-background' ); + dom.wrapper.appendChild( backgroundElement ); + } + + // Overlay graphic which is displayed during the paused mode + if( !dom.wrapper.querySelector( '.pause-overlay' ) ) { + var pausedElement = document.createElement( 'div' ); + pausedElement.classList.add( 'pause-overlay' ); + dom.wrapper.appendChild( pausedElement ); + } + + // Cache references to elements + dom.progress = document.querySelector( '.reveal .progress' ); + dom.progressbar = document.querySelector( '.reveal .progress span' ); + + if ( config.controls ) { + dom.controls = document.querySelector( '.reveal .controls' ); + dom.controlsLeft = document.querySelector( '.reveal .controls .left' ); + dom.controlsRight = document.querySelector( '.reveal .controls .right' ); + dom.controlsUp = document.querySelector( '.reveal .controls .up' ); + dom.controlsDown = document.querySelector( '.reveal .controls .down' ); + } + } + + /** + * Hides the address bar if we're on a mobile device. + */ + function hideAddressBar() { + if( navigator.userAgent.match( /(iphone|ipod|android)/i ) ) { + // Give the page some scrollable overflow + document.documentElement.style.overflow = 'scroll'; + document.body.style.height = '120%'; + + // Events that should trigger the address bar to hide + window.addEventListener( 'load', removeAddressBar, false ); + window.addEventListener( 'orientationchange', removeAddressBar, false ); + } + } + + /** + * Loads the dependencies of reveal.js. Dependencies are + * defined via the configuration option 'dependencies' + * and will be loaded prior to starting/binding reveal.js. + * Some dependencies may have an 'async' flag, if so they + * will load after reveal.js has been started up. + */ + function load() { + var scripts = [], + scriptsAsync = []; + + for( var i = 0, len = config.dependencies.length; i < len; i++ ) { + var s = config.dependencies[i]; + + // Load if there's no condition or the condition is truthy + if( !s.condition || s.condition() ) { + if( s.async ) { + scriptsAsync.push( s.src ); + } + else { + scripts.push( s.src ); + } + + // Extension may contain callback functions + if( typeof s.callback === 'function' ) { + head.ready( s.src.match( /([\w\d_\-]*)\.?[^\\\/]*$/i )[0], s.callback ); + } + } + } + + // Called once synchronous scritps finish loading + function proceed() { + if( scriptsAsync.length ) { + // Load asynchronous scripts + head.js.apply( null, scriptsAsync ); + } + + start(); + } + + if( scripts.length ) { + head.ready( proceed ); + + // Load synchronous scripts + head.js.apply( null, scripts ); + } + else { + proceed(); + } + } + + /** + * Starts up reveal.js by binding input events and navigating + * to the current URL deeplink if there is one. + */ + function start() { + // Make sure we've got all the DOM elements we need + setupDOM(); + + // Subscribe to input + addEventListeners(); + + // Updates the presentation to match the current configuration values + configure(); + + // Read the initial hash + readURL(); + + // Start auto-sliding if it's enabled + cueAutoSlide(); + + // Notify listeners that the presentation is ready but use a 1ms + // timeout to ensure it's not fired synchronously after #initialize() + setTimeout( function() { + dispatchEvent( 'ready', { + 'indexh': indexh, + 'indexv': indexv, + 'currentSlide': currentSlide + } ); + }, 1 ); + } + + /** + * Applies the configuration settings from the config object. + */ + function configure() { + if( supports3DTransforms === false ) { + config.transition = 'linear'; + } + + if( config.controls && dom.controls ) { + dom.controls.style.display = 'block'; + } + + if( config.progress && dom.progress ) { + dom.progress.style.display = 'block'; + } + + if( config.transition !== 'default' ) { + dom.wrapper.classList.add( config.transition ); + } + + if( config.mouseWheel ) { + document.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF + document.addEventListener( 'mousewheel', onDocumentMouseScroll, false ); + } + + // 3D links + if( config.rollingLinks ) { + linkify(); + } + + // Load the theme in the config, if it's not already loaded + if( config.theme && dom.theme ) { + var themeURL = dom.theme.getAttribute( 'href' ); + var themeFinder = /[^\/]*?(?=\.css)/; + var themeName = themeURL.match(themeFinder)[0]; + + if( config.theme !== themeName ) { + themeURL = themeURL.replace(themeFinder, config.theme); + dom.theme.setAttribute( 'href', themeURL ); + } + } + } + + /** + * Binds all event listeners. + */ + function addEventListeners() { + document.addEventListener( 'touchstart', onDocumentTouchStart, false ); + document.addEventListener( 'touchmove', onDocumentTouchMove, false ); + document.addEventListener( 'touchend', onDocumentTouchEnd, false ); + window.addEventListener( 'hashchange', onWindowHashChange, false ); + + if( config.keyboard ) { + document.addEventListener( 'keydown', onDocumentKeyDown, false ); + } + + if ( config.progress && dom.progress ) { + dom.progress.addEventListener( 'click', preventAndForward( onProgressClick ), false ); + } + + if ( config.controls && dom.controls ) { + dom.controlsLeft.addEventListener( 'click', preventAndForward( navigateLeft ), false ); + dom.controlsRight.addEventListener( 'click', preventAndForward( navigateRight ), false ); + dom.controlsUp.addEventListener( 'click', preventAndForward( navigateUp ), false ); + dom.controlsDown.addEventListener( 'click', preventAndForward( navigateDown ), false ); + } + } + + /** + * Unbinds all event listeners. + */ + function removeEventListeners() { + document.removeEventListener( 'keydown', onDocumentKeyDown, false ); + document.removeEventListener( 'touchstart', onDocumentTouchStart, false ); + document.removeEventListener( 'touchmove', onDocumentTouchMove, false ); + document.removeEventListener( 'touchend', onDocumentTouchEnd, false ); + window.removeEventListener( 'hashchange', onWindowHashChange, false ); + + if ( config.progress && dom.progress ) { + dom.progress.removeEventListener( 'click', preventAndForward( onProgressClick ), false ); + } + + if ( config.controls && dom.controls ) { + dom.controlsLeft.removeEventListener( 'click', preventAndForward( navigateLeft ), false ); + dom.controlsRight.removeEventListener( 'click', preventAndForward( navigateRight ), false ); + dom.controlsUp.removeEventListener( 'click', preventAndForward( navigateUp ), false ); + dom.controlsDown.removeEventListener( 'click', preventAndForward( navigateDown ), false ); + } + } + + /** + * Extend object a with the properties of object b. + * If there's a conflict, object b takes precedence. + */ + function extend( a, b ) { + for( var i in b ) { + a[ i ] = b[ i ]; + } + } + + /** + * Measures the distance in pixels between point a + * and point b. + * + * @param {Object} a point with x/y properties + * @param {Object} b point with x/y properties + */ + function distanceBetween( a, b ) { + var dx = a.x - b.x, + dy = a.y - b.y; + + return Math.sqrt( dx*dx + dy*dy ); + } + + /** + * Prevents an events defaults behavior calls the + * specified delegate. + * + * @param {Function} delegate The method to call + * after the wrapper has been executed + */ + function preventAndForward( delegate ) { + return function( event ) { + event.preventDefault(); + delegate.call( null, event ); + }; + } + + /** + * Causes the address bar to hide on mobile devices, + * more vertical space ftw. + */ + function removeAddressBar() { + setTimeout( function() { + window.scrollTo( 0, 1 ); + }, 0 ); + } + + /** + * Dispatches an event of the specified type from the + * reveal DOM element. + */ + function dispatchEvent( type, properties ) { + var event = document.createEvent( "HTMLEvents", 1, 2 ); + event.initEvent( type, true, true ); + extend( event, properties ); + dom.wrapper.dispatchEvent( event ); + } + + /** + * Wrap all links in 3D goodness. + */ + function linkify() { + if( supports3DTransforms && !( 'msPerspective' in document.body.style ) ) { + var nodes = document.querySelectorAll( '.reveal .slides section a:not(.image)' ); + + for( var i = 0, len = nodes.length; i < len; i++ ) { + var node = nodes[i]; + + if( node.textContent && !node.querySelector( 'img' ) && ( !node.className || !node.classList.contains( node, 'roll' ) ) ) { + node.classList.add( 'roll' ); + node.innerHTML = '' + node.innerHTML + ''; + } + } + } + } + + /** + * Displays the overview of slides (quick nav) by + * scaling down and arranging all slide elements. + * + * Experimental feature, might be dropped if perf + * can't be improved. + */ + function activateOverview() { + + // Only proceed if enabled in config + if( config.overview ) { + + dom.wrapper.classList.add( 'overview' ); + + var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ); + + for( var i = 0, len1 = horizontalSlides.length; i < len1; i++ ) { + var hslide = horizontalSlides[i], + htransform = 'translateZ(-2500px) translate(' + ( ( i - indexh ) * 105 ) + '%, 0%)'; + + hslide.setAttribute( 'data-index-h', i ); + hslide.style.display = 'block'; + hslide.style.WebkitTransform = htransform; + hslide.style.MozTransform = htransform; + hslide.style.msTransform = htransform; + hslide.style.OTransform = htransform; + hslide.style.transform = htransform; + + if( !hslide.classList.contains( 'stack' ) ) { + // Navigate to this slide on click + hslide.addEventListener( 'click', onOverviewSlideClicked, true ); + } + + var verticalSlides = hslide.querySelectorAll( 'section' ); + + for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) { + var vslide = verticalSlides[j], + vtransform = 'translate(0%, ' + ( ( j - ( i === indexh ? indexv : 0 ) ) * 105 ) + '%)'; + + vslide.setAttribute( 'data-index-h', i ); + vslide.setAttribute( 'data-index-v', j ); + vslide.style.display = 'block'; + vslide.style.WebkitTransform = vtransform; + vslide.style.MozTransform = vtransform; + vslide.style.msTransform = vtransform; + vslide.style.OTransform = vtransform; + vslide.style.transform = vtransform; + + // Navigate to this slide on click + vslide.addEventListener( 'click', onOverviewSlideClicked, true ); + } + + } + + } + + } + + /** + * Exits the slide overview and enters the currently + * active slide. + */ + function deactivateOverview() { + + // Only proceed if enabled in config + if( config.overview ) { + + dom.wrapper.classList.remove( 'overview' ); + + // Select all slides + var slides = Array.prototype.slice.call( document.querySelectorAll( '.reveal .slides section' ) ); + + for( var i = 0, len = slides.length; i < len; i++ ) { + var element = slides[i]; + + // Resets all transforms to use the external styles + element.style.WebkitTransform = ''; + element.style.MozTransform = ''; + element.style.msTransform = ''; + element.style.OTransform = ''; + element.style.transform = ''; + + element.removeEventListener( 'click', onOverviewSlideClicked ); + } + + slide(); + + } + } + + /** + * Toggles the slide overview mode on and off. + * + * @param {Boolean} override Optional flag which overrides the + * toggle logic and forcibly sets the desired state. True means + * overview is open, false means it's closed. + */ + function toggleOverview( override ) { + if( typeof override === 'boolean' ) { + override ? activateOverview() : deactivateOverview(); + } + else { + isOverviewActive() ? deactivateOverview() : activateOverview(); + } + } + + /** + * Checks if the overview is currently active. + * + * @return {Boolean} true if the overview is active, + * false otherwise + */ + function isOverviewActive() { + return dom.wrapper.classList.contains( 'overview' ); + } + + /** + * Handling the fullscreen functionality via the fullscreen API + * + * @see http://fullscreen.spec.whatwg.org/ + * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode + */ + function enterFullscreen() { + var element = document.body; + + // Check which implementation is available + var requestMethod = element.requestFullScreen || + element.webkitRequestFullScreen || + element.mozRequestFullScreen || + element.msRequestFullScreen; + + if( requestMethod ) { + requestMethod.apply( element ); + } + } + + /** + * Enters the paused mode which fades everything on screen to + * black. + */ + function pause() { + dom.wrapper.classList.add( 'paused' ); + } + + /** + * Exits from the paused mode. + */ + function resume() { + dom.wrapper.classList.remove( 'paused' ); + } + + /** + * Toggles the paused mode on and off. + */ + function togglePause() { + if( isPaused() ) { + resume(); + } + else { + pause(); + } + } + + /** + * Checks if we are currently in the paused mode. + */ + function isPaused() { + return dom.wrapper.classList.contains( 'paused' ); + } + + /** + * Steps from the current point in the presentation to the + * slide which matches the specified horizontal and vertical + * indices. + * + * @param {int} h Horizontal index of the target slide + * @param {int} v Vertical index of the target slide + */ + function slide( h, v ) { + // Remember where we were at before + previousSlide = currentSlide; + + // Remember the state before this slide + var stateBefore = state.concat(); + + // Reset the state array + state.length = 0; + + var indexhBefore = indexh, + indexvBefore = indexv; + + // Activate and transition to the new slide + indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h ); + indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v ); + + // Apply the new state + stateLoop: for( var i = 0, len = state.length; i < len; i++ ) { + // Check if this state existed on the previous slide. If it + // did, we will avoid adding it repeatedly. + for( var j = 0; j < stateBefore.length; j++ ) { + if( stateBefore[j] === state[i] ) { + stateBefore.splice( j, 1 ); + continue stateLoop; + } + } + + document.documentElement.classList.add( state[i] ); + + // Dispatch custom event matching the state's name + dispatchEvent( state[i] ); + } + + // Clean up the remaints of the previous state + while( stateBefore.length ) { + document.documentElement.classList.remove( stateBefore.pop() ); + } + + // Update progress if enabled + if( config.progress && dom.progress ) { + dom.progressbar.style.width = ( indexh / ( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1 ) ) * window.innerWidth + 'px'; + } + + // If the overview is active, re-activate it to update positions + if( isOverviewActive() ) { + activateOverview(); + } + + updateControls(); + + // Update the URL hash after a delay since updating it mid-transition + // is likely to cause visual lag + clearTimeout( writeURLTimeout ); + writeURLTimeout = setTimeout( writeURL, 1500 ); + + // Query all horizontal slides in the deck + var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ); + + // Find the current horizontal slide and any possible vertical slides + // within it + var currentHorizontalSlide = horizontalSlides[ indexh ], + currentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' ); + + // Store references to the previous and current slides + currentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide; + + // Dispatch an event if the slide changed + if( indexh !== indexhBefore || indexv !== indexvBefore ) { + dispatchEvent( 'slidechanged', { + 'indexh': indexh, + 'indexv': indexv, + 'previousSlide': previousSlide, + 'currentSlide': currentSlide + } ); + } + else { + // Ensure that the previous slide is never the same as the current + previousSlide = null; + } + + // Solves an edge case where the previous slide maintains the + // 'present' class when navigating between adjacent vertical + // stacks + if( previousSlide ) { + previousSlide.classList.remove( 'present' ); + } + } + + /** + * Updates one dimension of slides by showing the slide + * with the specified index. + * + * @param {String} selector A CSS selector that will fetch + * the group of slides we are working with + * @param {Number} index The index of the slide that should be + * shown + * + * @return {Number} The index of the slide that is now shown, + * might differ from the passed in index if it was out of + * bounds. + */ + function updateSlides( selector, index ) { + // Select all slides and convert the NodeList result to + // an array + var slides = Array.prototype.slice.call( document.querySelectorAll( selector ) ), + slidesLength = slides.length; + + if( slidesLength ) { + + // Should the index loop? + if( config.loop ) { + index %= slidesLength; + + if( index < 0 ) { + index = slidesLength + index; + } + } + + // Enforce max and minimum index bounds + index = Math.max( Math.min( index, slidesLength - 1 ), 0 ); + + for( var i = 0; i < slidesLength; i++ ) { + var element = slides[i]; + + // Optimization; hide all slides that are three or more steps + // away from the present slide + if( isOverviewActive() === false ) { + // The distance loops so that it measures 1 between the first + // and last slides + var distance = Math.abs( ( index - i ) % ( slidesLength - 3 ) ) || 0; + + element.style.display = distance > 3 ? 'none' : 'block'; + } + + slides[i].classList.remove( 'past' ); + slides[i].classList.remove( 'present' ); + slides[i].classList.remove( 'future' ); + + if( i < index ) { + // Any element previous to index is given the 'past' class + slides[i].classList.add( 'past' ); + } + else if( i > index ) { + // Any element subsequent to index is given the 'future' class + slides[i].classList.add( 'future' ); + } + + // If this element contains vertical slides + if( element.querySelector( 'section' ) ) { + slides[i].classList.add( 'stack' ); + } + } + + // Mark the current slide as present + slides[index].classList.add( 'present' ); + + // If this slide has a state associated with it, add it + // onto the current state of the deck + var slideState = slides[index].getAttribute( 'data-state' ); + if( slideState ) { + state = state.concat( slideState.split( ' ' ) ); + } + + // If this slide has a data-autoslide attribtue associated use this as + // autoSlide value otherwise use the global configured time + var slideAutoSlide = slides[index].getAttribute( 'data-autoslide' ); + if( slideAutoSlide ) { + autoSlide = parseInt( slideAutoSlide ); + } else { + autoSlide = config.autoSlide + } + + } + else { + // Since there are no slides we can't be anywhere beyond the + // zeroth index + index = 0; + } + + return index; + + } + + /** + * Updates the state and link pointers of the controls. + */ + function updateControls() { + if ( config.controls && dom.controls ) { + + var routes = availableRoutes(); + + // Remove the 'enabled' class from all directions + [ dom.controlsLeft, dom.controlsRight, dom.controlsUp, dom.controlsDown ].forEach( function( node ) { + node.classList.remove( 'enabled' ); + } ); + + // Add the 'enabled' class to the available routes + if( routes.left ) dom.controlsLeft.classList.add( 'enabled' ); + if( routes.right ) dom.controlsRight.classList.add( 'enabled' ); + if( routes.up ) dom.controlsUp.classList.add( 'enabled' ); + if( routes.down ) dom.controlsDown.classList.add( 'enabled' ); + + } + } + + /** + * Determine what available routes there are for navigation. + * + * @return {Object} containing four booleans: left/right/up/down + */ + function availableRoutes() { + var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ), + verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR ); + + return { + left: indexh > 0, + right: indexh < horizontalSlides.length - 1, + up: indexv > 0, + down: indexv < verticalSlides.length - 1 + }; + } + + /** + * Reads the current URL (hash) and navigates accordingly. + */ + function readURL() { + var hash = window.location.hash; + + // Attempt to parse the hash as either an index or name + var bits = hash.slice( 2 ).split( '/' ), + name = hash.replace( /#|\//gi, '' ); + + // If the first bit is invalid and there is a name we can + // assume that this is a named link + if( isNaN( parseInt( bits[0], 10 ) ) && name.length ) { + // Find the slide with the specified name + var element = document.querySelector( '#' + name ); + + if( element ) { + // Find the position of the named slide and navigate to it + var indices = Reveal.getIndices( element ); + slide( indices.h, indices.v ); + } + // If the slide doesn't exist, navigate to the current slide + else { + slide( indexh, indexv ); + } + } + else { + // Read the index components of the hash + var h = parseInt( bits[0], 10 ) || 0, + v = parseInt( bits[1], 10 ) || 0; + + slide( h, v ); + } + } + + /** + * Updates the page URL (hash) to reflect the current + * state. + */ + function writeURL() { + if( config.history ) { + var url = '/'; + + // Only include the minimum possible number of components in + // the URL + if( indexh > 0 || indexv > 0 ) url += indexh; + if( indexv > 0 ) url += '/' + indexv; + + window.location.hash = url; + } + } + + /** + * Retrieves the h/v location of the current, or specified, + * slide. + * + * @param {HTMLElement} slide If specified, the returned + * index will be for this slide rather than the currently + * active one + * + * @return {Object} { h: , v: } + */ + function getIndices( slide ) { + // By default, return the current indices + var h = indexh, + v = indexv; + + // If a slide is specified, return the indices of that slide + if( slide ) { + var isVertical = !!slide.parentNode.nodeName.match( /section/gi ); + var slideh = isVertical ? slide.parentNode : slide; + + // Select all horizontal slides + var horizontalSlides = Array.prototype.slice.call( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + + // Now that we know which the horizontal slide is, get its index + h = Math.max( horizontalSlides.indexOf( slideh ), 0 ); + + // If this is a vertical slide, grab the vertical index + if( isVertical ) { + v = Math.max( Array.prototype.slice.call( slide.parentNode.children ).indexOf( slide ), 0 ); + } + } + + return { h: h, v: v }; + } + + /** + * Navigate to the next slide fragment. + * + * @return {Boolean} true if there was a next fragment, + * false otherwise + */ + function nextFragment() { + // Vertical slides: + if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) { + var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' ); + if( verticalFragments.length ) { + verticalFragments[0].classList.add( 'visible' ); + + // Notify subscribers of the change + dispatchEvent( 'fragmentshown', { fragment: verticalFragments[0] } ); + return true; + } + } + // Horizontal slides: + else { + var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' ); + if( horizontalFragments.length ) { + horizontalFragments[0].classList.add( 'visible' ); + + // Notify subscribers of the change + dispatchEvent( 'fragmentshown', { fragment: horizontalFragments[0] } ); + return true; + } + } + + return false; + } + + /** + * Navigate to the previous slide fragment. + * + * @return {Boolean} true if there was a previous fragment, + * false otherwise + */ + function previousFragment() { + // Vertical slides: + if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) { + var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment.visible' ); + if( verticalFragments.length ) { + verticalFragments[ verticalFragments.length - 1 ].classList.remove( 'visible' ); + + // Notify subscribers of the change + dispatchEvent( 'fragmenthidden', { fragment: verticalFragments[ verticalFragments.length - 1 ] } ); + return true; + } + } + // Horizontal slides: + else { + var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment.visible' ); + if( horizontalFragments.length ) { + horizontalFragments[ horizontalFragments.length - 1 ].classList.remove( 'visible' ); + + // Notify subscribers of the change + dispatchEvent( 'fragmenthidden', { fragment: horizontalFragments[ horizontalFragments.length - 1 ] } ); + return true; + } + } + + return false; + } + + /** + * Cues a new automated slide if enabled in the config. + */ + function cueAutoSlide() { + clearTimeout( autoSlideTimeout ); + + // Cue the next auto-slide if enabled + if( autoSlide ) { + autoSlideTimeout = setTimeout( navigateNext, autoSlide ); + } + } + + function navigateLeft() { + // Prioritize hiding fragments + if( availableRoutes().left && ( isOverviewActive() || previousFragment() === false ) ) { + slide( indexh - 1, 0 ); + } + } + + function navigateRight() { + // Prioritize revealing fragments + if( availableRoutes().right && ( isOverviewActive() || nextFragment() === false ) ) { + slide( indexh + 1, 0 ); + } + } + + function navigateUp() { + // Prioritize hiding fragments + if( availableRoutes().up && ( isOverviewActive() || previousFragment() === false ) ) { + slide( indexh, indexv - 1 ); + } + } + + function navigateDown() { + // Prioritize revealing fragments + if( availableRoutes().down && ( isOverviewActive() || nextFragment() === false ) ) { + slide( indexh, indexv + 1 ); + } + } + + /** + * Navigates backwards, prioritized in the following order: + * 1) Previous fragment + * 2) Previous vertical slide + * 3) Previous horizontal slide + */ + function navigatePrev() { + // Prioritize revealing fragments + if( previousFragment() === false ) { + if( availableRoutes().up ) { + navigateUp(); + } + else { + // Fetch the previous horizontal slide, if there is one + var previousSlide = document.querySelector( '.reveal .slides>section.past:nth-child(' + indexh + ')' ); + + if( previousSlide ) { + indexv = ( previousSlide.querySelectorAll( 'section' ).length + 1 ) || 0; + indexh --; + slide(); + } + } + } + } + + /** + * Same as #navigatePrev() but navigates forwards. + */ + function navigateNext() { + // Prioritize revealing fragments + if( nextFragment() === false ) { + availableRoutes().down ? navigateDown() : navigateRight(); + } + + // If auto-sliding is enabled we need to cue up + // another timeout + cueAutoSlide(); + } + + + // --------------------------------------------------------------------// + // ----------------------------- EVENTS -------------------------------// + // --------------------------------------------------------------------// + + + /** + * Handler for the document level 'keydown' event. + * + * @param {Object} event + */ + function onDocumentKeyDown( event ) { + // Check if there's a focused element that could be using + // the keyboard + var activeElement = document.activeElement; + var hasFocus = !!( document.activeElement && ( document.activeElement.type || document.activeElement.href || document.activeElement.contentEditable !== 'inherit' ) ); + + // Disregard the event if there's a focused element or a + // keyboard modifier key is present + if ( hasFocus || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return; + + var triggered = true; + + switch( event.keyCode ) { + // p, page up + case 80: case 33: navigatePrev(); break; + // n, page down + case 78: case 34: navigateNext(); break; + // h, left + case 72: case 37: navigateLeft(); break; + // l, right + case 76: case 39: navigateRight(); break; + // k, up + case 75: case 38: navigateUp(); break; + // j, down + case 74: case 40: navigateDown(); break; + // home + case 36: slide( 0 ); break; + // end + case 35: slide( Number.MAX_VALUE ); break; + // space + case 32: isOverviewActive() ? deactivateOverview() : navigateNext(); break; + // return + case 13: isOverviewActive() ? deactivateOverview() : triggered = false; break; + // b, period + case 66: case 190: togglePause(); break; + // f + case 70: enterFullscreen(); break; + default: + triggered = false; + } + + // If the input resulted in a triggered action we should prevent + // the browsers default behavior + if( triggered ) { + event.preventDefault(); + } + else if ( event.keyCode === 27 && supports3DTransforms ) { + toggleOverview(); + + event.preventDefault(); + } + + // If auto-sliding is enabled we need to cue up + // another timeout + cueAutoSlide(); + + } + + /** + * Handler for the document level 'touchstart' event, + * enables support for swipe and pinch gestures. + */ + function onDocumentTouchStart( event ) { + touch.startX = event.touches[0].clientX; + touch.startY = event.touches[0].clientY; + touch.startCount = event.touches.length; + + // If there's two touches we need to memorize the distance + // between those two points to detect pinching + if( event.touches.length === 2 && config.overview ) { + touch.startSpan = distanceBetween( { + x: event.touches[1].clientX, + y: event.touches[1].clientY + }, { + x: touch.startX, + y: touch.startY + } ); + } + } + + /** + * Handler for the document level 'touchmove' event. + */ + function onDocumentTouchMove( event ) { + // Each touch should only trigger one action + if( !touch.handled ) { + var currentX = event.touches[0].clientX; + var currentY = event.touches[0].clientY; + + // If the touch started off with two points and still has + // two active touches; test for the pinch gesture + if( event.touches.length === 2 && touch.startCount === 2 && config.overview ) { + + // The current distance in pixels between the two touch points + var currentSpan = distanceBetween( { + x: event.touches[1].clientX, + y: event.touches[1].clientY + }, { + x: touch.startX, + y: touch.startY + } ); + + // If the span is larger than the desire amount we've got + // ourselves a pinch + if( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) { + touch.handled = true; + + if( currentSpan < touch.startSpan ) { + activateOverview(); + } + else { + deactivateOverview(); + } + } + + event.preventDefault(); + + } + // There was only one touch point, look for a swipe + else if( event.touches.length === 1 && touch.startCount !== 2 ) { + + var deltaX = currentX - touch.startX, + deltaY = currentY - touch.startY; + + if( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) { + touch.handled = true; + navigateLeft(); + } + else if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) { + touch.handled = true; + navigateRight(); + } + else if( deltaY > touch.threshold ) { + touch.handled = true; + navigateUp(); + } + else if( deltaY < -touch.threshold ) { + touch.handled = true; + navigateDown(); + } + + event.preventDefault(); + + } + } + // There's a bug with swiping on some Android devices unless + // the default action is always prevented + else if( navigator.userAgent.match( /android/gi ) ) { + event.preventDefault(); + } + } + + /** + * Handler for the document level 'touchend' event. + */ + function onDocumentTouchEnd( event ) { + touch.handled = false; + } + + /** + * Handles mouse wheel scrolling, throttled to avoid skipping + * multiple slides. + */ + function onDocumentMouseScroll( event ){ + clearTimeout( mouseWheelTimeout ); + + mouseWheelTimeout = setTimeout( function() { + var delta = event.detail || -event.wheelDelta; + if( delta > 0 ) { + navigateNext(); + } + else { + navigatePrev(); + } + }, 100 ); + } + + /** + * Clicking on the progress bar results in a navigation to the + * closest approximate horizontal slide using this equation: + * + * ( clickX / presentationWidth ) * numberOfSlides + */ + function onProgressClick( event ) { + var slidesTotal = Array.prototype.slice.call( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length; + var slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal ); + + slide( slideIndex ); + } + + /** + * Handler for the window level 'hashchange' event. + * + * @param {Object} event + */ + function onWindowHashChange( event ) { + readURL(); + } + + /** + * Invoked when a slide is and we're in the overview. + */ + function onOverviewSlideClicked( event ) { + // TODO There's a bug here where the event listeners are not + // removed after deactivating the overview. + if( isOverviewActive() ) { + event.preventDefault(); + + deactivateOverview(); + + indexh = this.getAttribute( 'data-index-h' ); + indexv = this.getAttribute( 'data-index-v' ); + + slide(); + } + } + + + // --------------------------------------------------------------------// + // ------------------------------- API --------------------------------// + // --------------------------------------------------------------------// + + + return { + initialize: initialize, + + // Navigation methods + slide: slide, + left: navigateLeft, + right: navigateRight, + up: navigateUp, + down: navigateDown, + prev: navigatePrev, + next: navigateNext, + prevFragment: previousFragment, + nextFragment: nextFragment, + + // Deprecated aliases + navigateTo: slide, + navigateLeft: navigateLeft, + navigateRight: navigateRight, + navigateUp: navigateUp, + navigateDown: navigateDown, + navigatePrev: navigatePrev, + navigateNext: navigateNext, + + // Toggles the overview mode on/off + toggleOverview: toggleOverview, + + // Adds or removes all internal event listeners (such as keyboard) + addEventListeners: addEventListeners, + removeEventListeners: removeEventListeners, + + // Returns the indices of the current, or specified, slide + getIndices: getIndices, + + // Returns the previous slide element, may be null + getPreviousSlide: function() { + return previousSlide; + }, + + // Returns the current slide element + getCurrentSlide: function() { + return currentSlide; + }, + + // Helper method, retrieves query string as a key/value hash + getQueryHash: function() { + var query = {}; + + location.search.replace( /[A-Z0-9]+?=(\w*)/gi, function(a) { + query[ a.split( '=' ).shift() ] = a.split( '=' ).pop(); + } ); + + return query; + }, + + // Forward event binding to the reveal DOM element + addEventListener: function( type, listener, useCapture ) { + if( 'addEventListener' in window ) { + ( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture ); + } + }, + removeEventListener: function( type, listener, useCapture ) { + if( 'addEventListener' in window ) { + ( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture ); + } + } + }; + +})(); \ No newline at end of file diff --git a/reveal/js/reveal.min.js b/reveal/js/reveal.min.js new file mode 100644 index 0000000..e31d807 --- /dev/null +++ b/reveal/js/reveal.min.js @@ -0,0 +1,83 @@ +/*! + * reveal.js 2.1 r37 + * http://lab.hakim.se/reveal-js + * MIT licensed + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +var Reveal=(function(){var l=".reveal .slides>section",b=".reveal .slides>section.present>section",R={controls:true,progress:true,history:false,keyboard:true,overview:true,loop:false,autoSlide:0,mouseWheel:true,rollingLinks:true,theme:null,transition:"default",dependencies:[]},Y=R.autoSlide,m=0,e=0,y,G,ak=[],f={},T="WebkitPerspective" in document.body.style||"MozPerspective" in document.body.style||"msPerspective" in document.body.style||"OPerspective" in document.body.style||"perspective" in document.body.style,n="WebkitTransform" in document.body.style||"MozTransform" in document.body.style||"msTransform" in document.body.style||"OTransform" in document.body.style||"transform" in document.body.style,z=0,k=0,D=0,ac={startX:0,startY:0,startSpan:0,startCount:0,handled:false,threshold:80}; +function i(al){if((!n&&!T)){document.body.setAttribute("class","no-transforms");return;}t(R,al);d();V();}function P(){f.theme=document.querySelector("#theme"); +f.wrapper=document.querySelector(".reveal");if(!f.wrapper.querySelector(".progress")&&R.progress){var ao=document.createElement("div");ao.classList.add("progress"); +ao.innerHTML="";f.wrapper.appendChild(ao);}if(!f.wrapper.querySelector(".controls")&&R.controls){var an=document.createElement("aside");an.classList.add("controls"); +an.innerHTML='
';f.wrapper.appendChild(an);}if(!f.wrapper.querySelector(".state-background")){var am=document.createElement("div"); +am.classList.add("state-background");f.wrapper.appendChild(am);}if(!f.wrapper.querySelector(".pause-overlay")){var al=document.createElement("div");al.classList.add("pause-overlay"); +f.wrapper.appendChild(al);}f.progress=document.querySelector(".reveal .progress");f.progressbar=document.querySelector(".reveal .progress span");if(R.controls){f.controls=document.querySelector(".reveal .controls"); +f.controlsLeft=document.querySelector(".reveal .controls .left");f.controlsRight=document.querySelector(".reveal .controls .right");f.controlsUp=document.querySelector(".reveal .controls .up"); +f.controlsDown=document.querySelector(".reveal .controls .down");}}function d(){if(navigator.userAgent.match(/(iphone|ipod|android)/i)){document.documentElement.style.overflow="scroll"; +document.body.style.height="120%";window.addEventListener("load",ad,false);window.addEventListener("orientationchange",ad,false);}}function V(){var am=[],aq=[]; +for(var an=0,al=R.dependencies.length;an'+ao.innerHTML+"";}}}}function I(){if(R.overview){f.wrapper.classList.add("overview");var al=document.querySelectorAll(l); +for(var aq=0,ao=al.length;aq3?"none":"block"; +}am[aq].classList.remove("past");am[aq].classList.remove("present");am[aq].classList.remove("future");if(aqau){am[aq].classList.add("future"); +}}if(ar.querySelector("section")){am[aq].classList.add("stack");}}am[au].classList.add("present");var an=am[au].getAttribute("data-state");if(an){ak=ak.concat(an.split(" ")); +}var ap=am[au].getAttribute("data-autoslide");if(ap){Y=parseInt(ap);}else{Y=R.autoSlide;}}else{au=0;}return au;}function s(){if(R.controls&&f.controls){var al=g(); +[f.controlsLeft,f.controlsRight,f.controlsUp,f.controlsDown].forEach(function(am){am.classList.remove("enabled");});if(al.left){f.controlsLeft.classList.add("enabled"); +}if(al.right){f.controlsRight.classList.add("enabled");}if(al.up){f.controlsUp.classList.add("enabled");}if(al.down){f.controlsDown.classList.add("enabled"); +}}}function g(){var al=document.querySelectorAll(l),am=document.querySelectorAll(b);return{left:m>0,right:m0,down:e0||e>0){al+=m; +}if(e>0){al+="/"+e;}window.location.hash=al;}}function M(al){var ap=m,an=e;if(al){var aq=!!al.parentNode.nodeName.match(/section/gi);var ao=aq?al.parentNode:al; +var am=Array.prototype.slice.call(document.querySelectorAll(l));ap=Math.max(am.indexOf(ao),0);if(aq){an=Math.max(Array.prototype.slice.call(al.parentNode.children).indexOf(al),0); +}}return{h:ap,v:an};}function v(){if(document.querySelector(b+".present")){var am=document.querySelectorAll(b+".present .fragment:not(.visible)");if(am.length){am[0].classList.add("visible"); +r("fragmentshown",{fragment:am[0]});return true;}}else{var al=document.querySelectorAll(l+".present .fragment:not(.visible)");if(al.length){al[0].classList.add("visible"); +r("fragmentshown",{fragment:al[0]});return true;}}return false;}function Q(){if(document.querySelector(b+".present")){var am=document.querySelectorAll(b+".present .fragment.visible"); +if(am.length){am[am.length-1].classList.remove("visible");r("fragmenthidden",{fragment:am[am.length-1]});return true;}}else{var al=document.querySelectorAll(l+".present .fragment.visible"); +if(al.length){al[al.length-1].classList.remove("visible");r("fragmenthidden",{fragment:al[al.length-1]});return true;}}return false;}function O(){clearTimeout(k); +if(Y){k=setTimeout(x,Y);}}function B(){if(g().left&&(L()||Q()===false)){a(m-1,0);}}function j(){if(g().right&&(L()||v()===false)){a(m+1,0);}}function u(){if(g().up&&(L()||Q()===false)){a(m,e-1); +}}function F(){if(g().down&&(L()||v()===false)){a(m,e+1);}}function Z(){if(Q()===false){if(g().up){u();}else{var al=document.querySelector(".reveal .slides>section.past:nth-child("+m+")"); +if(al){e=(al.querySelectorAll("section").length+1)||0;m--;a();}}}}function x(){if(v()===false){g().down?F():j();}O();}function ah(an){var am=document.activeElement; +var ao=!!(document.activeElement&&(document.activeElement.type||document.activeElement.href||document.activeElement.contentEditable!=="inherit"));if(ao||an.shiftKey||an.altKey||an.ctrlKey||an.metaKey){return; +}var al=true;switch(an.keyCode){case 80:case 33:Z();break;case 78:case 34:x();break;case 72:case 37:B();break;case 76:case 39:j();break;case 75:case 38:u(); +break;case 74:case 40:F();break;case 36:a(0);break;case 35:a(Number.MAX_VALUE);break;case 32:L()?ae():x();break;case 13:L()?ae():al=false;break;case 66:case 190:aa(); +break;case 70:ab();break;default:al=false;}if(al){an.preventDefault();}else{if(an.keyCode===27&&T){X();an.preventDefault();}}O();}function A(al){ac.startX=al.touches[0].clientX; +ac.startY=al.touches[0].clientY;ac.startCount=al.touches.length;if(al.touches.length===2&&R.overview){ac.startSpan=S({x:al.touches[1].clientX,y:al.touches[1].clientY},{x:ac.startX,y:ac.startY}); +}}function af(aq){if(!ac.handled){var ao=aq.touches[0].clientX;var an=aq.touches[0].clientY;if(aq.touches.length===2&&ac.startCount===2&&R.overview){var ap=S({x:aq.touches[1].clientX,y:aq.touches[1].clientY},{x:ac.startX,y:ac.startY}); +if(Math.abs(ac.startSpan-ap)>ac.threshold){ac.handled=true;if(apac.threshold&&Math.abs(am)>Math.abs(al)){ac.handled=true;B();}else{if(am<-ac.threshold&&Math.abs(am)>Math.abs(al)){ac.handled=true;j();}else{if(al>ac.threshold){ac.handled=true; +u();}else{if(al<-ac.threshold){ac.handled=true;F();}}}}aq.preventDefault();}}}else{if(navigator.userAgent.match(/android/gi)){aq.preventDefault();}}}function W(al){ac.handled=false; +}function o(al){clearTimeout(z);z=setTimeout(function(){var am=al.detail||-al.wheelDelta;if(am>0){x();}else{Z();}},100);}function ai(am){var al=Array.prototype.slice.call(document.querySelectorAll(l)).length; +var an=Math.floor((am.clientX/f.wrapper.offsetWidth)*al);a(an);}function w(al){J();}function C(al){if(L()){al.preventDefault();ae();m=this.getAttribute("data-index-h"); +e=this.getAttribute("data-index-v");a();}}return{initialize:i,slide:a,left:B,right:j,up:u,down:F,prev:Z,next:x,prevFragment:Q,nextFragment:v,navigateTo:a,navigateLeft:B,navigateRight:j,navigateUp:u,navigateDown:F,navigatePrev:Z,navigateNext:x,toggleOverview:X,addEventListeners:E,removeEventListeners:U,getIndices:M,getPreviousSlide:function(){return y; +},getCurrentSlide:function(){return G;},getQueryHash:function(){var al={};location.search.replace(/[A-Z0-9]+?=(\w*)/gi,function(am){al[am.split("=").shift()]=am.split("=").pop(); +});return al;},addEventListener:function(am,an,al){if("addEventListener" in window){(f.wrapper||document.querySelector(".reveal")).addEventListener(am,an,al); +}},removeEventListener:function(am,an,al){if("addEventListener" in window){(f.wrapper||document.querySelector(".reveal")).removeEventListener(am,an,al); +}}};})(); \ No newline at end of file diff --git a/reveal/lib/css/zenburn.css b/reveal/lib/css/zenburn.css new file mode 100644 index 0000000..f4070ca --- /dev/null +++ b/reveal/lib/css/zenburn.css @@ -0,0 +1,115 @@ +/* + +Zenburn style from voldmar.ru (c) Vladimir Epifanov +based on dark.css by Ivan Sagalaev + +*/ + +pre code { + display: block; padding: 0.5em; + background: #3F3F3F; + color: #DCDCDC; +} + +pre .keyword, +pre .tag, +pre .django .tag, +pre .django .keyword, +pre .css .class, +pre .css .id, +pre .lisp .title { + color: #E3CEAB; +} + +pre .django .template_tag, +pre .django .variable, +pre .django .filter .argument { + color: #DCDCDC; +} + +pre .number, +pre .date { + color: #8CD0D3; +} + +pre .dos .envvar, +pre .dos .stream, +pre .variable, +pre .apache .sqbracket { + color: #EFDCBC; +} + +pre .dos .flow, +pre .diff .change, +pre .python .exception, +pre .python .built_in, +pre .literal, +pre .tex .special { + color: #EFEFAF; +} + +pre .diff .chunk, +pre .ruby .subst { + color: #8F8F8F; +} + +pre .dos .keyword, +pre .python .decorator, +pre .class .title, +pre .haskell .label, +pre .function .title, +pre .ini .title, +pre .diff .header, +pre .ruby .class .parent, +pre .apache .tag, +pre .nginx .built_in, +pre .tex .command, +pre .input_number { + color: #efef8f; +} + +pre .dos .winutils, +pre .ruby .symbol, +pre .ruby .symbol .string, +pre .ruby .symbol .keyword, +pre .ruby .symbol .keymethods, +pre .ruby .string, +pre .ruby .instancevar { + color: #DCA3A3; +} + +pre .diff .deletion, +pre .string, +pre .tag .value, +pre .preprocessor, +pre .built_in, +pre .sql .aggregate, +pre .javadoc, +pre .smalltalk .class, +pre .smalltalk .localvars, +pre .smalltalk .array, +pre .css .rules .value, +pre .attr_selector, +pre .pseudo, +pre .apache .cbracket, +pre .tex .formula { + color: #CC9393; +} + +pre .shebang, +pre .diff .addition, +pre .comment, +pre .java .annotation, +pre .template_comment, +pre .pi, +pre .doctype { + color: #7F9F7F; +} + +pre .xml .css, +pre .xml .javascript, +pre .xml .vbscript, +pre .tex .formula { + opacity: 0.5; +} + diff --git a/reveal/lib/font/league_gothic-webfont.eot b/reveal/lib/font/league_gothic-webfont.eot new file mode 100755 index 0000000000000000000000000000000000000000..598dcbc06100e2c6ac5dcbcb7446bd1a15133550 GIT binary patch literal 18485 zc$|E?RZtvk5G=abvbejuySu~U?zXtQ6J&8GxVyWB5ZqmY6D&9cf)gx2;QU9b?yY;O zZqLKi*WEQWFZ0zr3?CQ(P*wl{VE+qv!2cUCfD{5ld0=)in zxB*=MdvpF5Tmbg}lPUl6F#rG5r2M}s0szw53L5|4zTg1XqyTz%0KGSWiXMCJEPfKQ zu0Lh3?4cCuPpvEL$;y$%Ym&c>hmPv(u(Y*&8#|qc0W6f8P?1+{CmV<29;`9it>_ct zNo>!hv3M$Tk_da6r`Q=41;NUsyV;HKEb$1}EF&0Zb;QOBC^N!tC3x;Al+v}KFKW@+ zGLmT+?sD}DHB}m>SlFvuOd?~UzwxsCD*QxstrhjFjIQdd#S_Q(^}H;fbp5EOqJ;wG zDpvcjRR$+L)N)O3KAw@W<;t1@{FO$fjSBuC5nA%Bc2WG0tDz$RJ6vepoB)3n*Os}h z$o_*Lk+@^*2AqdHiCsL`sbxDl1pijy@qD0>rqk6XUDDb}_S07$9{ z4aOmGhY`yhg{d4nW%~)Jrc#`WA%s3Gf6?lGgG=c@WU%L-;}CIgLc>E%ubZ=PyvKs2R?Fo3{bS~fC#@!*eG z53Wz!H=>2#ZzbshfZaB5VM8F+9?B~v*x)`3pfv3;#sK$Zjd^9*DD}R_ z&)I3^31z`QslKb~7LDUb$`W20F&Fuf{C$rMd4US$iLfDY8;WjrRD$pYq!%YCuQ<-rm`Kw3sD>G&JW+n)sCJktze z^i~C*rxlepmD|Ub9D)@~kamQ`sZrXxiaxk7RUgxf6kgEEgy;37d($H&((!T$hg(}T z$00pyc8yF3F{}{eZwOR5sdBg`tPzRaE+u|=WE{Y8O4o}@&bZtb*U(7?0aJeCn2t>| z8C7834Jsi|@A9#Jw}i4x4%r?_Tf%sx3G`frXJ5VU5prf0(mAVnCKxlWmdkfXG+{7hA1c z(!XZ8bDWC@ci~jf3?lji%AwLJs9W_J_3ap$8_P+O1S0}g0JCOiu!S^d&K|(?Z}myw z9fOOgOHdCAqi2K-M;eR9bQVOVHaHOwd6?Obu9L^g)<6-wTIp5b*Jpv%LY=0u_evXC zNN}JWbFTP&k)yPw%??ddRQP^#K8hGA9h+WKC*%Hv-ME(a1K-i;l3Rm`Y^-@{Q|Eo1`LyR08&PjtXd7a;!7}+S|s*Tk7qyAHjOi@M6?l z4?<_$Utx}QrEQ1PYir}m86E?mOTM8Z8-E6A;^Rnjo{ee{T);w7@(Fnb&`p?c6lJrp;Cx17m)KZae;a9#t=86g+d}=iQg{?3v<@tD9)3dAdA7mDA-` z12EHMouSd|i<~Ea!cJi*|BYK1Y!js#1P9rq`oV+zT0ZRbI)$aLZRw7eNT;f7`}&hs zT8Km_Ge((OekI3u=qV^JPEVPpG63gW=aEZNWFH65X@XjmLb>E0BSO^>>yMJkjq{2WFp5WHkpQ>P_2$2{BFp z|6y2JXC%7?KI2fJG8Y%)Jp4FJ?G$T7$bj-+t%GA`mFC7H1ARviKbbzxOHi|eUQW

4G|J+Xxp`D=}_Tzju(zVrTz~JRgHw_n1 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/reveal/lib/font/league_gothic-webfont.ttf b/reveal/lib/font/league_gothic-webfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..29f896a79312c4959c4ccb4a24c5dfd043d3d8de GIT binary patch literal 42324 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 dAZjXcwr$(IdB1!A-L6_^pS{l7sIKl^$4yRD z6aWPHSxOWDr2lNX^8fY!|0OD_ECT=l`TxA){0BXT(kC%t5z!wm^T)^g0Ra#c08~zi zp6Q3{{PE>}pr3dyBw}P^U=IKQ!~XD%KlWENJ&c@@t1|%r0Mh%TVf_#AUT~PE_GUIe z+{=%y?nh^$)JR`qX5jP_3s(7~f&70!G_&?F{o#IciHrjP;kB)_?>^=x2F3t@)PMak z{+I8woUG9Nhy39h|Lg4sBybksj^;Mb?myhZPk!*9TDCe<3}M!GMn5{4ji0(db%5Fj z-g0?u4BUU}%7y>GSOTC|pg3Ct8SViw2UEU8)x?m&J-AoLBdRF=`7x;hR$&$zZvH#oce-U;Lnfol-rlj^e$J@H)PMj5JV9nX zV{s!xesDNg*fV%oSX~BR0TTtrAP|siJM^V6KYS*JS_~!&KnRwABMnp~KN2_?xF~>Q z5%%MM`SkTo{q?cHMG5}(QUD(?2ENk3^7%KS1p&vA4)u=9kJP3bP!3RqKEi5Yx-x1T zy$s*vFs9Z8o?_19g3*B?fl-2SfRTc+fcbz?hq#BZL`ouH`Zj!gBm54+Fdqia-9m%4 z!eV8#Hd~pt588z=LR6*?3iJ;Q4un;%A=Ree|Nj2&`SiQ{zWEmVM)=r%_M86J`EL2# ze)AjuF8p@&FHq$L<{k zg~LY$gN3E3w7$T})ZXCk^!@-26znI;H{3%`P@H3`cf5m+lpLcfw>H^}%)l`+#*o6QC8)2^awU155*!0hK?`{vT`t z(gAaTOu#Cj9Z&@51;hbd0h0fn9UX-ZSuFv?O*jOQfWZ|4jy2SVw76lfJTR!i#b`rg zu8>1W3pU62CX{s3XPwHmD4yh8B|a6$}mZ$Vx{WM-@I{NG$$4Ng;O%u-|VJ=fd;z=s%4?5SrGe4`VLxUohYqvq@Z*fI}WTN(3w!t^m!( zlCRkh=+O5M{Ch6U#^3V~3!G4=grG+m4pKqaSd;DJ2ycOlyM{kom|DC?$5*WQ)$;q; za=f-Fezr4+8R_-kZ+;~!8_@Kx1;WL92UMxJ@!~qx)YSSf5|qA>f6gjOO%pF`eLD3G zC;CBDlK~Jb1F9adc<=~hsBEC`PlgqPkVuI*&>V*w|Go#~+`-l+iV}3QE4M72qnv!#o$4L|$;N{j z5HRY?n126~40z+Fss3#a4=Uuz=J}o9bQWIGiNRY>KHpQP3HaZn0Q&w0Ah@qxcEPx7 z9VSz>e|NPsZ_RCaY9^Ryq}Z&gS`Q_dh_FWlp$I|}vRH%`1I-}{`rknQK9nD0z)EMz z>BgDbs?Q|^A>^klf_=1a+esXkX-jLI--owJ^Mz$5t#e$~{7#|a zntnR}ymIUI0#0bg+w!VnQIJ5X)vM6sD@F5bWls}GSTT@FLa>HX7#k`(Q(@34n*D=V!Q zhvP}x<$ksR7)5f5`{KaD@GbOaQg`+ zuoL2om5gL1PCf=W^H856VfuJnm0fA|$hpr!L|>tTi zZi+}_+M`cO_k$u5?z<&a9>p&b?nnv0dcLQD7<^$p`Yv5V$J57q-3Z(Zc0?bKlgHOZ zqnii9M6U9Y)%zO8Ta_o{M`-U(&8luyovG{*2ygiF4TpTKjUsKr2WT~D>Fe>ct>@@e zFGUQ^?PXZ-gFj`W;G?C7R6Lo<9~@m`Lm|rp9K>*ZaEE_r5V?;?vza`Z(rYdnN2H1p zY-j(Z2$u=B2KTq^@wYRNzZC}7KyqW;X>nCWvc&1r()0=5_{ledD}_wO1XZsusiT8# z>P%w9YSZ+19cS1;@Z?}8FT1q3=i_eHnTvicbMYBwY`m|+jMrE!M`kVSblH)fpKSZ8 zwQ{1hX`w$`w_BBx&v3~9qNwi3f3x13*|qH>LY4ETQK9KU>kQNrht$~R-j&F!ByxM| zS0X(|=5{QuB#hFG+s`-+lB_FO-V4R}qB|&dBlH}3$g8C5)Pu60163yOXF}uhGgFIJ zb!YqAlTq;tDAIH&nDpop)=GVJ{^wz!@-Xo3lSV(787lEDn5l7 zjL^YviG_TV$SYRCzNVOE>D5~37tm*T z3@oY)9aafMiHb)Pie^QD1L{aw)s3D)-5Z9cYBF8 zo`9#Lqi_NFz52mbvDm1-@w@(rDW||anqs~3i%;TjY>&fnyim8xUmqXCzFw5Y*qqIJ zU#q(=h_KCX$J_k()q-_3J=gCm^xF=ttIaOmKab$xs?Pot7@kFPsj!ZUNN>UQ!8j1Y zjl^mi@fFUDX6g$Po+|*KD8MM=K{%#V-&efnU)qdTw5eTo&&D^(OuIr(!nLG8M9?o& zPl}3$X9?I)3GsJjJqP>L5T5+fxBgz)C0++(^C`3_t?ZLdONqJ}j&_1K;pa)})sk9# z=9Z7~=+(s#5PFqZWi*pmAt!vPtLT6*#L39TOS{ny zg1PSm#{5m|}H)0~nv-MNTI_#xU<#f2HZ~{a{qj5d_AFG3dC`vu<;;&=ZU&t5H zq~yHl_@HelsEYl_d6k55NXNz+0`c=_pyumPYlxVlgp1~)=K%jJ|7FAr%7OfV0~eNo z`1~c3D?vsK=){S~Z~_wka&SQchp06GG{kvAvxnPJ;n2>1#lHd7%cy zp$^6_>+j|Z$u_FSG}sI&wkp)<)oL^vzunBCAfkeXxNp=CuF%Slvj^_3vf|H!{!Js_ z+4^?n6NGp8%L47f9HqY<{Hw<(Gj@|sxzsf@z;JYDsOSj4%;aY#Z)s3we>fhUs^<&< z@*%MI(IyM{np;G6&S?hhK`&ph62B{ zYpJVQUBW~--aA})h+)Ja=y1yMx*d!j!=$>sCP@dZ=vqI%#8~y5_C2qu+?b5vB;G5D zZHmr&l4n@G5zHxw`BHbqV#31A>7x3xq=-txzW}6q;RI~0`8rjKzJ)baUJMsjA!7R1>;CcAvhS5 z7kL_seHlPE+UmE1wqIFRK=Bq491h1@hQzD6g z7-;PYN>48|(eh>YbuhH3uhoN9%hAVyamsFh1_YyePIQ6ot6=7gQ}ATq#$3?u-8fn%jQ}S&CikmrQrPz zZWpIw*@quLouq1`h9-c0#bsp~iwR>}Rly}J%%;}l$_cYfmKE1nOFE$d08duCCH~NM*5QS+{8?K?>d49J*IzrJ`HgE$&(YQOPjCIt3`tTHs1>*B0`wu&e?W zizHe4T?yPo;!U#poO*#dx5nD=dN&8ZjshR&>!MXeV7*R%j)BfOkfl+BLM$#)qQipy zX_btcCkqK8t{Q?qxvFf4PW>@h(zO6%6k`<2X*Uq69+g<1($%89tI*45+wCP?Qz>f` zs~*LRbJr_JnMfCpAzEl{!U4T@E>X}M$s}(>5d1ePS}s{9db6!(X``2w0Gw{eBiDUS zXICLO`QYGL5^eJ;A!}8nuxdTh=THVKPse4~>|pK+nUw!~*8B%b#dQMaB{FyiiNEj(fQTKr4uIIFaE!m1SfDeL z38E8$Eg+ZhLHvcJ(8bYPH&Z1X7A}VXc!S!&Vin|_ZUg-cmDNX2vhdbxe7nU~+D`WU zrHPCGHhg3+Mpl10WD`HJ5RlVMFC9@Pa%s)N2p{F5t*+@udj8VSa<5jM={JcH!>6-J zt8;LE4PV=XVEpa_9IHoi_=wsw%Bqfr4i3SjiN@M5PG$ws0=$O))NUgX5E%hg%TU-c zGseG03y}daUFJWS0i%g3XELP35rG9}6_YbDC3nP`{5Ux6bzTfZpSi<|nuTZl_omW$ zlxUz0EY4kk3x@8ms|+pLa}?K8Ey7mmRrQr`kiLFckx+fqO{8NK%!C++mAZCtVg&FV zuMn5in#+f(eIxw!=6Lhe{4y2#1uR{Q_6A>*^4jACb}biMx5DL$(%)+}b+TPf zTESTPlz95|O8YcnRkiJ9BaVS{0aO0v`I~Zoi?}CT^E`$-x88AX8puE|{k(+{)QTkf zLL!-aQ;nDY zKSKwh@4E9C$5nEZ0Jn}1-`$#EM~F+!zZPCY+KFf`vSGkWf5y6wceFh*e%oZ=Nc5un zw~DZM>%%_9F@^($>f-6!2kON`D0|cH&}bP}ozOg+o3N||h;?;G?!}O;%e!!~@PKtz zkpUgEIwQfAU|+QFXuIRnIk2@4Z=I={PQ)oP2HU9*@`3-e9Pt_V6^@=xB#0@nYX^4V( zVFR|hER)nHpRK}Te4x3bi!i20ok~sAuqqM9m~nc4@G0RZDJk*QnIsG5JIpOc-oAa_ zep4qB3B%)_QqxU4yb58F)Kmco^#KH_nFDuuSIIx^m6z$mjgk-`o(8fmy7ymDBCu^Z)zWd$IW(PUIWz;VamLqqpE^#pV^qp00nFEVnBnVQn#eh zoN7DB%ea}U1HpsKuN13xy**(IQS%V@1)MRz9+vId%WXY{EN!`4aVIz9czn$qy`yWP zyXig(y9AvF4RW)tp!rbicw4HhT@~^u--EOV|4dR`hsZz-L>n>6U(rFRq{XnkWRU`2S~Oxd*4$hUSI?$%Xzf~w7Tny~xcp$SU*YF|8E632vWFxW zle7epkZS=*Jcjx;Rs$<9h)Sl*63*$4V7XS=PTINniBfZUS*irF)}2po0YROB(s?{ zmYMgS*;tYaRI`O!PZ^lkY6es^*7MCpe4s(>lR($lq#Ia?1=XNkqAls>>#I6|FFW`t zGk47^6GHXF6$D3VWSzq=YtOS(*7CGF&ugvvQL|&aUt#nRlsvFM%cQ+MD|MS#ZK0es zZi$_9TT4e6WY<07@p+=n7WiXnfFFPqn2xRx8iC zh$0&8^A{h2Dw<YiuIehGm+qPsEPj6wy zvMjRg^@~?dk%?N=w-j-3d-;phTtKM`-j@3z*Y}$dtev}aM>!Y58LLVQ9;jn>oJ%rbwj_;uSG!ntCe#unwqwr--Loh9te>S znYU=Wn<36{p}GbX8qOt9jfGyG5LvrHU|ByP=kv0wlz|>?-H7ASlJ0GHMrm>4NM?sD zy>^MJ2f8NGySzq_6eQl!>f|UL4PlcjQ$>chp5^k*4XrOsnJlC%+(IR(3>z41yV#pI zr_)`(2Sg7uIZXhD`_NkKCD}kB1r^rlD0=rq7UhMG@qJfemV49Af;A%5@+vE0EW7_n zQUlUId1TwTrq70)2VzbFdY-T*lJH9;k=AUqx09kusJKv(*W(W}!zjhO0E3XrVXi)f z>yC~mSvL!?IP|JY1NHC4NK*_<+*Z{i&?57WmDjGnvK-ta_ZX>Pl5LxuPMi zlB@U>n-f3lpq`MsIQ*#Cf%XZcYK*Z>lGxto<=kHDHO9`!^geIKC<=ii58J(F1ca^n2ZwlJmd^=N`*mpf?xUR(`XRxl8*YdspE-m z`nckhef;dGPc5~%>7Ye%R~PKgo0`p|JS$Bf`MWv@nlx5lohCOk81(QhqIz;P6<@)1 zIrQSSCBWptC84%3zE_52>e`(*&*g(Pt?cg7yomIcRzMZJc{ciUbwYx`a zW!L{90HkEoVhY4DBZS3<=$c1DNhE3O&^G5)b{>yfMHRwAjh;P#i}9^FOX1#L{}Hm z*W8c|oLsQ;O^Q)B+sRllbowrd$O*dQ`+6ffm1P1@q|o^YHs3~Tf1gir>x|X<`skAB+i+ih*xn4Vks_BxMct)_^QR`-4u&Xw(PValobI@DF?w zeb)}>+io-{bnIQWJlQtcfDs?R*u59+?$?M95DX-a@Ex3k5JX<*A`HLDNSxSv-XHOX z%nzi1l`d-H%|uZr&vz-W=W2QIW3yJ7n##oZJy58ycfQ%-f5yS<-upS@;;_3Y;2P!6 z=P(MF$YAV5>pz-3^%VO$Q~S`C8Py;7%N>1>eSo|~JI>i%ykIjRSp)i0H?0P0u&a0a zsikv(efRse0Y+LSmuXDiq4f4$p$NNjvr8T^{~|XJcMlP)hq>s?DUwVa5_4~*$k^hV zh|6-kKm2?bE!SO7_T}Jh5^c8Q`uAch)_ts(7j|wXo+4}3#x3B>b-YuI_nGo8O7DrN zoYjcw6BGi+#8^;aDV$K2YPlFnDNwXHf34O-#`V%Y;H>43j-?2R`Lk3&#fIT>bemab zxU=bCe}1_fG|*H^nAFNqdK3RUsKf+LfiDe2OXTDzH>iX8)nY+Hz4i@FsHZOhOF|k1 zufMvV5nS+(d&n(-0RW<9qFHig)4ilVH9k z(XQw%QioemmK0qSyHt`-l=m{_Uwzh{iR+Dc^ilAdCxey+bAgSHGSUn*(@YfS0tiG^ zIg-%7_4sitLbeuL%`Qxw5hj?};+CWb%!>|FcZ@k$KhU-wxO)TO$RS2_SeLtBFfMt@ zG_ZwhmC#3D;NVWFk&q>v^OOiy_YnQ4CRcj(1_P393pOpW-;)rr?!FgB*}aE)x_Xj_ zZaO1LuWQN z2Zo#`N!l;Iq>s?+xJWpv6jE+xNIw-D%p+8HUC)*Em*aNj-Q3CTpE_%QNOEWO{iZ(* zR~=Xz3LbYC$;_kF-xhYLY9yd=gX(kbGozD4Z?neCuq1=+Y&GP*0w?0TD4uc08L(|t zR9tA>T{NZ>ZoHOm0-Eq(hAb-76ic-k+1!^YyPuL`iQeuic*D02|4gWI&#gb&^7g!3 zNVJ-N-DFd7Riwe*=`>95rYo%Z8OvOAYS|)slQOepjk7j{`otv?deJmO^b9dDHU_yh zQTc(PI4lha`k(MeWwlVxq$@*klodOUvg-~c_wH79oSW-!DKF?VtT={zUo>^zmoXje zA;f8or+Ng@%QIgmf-97<`F$}n6tVeWGr@v8Tr`Qvs%p|eZUu`h8c~3D0qe#Dw&P=o zBt-9>9RYr}deO?lcNU=t*$!!SS=5Du-s8Lvf|SO^31YwOJtke&IZpfgJ2vR-GiD2x zR%PDQi=Nkb+IZjb0I@l#x%|<7!|u=K8P(;h1dw)t?K$edO&N1}Rq_X@rUH0dc-ccY#l}P1QpSFc5 zyT4yFPbvQpca*n861)cc)?SK+^nh@o5JDYAC#zOMFEnTv^|C}5RNu!>{8f|*$Yd6^ zdJN%U$5e?P;=eZGAU?~+p%%di!d?n8$>cCXllNT+*|nucxTRl0Uq#UryYBsfNzo0& z7xppnQ-a~p1<_E?$NQ770?M(#2-Fw9_)bahWVeWk@#6v@&$KwVJo(= zetfXLBnW(+WyP=-pWF1YZ~t3I0l{rTRZhqC+iOF4D~wRJ}Z0$kg&Cab|N(SE@**8w$?hR6*V( z6om(VM@%(pzLBREKu?I;N?L$qmJJS`%nU#1JjZsAMQ-BO^b6_sR3FZDT&0`RC;pSx zh3GWB<9rwL$YQziym9V?pP4Xr*?BaWVXFYd_|HT;@b$RC`E44hd=(}x5OM10YfsvL>fdAds(@0fJh zO(_oJbaO}vhf)=tt140|L9pqhfXg@zA(x<^yJ=G&eSVowIczShOXqiKZko>3X|yVu zGZd%?VHLrwZf_?zI!Z+@(opirH_!h3`!j1OF509JW5{GEE(W@DQF;6>=3g|L^2=}^ z`n@rK1ZBk_$ItNbg&z4=i{dGfCJFe6c4||w?W6(JD~cvbdJuGdV;mo3gN{&decYwE zY3#AECMp#jx!?xz$!Ns<%TYfc@7iL z0oednD%g;~CJA=2bd8DzsBj7$4;82jO0!-LCpSUZ_;>+OYYR~7F*pctHXG@ypzHMd z7dRwSmj{vQmw4`Ba?3Do>WNU>aqZ*7K9$1T;B%N0^XFovJI}7b`_rVw8sl0v=E*dB z+v&L5Of{FsdC$mo)G-6G(#d~bnV~%-LvTsE%2Z7hRY-$}UlmClND>m<60D=0S`A+Q zQVRe_{3mb~MAJqHUEDB80d*83sFR`;a5Vcem33Tm@)J5ch7Fq~)>qkzd0GW}U+E!E= zdef$WL(*J}lp*%j)DT|z4b(&~6%tt=rwAFH+oR`i0bM?qcc$AcBd^vhs!j0aI|H1l zu=>^Hl5s3_vF>abB8)D)uzSazO@px!ep>kB0`^Q%2lg7x{z&OcDtjU{00I78?j#p6 z{0QMdt~}Mv+^g&I8yCG(E4}AwSyuu4`k@!l%r!l-+su3&kDX-ra0n7UB7QDyMAYMY^9bE-zu;A)hz+G48-xQXmA-$w_z!7n zmh-WlCsk+-!ZjABf|#N*33ZG|JHYrE=_mJ_T%D5shA{_wzOYXVE1C!hqOnWoxT)4qD9LW=9g(uuMRC& zD^p%2lCw-Ynr@*kk@3Gb?o?^YcOnWAZ$d7Pvr?q-StBz zqVX_=%HVxa1Ck`vRAY$Z*p;K_+O^hSeR9`b2J6k(SDz0%R8Mc)x|@@(zAxdOYB*h8 z?Jmn>Dt;Q9p6{itYQ6_T%?-|!XKCfV-lzpIFfLL^sVMlSZG4)M5EX$o&pmbrR@%Vc zElW2piB?eItV#@02&R1=$1jrC#FnL$3)&h)-bJPfdBJwUDC!J>z*n+qH*mRGAred( zI)^Wzh?_)tX0))#?XLt&MPNzJP!5|PIeb1QD&O^aYP?lnz&FNR*WVvwI@To-W-jM9 zq<++T$J^7{N1+<(d92iT+jcV1&6^G*v>-*3Qnu~AKG!$Z9#L2B&gae1zBwkVM=qPh zxVJGT7hJb?LQb6>`I4wcmSAmuW=_HvW|H-kzSIFN4&bap|7Ki+d`kV+VpzZ z6ng<1miXsM$FZQrg*e?~0)<<6qEpWd?^RJszhU(u-k7Ml(GS5|TeuUuJ@;aR&|On^ z7-|@=kWJc)#WP024DIdkbE=G%aQ#ccB2faTx#tHaCMC2c658kf^B6qHSWoLPZ!fkt z6qb}6aZumGYya={+Gf%;h3c9Y+kmvmqtvABQe^oP`<|YLwoQ8=U`WrwdbP_#toE&| z2Cau|T(9T$l+DCpz)6gVi#4TXZ6T?X@8JVG z7s^(-1&yzyj9d+hZPzT67I-`CwFG_*8g3OnTFZkfIq$Cu98?A8g*t@Vl5%8b$mPOQ zne4HUp=pBqbI%tK%R*pels}nKIUU|ck3I4C0*Izg3r?f{)rzY;aI|q>Kg6tI)Iz#8 zT%JXSM0}*;u*I(>lW-`*c>vaYJZ_eeDfg7*)oGICIp5jY--MA=fvx+(R;Ej$Ph~T$97y{BM(;!0B2Q9H8d-d* z{b!ubIl4S|G=aM$LAlOaDE5d-=Od^XC#Ah(7o+ogf7J5%^M7Z=F6Ap{BJ9eys)=x&)zg-4Czlxb#41)9jVa#G`P?H?=cts>iyW+5%TGs zb<;ehmxG5)>?o9=;nvLXqcO&_xd@S3m{Q8W6)&8p5WI1F=fA-O<*SEgT(xZ7Xcfmt& zXT?;+;>I;AS5UJWSG3e-lq1x|GOeP0Vl~RC|4TsLuI-e)N0ok$UyoyA(5&e`o@2_WPD;jsYbBmFxZ9V*frc5!`tS*4JNI(!=KRwyfP4O{+?8u zJ2=I5W{KNF*^9~f{Ie9zqqIq;>$)c(AdrFOTVqTe*w#{I9+Fn}p(%==xEo58ktjs- zn#-ahU1#?6q`S=0X>!c-{NXn<|HkJB+uY&V;g0eGjimk@BFG^+D|Lg`uOTGT(+q|I z9Ly++VJ}27Q>8*7O^K<1*6gqU_%2Qx0v?LRzMx!0+Qjh7Ay=OXS+&bc)M{FNe#d3| zWqpo~T-V!iuO3Nq$?$DLpnOYqgzaP7RV|Dgs z-Cp{Y`mF3?U7!JtW48^d&Qdl;+UBlvo5y)%l=i;oc_hj>u4!|Px5Zv4kE0Px6w7UY z-L(=%)Xhi$T!%&Wi0v=B{EOxY{J}lG^Ud5Ti+qnan2#i8TdMKA{S4TGFMo3hd>A?53tncNi zzo8iJWGEcp|Hq?Y-HD>$Sm zSUvMaV1YPTaTgR#8vehUVcA?N-KC--(P|}725Pfxm^n;xzsG7mBpAPkYW~or2CTe| z%;6f|)j7Yd*b2+CI*g}tqab!WXjTib2?QnQfnr&xB5DwD4OhxWCY7T?)I0K27_fkQ zlSA}IkQys&a@y=DQB8#K78T!On)a%p*ZsLn;sU%QA<=KtyKGc@bA+;^>1FFyvuzg+ zA=7)`Pjbq(Bt&BXsIUL6vX{AJcCJdIv|Oh*6vK%d;J&{nBmV8Ow4L}>KP}8qxVN?o zOQ74vN7hk5mY(!om$7K!sa(O%qbml$Shxi7i=9!Xe75~v&|lqw+muC`|B55O25HCG z+hKj)sztZmY&ywmxJ0^oU%z^P_S^k#N~PjT+vS3mWFV|ax;Tl@2LR14t6-O*w=#aN z2HTf0t>lHgq+p0!BZkG9GRXVP8 zs}SW@$EzB-WjBMUOIP_7pE=gO`zJd;bPlP&bI|uVcX`j%x1v=e!f9Xedv?Mv);kNz zWFAV}U0ivU!;`h1wf#~y!P`(?en_h|f!KTAqRQIC=M(P?t!wX$M6R~is%>ju?1o0S zeH`2_4KG=!LM9&#?|ZN2-q#=xt8R66De?^j3>Up+FWF1`MH_wli{Iy)YW|gu{gE|% zTIA`TFd3CE94N=qLVf~f~hej0L_24WUaVMaf z_~IcW2+!et0)Fsk8hH?PF9O8A8#)u={q*==9jJ(}mQs4msbx^(yrdwhJ&28D9J=KU zHM-?pviKGVI%=8RuzO+Hk&^B!&M5_4?|vc*2kFN(kj7HsXw7z4}lsiOm| zL_`7#t+j#^2PU-+@h* z7pdG(Taj|EW)CUc?TY#?^D_c`HDy68k%zIR2I+ik6tA3h-JEFZ>=pM3o(zGPe61t4l0Dmt&A>toGd zE-vHKXH2HROXF~OgIkH5i@or~i8OHo55#qDsj$tOurEop)^&V^A<>p3<4BFW3^rWF zul+Km6xO`Nh=R-n$i)Vr?RxvH(|>%~%KGXvu6(ps{f2C;?p|41e0)tYHX1d=npqzQ zfZzfb7F{A%uaVudo#>ZSMPNh_S5)C>L5vbhyWPuSz>Z)g`WR4YQ`xWdk{5|{;NlnFjJiYL%;!epmqk(6j3 z`=8aDkQ1(lTOrfbt;=Y0S+-6AX(wtB@8uiNBB{jg`bz6-a;Py6*NSz@6y1R4$FQnn z=jzs(|3kDXp|hb$4{vNPL7gqpIavC&xMegg0bc8L`GiwnQKg9a55;S zpXdj@LLOqf`&W=dI$Io+8;Jx6j>WNUR|n$i1W(aE+*7MM)RGCzG&$B3d&)imWVH$6ki_&jP_w%qt1iZzNS`!eGfd&@FnVN?VRE*Oh^ zPfTGc3UhQ-Eh}rYN4MhmBcWB-!UsR>Ti+_SAhBeFYZmeIFueNc!nL7ZJzBl3L5u8v zy!CJWkmR0Z<8(xh4c~Q1KCSVKZ@OjMvq>3Qrpt+ug@>L~(@rU&Ig(%OgcIS|B^JdDi$cb*VN%bDr4;!^zoKS#G_H zeB1iRY8SG1uDu}Tquf)(a$?-Gq8M3inOC`eFiGvtv;2HqDxz5Rn$+RITF$1}pAdV_ z_@6!9S~fm4Z>g=`w04DN{gA!)jfX9Q6}37PUNdK?y?o_OM?=Z~98o|{+-HGA_OU4V zg3FRi3_m*wGN=WHm^ES)jERow<~K@MrKj$8(L?t}WTIlCke=@H@5rKaW38H21wn$U z^88r}%Ty7hc7+LLWZa5tt1ST?d7`dNE+gq9-7{|I>09DusHZZA^jdU1UdM@YAF=n# z%64VEj_2~v)bYp}14s1XmpK3IHk>Qf7|eb}Eo*E6$q|BSUd#?lJ0GVp&t{oA+rXRT zuVXXMni2_~vNF$>j;;YU)YA)qRCA}#CQuo$wp&}srcmJPJc+HDPrFWyia%!xiKgR> zGMg4b2=up2C8Rauth#L|NXbs;!&$zFefiUTW;U3edYPG=MyFK&GHK^98UBdJ<6XK& zkXtIi@(vB|f;qTpBe^WPf4a<&!Ok>$=@MOY&Pik4X#NKHCW{2f!4)QWPGtZaD&Qm3_DC1X%wKyAedU>#R(OEgJK;b3_+r z7$sD1li;F9PXf)Uct=QEVVB_2gJCuNE}^)SD73o1$QEeFLC1D>1~DU>FKR$>2nF*c zlWc#l`4}4ud8PL?QTf)0cr~Z(xE;3$93$h2O=Y5{=4R8fBvrV4I*L~13iX{937@Qj zsdH74Q()Z^T75y4F#&78r(3L~TpyEUt0g11UmCzoLzQ6f#OMDP-jrWrS+e@Ps#zry zU4Kk6KN`-)Mvs#tTHUn~{k!w~kXi9ojIW%z&>0WSJMFjf9?5#Wpn`i#d?=6E(HP!T z@~JiHbZq3R(GRjTK zh+k`8c#;d55qsy9Zcd#Aq7N;Wuh_l_0pz76ji9Wo6XGB3VBOUp(`0E|l|4yUdk*)mX;+=!5h=-8-|Rgd zG*RX9U-+}rqKED?&ZCFcTb7#^*PEUUFS4p_ncwHvgRy;M;U5=HxfUE43NgB(kK6yhjvrwvM0^|j$C zWGjj<6(*fGEFEuOpbigbrXo3+u73Xb?csz&K9Y*S@&njTR;+wx+(5R73qCVimhVj= zTGAS)vBP~&=&Z~)>`t~y&;~C?!_=%MdNPG}ezm1DMY6wmA|_UA>*p5GA3Q#8tP3$u z6Zga}qBq^^*JTnia84u6D}qh5M#lyv(%1L_@qjUJgCF;LYssc2o9v5pry98|-nn_x zEJvwVM zKCa+#@6{!s^(LOvd=n0O*Z|A8$N}-Sn@=RS(OYRD(unX#p3vtoIi1U%JUQCGx zlC@b(Yv5F;Jm7ev+$8hJ=p3L*Ik`)F}Aj+KMtec}xnrp9}t4S$Yhvbdn+>G{9T;^=n0^|Q3 z;^fJ{DAZbzPnX>ulT)09OYBJnO-_qQtq^9siu@;mWsjPA7ZPa%=SV*||3s86S$6S^ zml%j`^XZHKJGn(iaB8#?++FHm_7oMz9(~aO7#|{-EDwTMSvg`=v0_kK>uePl=W14n z(3WTD*vlxe1R`FZd%vqJBcY}k@V*@ZZV-(xX#2aS;MUdtm;@+Z^|1X zlu3PrWiMdaOZho)xd}_W|64Dn=+s~+&Qo-iNK9$&s397rbgB`GX{ZKHvzT0#iDz3+ zQ%fr6w5FsbPqnOd+$R9{R*=1aYU18m!#!&ub=TxVX8>CgDBj$H{gALD^F)fAha3rP zW5{q)3;-!|n6gt_gW)!wvU|QM(vnb;JvC~?;zW&T3-ATr|LrvNXxNgzvk~R|{wu$7 z>3R7zU%Bj}bE8W=bnw$t&_*_CbHv=weZtooc63POE?E#nRwmc5!Ltn;TyH{Z(a;c} z;p{!HXYkuT506|mVRNh+q0OJs3?&V(eX#M{PQUR%>72|c_~|UVG`$?0MGtN;oPr`h z`q9aJB8#NRkXOp$D*0I<0@hUr8!)Rz&=GnRXF9}3{hb=a?=)>0XM zfNvZnVUg2nvpWL8P&C%s(QvOy_MFw>55-y=GK1}SXG6u}!;plH4-~EEVks*aHV5%o zQ^h`(F8c94kbYWAT)w-C!HZkgD6oRx=nIS{y0hZJyL=r>L{;lpTCc75kKVERLB4$I z$~)4xrGLo&ImKYj?o2qYWe=gwrTGgW+px~}i>IBy5IoHUhLCA;mAzU38Plm59;{(= z_$aP&`e_WPlo}>7U}@m2sSK7i`~G z#d`|iFT4=s#OglE<(ERd-mrp`~+D=72cLC_{6GFoI=o?^HJ41?3k5k9Nq%MR8 zhYcXNGK&ql)vW<(sSwCz-U24Z0*W;q4CQl!#fIc# z-_JDsLNXcRq#+nP4qScU9;Vj#b(2lbXNjH0>Nz*h1?zW0%T`V26 z;;p0Hsugb?h3Vmr#+#ntC`k_uTd%lyNqeVR`)%Glh!k)`dHReA=DeH(%V$0>F5v~R zQ!lQr4=`7jq}r)~sQZr5#b!zDaQ5<*Exc&vp7pF=D+V@)^t5~{U^FN!6rK^vt>`5+ z=gA87=gK{;7{llZnGqdyUi0wHP_9z+wqod_h@p#NLTwOMZIItf77Kcd#DG|-KQBkt zh&yL2g6{^YVy=|}=5w@iM_(R~R9{80#uHTN9@O+^ykl4^P@|=!do_KqWaNwRuD7Hs zn1-%vHj3{Cfk1(Vs0N?+ehO=z@h}G&ER~Uw>nO<4o8aNy=N2u|PhsA((T6)%CTl8i z{t%Dve%3d?7V#*RPHF73hrc&>ZiBNoP&I-dg)n1k;lAthmG#8joSq8 zH8njYSyyo*_<51^S;r;UcweoLO}_iUhL>lKPL_Vot1cLmEfMiEij&Ntd$jT>36GRm z8zUvurAXt0Fg{`ymNS{BCwXLq_v8A+H^BCH0;lQDEKbSN6%_Zn1(CpEF9KB_Q+F;O zBus&iTImEusTK$8+6L*M*r4`e?pVR%}wVq<@%+7G} zA#ulRubF=IJQxgC}<~A zCPq}SdzQl_60$%x-9m*@XoF!TDZ*qC`4l9Y?T`2Al0@tXpqn?CWX=2Or2y2u7Q`U_ZmFc`vfw&pXRSEzZFWtvqCwKfOa`2%UyX~ zo31&aK`{W!yTn}7CFZlk7G!ysJEJG_W*;~>>lKSkpC$4Y3;!$*jCNjDpZC5YDml9M zhSA&#)aaOp=jlkny0_%Y^E&X|JnZY1b9#qLC9M9O(Z{E=4gq00=HbM^Jo)@(S2Sma z!uZga!l~NIg63=(emmEOyg`-~3OC$v1J?0*^W-eC4?{1ki4qN`VTe#5M0{Iz+HNvR;Mp&9f+;c-4!hVF1w zqmoo-dc1e8&FjnMax`#IdEe}4KlNQaaEk(mm?46SgAd3EQfj5*)o4)nR-P-(c`(J@LEl$F~H|DHu11_jAVV3ysdJKvduB1O;jZWL#DqF#@Myj&PTI&5MdA+X1_BZ zVm)Y1t-<@!;9-vCHnI3DVd<9%5k8!odV=K%%Or3tRsc~| zRe*}m=H&Cdp{pg2$$X==4fbw7A~)9@pgHCZcl5S%49i+5P24zG{H{9*sHv z=YN?^O{1kZ-#|}F>i`+^`I%Il`^Tpul8`cGe;oRqjdtfkIco3we*h09MXUgL+GAj3 zU|;}Ztr+I6cz&C&4DuWdAaKUvoivR8zwaLdn>l+Skjufq1QG=R6vhgG0001Z+GAj3 zU|=u&dxL?2gW>PChTnVcR}B&*NCwkUjMSk+ zhEPH&V$5Q+A{iXS!NH-H4z>gbe}+cUJrG^^i`A6zQ`EJU zwj)(+QziRFtilu==$b#HikpXbN_w$&PZhrpBjn6RL&d%j4~gr_+6zVYO}A}J=b|K9 z4wPd4S({_VFn#CIG|X8im5)B6LoRDeoV!7P4J{3HEvm?w()1;5mDzJJ)A?-k-Q2gS zW!>t!68F*Lei9!m>weI;s#|tfDgTmun)y%Ak!G(IO}Gctt*9_0&Gx;wXDa#}x?9Si zCv|ED&(IWn4moRuzQ5$JwIdOiW8Z^@8ut@C96)q~`N7v}&(|KV-udn7;XIvnSM7Yl z_w=!+|1%zYdXf$H-KKsI&w_sg@O#AI>EgdIb3gX9Kl_bt9{V|n;O9w#pTT#c-%-gQ zQiC4fc2V%kuSut8rGB)h`1};p z`)@ex>qnLMOMKrakMI$OMwC|i4`-~iGXMa1+GAiq0%i;$j9QEfm;#tyFbgodFjp|I zVSdLV!eYh}#?r&`f>nXFfK7-kitP-$6MG)}8;%5yE{+`>XE@$*GI4rwKH^g0n!wG# z?Z(~0y@SV!r+}xA=Mb+NuMh7wJ{GbHdr5mGrME9Sbo8B&c5B+NfIff#J+l-2g^^B*P2$*!43Yac2Jz@IFOvWtA?4G%w z`5p@`ixrk;miw$`SiP{eu%2Q4!^X*Gfi0VDft`|Fo!v6KdpO`5yI=Mk_GCw*quPXehyKLU{*xW9@Ccb6h+}4JrPQUwHEzJw5=E7*LcjQ@W^1SlH` zgqVU0HxT29*h>Nl4uIH83;{yinO^}?p1I-6Pqt;tGD-Z6-(gz#Uwj5hl4Nm^jDr-M zxJV@pH|b=MNfz1UkV_u<6i`SJ#gtG=8Rb+^Nfp)fpeMcPO&|KwkNyl`AcGjp5QZ|0 z;TV`$c<|z*hFa>VX9Ob|#c0MbmT~wAFrEg2gqXlYCNY^QOl2C=nZZnEF`GHeWghcc zz(N+Wm?bP_8OvG0N*X1Fv+Q9n$2r15PKc8Od=i(Wa+rI3ku*+nhVwk;As1N1YL3#x zQ<{0i6JGL+=e*!+;!AIM#cM7S<{0mJ%R3@`=O_DFLzK0wqm?#J(aw50h|x)$4Qyl+ z-`LC+y4cEgwsD%B>|htW`N1!4af!>^<^vzaE$NaWnUW>hk|Vj2C;3t!g;FHNT;VD= zxXFF4ah(V3Q#MejasYLssHx*ZB5;4n(mfpI383ps-ESbKL8)H^}} z`;LT`>QTLa0NF*9r2qhU+C9!a4#F@D1>mHiY5GSyRAQl0VD%lCNS7{v7#az23|3ee zVd5Yz6XJ5kfMN6Zo@MzVhcn8HXwj^?UdpTQ8x7qIOW$I(q2c6f)UfLWD(g_e5;N=W zY7)Q)DIu#F2_d~PVnVWJ7(%>YL<9p2ZQWBuQV4cPrJgfJgmC(W#GD@(Q=0Ds=v8wd i7ViuBaS;Ecq=jPpqsIzfTS`ED000000Z + Copyright Tero Piirainen (tipiirai) + License MIT / http://bit.ly/mit-license + Version 0.96 + + http://headjs.com +*/(function(a){function z(){d||(d=!0,s(e,function(a){p(a)}))}function y(c,d){var e=a.createElement("script");e.type="text/"+(c.type||"javascript"),e.src=c.src||c,e.async=!1,e.onreadystatechange=e.onload=function(){var a=e.readyState;!d.done&&(!a||/loaded|complete/.test(a))&&(d.done=!0,d())},(a.body||b).appendChild(e)}function x(a,b){if(a.state==o)return b&&b();if(a.state==n)return k.ready(a.name,b);if(a.state==m)return a.onpreload.push(function(){x(a,b)});a.state=n,y(a.url,function(){a.state=o,b&&b(),s(g[a.name],function(a){p(a)}),u()&&d&&s(g.ALL,function(a){p(a)})})}function w(a,b){a.state===undefined&&(a.state=m,a.onpreload=[],y({src:a.url,type:"cache"},function(){v(a)}))}function v(a){a.state=l,s(a.onpreload,function(a){a.call()})}function u(a){a=a||h;var b;for(var c in a){if(a.hasOwnProperty(c)&&a[c].state!=o)return!1;b=!0}return b}function t(a){return Object.prototype.toString.call(a)=="[object Function]"}function s(a,b){if(!!a){typeof a=="object"&&(a=[].slice.call(a));for(var c=0;c"}while(y.length||z.length){var v=u().splice(0,1)[0];w+=m(x.substr(r,v.offset-r));r=v.offset;if(v.event=="start"){w+=s(v.node);t.push(v.node)}else{if(v.event=="stop"){var q=t.length;do{q--;var p=t[q];w+=("")}while(p!=v.node);t.splice(q,1);while(q'+m(L[0])+""}else{N+=m(L[0])}P=O.lR.lastIndex;L=O.lR.exec(M)}N+=m(M.substr(P,M.length-P));return N}function K(r,M){if(M.sL&&d[M.sL]){var L=e(M.sL,r);t+=L.keyword_count;return L.value}else{return F(r,M)}}function I(M,r){var L=M.cN?'':"";if(M.rB){q+=L;M.buffer=""}else{if(M.eB){q+=m(r)+L;M.buffer=""}else{q+=L;M.buffer=r}}C.push(M);B+=M.r}function E(O,L,Q){var R=C[C.length-1];if(Q){q+=K(R.buffer+O,R);return false}var M=z(L,R);if(M){q+=K(R.buffer+O,R);I(M,L);return M.rB}var r=w(C.length-1,L);if(r){var N=R.cN?"":"";if(R.rE){q+=K(R.buffer+O,R)+N}else{if(R.eE){q+=K(R.buffer+O,R)+N+m(L)}else{q+=K(R.buffer+O+L,R)+N}}while(r>1){N=C[C.length-2].cN?"":"";q+=N;r--;C.length--}var P=C[C.length-1];C.length--;C[C.length-1].buffer="";if(P.starts){I(P.starts,"")}return R.rE}if(x(L,R)){throw"Illegal"}}var H=d[J];var C=[H.dM];var B=0;var t=0;var q="";try{var v=0;H.dM.buffer="";do{var y=s(D,v);var u=E(y[0],y[1],y[2]);v+=y[0].length;if(!u){v+=y[1].length}}while(!y[2]);if(C.length>1){throw"Illegal"}return{r:B,keyword_count:t,value:q}}catch(G){if(G=="Illegal"){return{r:0,keyword_count:0,value:m(D)}}else{throw G}}}function f(t){var r={keyword_count:0,r:0,value:m(t)};var q=r;for(var p in d){if(!d.hasOwnProperty(p)){continue}var s=e(p,t);s.language=p;if(s.keyword_count+s.r>q.keyword_count+q.r){q=s}if(s.keyword_count+s.r>r.keyword_count+r.r){q=r;r=s}}if(q.language){r.second_best=q}return r}function h(r,q,p){if(q){r=r.replace(/^((<[^>]+>|\t)+)/gm,function(t,w,v,u){return w.replace(/\t/g,q)})}if(p){r=r.replace(/\n/g,"
")}return r}function o(u,x,q){var y=g(u,q);var s=a(u);if(s=="no-highlight"){return}if(s){var w=e(s,y)}else{var w=f(y);s=w.language}var p=b(u);if(p.length){var r=document.createElement("pre");r.innerHTML=w.value;w.value=l(p,b(r),y)}w.value=h(w.value,x,q);var t=u.className;if(!t.match("(\\s|^)(language-)?"+s+"(\\s|$)")){t=t?(t+" "+s):s}if(/MSIE [678]/.test(navigator.userAgent)&&u.tagName=="CODE"&&u.parentNode.tagName=="PRE"){var r=u.parentNode;var v=document.createElement("div");v.innerHTML="

"+w.value+"
";u=v.firstChild.firstChild;v.firstChild.cN=r.cN;r.parentNode.replaceChild(v.firstChild,r)}else{u.innerHTML=w.value}u.className=t;u.result={language:s,kw:w.keyword_count,re:w.r};if(w.second_best){u.second_best={language:w.second_best.language,kw:w.second_best.keyword_count,re:w.second_best.r}}}function k(){if(k.called){return}k.called=true;var r=document.getElementsByTagName("pre");for(var p=0;p|>=|>>|>>=|>>>|>>>=|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~";this.BE={b:"\\\\.",r:0};this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE],r:0};this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE],r:0};this.CLCM={cN:"comment",b:"//",e:"$"};this.CBLCLM={cN:"comment",b:"/\\*",e:"\\*/"};this.HCM={cN:"comment",b:"#",e:"$"};this.NM={cN:"number",b:this.NR,r:0};this.CNM={cN:"number",b:this.CNR,r:0};this.inherit=function(p,s){var r={};for(var q in p){r[q]=p[q]}if(s){for(var q in s){r[q]=s[q]}}return r}}();hljs.LANGUAGES.cs={dM:{k:{"abstract":1,as:1,base:1,bool:1,"break":1,"byte":1,"case":1,"catch":1,"char":1,checked:1,"class":1,"const":1,"continue":1,decimal:1,"default":1,delegate:1,"do":1,"do":1,"double":1,"else":1,"enum":1,event:1,explicit:1,extern:1,"false":1,"finally":1,fixed:1,"float":1,"for":1,foreach:1,"goto":1,"if":1,implicit:1,"in":1,"int":1,"interface":1,internal:1,is:1,lock:1,"long":1,namespace:1,"new":1,"null":1,object:1,operator:1,out:1,override:1,params:1,"private":1,"protected":1,"public":1,readonly:1,ref:1,"return":1,sbyte:1,sealed:1,"short":1,sizeof:1,stackalloc:1,"static":1,string:1,struct:1,"switch":1,"this":1,"throw":1,"true":1,"try":1,"typeof":1,uint:1,ulong:1,unchecked:1,unsafe:1,ushort:1,using:1,virtual:1,"volatile":1,"void":1,"while":1,ascending:1,descending:1,from:1,get:1,group:1,into:1,join:1,let:1,orderby:1,partial:1,select:1,set:1,value:1,"var":1,where:1,yield:1},c:[{cN:"comment",b:"///",e:"$",rB:true,c:[{cN:"xmlDocTag",b:"///|"},{cN:"xmlDocTag",b:""}]},hljs.CLCM,hljs.CBLCLM,{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},hljs.ASM,hljs.QSM,hljs.CNM]}};hljs.LANGUAGES.ruby=function(){var g="[a-zA-Z_][a-zA-Z0-9_]*(\\!|\\?)?";var a="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?";var n={keyword:{and:1,"false":1,then:1,defined:1,module:1,"in":1,"return":1,redo:1,"if":1,BEGIN:1,retry:1,end:1,"for":1,"true":1,self:1,when:1,next:1,until:1,"do":1,begin:1,unless:1,END:1,rescue:1,nil:1,"else":1,"break":1,undef:1,not:1,"super":1,"class":1,"case":1,require:1,yield:1,alias:1,"while":1,ensure:1,elsif:1,or:1,def:1},keymethods:{__id__:1,__send__:1,abort:1,abs:1,"all?":1,allocate:1,ancestors:1,"any?":1,arity:1,assoc:1,at:1,at_exit:1,autoload:1,"autoload?":1,"between?":1,binding:1,binmode:1,"block_given?":1,call:1,callcc:1,caller:1,capitalize:1,"capitalize!":1,casecmp:1,"catch":1,ceil:1,center:1,chomp:1,"chomp!":1,chop:1,"chop!":1,chr:1,"class":1,class_eval:1,"class_variable_defined?":1,class_variables:1,clear:1,clone:1,close:1,close_read:1,close_write:1,"closed?":1,coerce:1,collect:1,"collect!":1,compact:1,"compact!":1,concat:1,"const_defined?":1,const_get:1,const_missing:1,const_set:1,constants:1,count:1,crypt:1,"default":1,default_proc:1,"delete":1,"delete!":1,delete_at:1,delete_if:1,detect:1,display:1,div:1,divmod:1,downcase:1,"downcase!":1,downto:1,dump:1,dup:1,each:1,each_byte:1,each_index:1,each_key:1,each_line:1,each_pair:1,each_value:1,each_with_index:1,"empty?":1,entries:1,eof:1,"eof?":1,"eql?":1,"equal?":1,"eval":1,exec:1,exit:1,"exit!":1,extend:1,fail:1,fcntl:1,fetch:1,fileno:1,fill:1,find:1,find_all:1,first:1,flatten:1,"flatten!":1,floor:1,flush:1,for_fd:1,foreach:1,fork:1,format:1,freeze:1,"frozen?":1,fsync:1,getc:1,gets:1,global_variables:1,grep:1,gsub:1,"gsub!":1,"has_key?":1,"has_value?":1,hash:1,hex:1,id:1,include:1,"include?":1,included_modules:1,index:1,indexes:1,indices:1,induced_from:1,inject:1,insert:1,inspect:1,instance_eval:1,instance_method:1,instance_methods:1,"instance_of?":1,"instance_variable_defined?":1,instance_variable_get:1,instance_variable_set:1,instance_variables:1,"integer?":1,intern:1,invert:1,ioctl:1,"is_a?":1,isatty:1,"iterator?":1,join:1,"key?":1,keys:1,"kind_of?":1,lambda:1,last:1,length:1,lineno:1,ljust:1,load:1,local_variables:1,loop:1,lstrip:1,"lstrip!":1,map:1,"map!":1,match:1,max:1,"member?":1,merge:1,"merge!":1,method:1,"method_defined?":1,method_missing:1,methods:1,min:1,module_eval:1,modulo:1,name:1,nesting:1,"new":1,next:1,"next!":1,"nil?":1,nitems:1,"nonzero?":1,object_id:1,oct:1,open:1,pack:1,partition:1,pid:1,pipe:1,pop:1,popen:1,pos:1,prec:1,prec_f:1,prec_i:1,print:1,printf:1,private_class_method:1,private_instance_methods:1,"private_method_defined?":1,private_methods:1,proc:1,protected_instance_methods:1,"protected_method_defined?":1,protected_methods:1,public_class_method:1,public_instance_methods:1,"public_method_defined?":1,public_methods:1,push:1,putc:1,puts:1,quo:1,raise:1,rand:1,rassoc:1,read:1,read_nonblock:1,readchar:1,readline:1,readlines:1,readpartial:1,rehash:1,reject:1,"reject!":1,remainder:1,reopen:1,replace:1,require:1,"respond_to?":1,reverse:1,"reverse!":1,reverse_each:1,rewind:1,rindex:1,rjust:1,round:1,rstrip:1,"rstrip!":1,scan:1,seek:1,select:1,send:1,set_trace_func:1,shift:1,singleton_method_added:1,singleton_methods:1,size:1,sleep:1,slice:1,"slice!":1,sort:1,"sort!":1,sort_by:1,split:1,sprintf:1,squeeze:1,"squeeze!":1,srand:1,stat:1,step:1,store:1,strip:1,"strip!":1,sub:1,"sub!":1,succ:1,"succ!":1,sum:1,superclass:1,swapcase:1,"swapcase!":1,sync:1,syscall:1,sysopen:1,sysread:1,sysseek:1,system:1,syswrite:1,taint:1,"tainted?":1,tell:1,test:1,"throw":1,times:1,to_a:1,to_ary:1,to_f:1,to_hash:1,to_i:1,to_int:1,to_io:1,to_proc:1,to_s:1,to_str:1,to_sym:1,tr:1,"tr!":1,tr_s:1,"tr_s!":1,trace_var:1,transpose:1,trap:1,truncate:1,"tty?":1,type:1,ungetc:1,uniq:1,"uniq!":1,unpack:1,unshift:1,untaint:1,untrace_var:1,upcase:1,"upcase!":1,update:1,upto:1,"value?":1,values:1,values_at:1,warn:1,write:1,write_nonblock:1,"zero?":1,zip:1}};var h={cN:"yardoctag",b:"@[A-Za-z]+"};var d={cN:"comment",b:"#",e:"$",c:[h]};var c={cN:"comment",b:"^\\=begin",e:"^\\=end",c:[h],r:10};var b={cN:"comment",b:"^__END__",e:"\\n$"};var u={cN:"subst",b:"#\\{",e:"}",l:g,k:n};var p=[hljs.BE,u];var s={cN:"string",b:"'",e:"'",c:p,r:0};var r={cN:"string",b:'"',e:'"',c:p,r:0};var q={cN:"string",b:"%[qw]?\\(",e:"\\)",c:p,r:10};var o={cN:"string",b:"%[qw]?\\[",e:"\\]",c:p,r:10};var m={cN:"string",b:"%[qw]?{",e:"}",c:p,r:10};var l={cN:"string",b:"%[qw]?<",e:">",c:p,r:10};var k={cN:"string",b:"%[qw]?/",e:"/",c:p,r:10};var j={cN:"string",b:"%[qw]?%",e:"%",c:p,r:10};var i={cN:"string",b:"%[qw]?-",e:"-",c:p,r:10};var t={cN:"string",b:"%[qw]?\\|",e:"\\|",c:p,r:10};var e={cN:"function",b:"\\bdef\\s+",e:" |$|;",l:g,k:n,c:[{cN:"title",b:a,l:g,k:n},{cN:"params",b:"\\(",e:"\\)",l:g,k:n},d,c,b]};var f={cN:"identifier",b:g,l:g,k:n,r:0};var v=[d,c,b,s,r,q,o,m,l,k,j,i,t,{cN:"class",b:"\\b(class|module)\\b",e:"$|;",k:{"class":1,module:1},c:[{cN:"title",b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?",r:0},{cN:"inheritance",b:"<\\s*",c:[{cN:"parent",b:"("+hljs.IR+"::)?"+hljs.IR}]},d,c,b]},e,{cN:"constant",b:"(::)?([A-Z]\\w*(::)?)+",r:0},{cN:"symbol",b:":",c:[s,r,q,o,m,l,k,j,i,t,f],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"number",b:"\\?\\w"},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},f,{b:"("+hljs.RSR+")\\s*",c:[d,c,b,{cN:"regexp",b:"/",e:"/[a-z]*",i:"\\n",c:[hljs.BE]}],r:0}];u.c=v;e.c[1].c=v;return{dM:{l:g,k:n,c:v}}}();hljs.LANGUAGES.javascript={dM:{k:{keyword:{"in":1,"if":1,"for":1,"while":1,"finally":1,"var":1,"new":1,"function":1,"do":1,"return":1,"void":1,"else":1,"break":1,"catch":1,"instanceof":1,"with":1,"throw":1,"case":1,"default":1,"try":1,"this":1,"switch":1,"continue":1,"typeof":1,"delete":1},literal:{"true":1,"false":1,"null":1}},c:[hljs.ASM,hljs.QSM,hljs.CLCM,hljs.CBLCLM,hljs.CNM,{b:"("+hljs.RSR+"|case|return|throw)\\s*",k:{"return":1,"throw":1,"case":1},c:[hljs.CLCM,hljs.CBLCLM,{cN:"regexp",b:"/",e:"/[gim]*",c:[{b:"\\\\/"}]}],r:0},{cN:"function",b:"\\bfunction\\b",e:"{",k:{"function":1},c:[{cN:"title",b:"[A-Za-z$_][0-9A-Za-z$_]*"},{cN:"params",b:"\\(",e:"\\)",c:[hljs.ASM,hljs.QSM,hljs.CLCM,hljs.CBLCLM]}]}]}};hljs.LANGUAGES.css=function(){var a={cN:"function",b:hljs.IR+"\\(",e:"\\)",c:[{eW:true,eE:true,c:[hljs.NM,hljs.ASM,hljs.QSM]}]};return{cI:true,dM:{i:"[=/|']",c:[hljs.CBLCLM,{cN:"id",b:"\\#[A-Za-z0-9_-]+"},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"pseudo",b:":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\\\"\\']+"},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:{"font-face":1,page:1}},{cN:"at_rule",b:"@",e:"[{;]",eE:true,k:{"import":1,page:1,media:1,charset:1},c:[a,hljs.ASM,hljs.QSM,hljs.NM]},{cN:"tag",b:hljs.IR,r:0},{cN:"rules",b:"{",e:"}",i:"[^\\s]",r:0,c:[hljs.CBLCLM,{cN:"rule",b:"[^\\s]",rB:true,e:";",eW:true,c:[{cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:true,i:"[^\\s]",starts:{cN:"value",eW:true,eE:true,c:[a,hljs.NM,hljs.QSM,hljs.ASM,hljs.CBLCLM,{cN:"hexcolor",b:"\\#[0-9A-F]+"},{cN:"important",b:"!important"}]}}]}]}]}}}();hljs.LANGUAGES.xml=function(){var b="[A-Za-z0-9\\._:-]+";var a={eW:true,c:[{cN:"attribute",b:b,r:0},{b:'="',rB:true,e:'"',c:[{cN:"value",b:'"',eW:true}]},{b:"='",rB:true,e:"'",c:[{cN:"value",b:"'",eW:true}]},{b:"=",c:[{cN:"value",b:"[^\\s/>]+"}]}]};return{cI:true,dM:{c:[{cN:"pi",b:"<\\?",e:"\\?>",r:10},{cN:"doctype",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},{cN:"comment",b:"",r:10},{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"",k:{title:{style:1}},c:[a],starts:{cN:"css",e:"",rE:true,sL:"css"}},{cN:"tag",b:"",k:{title:{script:1}},c:[a],starts:{cN:"javascript",e:"<\/script>",rE:true,sL:"javascript"}},{cN:"vbscript",b:"<%",e:"%>",sL:"vbscript"},{cN:"tag",b:"",c:[{cN:"title",b:"[^ />]+"},a]}]}}}();hljs.LANGUAGES.java={dM:{k:{"false":1,"synchronized":1,"int":1,"abstract":1,"float":1,"private":1,"char":1,"interface":1,"boolean":1,"static":1,"null":1,"if":1,"const":1,"for":1,"true":1,"while":1,"long":1,"throw":1,strictfp:1,"finally":1,"protected":1,"extends":1,"import":1,"native":1,"final":1,"implements":1,"return":1,"void":1,"enum":1,"else":1,"break":1,"transient":1,"new":1,"catch":1,"instanceof":1,"byte":1,"super":1,"class":1,"volatile":1,"case":1,assert:1,"short":1,"package":1,"default":1,"double":1,"public":1,"try":1,"this":1,"switch":1,"continue":1,"throws":1},c:[{cN:"javadoc",b:"/\\*\\*",e:"\\*/",c:[{cN:"javadoctag",b:"@[A-Za-z]+"}],r:10},hljs.CLCM,hljs.CBLCLM,hljs.ASM,hljs.QSM,{cN:"class",b:"(class |interface )",e:"{",k:{"class":1,"interface":1},i:":",c:[{b:"(implements|extends)",k:{"extends":1,"implements":1},r:10},{cN:"title",b:hljs.UIR}]},hljs.CNM,{cN:"annotation",b:"@[A-Za-z]+"}]}};hljs.LANGUAGES.php={cI:true,dM:{k:{and:1,include_once:1,list:1,"abstract":1,global:1,"private":1,echo:1,"interface":1,as:1,"static":1,endswitch:1,array:1,"null":1,"if":1,endwhile:1,or:1,"const":1,"for":1,endforeach:1,self:1,"var":1,"while":1,isset:1,"public":1,"protected":1,exit:1,foreach:1,"throw":1,elseif:1,"extends":1,include:1,__FILE__:1,empty:1,require_once:1,"function":1,"do":1,xor:1,"return":1,"implements":1,parent:1,clone:1,use:1,__CLASS__:1,__LINE__:1,"else":1,"break":1,print:1,"eval":1,"new":1,"catch":1,__METHOD__:1,"class":1,"case":1,exception:1,php_user_filter:1,"default":1,die:1,require:1,__FUNCTION__:1,enddeclare:1,"final":1,"try":1,"this":1,"switch":1,"continue":1,endfor:1,endif:1,declare:1,unset:1,"true":1,"false":1,namespace:1},c:[hljs.CLCM,hljs.HCM,{cN:"comment",b:"/\\*",e:"\\*/",c:[{cN:"phpdoc",b:"\\s@[A-Za-z]+",r:10}]},hljs.CNM,hljs.inherit(hljs.ASM,{i:null}),hljs.inherit(hljs.QSM,{i:null}),{cN:"variable",b:"\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*"},{cN:"preprocessor",b:"<\\?php",r:10},{cN:"preprocessor",b:"\\?>"}]}};hljs.LANGUAGES.python=function(){var c={cN:"string",b:"(u|b)?r?'''",e:"'''",r:10};var b={cN:"string",b:'(u|b)?r?"""',e:'"""',r:10};var a={cN:"string",b:"(u|r|ur|b|br)'",e:"'",c:[hljs.BE],r:10};var f={cN:"string",b:'(u|r|ur|b|br)"',e:'"',c:[hljs.BE],r:10};var d={cN:"title",b:hljs.UIR};var e={cN:"params",b:"\\(",e:"\\)",c:[c,b,a,f,hljs.ASM,hljs.QSM]};return{dM:{k:{keyword:{and:1,elif:1,is:1,global:1,as:1,"in":1,"if":1,from:1,raise:1,"for":1,except:1,"finally":1,print:1,"import":1,pass:1,"return":1,exec:1,"else":1,"break":1,not:1,"with":1,"class":1,assert:1,yield:1,"try":1,"while":1,"continue":1,del:1,or:1,def:1,lambda:1,nonlocal:10},built_in:{None:1,True:1,False:1,Ellipsis:1,NotImplemented:1}},i:"(|\\?)",c:[hljs.HCM,c,b,a,f,hljs.ASM,hljs.QSM,{cN:"function",b:"\\bdef ",e:":",i:"$",k:{def:1},c:[d,e],r:10},{cN:"class",b:"\\bclass ",e:":",i:"[${]",k:{"class":1},c:[d,e],r:10},hljs.CNM,{cN:"decorator",b:"@",e:"$"}]}}}();hljs.LANGUAGES.perl=function(){var c={getpwent:1,getservent:1,quotemeta:1,msgrcv:1,scalar:1,kill:1,dbmclose:1,undef:1,lc:1,ma:1,syswrite:1,tr:1,send:1,umask:1,sysopen:1,shmwrite:1,vec:1,qx:1,utime:1,local:1,oct:1,semctl:1,localtime:1,readpipe:1,"do":1,"return":1,format:1,read:1,sprintf:1,dbmopen:1,pop:1,getpgrp:1,not:1,getpwnam:1,rewinddir:1,qq:1,fileno:1,qw:1,endprotoent:1,wait:1,sethostent:1,bless:1,s:1,opendir:1,"continue":1,each:1,sleep:1,endgrent:1,shutdown:1,dump:1,chomp:1,connect:1,getsockname:1,die:1,socketpair:1,close:1,flock:1,exists:1,index:1,shmget:1,sub:1,"for":1,endpwent:1,redo:1,lstat:1,msgctl:1,setpgrp:1,abs:1,exit:1,select:1,print:1,ref:1,gethostbyaddr:1,unshift:1,fcntl:1,syscall:1,"goto":1,getnetbyaddr:1,join:1,gmtime:1,symlink:1,semget:1,splice:1,x:1,getpeername:1,recv:1,log:1,setsockopt:1,cos:1,last:1,reverse:1,gethostbyname:1,getgrnam:1,study:1,formline:1,endhostent:1,times:1,chop:1,length:1,gethostent:1,getnetent:1,pack:1,getprotoent:1,getservbyname:1,rand:1,mkdir:1,pos:1,chmod:1,y:1,substr:1,endnetent:1,printf:1,next:1,open:1,msgsnd:1,readdir:1,use:1,unlink:1,getsockopt:1,getpriority:1,rindex:1,wantarray:1,hex:1,system:1,getservbyport:1,endservent:1,"int":1,chr:1,untie:1,rmdir:1,prototype:1,tell:1,listen:1,fork:1,shmread:1,ucfirst:1,setprotoent:1,"else":1,sysseek:1,link:1,getgrgid:1,shmctl:1,waitpid:1,unpack:1,getnetbyname:1,reset:1,chdir:1,grep:1,split:1,require:1,caller:1,lcfirst:1,until:1,warn:1,"while":1,values:1,shift:1,telldir:1,getpwuid:1,my:1,getprotobynumber:1,"delete":1,and:1,sort:1,uc:1,defined:1,srand:1,accept:1,"package":1,seekdir:1,getprotobyname:1,semop:1,our:1,rename:1,seek:1,"if":1,q:1,chroot:1,sysread:1,setpwent:1,no:1,crypt:1,getc:1,chown:1,sqrt:1,write:1,setnetent:1,setpriority:1,foreach:1,tie:1,sin:1,msgget:1,map:1,stat:1,getlogin:1,unless:1,elsif:1,truncate:1,exec:1,keys:1,glob:1,tied:1,closedir:1,ioctl:1,socket:1,readlink:1,"eval":1,xor:1,readline:1,binmode:1,setservent:1,eof:1,ord:1,bind:1,alarm:1,pipe:1,atan2:1,getgrent:1,exp:1,time:1,push:1,setgrent:1,gt:1,lt:1,or:1,ne:1,m:1};var d={cN:"subst",b:"[$@]\\{",e:"}",k:c,r:10};var b={cN:"variable",b:"\\$\\d"};var a={cN:"variable",b:"[\\$\\%\\@\\*](\\^\\w\\b|#\\w+(\\:\\:\\w+)*|[^\\s\\w{]|{\\w+}|\\w+(\\:\\:\\w*)*)"};var g=[hljs.BE,d,b,a];var f={b:"->",c:[{b:hljs.IR},{b:"{",e:"}"}]};var e=[b,a,hljs.HCM,{cN:"comment",b:"^(__END__|__DATA__)",e:"\\n$",r:5},f,{cN:"string",b:"q[qwxr]?\\s*\\(",e:"\\)",c:g,r:5},{cN:"string",b:"q[qwxr]?\\s*\\[",e:"\\]",c:g,r:5},{cN:"string",b:"q[qwxr]?\\s*\\{",e:"\\}",c:g,r:5},{cN:"string",b:"q[qwxr]?\\s*\\|",e:"\\|",c:g,r:5},{cN:"string",b:"q[qwxr]?\\s*\\<",e:"\\>",c:g,r:5},{cN:"string",b:"qw\\s+q",e:"q",c:g,r:5},{cN:"string",b:"'",e:"'",c:[hljs.BE],r:0},{cN:"string",b:'"',e:'"',c:g,r:0},{cN:"string",b:"`",e:"`",c:[hljs.BE]},{cN:"string",b:"{\\w+}",r:0},{cN:"string",b:"-?\\w+\\s*\\=\\>",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[hljs.BE],r:0},{cN:"sub",b:"\\bsub\\b",e:"(\\s*\\(.*?\\))?[;{]",k:{sub:1},r:5},{cN:"operator",b:"-\\w\\b",r:0},{cN:"pod",b:"\\=\\w",e:"\\=cut"}];d.c=e;f.c[1].c=e;return{dM:{k:c,c:e}}}();hljs.LANGUAGES.cpp=function(){var b={keyword:{"false":1,"int":1,"float":1,"while":1,"private":1,"char":1,"catch":1,"export":1,virtual:1,operator:2,sizeof:2,dynamic_cast:2,typedef:2,const_cast:2,"const":1,struct:1,"for":1,static_cast:2,union:1,namespace:1,unsigned:1,"long":1,"throw":1,"volatile":2,"static":1,"protected":1,bool:1,template:1,mutable:1,"if":1,"public":1,friend:2,"do":1,"return":1,"goto":1,auto:1,"void":2,"enum":1,"else":1,"break":1,"new":1,extern:1,using:1,"true":1,"class":1,asm:1,"case":1,typeid:1,"short":1,reinterpret_cast:2,"default":1,"double":1,register:1,explicit:1,signed:1,typename:1,"try":1,"this":1,"switch":1,"continue":1,wchar_t:1,inline:1,"delete":1,alignof:1,char16_t:1,char32_t:1,constexpr:1,decltype:1,noexcept:1,nullptr:1,static_assert:1,thread_local:1},built_in:{std:1,string:1,cin:1,cout:1,cerr:1,clog:1,stringstream:1,istringstream:1,ostringstream:1,auto_ptr:1,deque:1,list:1,queue:1,stack:1,vector:1,map:1,set:1,bitset:1,multiset:1,multimap:1,unordered_set:1,unordered_map:1,unordered_multiset:1,unordered_multimap:1,array:1,shared_ptr:1}};var a={cN:"stl_container",b:"\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",e:">",k:b,r:10};a.c=[a];return{dM:{k:b,i:" 0 ) { + text = text.replace( new RegExp('\\n?\\t{' + leadingTabs + '}','g'), '\n' ); + } + else if( leadingWs > 1 ) { + text = text.replace( new RegExp('\\n? {' + leadingWs + '}','g'), '\n' ); + } + + section.innerHTML = (new Showdown.converter()).makeHtml(text); + } + +})(); \ No newline at end of file diff --git a/reveal/plugin/markdown/showdown.js b/reveal/plugin/markdown/showdown.js new file mode 100644 index 0000000..3f280f4 --- /dev/null +++ b/reveal/plugin/markdown/showdown.js @@ -0,0 +1,62 @@ +// +// showdown.js -- A javascript port of Markdown. +// +// Copyright (c) 2007 John Fraser. +// +// Original Markdown Copyright (c) 2004-2005 John Gruber +// +// +// Redistributable under a BSD-style open source license. +// See license.txt for more information. +// +// The full source distribution is at: +// +// A A L +// T C A +// T K B +// +// +// +// +// Wherever possible, Showdown is a straight, line-by-line port +// of the Perl version of Markdown. +// +// This is not a normal parser design; it's basically just a +// series of string substitutions. It's hard to read and +// maintain this way, but keeping Showdown close to the original +// design makes it easier to port new features. +// +// More importantly, Showdown behaves like markdown.pl in most +// edge cases. So web applications can do client-side preview +// in Javascript, and then build identical HTML on the server. +// +// This port needs the new RegExp functionality of ECMA 262, +// 3rd Edition (i.e. Javascript 1.5). Most modern web browsers +// should do fine. Even with the new regular expression features, +// We do a lot of work to emulate Perl's regex functionality. +// The tricky changes in this file mostly have the "attacklab:" +// label. Major or self-explanatory changes don't. +// +// Smart diff tools like Araxis Merge will be able to match up +// this file with markdown.pl in a useful way. A little tweaking +// helps: in a copy of markdown.pl, replace "#" with "//" and +// replace "$text" with "text". Be sure to ignore whitespace +// and line endings. +// +// +// Showdown usage: +// +// var text = "Markdown *rocks*."; +// +// var converter = new Showdown.converter(); +// var html = converter.makeHtml(text); +// +// alert(html); +// +// Note: move the sample code to the bottom of this +// file before uncommenting it. +// +// +// Showdown namespace +// +var Showdown={};Showdown.converter=function(){var a,b,c,d=0;this.makeHtml=function(d){return a=new Array,b=new Array,c=new Array,d=d.replace(/~/g,"~T"),d=d.replace(/\$/g,"~D"),d=d.replace(/\r\n/g,"\n"),d=d.replace(/\r/g,"\n"),d="\n\n"+d+"\n\n",d=F(d),d=d.replace(/^[ \t]+$/mg,""),d=f(d),d=e(d),d=h(d),d=D(d),d=d.replace(/~D/g,"$$"),d=d.replace(/~T/g,"~"),d};var e=function(c){var c=c.replace(/^[ ]{0,3}\[(.+)\]:[ \t]*\n?[ \t]*?[ \t]*\n?[ \t]*(?:(\n*)["(](.+?)[")][ \t]*)?(?:\n+|\Z)/gm,function(c,d,e,f,g){return d=d.toLowerCase(),a[d]=z(e),f?f+g:(g&&(b[d]=g.replace(/"/g,""")),"")});return c},f=function(a){a=a.replace(/\n/g,"\n\n");var b="p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del",c="p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math";return a=a.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del)\b[^\r]*?\n<\/\2>[ \t]*(?=\n+))/gm,g),a=a.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\b[^\r]*?.*<\/\2>[ \t]*(?=\n+)\n)/gm,g),a=a.replace(/(\n[ ]{0,3}(<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g,g),a=a.replace(/(\n\n[ ]{0,3}[ \t]*(?=\n{2,}))/g,g),a=a.replace(/(?:\n\n)([ ]{0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g,g),a=a.replace(/\n\n/g,"\n"),a},g=function(a,b){var d=b;return d=d.replace(/\n\n/g,"\n"),d=d.replace(/^\n/,""),d=d.replace(/\n+$/g,""),d="\n\n~K"+(c.push(d)-1)+"K\n\n",d},h=function(a){a=o(a);var b=t("
");return a=a.replace(/^[ ]{0,2}([ ]?\*[ ]?){3,}[ \t]*$/gm,b),a=a.replace(/^[ ]{0,2}([ ]?\-[ ]?){3,}[ \t]*$/gm,b),a=a.replace(/^[ ]{0,2}([ ]?\_[ ]?){3,}[ \t]*$/gm,b),a=q(a),a=s(a),a=r(a),a=x(a),a=f(a),a=y(a),a},i=function(a){return a=u(a),a=j(a),a=A(a),a=m(a),a=k(a),a=B(a),a=z(a),a=w(a),a=a.replace(/ +\n/g,"
\n"),a},j=function(a){var b=/(<[a-z\/!$]("[^"]*"|'[^']*'|[^'">])*>|)/gi;return a=a.replace(b,function(a){var b=a.replace(/(.)<\/?code>(?=.)/g,"$1`");return b=G(b,"\\`*_"),b}),a},k=function(a){return a=a.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\][ ]?(?:\n[ ]*)?\[(.*?)\])()()()()/g,l),a=a.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\]\([ \t]*()?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g,l),a=a.replace(/(\[([^\[\]]+)\])()()()()()/g,l),a},l=function(c,d,e,f,g,h,i,j){j==undefined&&(j="");var k=d,l=e,m=f.toLowerCase(),n=g,o=j;if(n==""){m==""&&(m=l.toLowerCase().replace(/ ?\n/g," ")),n="#"+m;if(a[m]!=undefined)n=a[m],b[m]!=undefined&&(o=b[m]);else{if(!(k.search(/\(\s*\)$/m)>-1))return k;n=""}}n=G(n,"*_");var p='",p},m=function(a){return a=a.replace(/(!\[(.*?)\][ ]?(?:\n[ ]*)?\[(.*?)\])()()()()/g,n),a=a.replace(/(!\[(.*?)\]\s?\([ \t]*()?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g,n),a},n=function(c,d,e,f,g,h,i,j){var k=d,l=e,m=f.toLowerCase(),n=g,o=j;o||(o="");if(n==""){m==""&&(m=l.toLowerCase().replace(/ ?\n/g," ")),n="#"+m;if(a[m]==undefined)return k;n=a[m],b[m]!=undefined&&(o=b[m])}l=l.replace(/"/g,"""),n=G(n,"*_");var p=''+l+''+i(c)+"")}),a=a.replace(/^(.+)[ \t]*\n-+[ \t]*\n+/gm,function(a,c){return t('

'+i(c)+"

")}),a=a.replace(/^(\#{1,6})[ \t]*(.+?)[ \t]*\#*\n+/gm,function(a,c,d){var e=c.length;return t("'+i(d)+"")}),a},p,q=function(a){a+="~0";var b=/^(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm;return d?a=a.replace(b,function(a,b,c){var d=b,e=c.search(/[*+-]/g)>-1?"ul":"ol";d=d.replace(/\n{2,}/g,"\n\n\n");var f=p(d);return f=f.replace(/\s+$/,""),f="<"+e+">"+f+"\n",f}):(b=/(\n\n|^\n?)(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/g,a=a.replace(b,function(a,b,c,d){var e=b,f=c,g=d.search(/[*+-]/g)>-1?"ul":"ol",f=f.replace(/\n{2,}/g,"\n\n\n"),h=p(f);return h=e+"<"+g+">\n"+h+"\n",h})),a=a.replace(/~0/,""),a};p=function(a){return d++,a=a.replace(/\n{2,}$/,"\n"),a+="~0",a=a.replace(/(\n)?(^[ \t]*)([*+-]|\d+[.])[ \t]+([^\r]+?(\n{1,2}))(?=\n*(~0|\2([*+-]|\d+[.])[ \t]+))/gm,function(a,b,c,d,e){var f=e,g=b,j=c;return g||f.search(/\n{2,}/)>-1?f=h(E(f)):(f=q(E(f)),f=f.replace(/\n$/,""),f=i(f)),"
  • "+f+"
  • \n"}),a=a.replace(/~0/g,""),d--,a};var r=function(a){return a+="~0",a=a.replace(/(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=~0))/g,function(a,b,c){var d=b,e=c;return d=v(E(d)),d=F(d),d=d.replace(/^\n+/g,""),d=d.replace(/\n+$/g,""),d="
    "+d+"\n
    ",t(d)+e}),a=a.replace(/~0/,""),a},s=function(a){return a+="~0",a=a.replace(/\n```(.*)\n([^`]+)\n```/g,function(a,b,c){var d=b,e=c;return e=v(e),e=F(e),e=e.replace(/^\n+/g,""),e=e.replace(/\n+$/g,""),e="
    "+e+"\n
    ",t(e)}),a=a.replace(/~0/,""),a},t=function(a){return a=a.replace(/(^\n+|\n+$)/g,""),"\n\n~K"+(c.push(a)-1)+"K\n\n"},u=function(a){return a=a.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,function(a,b,c,d,e){var f=d;return f=f.replace(/^([ \t]*)/g,""),f=f.replace(/[ \t]*$/g,""),f=v(f),b+""+f+""}),a},v=function(a){return a=a.replace(/&/g,"&"),a=a.replace(//g,">"),a=G(a,"*_{}[]\\",!1),a},w=function(a){return a=a.replace(/(\*\*|__)(?=\S)([^\r]*?\S[*_]*)\1/g,"$2"),a=a.replace(/(\*|_)(?=\S)([^\r]*?\S)\1/g,"$2"),a},x=function(a){return a=a.replace(/((^[ \t]*>[ \t]?.+\n(.+\n)*\n*)+)/gm,function(a,b){var c=b;return c=c.replace(/^[ \t]*>[ \t]?/gm,"~0"),c=c.replace(/~0/g,""),c=c.replace(/^[ \t]+$/gm,""),c=h(c),c=c.replace(/(^|\n)/g,"$1 "),c=c.replace(/(\s*
    [^\r]+?<\/pre>)/gm,function(a,b){var c=b;return c=c.replace(/^  /mg,"~0"),c=c.replace(/~0/g,""),c}),t("
    \n"+c+"\n
    ")}),a},y=function(a){a=a.replace(/^\n+/g,""),a=a.replace(/\n+$/g,"");var b=a.split(/\n{2,}/g),d=new Array,e=b.length;for(var f=0;f=0?d.push(g):g.search(/\S/)>=0&&(g=i(g),g=g.replace(/^([ \t]*)/g,"

    "),g+="

    ",d.push(g))}e=d.length;for(var f=0;f=0){var h=c[RegExp.$1];h=h.replace(/\$/g,"$$$$"),d[f]=d[f].replace(/~K\d+K/,h)}return d.join("\n\n")},z=function(a){return a=a.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/g,"&"),a=a.replace(/<(?![a-z\/?\$!])/gi,"<"),a},A=function(a){return a=a.replace(/\\(\\)/g,H),a=a.replace(/\\([`*_{}\[\]()>#+-.!])/g,H),a},B=function(a){return a=a.replace(/<((https?|ftp|dict):[^'">\s]+)>/gi,'
    $1'),a=a.replace(/<(?:mailto:)?([-.\w]+\@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi,function(a,b){return C(D(b))}),a},C=function(a){function b(a){var b="0123456789ABCDEF",c=a.charCodeAt(0);return b.charAt(c>>4)+b.charAt(c&15)}var c=[function(a){return"&#"+a.charCodeAt(0)+";"},function(a){return"&#x"+b(a)+";"},function(a){return a}];return a="mailto:"+a,a=a.replace(/./g,function(a){if(a=="@")a=c[Math.floor(Math.random()*2)](a);else if(a!=":"){var b=Math.random();a=b>.9?c[2](a):b>.45?c[1](a):c[0](a)}return a}),a=''+a+"",a=a.replace(/">.+:/g,'">'),a},D=function(a){return a=a.replace(/~E(\d+)E/g,function(a,b){var c=parseInt(b);return String.fromCharCode(c)}),a},E=function(a){return a=a.replace(/^(\t|[ ]{1,4})/gm,"~0"),a=a.replace(/~0/g,""),a},F=function(a){return a=a.replace(/\t(?=\t)/g," "),a=a.replace(/\t/g,"~A~B"),a=a.replace(/~B(.+?)~A/g,function(a,b,c){var d=b,e=4-d.length%4;for(var f=0;f