This commit is contained in:
Daniel Schubert 2018-12-11 10:48:20 +01:00
parent fc9bea161b
commit 8524a0dbe3
104 changed files with 19482 additions and 0 deletions

283
1.html Normal file
View File

@ -0,0 +1,283 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Einführung in Linux</title>
<meta name="description" content="Oder: wie ich lernte ">
<meta name="author" content="Daniel Schubert">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/league.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h1>LINUX</h1>
<h3>Das universelle Betriebssystem</h3>
<p>Eine Einführung - Teil 1
<p>
<small>Deutsche Angestellten Akademie</small>
</p>
<aside class="notes">
Fahrplan
<ul>
<li>historischer abriss</li>
<li>installation</li>
</ul>
</aside>
</section>
<section>
<h2>Über Mich</h2>
<ul style="list-style-type: none">
<li>Daniel Schubert, verheiratet, 1 Kind (7)</li>
<li>Webentwickler</li>
<li>Linux Serverbetreiber</li>
<li>Open Source Verfechter</li>
</ul>
</section>
<section>
<figure><img src="img/linux makes a man.jpg" style="height: 60vh"></figure>
<aside class="notes">
Vorstellungsrunde
Frage: Was wissen Sie über Linux?
</aside>
</section>
<section>
<h2>Was ist LINUX ??</h2>
<span class="fragment">
<ul>
<li><span class="fragment highlight-blue">Linux</span> ist ein modernes Multi-User und Multi-Task <span class="fragment highlight-red">Betriebssystem</span>
<li>Linux läuft auf fast <span class="fragment highlight-blue">jeder Hardware</span>
<li>Linux ist als Open-Source <span class="fragment highlight-blue">frei verfügbar</span>.
<li>Der Quellcode des Systems kann <span class="fragment highlight-blue">frei heruntergeladen</span> und nach <span class="fragment highlight-blue">Belieben abgeändert</span> werden.
</ul>
</span>
</section>
<section>
<h2>Wo wird Linux verwendet?</h2>
<ul>
<li class="fragment fade-in-then-semi-out">Personal Computer
<li class="fragment fade-in-then-semi-out">Alte Hardware / Tablets / Router
<li class="fragment fade-in-then-semi-out">Grossrechner
<li class="fragment fade-in-then-semi-out">Datenbankserver, Virtualisierung
<li class="fragment fade-in-then-semi-out">Webserver, Mailserver, Fileserver
<li class="fragment fade-in-then-semi-out">Das Internet
<li class="fragment fade-in-then-semi-out">Android ist im Prinzip eine Linux Distribution !!
</ul>
</section>
<section>
<h2>Der Weg zu Linux</h2>
<section>
<ul>
<li>Das GNU-Projekt startete 1984
<li>Ziel --> ein freies, UNIX-ähnliches System .
<li>Richard M. Stallman, <i>Free Software Foundation</i> FSF
<li><strong>Linux</strong> wurde 1991 von Linus Torvalds begonnen:
<ul><li>als Klon des Unix-Kernel.</li></ul>
<li>Linux passte gut zum GNU-Project --> GNU/Linux war geboren
<li>Mit „Linux“ ist im Sprachgebrauch meist das komplett-Paket gemeint.</li>
</ul>
</section>
<section>
<h3>Was ist ein Kernel?</h3>
Er erledigt elementare Aufgaben wie Speicher- und Prozessverwaltung und die Steuerung der Hardware. Anwenderprogramme müssen sich an den Kernel wenden, wenn sie zum Beispiel auf Dateien auf der Platte zugreifen wollen.
</section>
</section>
<section>
<h3>Warum ist Linux kostenlos??</h3>
<ul>
<li>GNU/Linux ist unter der <strong>G</strong>eneral <strong>P</strong>ublic <strong>L</strong>icense „GPL” veröffentlicht:</li>
<li class="fragment fade-in-then-semi-out">Jeder darf Linux modifizeren / kopieren / veröffentlichen
<li class="fragment fade-in-then-semi-out">solange dies unter den Bedingungen der GPL geschieht</li>
<li class="fragment fade-in-then-semi-out">daraus abgeleiteter Code muss inkl. Source Code unter der GPL veröffentlicht werden</li>
<li class="fragment">Linux ist frei, im Sinne von <span class="fragment highlight-red">„Freiheit“</span>, nicht „Freibier“</li>
</ul>
<p><small>https://de.wikipedia.org/wiki/GNU_General_Public_License</small>
<aside class="notes">
<ul>
<li>GNU steht für „GNU is not Unix”
<li>GPL -> Richard Stallman </li>
</ul>
</aside>
</section>
<section>
<h3>Wir installieren Linux</h3>
<p>Ladies and Gentlemen: Start your Engines</p>
</section>
<section>
<section>
<h3>Installations Schritte</h3>
<ol>
<li>USB Stick einstecken</li>
<li>Laptop starten</li>
<li>BIOS öffnen</li>
<li>Boot Device im BIOS wählen</li>
<li>Neu starten</li>
</ol>
</section>
<section>
<img src="img/inst-boot.png">
</section>
<section>
<img src="img/inst-lang.png">
</section>
<section>
<img src="img/inst-country.png">
</section>
<section>
<img src="img/inst-keyboard.png">
</section>
<section>
<img src="img/inst-rootpw.png">
<aside class="notes">
<ul>
<li>administrativer benutzer heisst "root" IMMER
<li>passwort aufschreiben!!
</ul>
</aside>
</section>
<section>
<img src="img/inst-username.png">
</section>
<section>
<img src="img/inst-partman.png">
<aside class="notes">
<ul>
<li>swap 2GB
<li>rest alles
</ul>
</aside>
</section>
<section>
<img src="img/inst-partman-disk.png">
</section>
<section>
<img src="img/inst-autopartman-mode.png">
</section>
<section>
<img src="img/inst-partman-validation.png">
</section>
<section>
<img src="img/inst-basesystem.png">
</section>
<section>
<img src="img/inst-mirror.png">
</section>
<section>
<img src="img/inst-tasksel.png">
<aside class="notes">
Gnome mitnehmen
</aside>
</section>
<section>
<img src="img/inst-gdm.png">
</section>
</section>
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h2>Gnome3</h2>
<img src="img/desktop-screenshot.png">
</section>
<section>
<p>Tastaturkürzel</p>
<table>
<thead>
<tr>
<th>Kürzel</th>
<th>Zweck</th>
</tr>
</thead>
<tbody>
<tr>
<td>Win-Taste</td>
<td>Exposé</td>
</tr>
<tr>
<td>ALT + F2</td>
<td>Befehl ausführen</td>
</tr>
<tr>
<td>ALT + Tab</td>
<td>Programm-Wechsler</td>
</tr>
<tr>
<td>STRG + ALT + Pfeil</td>
<td>Arbeitsfläche wechseln</td>
</tr>
<tr>
<td>STRG + ALT + SHIFT + Pfeil</td>
<td>Fenster in Arbeitsfläche verschieben</td>
</tr>
</tbody>
</table>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/search/search.js', async: true },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>

503
2.html Normal file
View File

@ -0,0 +1,503 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Einführung in Linux</title>
<meta name="description" content="Oder: wie ich lernte ">
<meta name="author" content="Daniel Schubert">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/league.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h1>LINUX</h1>
<h3>Das universelle Betriebssystem</h3>
<p>Eine Einführung - Teil 2
<p>
<small>Deutsche Angestellten Akademie</small>
</p>
</section>
<section>
<aside class="notes">
Frage: Fragen zur letzten Stunde?
</aside>
<h3>Was ist eine Distribution??</h3>
<ul>
<li class="fragment">Zusammenstellung von GNU/Linux mit:</li>
<li class="fragment fade-in-then-semi-out">WindowManger: Gnome / KDE / Xfce / Budgie etc.. </li>
<li class="fragment fade-in-then-semi-out">Software: LibreOffice, Firefox, Thunderbird, Gimp....</li>
<li class="fragment">es gibt viele, sehr viele Distributionen: Debian, Ubuntu, SuSE, Red Hat, Mint, Fedora, Gentoo, Arch ......
</ul>
<div class="fragment" style="display: flex;align-items: center">
<img width="" height="238" data-src="img/linuxlogocollage.png" alt="Linux Distribution Logos" />
<small>mehr Distris:: https://distrowatch.com</small>
</div>
</section>
<section>
<h2>Debian</h2>
<figure>
<figcaption>Organigramm des Debian Projekts </figcaption>
<img style="width:70%;" data-src="img/organigram/de/organisation.svg">
<small>( Quelle : Linux-Grundlagen für Anwender und Administratoren, www.tuxacademy.org )</small>
</figure>
</section>
<!-- Example of nested vertical slides -->
<section>
<section>
<h2>Debian</h2>
<ul>
<li>zusammengestellt aus Software unter der GNU General Public License
<li>sehr populär als OS für Server
<li>sehr solide Distribution -> wird als Basis für viele and. Distributionen verwendet: zb Ubuntu
</ul>
</section>
<section>
<h2>Debian Features</h2>
<p>
<ul>
<li>52000+ Pakete freier Software</li>
<li>diverse Installations Images zum Download</li>
<li>Debian lässt sich übers Netzwerk installieren</li>
<li>Debian LIVE
<ul>
<li>Ein Live-System kann vom USB-Stick gebootet werden</li>
<li>->ausprobieren ohne Installation</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>Debian Features</h2>
<h3>Umgebung</h3>
<p>
<ul>
<li>GNOME ( default ), KDE Plasma, Xfce and LXDE</li>
</li>
<li><strong>C</strong>ommand <strong>L</strong>ine <strong>I</strong>nterface ( die <i>Shell</i> )</li>
</ul>
<p>
<ul>
<li>Browser: Firefox, Chrome</li>
<li>Email: Thunderbird</li>
<li>Office: Open- / Libre-Office</li>
<li>Skype</li>
<li>etc pp</li>
</ul>
</section>
</section>
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h2>Gnome3</h2>
<img src="img/desktop-screenshot.png">
</section>
<section>
<p>Aufgaben:
<ol>
<li>Netzwerkeinstellungen vornehmen</li>
<li>Bildschirmauflösung einstellen</li>
<li>Theme einstellen</li>
</ol>
</section>
<section>
<h2>Die Paketverwaltung</h2>
<p>Programme installieren
<ul>
<li>Linux Programme werden aus sog. Repositories bezogen</li>
<li>Synaptic <ul><li>greift auf diese Repos zu</li>
<li>kümmert sich um die Installation der Software-Pakete und ihrer Abhängigkeiten</li></ul>
<li>Datei Endung für Debian Pakete ist *.deb</li>
</ul>
</section>
<section>
<h2>Software installieren</h2>
<p>Aufgaben:
<ol>
<li>Starten Sie synaptic
<li>Update / Upgrade des Systems</li>
<li>Installieren Sie
<ul>
<li>Gimp</li>
<li>VLC</li>
<li>ssh server</li>
<li>VIM</li>
</ul>
</li>
<li>Deinstallieren Sie Gimp</li>
</ol>
</section>
<section>
<h2>sudo / root</h2>
<p>Benutzer Konzept
</section>
<section>
<h2>Point of View</h2>
<p>
Press <strong>ESC</strong> to enter the slide overview.
</p>
<p>
Hold down alt and click on any element to zoom in on it using <a href="http://lab.hakim.se/zoom-js">zoom.js</a>. Alt + click anywhere to zoom back out.
</p>
</section>
<section>
<h2>Touch Optimized</h2>
<p>
Presentations look great on touch devices, like mobile phones and tablets. Simply swipe through your slides.
</p>
</section>
<section data-markdown>
<script type="text/template">
## Markdown support
Write content using inline or external Markdown.
Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
```
<section data-markdown>
## Markdown support
Write content using inline or external Markdown.
Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
</section>
```
</script>
</section>
<section>
<section id="fragments">
<h2>Fragments</h2>
<p>Hit the next arrow...</p>
<p class="fragment">... to step through ...</p>
<p><span class="fragment">... a</span> <span class="fragment">fragmented</span> <span class="fragment">slide.</span></p>
<aside class="notes">
This slide has fragments which are also stepped through in the notes window.
</aside>
</section>
<section>
<h2>Fragment Styles</h2>
<p>There's different types of fragments, like:</p>
<p class="fragment grow">grow</p>
<p class="fragment shrink">shrink</p>
<p class="fragment fade-out">fade-out</p>
<p>
<span style="display: inline-block;" class="fragment fade-right">fade-right, </span>
<span style="display: inline-block;" class="fragment fade-up">up, </span>
<span style="display: inline-block;" class="fragment fade-down">down, </span>
<span style="display: inline-block;" class="fragment fade-left">left</span>
</p>
<p class="fragment fade-in-then-out">fade-in-then-out</p>
<p class="fragment fade-in-then-semi-out">fade-in-then-semi-out</p>
<p>Highlight <span class="fragment highlight-red">red</span> <span class="fragment highlight-blue">blue</span> <span class="fragment highlight-green">green</span></p>
</section>
</section>
<section id="transitions">
<h2>Transition Styles</h2>
<p>
You can select from different transitions, like: <br>
<a href="?transition=none#/transitions">None</a> -
<a href="?transition=fade#/transitions">Fade</a> -
<a href="?transition=slide#/transitions">Slide</a> -
<a href="?transition=convex#/transitions">Convex</a> -
<a href="?transition=concave#/transitions">Concave</a> -
<a href="?transition=zoom#/transitions">Zoom</a>
</p>
</section>
<section id="themes">
<h2>Themes</h2>
<p>
reveal.js comes with a few themes built in: <br>
<!-- Hacks to swap themes after the page has loaded. Not flexible and only intended for the reveal.js demo deck. -->
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/black.css'); return false;">Black (default)</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/white.css'); return false;">White</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/league.css'); return false;">League</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/sky.css'); return false;">Sky</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/beige.css'); return false;">Beige</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/simple.css'); return false;">Simple</a> <br>
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/serif.css'); return false;">Serif</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/blood.css'); return false;">Blood</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/night.css'); return false;">Night</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/moon.css'); return false;">Moon</a> -
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/solarized.css'); return false;">Solarized</a>
</p>
</section>
<section>
<section data-background="#dddddd">
<h2>Slide Backgrounds</h2>
<p>
Set <code>data-background="#dddddd"</code> on a slide to change the background color. All CSS color formats are supported.
</p>
<a href="#" class="navigate-down">
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
</a>
</section>
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png">
<h2>Image Backgrounds</h2>
<pre><code class="hljs">&lt;section data-background="image.png"&gt;</code></pre>
</section>
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png" data-background-repeat="repeat" data-background-size="100px">
<h2>Tiled Backgrounds</h2>
<pre><code class="hljs" style="word-wrap: break-word;">&lt;section data-background="image.png" data-background-repeat="repeat" data-background-size="100px"&gt;</code></pre>
</section>
<section data-background-video="https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm" data-background-color="#000000">
<div style="background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px;">
<h2>Video Backgrounds</h2>
<pre><code class="hljs" style="word-wrap: break-word;">&lt;section data-background-video="video.mp4,video.webm"&gt;</code></pre>
</div>
</section>
<section data-background="http://i.giphy.com/90F8aUepslB84.gif">
<h2>... and GIFs!</h2>
</section>
</section>
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h2>Background Transitions</h2>
<p>
Different background transitions are available via the backgroundTransition option. This one's called "zoom".
</p>
<pre><code class="hljs">Reveal.configure({ backgroundTransition: 'zoom' })</code></pre>
</section>
<section data-transition="slide" data-background="#b5533c" data-background-transition="zoom">
<h2>Background Transitions</h2>
<p>
You can override background transitions per-slide.
</p>
<pre><code class="hljs" style="word-wrap: break-word;">&lt;section data-background-transition="zoom"&gt;</code></pre>
</section>
<section>
<h2>Pretty Code</h2>
<pre><code class="hljs" data-trim contenteditable>
function linkify( selector ) {
if( supports3DTransforms ) {
var nodes = document.querySelectorAll( selector );
for( var i = 0, len = nodes.length; i &lt; len; i++ ) {
var node = nodes[i];
if( !node.className ) {
node.className += ' roll';
}
}
}
}
</code></pre>
<p>Code syntax highlighting courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p>
</section>
<section>
<h2>Marvelous List</h2>
<ul>
<li>No order here</li>
<li>Or here</li>
<li>Or here</li>
<li>Or here</li>
</ul>
</section>
<section>
<h2>Fantastic Ordered List</h2>
<ol>
<li>One is smaller than...</li>
<li>Two is smaller than...</li>
<li>Three!</li>
</ol>
</section>
<section>
<h2>Tabular Tables</h2>
<table>
<thead>
<tr>
<th>Item</th>
<th>Value</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td>Apples</td>
<td>$1</td>
<td>7</td>
</tr>
<tr>
<td>Lemonade</td>
<td>$2</td>
<td>18</td>
</tr>
<tr>
<td>Bread</td>
<td>$3</td>
<td>2</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Clever Quotes</h2>
<p>
These guys come in two forms, inline: <q cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">The nice thing about standards is that there are so many to choose from</q> and block:
</p>
<blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
&ldquo;For years there has been a theory that millions of monkeys typing at random on millions of typewriters would
reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.&rdquo;
</blockquote>
</section>
<section>
<h2>Intergalactic Interconnections</h2>
<p>
You can link between slides internally,
<a href="#/2/3">like this</a>.
</p>
</section>
<section>
<h2>Speaker View</h2>
<p>There's a <a href="https://github.com/hakimel/reveal.js#speaker-notes">speaker view</a>. It includes a timer, preview of the upcoming slide as well as your speaker notes.</p>
<p>Press the <em>S</em> key to try it out.</p>
<aside class="notes">
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).
</aside>
</section>
<section>
<h2>Export to PDF</h2>
<p>Presentations can be <a href="https://github.com/hakimel/reveal.js#pdf-export">exported to PDF</a>, here's an example:</p>
<iframe data-src="https://www.slideshare.net/slideshow/embed_code/42840540" width="445" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:3px solid #666; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
</section>
<section>
<h2>Global State</h2>
<p>
Set <code>data-state="something"</code> on a slide and <code>"something"</code>
will be added as a class to the document element when the slide is open. This lets you
apply broader style changes, like switching the page background.
</p>
</section>
<section data-state="customevent">
<h2>State Events</h2>
<p>
Additionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name.
</p>
<pre><code class="javascript" data-trim contenteditable style="font-size: 18px;">
Reveal.addEventListener( 'customevent', function() {
console.log( '"customevent" has fired' );
} );
</code></pre>
</section>
<section>
<h2>Take a Moment</h2>
<p>
Press B or . on your keyboard to pause the presentation. This is helpful when you're on stage and want to take distracting slides off the screen.
</p>
</section>
<section>
<h2>Much more</h2>
<ul>
<li>Right-to-left support</li>
<li><a href="https://github.com/hakimel/reveal.js#api">Extensive JavaScript API</a></li>
<li><a href="https://github.com/hakimel/reveal.js#auto-sliding">Auto-progression</a></li>
<li><a href="https://github.com/hakimel/reveal.js#parallax-background">Parallax backgrounds</a></li>
<li><a href="https://github.com/hakimel/reveal.js#keyboard-bindings">Custom keyboard bindings</a></li>
</ul>
</section>
<section style="text-align: left;">
<h1>THE END</h1>
<p>
- <a href="https://slides.com">Try the online editor</a> <br>
- <a href="https://github.com/hakimel/reveal.js">Source code &amp; documentation</a>
</p>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/search/search.js', async: true },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>

145
3.html Normal file
View File

@ -0,0 +1,145 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Einführung in Linux</title>
<meta name="description" content="Oder: wie ich lernte ">
<meta name="author" content="Daniel Schubert">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/league.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h1>LINUX</h1>
<h3>Das universelle Betriebssystem</h3>
<p>Eine Einführung - Teil 3
<p>
<small>Deutsche Angestellten Akademie</small>
</p>
<aside class="notes">
Frage: Fragen zur letzten Stunde?
</aside>
</section>
<section>
Grundlegendes zum Systemaufbau
</section>
<section>Architektur des Linux Systems</section>
<section data-transition="slide" data-background="#b5533c" data-background-transition="zoom">
<h2>Das Dateisystem</h2>
bild vom verzeichnisbaum
</section>
<section>
<aside class="notes">
Frage: Fragen zur letzten Stunde?
</aside>
<h3>Basics / Unterschiede zu Windows</h3>
<ul>
<li>/home/daniel/Dokumente/Wichtig.dez-2018.ods</li>
<li class="fragment ">Verzeichnistrenner ist „/“
<li class="fragment">Unterscheidung von gross / klein Schreibung: Datei.txt ≠ datei.txt
<li class="fragment">gültige Dateinamen:
<ul>
<li>datei0815.txt</li>
<li>WichtigerText</li>
<li>dies.darf_Nicht.weg</li>
<li>README</li>
</ul>
</li>
</ul>
</section>
<section>
<h3>Basics / Unterschiede zu Windows</h3>
<ul>
<li>Datei-Endungen nicht vorgeschrieben</li>
<li>Keine Laufwerksbuchstaben</li>
<li>Laufwerke ( DVD, USB etc ) werden im Verzeichnisbaum „eingehängt”</li>
<li class="fragment ">Wurzelverzeichnis heisst „root directory“ oder „/“
<li class="fragment ">Benutzerverzeichnis ist „/home/username“
</ul>
</section>
<section>
<h3>Alles ist eine Datei</h3>
<li><strong>Verzeichnisse</strong> (engl. directories) »Ordner«
<li><strong>Symbolische Links</strong> ähnlich zu »Verknüpfungen« unter Windows.
<li><strong>Gerätedateien</strong> (engl. devices): Schnittstellen zu beliebigen Geräten wie Laufwerken. Die Datei /dev/fd0 ist das erste Diskettenlaufwerk.
<aside class="notes">
Frage: Fragen zur letzten Stunde?
</aside>
</section>
<section>
<h3>Spezielle Dateitypen</h3>
<li><strong>FIFOs</strong> Oft auch named pipes genannt. Direkte Kommunikation zwischen Programmen ohne Verwendung von Zwischendateien
<li><strong>Unix-Domain-Sockets</strong> Ähnlich wie FIFOs Mittel zur Interprozesskommunikation. Quasi locales TCP/IP
</section>
<section>syslog</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/search/search.js', async: true },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>

132
4.html Normal file
View File

@ -0,0 +1,132 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Einführung in Linux - Kapitel 4</title>
<meta name="description" content="Oder: wie ich lernte ">
<meta name="author" content="Daniel Schubert">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/league.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h1>LINUX</h1>
<h3>Das universelle Betriebssystem</h3>
<p>Eine Einführung - Teil 4
<p>
<small>Deutsche Angestellten Akademie</small>
</p>
<aside class="notes">
Frage: Fragen zur letzten Stunde?
</aside>
</section>
<section data-transition="slide" data-background="#b5533c" data-background-transition="zoom">
<h1>Die SHELL</h1>
Screenshoot Terminal
</section>
<section>
<h3>Die Anatomie des SHELL-Prompt</h3>
<p>
<pre class="fragment" style="background-color:#000">daniel@laptop ~$ <span class="fragment">ls</span></pre>
<p>
<span class="fragment">Username</span>
<span class="fragment">@Hostname</span>
<span class="fragment"> Verzeichnis</span>
<span class="fragment">$ Befehl</span>
</p>
<aside class="notes">
<ul>
<li>Das ist der prompt</li>
<li>erkläre Elemente : User - Hostname - Dir - Cursor</li>
</ul>
</aside>
</section>
<section>Die wichtigsten Befehle</section>
<section>Die man Pages</section>
<section>
<aside class="notes">
Frage: Fragen zur letzten Stunde?
</aside>
</section>
<section>
<h2>Debian: Packet und Rpository</h2>
<ul>
<li>Package management</li>
<li>Der Debian-Way zur Software Installatione ist das apt (Advanced Package Management ) -Toolset </li>
<li>Die apt tools nutzen die dpkg datenbank um zu erkennen was installiert ist und was fehlt.
</li>
</ul>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/search/search.js', async: true },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>

203
css/print/paper.css Normal file
View File

@ -0,0 +1,203 @@
/* 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. */
@media print {
/* 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 */
html {
background: #fff;
width: auto;
height: auto;
overflow: visible;
}
body {
background: #fff;
font-size: 20pt;
width: auto;
height: auto;
border: 0;
margin: 0 5%;
padding: 0;
overflow: visible;
float: none !important;
}
/* SECTION 2: Remove any elements not needed in print.
This would include navigation, ads, sidebars, etc. */
.nestedarrow,
.controls,
.fork-reveal,
.share-reveal,
.state-background,
.reveal .progress,
.reveal .backgrounds,
.reveal .slide-number {
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: 20pt!important;
font-family: Georgia, "Times New Roman", Times, serif !important;
color: #000;
}
/* SECTION 4: Set heading font face, sizes, and color.
Differentiate your headings from your body text.
Perhaps use a large sans-serif for distinction. */
h1,h2,h3,h4,h5,h6 {
color: #000!important;
height: auto;
line-height: normal;
font-family: Georgia, "Times New Roman", Times, serif !important;
text-shadow: 0 0 0 #000 !important;
text-align: left;
letter-spacing: normal;
}
/* Need to reduce the size of the fonts for printing */
h1 { font-size: 28pt !important; }
h2 { font-size: 24pt !important; }
h3 { font-size: 22pt !important; }
h4 { font-size: 22pt !important; font-variant: small-caps; }
h5 { font-size: 21pt !important; }
h6 { font-size: 20pt !important; font-style: italic; }
/* 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 {
color: #000 !important;
font-weight: bold;
text-decoration: underline;
}
/*
.reveal a:link:after,
.reveal a:visited:after {
content: " (" attr(href) ") ";
color: #222 !important;
font-size: 90%;
}
*/
/* 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: 0;
text-align: left !important;
}
.reveal pre,
.reveal table {
margin-left: 0;
margin-right: 0;
}
.reveal pre code {
padding: 20px;
border: 1px solid #ddd;
}
.reveal blockquote {
margin: 20px 0;
}
.reveal .slides {
position: static !important;
width: auto !important;
height: auto !important;
left: 0 !important;
top: 0 !important;
margin-left: 0 !important;
margin-top: 0 !important;
padding: 0 !important;
zoom: 1 !important;
overflow: visible !important;
display: block !important;
text-align: left !important;
-webkit-perspective: none;
-moz-perspective: none;
-ms-perspective: none;
perspective: none;
-webkit-perspective-origin: 50% 50%;
-moz-perspective-origin: 50% 50%;
-ms-perspective-origin: 50% 50%;
perspective-origin: 50% 50%;
}
.reveal .slides section {
visibility: visible !important;
position: static !important;
width: auto !important;
height: auto !important;
display: block !important;
overflow: visible !important;
left: 0 !important;
top: 0 !important;
margin-left: 0 !important;
margin-top: 0 !important;
padding: 60px 20px !important;
z-index: auto !important;
opacity: 1 !important;
page-break-after: always !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;
-webkit-transition: none !important;
-moz-transition: none !important;
-ms-transition: none !important;
transition: none !important;
}
.reveal .slides section.stack {
padding: 0 !important;
}
.reveal section:last-of-type {
page-break-after: avoid !important;
}
.reveal section .fragment {
opacity: 1 !important;
visibility: visible !important;
-webkit-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
transform: none !important;
}
.reveal section img {
display: block;
margin: 15px 0px;
background: rgba(255,255,255,1);
border: 1px solid #666;
box-shadow: none;
}
.reveal section small {
font-size: 0.8em;
}
}

164
css/print/pdf.css Normal file
View File

@ -0,0 +1,164 @@
/**
* This stylesheet is used to print reveal.js
* presentations to PDF.
*
* https://github.com/hakimel/reveal.js#pdf-export
*/
* {
-webkit-print-color-adjust: exact;
}
body {
margin: 0 auto !important;
border: 0;
padding: 0;
float: none !important;
overflow: visible;
}
html {
width: 100%;
height: 100%;
overflow: visible;
}
/* Remove any elements not needed in print. */
.nestedarrow,
.reveal .controls,
.reveal .progress,
.reveal .playback,
.reveal.overview,
.fork-reveal,
.share-reveal,
.state-background {
display: none !important;
}
h1, h2, h3, h4, h5, h6 {
text-shadow: 0 0 0 #000 !important;
}
.reveal pre code {
overflow: hidden !important;
font-family: Courier, 'Courier New', monospace !important;
}
ul, ol, div, p {
visibility: visible;
position: static;
width: auto;
height: auto;
display: block;
overflow: visible;
margin: auto;
}
.reveal {
width: auto !important;
height: auto !important;
overflow: hidden !important;
}
.reveal .slides {
position: static;
width: 100% !important;
height: auto !important;
zoom: 1 !important;
left: auto;
top: auto;
margin: 0 !important;
padding: 0 !important;
overflow: visible;
display: block;
perspective: none;
perspective-origin: 50% 50%;
}
.reveal .slides .pdf-page {
position: relative;
overflow: hidden;
z-index: 1;
page-break-after: always;
}
.reveal .slides section {
visibility: visible !important;
display: block !important;
position: absolute !important;
margin: 0 !important;
padding: 0 !important;
box-sizing: border-box !important;
min-height: 1px;
opacity: 1 !important;
transform-style: flat !important;
transform: none !important;
}
.reveal section.stack {
position: relative !important;
margin: 0 !important;
padding: 0 !important;
page-break-after: avoid !important;
height: auto !important;
min-height: auto !important;
}
.reveal img {
box-shadow: none;
}
.reveal .roll {
overflow: visible;
line-height: 1em;
}
/* Slide backgrounds are placed inside of their slide when exporting to PDF */
.reveal .slide-background {
display: block !important;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: auto !important;
}
/* Display slide speaker notes when 'showNotes' is enabled */
.reveal.show-notes {
max-width: none;
max-height: none;
}
.reveal .speaker-notes-pdf {
display: block;
width: 100%;
height: auto;
max-height: none;
top: auto;
right: auto;
bottom: auto;
left: auto;
z-index: 100;
}
/* Layout option which makes notes appear on a separate page */
.reveal .speaker-notes-pdf[data-layout="separate-page"] {
position: relative;
color: inherit;
background-color: transparent;
padding: 20px;
page-break-after: always;
border: 0;
}
/* Display slide numbers when 'slideNumber' is enabled */
.reveal .slide-number-pdf {
display: block;
position: absolute;
font-size: 14px;
}

1437
css/reveal.css Normal file

File diff suppressed because it is too large Load Diff

7
css/reveal.min.css vendored Normal file

File diff suppressed because one or more lines are too long

1764
css/reveal.scss Normal file

File diff suppressed because it is too large Load Diff

21
css/theme/README.md Normal file
View File

@ -0,0 +1,21 @@
## Dependencies
Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceeding: https://github.com/hakimel/reveal.js#full-setup
## Creating a Theme
To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `npm run build -- css-themes`.
Each theme file does four things in the following order:
1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**
Shared utility functions.
2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**
Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.
3. **Override**
This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.
4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**
The template theme file which will generate final CSS output based on the currently defined variables.

277
css/theme/beige.css Normal file
View File

@ -0,0 +1,277 @@
/**
* Beige theme for reveal.js.
*
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/*********************************************
* 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", sans-serif;
font-size: 40px;
font-weight: normal;
color: #333; }
::selection {
color: #fff;
background: rgba(79, 64, 28, 0.99);
text-shadow: none; }
::-moz-selection {
color: #fff;
background: rgba(79, 64, 28, 0.99);
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #333;
font-family: "League Gothic", Impact, sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: 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, 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); }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #8b743d;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #c0a86e;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #564826; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #333;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s 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 {
color: #8b743d; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #8b743d; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #f7f3de; } }

273
css/theme/black.css Normal file
View File

@ -0,0 +1,273 @@
/**
* Black theme for reveal.js. This is the opposite of the 'white' theme.
*
* By Hakim El Hattab, http://hakim.se
*/
@import url(../../lib/font/source-sans-pro/source-sans-pro.css);
section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
color: #222; }
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #222;
background-color: #222; }
.reveal {
font-family: "Source Sans Pro", Helvetica, sans-serif;
font-size: 42px;
font-weight: normal;
color: #fff; }
::selection {
color: #fff;
background: #bee4fd;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #bee4fd;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #fff;
font-family: "Source Sans Pro", Helvetica, sans-serif;
font-weight: 600;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 2.5em; }
.reveal h2 {
font-size: 1.6em; }
.reveal h3 {
font-size: 1.3em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #42affa;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #8dcffc;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #068de9; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #42affa;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #42affa; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #42affa; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #222; } }

296
css/theme/blood.css Normal file
View File

@ -0,0 +1,296 @@
/**
* Blood theme for reveal.js
* Author: Walther http://github.com/Walther
*
* Designed to be used with highlight.js theme
* "monokai_sublime.css" available from
* https://github.com/isagalaev/highlight.js/
*
* For other themes, change $codeBackground accordingly.
*
*/
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #222;
background-color: #222; }
.reveal {
font-family: Ubuntu, "sans-serif";
font-size: 40px;
font-weight: normal;
color: #eee; }
::selection {
color: #fff;
background: #a23;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #a23;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #eee;
font-family: Ubuntu, "sans-serif";
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: 2px 2px 2px #222;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: 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, 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); }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #a23;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #dd5566;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #6a1520; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #eee;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #a23;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #a23; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #a23; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #222; } }
.reveal p {
font-weight: 300;
text-shadow: 1px 1px #222; }
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
font-weight: 700; }
.reveal p code {
background-color: #23241f;
display: inline-block;
border-radius: 7px; }
.reveal small code {
vertical-align: baseline; }

279
css/theme/league.css Normal file
View File

@ -0,0 +1,279 @@
/**
* League theme for reveal.js.
*
* This was the default theme pre-3.0.0.
*
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/*********************************************
* 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", sans-serif;
font-size: 40px;
font-weight: normal;
color: #eee; }
::selection {
color: #fff;
background: #FF5E99;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #FF5E99;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #eee;
font-family: "League Gothic", Impact, sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: 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, 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); }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #13DAEC;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #71e9f4;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #0d99a5; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #eee;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s 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 {
color: #13DAEC; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #13DAEC; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #2b2b2b; } }

277
css/theme/moon.css Normal file
View File

@ -0,0 +1,277 @@
/**
* Solarized Dark theme for reveal.js.
* Author: Achim Staebler
*/
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/**
* Solarized colors by Ethan Schoonover
*/
html * {
color-profile: sRGB;
rendering-intent: auto; }
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #002b36;
background-color: #002b36; }
.reveal {
font-family: "Lato", sans-serif;
font-size: 40px;
font-weight: normal;
color: #93a1a1; }
::selection {
color: #fff;
background: #d33682;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #d33682;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #eee8d5;
font-family: "League Gothic", Impact, sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #268bd2;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #78b9e6;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #1a6091; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #93a1a1;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #268bd2;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #268bd2; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #268bd2; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #002b36; } }

271
css/theme/night.css Normal file
View File

@ -0,0 +1,271 @@
/**
* Black theme for reveal.js.
*
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #111;
background-color: #111; }
.reveal {
font-family: "Open Sans", sans-serif;
font-size: 40px;
font-weight: normal;
color: #eee; }
::selection {
color: #fff;
background: #e7ad52;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #e7ad52;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #eee;
font-family: "Montserrat", Impact, sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: -0.03em;
text-transform: none;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #e7ad52;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #f3d7ac;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #d08a1d; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #eee;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #e7ad52;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #e7ad52; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #e7ad52; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #111; } }

273
css/theme/serif.css Normal file
View File

@ -0,0 +1,273 @@
/**
* A simple theme for reveal.js presentations, similar
* to the default theme. The accent color is brown.
*
* This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
*/
.reveal a {
line-height: 1.3em; }
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #F0F1EB;
background-color: #F0F1EB; }
.reveal {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
font-size: 40px;
font-weight: normal;
color: #000; }
::selection {
color: #fff;
background: #26351C;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #26351C;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* 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;
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: none;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #51483D;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #8b7c69;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #25211c; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #000;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s 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 {
color: #51483D; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #51483D; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #F0F1EB; } }

276
css/theme/simple.css Normal file
View File

@ -0,0 +1,276 @@
/**
* 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
*/
@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
color: #fff; }
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #fff;
background-color: #fff; }
.reveal {
font-family: "Lato", sans-serif;
font-size: 40px;
font-weight: normal;
color: #000; }
::selection {
color: #fff;
background: rgba(0, 0, 0, 0.99);
text-shadow: none; }
::-moz-selection {
color: #fff;
background: rgba(0, 0, 0, 0.99);
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #000;
font-family: "News Cycle", Impact, sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: none;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #00008B;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #0000f1;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #00003f; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #000;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #00008B;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #00008B; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #00008B; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #fff; } }

280
css/theme/sky.css Normal file
View File

@ -0,0 +1,280 @@
/**
* Sky theme for reveal.js.
*
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
.reveal a {
line-height: 1.3em; }
/*********************************************
* 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: 40px;
font-weight: normal;
color: #333; }
::selection {
color: #fff;
background: #134674;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #134674;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #333;
font-family: "Quicksand", sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: -0.08em;
text-transform: uppercase;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #3b759e;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #74a7cb;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #264c66; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #333;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s 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 {
color: #3b759e; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #3b759e; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #f7fbfc; } }

277
css/theme/solarized.css Normal file
View File

@ -0,0 +1,277 @@
/**
* Solarized Light theme for reveal.js.
* Author: Achim Staebler
*/
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/**
* Solarized colors by Ethan Schoonover
*/
html * {
color-profile: sRGB;
rendering-intent: auto; }
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #fdf6e3;
background-color: #fdf6e3; }
.reveal {
font-family: "Lato", sans-serif;
font-size: 40px;
font-weight: normal;
color: #657b83; }
::selection {
color: #fff;
background: #d33682;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #d33682;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #586e75;
font-family: "League Gothic", Impact, sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #268bd2;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #78b9e6;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #1a6091; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #657b83;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #268bd2;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #268bd2; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #268bd2; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #fdf6e3; } }

View File

@ -0,0 +1,39 @@
/**
* 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
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://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";
// ---------------------------------------------

View File

@ -0,0 +1,49 @@
/**
* Black theme for reveal.js. This is the opposite of the 'white' theme.
*
* By Hakim El Hattab, http://hakim.se
*/
// Default mixins and settings -----------------
@import "../template/mixins";
@import "../template/settings";
// ---------------------------------------------
// Include theme-specific fonts
@import url(../../lib/font/source-sans-pro/source-sans-pro.css);
// Override theme settings (see ../template/settings.scss)
$backgroundColor: #222;
$mainColor: #fff;
$headingColor: #fff;
$mainFontSize: 42px;
$mainFont: 'Source Sans Pro', Helvetica, sans-serif;
$headingFont: 'Source Sans Pro', Helvetica, sans-serif;
$headingTextShadow: none;
$headingLetterSpacing: normal;
$headingTextTransform: uppercase;
$headingFontWeight: 600;
$linkColor: #42affa;
$linkColorHover: lighten( $linkColor, 15% );
$selectionBackgroundColor: lighten( $linkColor, 25% );
$heading1Size: 2.5em;
$heading2Size: 1.6em;
$heading3Size: 1.3em;
$heading4Size: 1.0em;
section.has-light-background {
&, h1, h2, h3, h4, h5, h6 {
color: #222;
}
}
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

View File

@ -0,0 +1,78 @@
/**
* Blood theme for reveal.js
* Author: Walther http://github.com/Walther
*
* Designed to be used with highlight.js theme
* "monokai_sublime.css" available from
* https://github.com/isagalaev/highlight.js/
*
* For other themes, change $codeBackground accordingly.
*
*/
// Default mixins and settings -----------------
@import "../template/mixins";
@import "../template/settings";
// ---------------------------------------------
// Include theme-specific fonts
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
// Colors used in the theme
$blood: #a23;
$coal: #222;
$codeBackground: #23241f;
$backgroundColor: $coal;
// Main text
$mainFont: Ubuntu, 'sans-serif';
$mainColor: #eee;
// Headings
$headingFont: Ubuntu, 'sans-serif';
$headingTextShadow: 2px 2px 2px $coal;
// h1 shadow, borrowed humbly from
// (c) Default theme by Hakim El Hattab
$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);
// Links
$linkColor: $blood;
$linkColorHover: lighten( $linkColor, 20% );
// Text selection
$selectionBackgroundColor: $blood;
$selectionColor: #fff;
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------
// some overrides after theme template import
.reveal p {
font-weight: 300;
text-shadow: 1px 1px $coal;
}
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
font-weight: 700;
}
.reveal p code {
background-color: $codeBackground;
display: inline-block;
border-radius: 7px;
}
.reveal small code {
vertical-align: baseline;
}

View File

@ -0,0 +1,34 @@
/**
* League theme for reveal.js.
*
* This was the default theme pre-3.0.0.
*
* 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(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
// Override theme settings (see ../template/settings.scss)
$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);
$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";
// ---------------------------------------------

View File

@ -0,0 +1,57 @@
/**
* Solarized Dark theme for reveal.js.
* Author: Achim Staebler
*/
// Default mixins and settings -----------------
@import "../template/mixins";
@import "../template/settings";
// ---------------------------------------------
// Include theme-specific fonts
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/**
* Solarized colors by Ethan Schoonover
*/
html * {
color-profile: sRGB;
rendering-intent: auto;
}
// Solarized colors
$base03: #002b36;
$base02: #073642;
$base01: #586e75;
$base00: #657b83;
$base0: #839496;
$base1: #93a1a1;
$base2: #eee8d5;
$base3: #fdf6e3;
$yellow: #b58900;
$orange: #cb4b16;
$red: #dc322f;
$magenta: #d33682;
$violet: #6c71c4;
$blue: #268bd2;
$cyan: #2aa198;
$green: #859900;
// Override theme settings (see ../template/settings.scss)
$mainColor: $base1;
$headingColor: $base2;
$headingTextShadow: none;
$backgroundColor: $base03;
$linkColor: $blue;
$linkColorHover: lighten( $linkColor, 20% );
$selectionBackgroundColor: $magenta;
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

View File

@ -0,0 +1,34 @@
/**
* Black 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(https://fonts.googleapis.com/css?family=Montserrat:700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
// Override theme settings (see ../template/settings.scss)
$backgroundColor: #111;
$mainFont: 'Open Sans', sans-serif;
$linkColor: #e7ad52;
$linkColorHover: lighten( $linkColor, 20% );
$headingFont: 'Montserrat', Impact, sans-serif;
$headingTextShadow: none;
$headingLetterSpacing: -0.03em;
$headingTextTransform: none;
$selectionBackgroundColor: #e7ad52;
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

View File

@ -0,0 +1,35 @@
/**
* A simple theme for reveal.js presentations, similar
* to the default theme. The accent color is brown.
*
* This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
*/
// 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;
.reveal a {
line-height: 1.3em;
}
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

View File

@ -0,0 +1,43 @@
/**
* 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(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
// Override theme settings (see ../template/settings.scss)
$mainFont: 'Lato', sans-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);
section.has-dark-background {
&, h1, h2, h3, h4, h5, h6 {
color: #fff;
}
}
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

46
css/theme/source/sky.scss Normal file
View File

@ -0,0 +1,46 @@
/**
* 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(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
@import url(https://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;
// Fix links so they are not cut off
.reveal a {
line-height: 1.3em;
}
// Background generator
@mixin bodyBackground() {
@include radial-gradient( #add9e4, #f7fbfc );
}
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

View File

@ -0,0 +1,63 @@
/**
* Solarized Light theme for reveal.js.
* Author: Achim Staebler
*/
// Default mixins and settings -----------------
@import "../template/mixins";
@import "../template/settings";
// ---------------------------------------------
// Include theme-specific fonts
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/**
* Solarized colors by Ethan Schoonover
*/
html * {
color-profile: sRGB;
rendering-intent: auto;
}
// Solarized colors
$base03: #002b36;
$base02: #073642;
$base01: #586e75;
$base00: #657b83;
$base0: #839496;
$base1: #93a1a1;
$base2: #eee8d5;
$base3: #fdf6e3;
$yellow: #b58900;
$orange: #cb4b16;
$red: #dc322f;
$magenta: #d33682;
$violet: #6c71c4;
$blue: #268bd2;
$cyan: #2aa198;
$green: #859900;
// Override theme settings (see ../template/settings.scss)
$mainColor: $base00;
$headingColor: $base01;
$headingTextShadow: none;
$backgroundColor: $base3;
$linkColor: $blue;
$linkColorHover: lighten( $linkColor, 20% );
$selectionBackgroundColor: $magenta;
// Background generator
// @mixin bodyBackground() {
// @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );
// }
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

View File

@ -0,0 +1,49 @@
/**
* White theme for reveal.js. This is the opposite of the 'black' theme.
*
* By Hakim El Hattab, http://hakim.se
*/
// Default mixins and settings -----------------
@import "../template/mixins";
@import "../template/settings";
// ---------------------------------------------
// Include theme-specific fonts
@import url(../../lib/font/source-sans-pro/source-sans-pro.css);
// Override theme settings (see ../template/settings.scss)
$backgroundColor: #fff;
$mainColor: #222;
$headingColor: #222;
$mainFontSize: 42px;
$mainFont: 'Source Sans Pro', Helvetica, sans-serif;
$headingFont: 'Source Sans Pro', Helvetica, sans-serif;
$headingTextShadow: none;
$headingLetterSpacing: normal;
$headingTextTransform: uppercase;
$headingFontWeight: 600;
$linkColor: #2a76dd;
$linkColorHover: lighten( $linkColor, 15% );
$selectionBackgroundColor: lighten( $linkColor, 25% );
$heading1Size: 2.5em;
$heading2Size: 1.6em;
$heading3Size: 1.3em;
$heading4Size: 1.0em;
section.has-dark-background {
&, h1, h2, h3, h4, h5, h6 {
color: #fff;
}
}
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------

View File

@ -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% );
}

View File

@ -0,0 +1,43 @@
// 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', sans-serif;
$mainFontSize: 40px;
$mainColor: #eee;
// Vertical spacing between blocks of text
$blockMargin: 20px;
// Headings
$headingMargin: 0 0 $blockMargin 0;
$headingFont: 'League Gothic', Impact, sans-serif;
$headingColor: #eee;
$headingLineHeight: 1.2;
$headingLetterSpacing: normal;
$headingTextTransform: uppercase;
$headingTextShadow: none;
$headingFontWeight: normal;
$heading1TextShadow: $headingTextShadow;
$heading1Size: 3.77em;
$heading2Size: 2.11em;
$heading3Size: 1.55em;
$heading4Size: 1.00em;
// 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;
}

View File

@ -0,0 +1,325 @@
// Base theme template for reveal.js
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
@include bodyBackground();
background-color: $backgroundColor;
}
.reveal {
font-family: $mainFont;
font-size: $mainFontSize;
font-weight: normal;
color: $mainColor;
}
::selection {
color: $selectionColor;
background: $selectionBackgroundColor;
text-shadow: none;
}
::-moz-selection {
color: $selectionColor;
background: $selectionBackgroundColor;
text-shadow: none;
}
.reveal .slides section,
.reveal .slides section>section {
line-height: 1.3;
font-weight: inherit;
}
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: $headingMargin;
color: $headingColor;
font-family: $headingFont;
font-weight: $headingFontWeight;
line-height: $headingLineHeight;
letter-spacing: $headingLetterSpacing;
text-transform: $headingTextTransform;
text-shadow: $headingTextShadow;
word-wrap: break-word;
}
.reveal h1 {font-size: $heading1Size; }
.reveal h2 {font-size: $heading2Size; }
.reveal h3 {font-size: $heading3Size; }
.reveal h4 {font-size: $heading4Size; }
.reveal h1 {
text-shadow: $heading1TextShadow;
}
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: $blockMargin 0;
line-height: 1.3;
}
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%;
}
.reveal strong,
.reveal b {
font-weight: bold;
}
.reveal em {
font-style: italic;
}
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold;
}
.reveal dd {
margin-left: 40px;
}
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: $blockMargin 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block;
}
.reveal q {
font-style: italic;
}
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: $blockMargin 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 code {
font-family: monospace;
text-transform: none;
}
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal;
}
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0;
}
.reveal table th {
font-weight: bold;
}
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid;
}
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center;
}
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right;
}
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none;
}
.reveal sup {
vertical-align: super;
font-size: smaller;
}
.reveal sub {
vertical-align: sub;
font-size: smaller;
}
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top;
}
.reveal small * {
vertical-align: top;
}
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: $linkColor;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease;
}
.reveal a:hover {
color: $linkColorHover;
text-shadow: none;
border: none;
}
.reveal .roll span:after {
color: #fff;
background: darken( $linkColor, 15% );
}
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255,255,255,0.12);
border: 4px solid $mainColor;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.reveal section img.plain {
border: 0;
box-shadow: none;
}
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s 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 {
color: $linkColor;
}
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0,0,0,0.2);
color: $linkColor;
}
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
}
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: $backgroundColor;
}
}

273
css/theme/white.css Normal file
View File

@ -0,0 +1,273 @@
/**
* White theme for reveal.js. This is the opposite of the 'black' theme.
*
* By Hakim El Hattab, http://hakim.se
*/
@import url(../../lib/font/source-sans-pro/source-sans-pro.css);
section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
color: #fff; }
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #fff;
background-color: #fff; }
.reveal {
font-family: "Source Sans Pro", Helvetica, sans-serif;
font-size: 42px;
font-weight: normal;
color: #222; }
::selection {
color: #fff;
background: #98bdef;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #98bdef;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #222;
font-family: "Source Sans Pro", Helvetica, sans-serif;
font-weight: 600;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: none;
word-wrap: break-word; }
.reveal h1 {
font-size: 2.5em; }
.reveal h2 {
font-size: 1.6em; }
.reveal h3 {
font-size: 1.3em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: none; }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.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 dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px 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 p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px 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 code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #2a76dd;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #6ca0e8;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #1a53a1; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #222;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #2a76dd;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #2a76dd; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #2a76dd; }
.reveal .progress span {
-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);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #fff; } }

25
ideen.txt Normal file
View File

@ -0,0 +1,25 @@
- USB Stick mit Debian 9
- Installieren
= GNOME
- Erste Schritte mit Gnome
- Dateisystem
- Repositories
- Synaptic
- Update / Upgrade
- Installieren von Thunderbird
- Installieren von Chrome ( deb Paket von Webseite )
= bash
- einfache Befehle - ls mv cp pwd
- apt-get update / upgrade
- TN installieren VIM mit apt-get
- TN üben mit VIM
- Modes
- Speichern
- Verlassen

BIN
img/desktop-screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
img/inst-basesystem.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
img/inst-boot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

BIN
img/inst-country.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
img/inst-gdm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 KiB

BIN
img/inst-keyboard.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
img/inst-lang.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
img/inst-mirror.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
img/inst-partman-disk.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
img/inst-partman.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
img/inst-rootpw.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
img/inst-tasksel.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
img/inst-username.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
img/linux makes a man.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 KiB

BIN
img/linuxlogocollage.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

28
img/organigram/ABOUT Normal file
View File

@ -0,0 +1,28 @@
Organisation chart of the Debian project
========================================
(c) 2004-2009 Martin F. Krafft
Released under the Creative Commons Attribution-Share Alike 3.0 Germany
Licence and the Artistic Licence 2.0.
This chart was put together mainly for inclusion in my book:
http://debiansystem.info
I hope that it will also appear on http://www.debian.org/intro/organization
If you have comments or suggestions, I would love to hear them.
The official URL is http://people.debian.org/~madduck/graphs/organigram
Thanks go to Manoj Srivastava, Stephen Stafford, Andreas Barth, and
Romain Francoise.
The Spanish translation has been provided by
Alejandro Rios P. <alerios@unicauca.edu.co>
Many thanks!
The German translation was provided by myself.
-- martin f. krafft <madduck@debian.org> Thu, 15 Oct 2009 15:08:19 +0200

22
img/organigram/Makefile Normal file
View File

@ -0,0 +1,22 @@
BASES = en/organisation es/organizacion de/organisation
EXTS = eps png pdf
FILES = $(foreach ext,$(EXTS),$(foreach base,$(BASES),$(base).$(ext)))
.PHONY: all
all: $(FILES)
%.eps: %.svg
inkscape --export-eps=$@ $<
%.eps: %.fig
fig2dev -L eps $< $@
%.png: %.eps
convert $< $@
%.pdf: %.eps
epstopdf --outfile=$@ $<
.PHONY: clean
clean:
rm -f $(FILES)

View File

@ -0,0 +1,167 @@
#FIG 3.2 Produced by xfig version 3.2.5-alpha5
Landscape
Center
Metric
A4
100.00
Single
-2
1200 2
6 1170 1710 10080 7830
6 1350 2160 9900 3870
6 4500 2340 6750 2880
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
4500 2385 6750 2385 6750 2835 4500 2835 4500 2385
4 1 0 50 -1 16 12 0.0000 4 210 1230 5625 2655 Projektf\374hrer\001
-6
6 1755 3195 4095 3645
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
1755 3195 4095 3195 4095 3645 1755 3645 1755 3195
4 1 0 50 -1 16 12 0.0000 4 165 2250 2925 3465 Technisches Komittee\001
-6
6 7200 3195 9450 3645
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
7200 3195 9450 3195 9450 3645 7200 3645 7200 3195
4 1 0 50 -1 16 12 0.0000 4 210 1440 8325 3465 Projektsekret\344r\001
-6
2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
9900 3870 9900 2160 1350 2160 1350 3870 9900 3870
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
6750 2610 7650 2700 8100 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
4500 2610 3600 2700 3150 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
9450 3420 9810 3330 9630 2790 8820 2700 8280 3150
0.000 1.000 1.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
1800 3420 1440 3330 1620 2790 2430 2700 2970 3150
0.000 1.000 1.000 1.000 0.000
4 2 0 50 -1 18 12 0.0000 4 210 2355 9810 2430 Projektverantwortliche\001
4 1 0 50 -1 16 12 0.0000 4 150 735 3060 2880 ernennt\001
4 1 0 50 -1 16 12 0.0000 4 150 735 8190 2880 ernennt\001
-6
6 1350 4005 4950 7650
6 1530 4320 3780 4770
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4320 3780 4320 3780 4770 1530 4770 1530 4320
4 1 0 50 -1 16 12 0.0000 4 165 1380 2655 4592 Release Team\001
-6
6 1530 4860 3780 5310
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4860 3780 4860 3780 5310 1530 5310 1530 4860
4 1 0 50 -1 16 12 0.0000 4 165 1215 2655 5132 FTP Masters\001
-6
6 1530 5400 3780 5850
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5400 3780 5400 3780 5850 1530 5850 1530 5400
4 1 0 50 -1 16 12 0.0000 4 165 1515 2655 5672 Sicherheitsteam\001
-6
6 1530 5940 3780 6390
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5940 3780 5940 3780 6390 1530 6390 1530 5940
4 1 0 50 -1 16 12 0.0000 4 210 1500 2655 6212 Pressesprecher\001
-6
6 1530 6480 3780 6930
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 6480 3780 6480 3780 6930 1530 6930 1530 6480
4 1 0 50 -1 16 12 0.0000 4 165 1485 2655 6752 Administratoren\001
-6
6 1530 7020 3780 7470
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 7020 3780 7020 3780 7470 1530 7470 1530 7020
4 1 0 50 -1 17 12 0.0000 4 150 330 2655 7292 etc.\001
-6
2 4 0 1 0 7 50 -1 -1 4.000 0 0 7 0 0 5
4950 7650 4950 4005 1350 4005 1350 7650 4950 7650
4 2 0 50 -1 18 12 0.0000 4 210 1065 4860 4230 Delegierte\001
-6
2 4 0 1 0 7 52 -1 -1 4.000 0 0 7 0 0 5
10080 7830 10080 1710 1170 1710 1170 7830 10080 7830
3 2 1 1 0 7 50 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
4950 2880 4500 3960
0.000 0.000
4 2 0 50 -1 18 12 0.0000 4 165 1065 9990 1980 Entwickler\001
4 1 0 50 -1 16 12 0.0000 4 165 1935 5715 3690 ernennt/anerkennen\001
-6
6 6840 4320 10620 4770
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 4320 10620 4320 10620 4770 6840 4770 6840 4320
4 1 0 49 -1 16 12 0.0000 4 165 2325 8730 4612 Paketbetreuer / Portierer\001
-6
6 4005 7020 6615 7470
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 7020 6615 7020 6615 7470 4005 7470 4005 7020
4 1 0 49 -1 17 12 0.0000 4 150 330 5310 7312 etc.\001
-6
6 6840 6480 10620 6930
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 6480 10620 6480 10620 6930 6840 6930 6840 6480
4 1 0 49 -1 17 12 0.0000 4 150 330 8730 6772 etc.\001
-6
6 4005 6480 6615 6930
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 6480 6615 6480 6615 6930 4005 6930 4005 6480
4 1 0 49 -1 16 12 0.0000 4 165 900 5310 6772 CD Team\001
-6
6 4005 5940 6615 6390
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5940 6615 5940 6615 6390 4005 6390 4005 5940
4 1 0 49 -1 16 12 0.0000 4 165 1755 5310 6232 Web/List/...masters\001
-6
6 4005 5400 6615 5850
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5400 6615 5400 6615 5850 4005 5850 4005 5400
4 1 0 49 -1 16 12 0.0000 4 165 1935 5310 5692 Richtlinienkommittee\001
-6
6 6840 5940 10620 6390
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5940 10620 5940 10620 6390 6840 6390 6840 5940
4 1 0 49 -1 16 12 0.0000 4 210 1740 8730 6232 Qualit\344tssicherung\001
-6
6 6840 5400 10620 5850
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5400 10620 5400 10620 5850 6840 5850 6840 5400
4 1 0 49 -1 16 12 0.0000 4 195 2625 8730 5692 Dokumentation / \334bersetzer\001
-6
6 8415 7290 11295 8550
6 9135 7560 10575 8370
4 1 0 49 -1 16 12 0.0000 4 165 1425 9855 7695 Software in the\001
4 1 0 49 -1 16 12 0.0000 4 165 1320 9855 7965 Public Interest\001
4 1 0 49 -1 16 12 0.0000 4 210 480 9855 8235 (SPI)\001
-6
2 4 0 1 0 7 50 -1 20 3.000 0 0 7 0 0 5
11295 8550 11295 7290 8415 7290 8415 8550 11295 8550
-6
1 4 0 1 0 7 50 -1 0 4.000 1 0.0000 5895 4320 64 64 5850 4275 5940 4365
2 4 0 1 0 7 51 -1 -1 3.000 0 0 7 0 0 5
10980 8010 10980 1530 990 1530 990 8010 10980 8010
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 4860 10620 4860 10620 5310 4005 5310 4005 4860
2 1 2 1 0 7 47 -1 -1 3.000 0 0 -1 0 0 2
4950 4905 4950 5310
2 1 1 1 0 7 48 -1 -1 4.000 0 0 -1 1 0 2
3 0 2.00 60.00 120.00
9315 5130 7875 5130
3 0 1 1 0 7 51 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
8910 1890 6750 1980 6570 2340
0.000 1.000 0.000
3 0 1 1 0 7 48 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
5173 5080 5803 4405
0.000 0.000
4 1 0 51 -1 16 12 0.0000 4 165 675 6840 1980 w\344hlen\001
4 0 0 48 -1 16 12 0.0000 4 165 465 4230 5175 DAM\001
4 0 0 50 -1 16 12 0.0000 4 165 1140 5535 4185 anerkennen\001
4 1 0 51 -1 18 14 0.3491 4 240 1185 7560 7470 Freiwillige\001
4 0 0 48 -1 16 12 0.0000 4 210 2265 5535 5175 NM Team / F\374rsprecher\001
4 0 0 48 -1 16 12 0.0000 4 210 1200 9405 5175 Antragsteller\001
4 0 0 48 -1 16 12 0.0000 4 165 915 8190 5085 bewerben\001
4 1 0 50 -1 18 12 4.7124 4 165 915 10710 2070 Benutzer\001

View File

@ -0,0 +1,659 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Creator: fig2dev Version 3.2 Patchlevel 5a -->
<!-- CreationDate: Fri Sep 4 17:16:07 2009 -->
<!-- Magnification: 1.050 -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="806.45642"
height="517.80414"
viewBox="1026 1593 10844 7395"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="organisation.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline">
<metadata
id="metadata161">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs159">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 258.90207 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="806.45642 : 258.90207 : 1"
inkscape:persp3d-origin="403.22821 : 172.60138 : 1"
id="perspective79" />
<marker
inkscape:stockid="EmptyDiamondL"
orient="auto"
refY="0"
refX="0"
id="EmptyDiamondL"
style="overflow:visible">
<path
id="path3874"
d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="scale(0.8,0.8)" />
</marker>
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Mend"
style="overflow:visible">
<path
id="path3794"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
transform="scale(-0.6,-0.6)" />
</marker>
</defs>
<sodipodi:namedview
inkscape:window-height="480"
inkscape:window-width="640"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="false"
inkscape:zoom="0.83327503"
inkscape:cx="367.90955"
inkscape:cy="316.39188"
inkscape:current-layer="layer2"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="false"
inkscape:showpageshadow="true"
showborder="true"
inkscape:snap-global="false" />
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="users"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect8"
style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:8.11960793;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="113.15108"
height="6802.8862"
width="10788.44"
y="1891.6862"
x="1039.0569" />
<text
style="font-size:152px;font-style:normal;font-weight:bold;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text96"
font-size="152"
font-weight="bold"
font-style="normal"
y="2067.5281"
x="11711.283"
xml:space="preserve">Benutzer</text>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="developers"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect6"
style="fill:#eaeaea;fill-opacity:1;stroke:#000000;stroke-width:8.00581741;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
rx="110"
height="6425"
width="9354"
y="2080.6292"
x="1228" />
<text
style="font-size:152px;font-style:normal;font-weight:bold;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text92"
font-size="152"
font-weight="bold"
font-style="normal"
y="2283.3032"
x="10488"
xml:space="preserve">Entwickler</text>
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="officers"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text14"
font-size="152"
font-weight="normal"
font-style="normal"
y="2399.6956"
x="7205.0444"
xml:space="preserve">wählen</text>
<rect
id="rect26"
style="font-size:143.06047058px;fill:#f8f8f8;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="110"
height="1795"
width="8976"
y="2552.6292"
x="1417" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:bold;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text72"
font-size="152"
font-weight="bold"
font-style="normal"
y="2729.5276"
x="10299"
xml:space="preserve">Projektverantwortliche</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text74"
font-size="152"
font-weight="normal"
font-style="normal"
y="3283.1262"
x="3401.5662"
xml:space="preserve">ernennen</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text76"
font-size="152"
font-weight="normal"
font-style="normal"
y="3283.1262"
x="8405.8887"
xml:space="preserve">ernennen</text>
<rect
id="rect20"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="2788.6292"
x="4724" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text66"
font-size="152"
font-weight="normal"
font-style="normal"
y="3072.9121"
x="5899.4497"
xml:space="preserve">Projektführer</text>
<rect
id="rect22"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="3639.6292"
x="1889" />
<rect
id="rect24"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="3639.6292"
x="7559" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text70"
font-size="152"
font-weight="normal"
font-style="normal"
y="3923.9124"
x="8734.2617"
xml:space="preserve">Projektsekretär</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text68"
font-size="152"
font-weight="normal"
font-style="normal"
y="3905.386"
x="3061.0811"
xml:space="preserve">Technisches Kommittee</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 9657.9202,2230.2249 C 7217.4191,2230.2249 6628.3326,2735.1562 6628.3326,2735.1562"
id="path3762"
sodipodi:nodetypes="cc" />
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 7099.9283,3011.6661 C 8037.6578,3011.6661 8626.7443,3588.7304 8626.7443,3588.7304"
id="path5594"
sodipodi:nodetypes="cc" />
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1;display:inline"
d="M 4694.9931,3011.6661 C 3757.2636,3011.6661 3168.1771,3588.7304 3168.1771,3588.7304"
id="path6123"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="delegates"
transform="translate(-8.9970808,-46.652636)"
style="display:inline"
sodipodi:insensitive="true">
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text94"
font-size="152"
font-weight="normal"
font-style="normal"
y="4091.6218"
x="5161.2393"
xml:space="preserve">anerkennen/ernennen</text>
<rect
id="rect56"
style="font-size:143.06047058px;fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="110"
height="3826"
width="3779"
y="4489.6294"
x="1417" />
<rect
id="rect44"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="4820.6294"
x="1606" />
<rect
id="rect46"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="5387.6294"
x="1606" />
<rect
id="rect48"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="5954.6294"
x="1606" />
<rect
id="rect50"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="6521.6294"
x="1606" />
<rect
id="rect52"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="7088.6294"
x="1606" />
<rect
id="rect54"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="7655.6294"
x="1606" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text78"
font-size="152"
font-weight="normal"
font-style="normal"
y="5109.9907"
x="2777.9324"
xml:space="preserve">Release Team</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text80"
font-size="152"
font-weight="normal"
font-style="normal"
y="5680.2812"
x="2771.5596"
xml:space="preserve">FTP Masters</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text82"
font-size="152"
font-weight="normal"
font-style="normal"
y="6234.0483"
x="2792.5962"
xml:space="preserve">Sicherheitsteam</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text84"
font-size="152"
font-weight="normal"
font-style="normal"
y="6814.2812"
x="2771.5596"
xml:space="preserve">Pressesprecher</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text86"
font-size="152"
font-weight="normal"
font-style="normal"
y="7358.3203"
x="2776.9958"
xml:space="preserve">Administratoren</text>
<text
style="font-size:143.06047058px;font-style:italic;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text88"
font-size="152"
font-weight="normal"
font-style="italic"
y="7916.2358"
x="2799.3679"
xml:space="preserve">etc.</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 5366.0044,3252.1096 L 4861.0732,4454.3268"
id="path6125"
sodipodi:nodetypes="cc" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:bold;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text90"
font-size="152"
font-weight="bold"
font-style="normal"
y="4698.854"
x="5102"
xml:space="preserve">Delegierte</text>
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="other"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect100"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="5945.4854"
x="7181.2896" />
<rect
id="rect102"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="7655.6294"
x="4204" />
<rect
id="rect104"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="7651.2021"
x="7181.2896" />
<rect
id="rect106"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="7088.6294"
x="4204" />
<rect
id="rect108"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="6521.6294"
x="4204" />
<rect
id="rect110"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="5954.6294"
x="4204" />
<rect
id="rect112"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="7084.2021"
x="7181.2896" />
<rect
id="rect114"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="6517.2021"
x="7181.2896" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text118"
font-size="152"
font-weight="normal"
font-style="normal"
y="6216.0312"
x="9450.1143"
xml:space="preserve">Paketbetreuer / Portierer</text>
<text
style="font-size:143.06047058px;font-style:italic;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text120"
font-size="152"
font-weight="normal"
font-style="italic"
y="7916.2358"
x="5586.3682"
xml:space="preserve">etc.</text>
<text
style="font-size:143.06047058px;font-style:italic;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text122"
font-size="152"
font-weight="normal"
font-style="italic"
y="7911.519"
x="9477.9229"
xml:space="preserve">etc.</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text124"
font-size="152"
font-weight="normal"
font-style="normal"
y="7361.9683"
x="5593.2583"
xml:space="preserve">CD Team</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text126"
font-size="152"
font-weight="normal"
font-style="normal"
y="6792.4644"
x="5561.9932"
xml:space="preserve">Web/List/...masters</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text128"
font-size="152"
font-weight="normal"
font-style="normal"
y="6237.8394"
x="5557.5103"
xml:space="preserve">Richtlinienkommittee</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text130"
font-size="152"
font-weight="normal"
font-style="normal"
y="7362.6162"
x="9478.5957"
xml:space="preserve">Qualitätssicherung</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text132"
font-size="152"
font-weight="normal"
font-style="normal"
y="6790.2515"
x="9450.1143"
xml:space="preserve">Dokumentation / Übersetzer</text>
</g>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="nm"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect116"
style="font-size:143.06047058px;fill:#dddddd;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="6944"
y="4813.3257"
x="4204" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text148"
font-size="152"
font-weight="normal"
font-style="normal"
y="5086.6646"
x="4440"
xml:space="preserve">DAM</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text150"
font-size="152"
font-weight="normal"
font-style="normal"
y="5084.1611"
x="5905"
xml:space="preserve">NM team / Fürsprecher</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text152"
font-size="152"
font-weight="normal"
font-style="normal"
y="5079.9404"
x="10923.984"
xml:space="preserve">Antragsteller</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 10042.63,5049.1969 L 7554.0399,5049.1969"
id="path6673" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text98"
font-size="152"
font-weight="normal"
font-style="normal"
y="5649.6943"
x="7109.3945"
xml:space="preserve">anerkennen</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyDiamondL);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1;display:inline"
d="M 6648.0014,5165.6978 C 7617.6719,5699.6531 8066.6178,5586.4739 8066.6178,5586.4739"
id="path7202"
sodipodi:nodetypes="cc" />
<polyline
transform="translate(8.9928233e-7,-314.19214)"
id="polyline156"
style="font-size:143.06047058px;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:10, 31;display:inline"
points="5196,5149 5196,5574 " />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text154"
font-size="152"
font-weight="normal"
font-style="normal"
y="4995.7749"
x="8681.0625"
xml:space="preserve">bewerben</text>
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="spi"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect62"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:4.72311926;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="102.24498"
height="495.74695"
width="2809.8779"
y="8321.7002"
x="8832.3613" />
<text
xml:space="preserve"
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
x="10224.811"
y="8626.5977"
id="text8810"><tspan
sodipodi:role="line"
id="tspan8812"
x="10224.811"
y="8626.5977"
style="font-size:143.06047058px">Software in the Public Interest (SPI)</tspan></text>
</g>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:RotisSansSerif;-inkscape-font-specification:RotisSansSerif"
x="-405.20441"
y="5718.4839"
id="text2452"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan2454"
x="-405.20441"
y="5718.4839">5</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,167 @@
#FIG 3.2 Produced by xfig version 3.2.5-alpha5
Landscape
Center
Metric
A4
100.00
Single
-2
1200 2
6 1170 1710 10080 7830
6 1350 2160 9900 3870
6 4500 2340 6750 2880
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
4500 2385 6750 2385 6750 2835 4500 2835 4500 2385
4 1 0 50 -1 16 12 0.0000 4 180 1200 5625 2655 Project leader\001
-6
6 1800 3150 4050 3690
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
1800 3195 4050 3195 4050 3645 1800 3645 1800 3195
4 1 0 50 -1 16 12 0.0000 4 150 1815 2925 3465 Technical committee\001
-6
6 7200 3150 9450 3690
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
7200 3195 9450 3195 9450 3645 7200 3645 7200 3195
4 1 0 50 -1 16 12 0.0000 4 180 1485 8325 3465 Project secretary\001
-6
2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
9900 3870 9900 2160 1350 2160 1350 3870 9900 3870
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
6750 2610 7650 2700 8100 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
4500 2610 3600 2700 3150 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
9450 3420 9810 3330 9630 2790 8820 2700 8280 3150
0.000 1.000 1.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
1800 3420 1440 3330 1620 2790 2430 2700 2970 3150
0.000 1.000 1.000 1.000 0.000
4 2 0 50 -1 18 12 0.0000 4 135 720 9810 2430 Officers\001
4 1 0 50 -1 16 12 0.0000 4 180 735 3060 2880 appoints\001
4 1 0 50 -1 16 12 0.0000 4 180 735 8190 2880 appoints\001
-6
6 1350 4005 4950 7650
6 1530 4320 3780 4770
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4320 3780 4320 3780 4770 1530 4770 1530 4320
4 1 0 50 -1 16 12 0.0000 4 150 1200 2655 4592 Release team\001
-6
6 1530 4860 3780 5310
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4860 3780 4860 3780 5310 1530 5310 1530 4860
4 1 0 50 -1 16 12 0.0000 4 150 1140 2655 5132 FTP masters\001
-6
6 1530 5400 3780 5850
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5400 3780 5400 3780 5850 1530 5850 1530 5400
4 1 0 50 -1 16 12 0.0000 4 180 1215 2655 5672 Security team\001
-6
6 1530 5940 3780 6390
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5940 3780 5940 3780 6390 1530 6390 1530 5940
4 1 0 50 -1 16 12 0.0000 4 150 1320 2655 6212 Press contacts\001
-6
6 1530 6480 3780 6930
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 6480 3780 6480 3780 6930 1530 6930 1530 6480
4 1 0 50 -1 16 12 0.0000 4 135 1260 2655 6752 Administrators\001
-6
6 1530 7020 3780 7470
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 7020 3780 7020 3780 7470 1530 7470 1530 7020
4 1 0 50 -1 17 12 0.0000 4 135 330 2655 7292 etc.\001
-6
2 4 0 1 0 7 50 -1 -1 4.000 0 0 7 0 0 5
4950 7650 4950 4005 1350 4005 1350 7650 4950 7650
4 2 0 50 -1 18 12 0.0000 4 180 900 4860 4230 Delegates\001
-6
2 4 0 1 0 7 52 -1 -1 4.000 0 0 7 0 0 5
10080 7830 10080 1710 1170 1710 1170 7830 10080 7830
3 2 1 1 0 7 50 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
4950 2880 4500 3960
0.000 0.000
4 2 0 50 -1 18 12 0.0000 4 195 1035 9990 1980 Developers\001
4 1 0 50 -1 16 12 0.0000 4 180 1590 5490 3690 appoints/approves\001
-6
6 6840 4320 10620 4770
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 4320 10620 4320 10620 4770 6840 4770 6840 4320
4 1 0 49 -1 16 12 0.0000 4 150 1815 8730 4612 Maintainers / porters\001
-6
6 4005 7020 6615 7470
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 7020 6615 7020 6615 7470 4005 7470 4005 7020
4 1 0 49 -1 17 12 0.0000 4 135 330 5310 7312 etc.\001
-6
6 6840 6480 10620 6930
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 6480 10620 6480 10620 6930 6840 6930 6840 6480
4 1 0 49 -1 17 12 0.0000 4 135 330 8730 6772 etc.\001
-6
6 4005 6480 6615 6930
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 6480 6615 6480 6615 6930 4005 6930 4005 6480
4 1 0 49 -1 16 12 0.0000 4 150 765 5310 6772 CD team\001
-6
6 4005 5940 6615 6390
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5940 6615 5940 6615 6390 4005 6390 4005 5940
4 1 0 49 -1 16 12 0.0000 4 135 1650 5310 6232 Web/list/...masters\001
-6
6 4005 5400 6615 5850
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5400 6615 5400 6615 5850 4005 5850 4005 5400
4 1 0 49 -1 16 12 0.0000 4 180 1080 5310 5692 Policy group\001
-6
6 6840 5940 10620 6390
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5940 10620 5940 10620 6390 6840 6390 6840 5940
4 1 0 49 -1 16 12 0.0000 4 180 1575 8730 6232 Quality assurance\001
-6
6 6840 5400 10620 5850
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5400 10620 5400 10620 5850 6840 5850 6840 5400
4 1 0 49 -1 16 12 0.0000 4 150 2445 8730 5692 Documentation / i18n teams\001
-6
6 8415 7290 11295 8550
6 9135 7560 10575 8370
4 1 0 49 -1 16 12 0.0000 4 150 1305 9855 7695 Software in the\001
4 1 0 49 -1 16 12 0.0000 4 150 1260 9855 7965 Public Interest\001
4 1 0 49 -1 16 12 0.0000 4 195 450 9855 8235 (SPI)\001
-6
2 4 0 1 0 7 50 -1 20 3.000 0 0 7 0 0 5
11295 8550 11295 7290 8415 7290 8415 8550 11295 8550
-6
1 4 0 1 0 7 50 -1 0 4.000 1 0.0000 5895 4320 64 64 5850 4275 5940 4365
2 4 0 1 0 7 51 -1 -1 3.000 0 0 7 0 0 5
10980 8010 10980 1530 990 1530 990 8010 10980 8010
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 4860 10620 4860 10620 5310 4005 5310 4005 4860
2 1 1 1 0 7 48 -1 -1 4.000 0 0 -1 1 0 2
3 0 2.00 60.00 120.00
9540 5130 7560 5130
2 1 2 1 0 7 47 -1 -1 3.000 0 0 -1 0 0 2
4950 4905 4950 5310
3 0 1 1 0 7 51 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
8910 1890 6750 1980 6570 2340
0.000 1.000 0.000
3 0 1 1 0 7 48 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
5173 5080 5803 4405
0.000 0.000
4 1 0 50 -1 18 12 0.0000 4 135 525 10620 1800 Users\001
4 1 0 51 -1 16 12 0.0000 4 135 420 6840 1980 elect\001
4 0 0 48 -1 16 12 0.0000 4 135 435 4230 5175 DAM\001
4 0 0 48 -1 16 12 0.0000 4 150 1875 5625 5175 NM team / advocates\001
4 0 0 48 -1 16 12 0.0000 4 180 885 9630 5175 applicants\001
4 0 0 48 -1 16 12 0.0000 4 180 465 8460 5085 apply\001
4 0 0 50 -1 16 12 0.0000 4 150 690 5535 4185 approve\001
4 1 0 51 -1 18 14 0.3491 4 180 1245 7560 7470 Volunteers\001

View File

@ -0,0 +1,640 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Creator: fig2dev Version 3.2 Patchlevel 5a -->
<!-- CreationDate: Fri Sep 4 17:16:07 2009 -->
<!-- Magnification: 1.050 -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="806.45642"
height="517.80414"
viewBox="1026 1593 10844 7395"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="deb-organisation.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0">
<metadata
id="metadata161">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs159">
<marker
inkscape:stockid="EmptyDiamondL"
orient="auto"
refY="0"
refX="0"
id="EmptyDiamondL"
style="overflow:visible">
<path
id="path3874"
d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="scale(0.8,0.8)" />
</marker>
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Mend"
style="overflow:visible">
<path
id="path3794"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
transform="scale(-0.6,-0.6)" />
</marker>
</defs>
<sodipodi:namedview
inkscape:window-height="480"
inkscape:window-width="640"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="false"
inkscape:zoom="1.1507131"
inkscape:cx="403.22821"
inkscape:cy="258.90207"
inkscape:current-layer="layer5"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="false"
inkscape:showpageshadow="true"
showborder="true"
inkscape:snap-global="false" />
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="users"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect8"
style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:8.11960793;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="113.15108"
height="6802.8862"
width="10788.44"
y="1891.6862"
x="1039.0569" />
<text
style="font-size:152px;font-style:normal;font-weight:bold;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text96"
font-size="152"
font-weight="bold"
font-style="normal"
y="2067.5281"
x="11711.283"
xml:space="preserve">Users</text>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="developers"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect6"
style="fill:#eaeaea;fill-opacity:1;stroke:#000000;stroke-width:8.00581741;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
rx="110"
height="6425"
width="9354"
y="2080.6292"
x="1228" />
<text
style="font-size:152px;font-style:normal;font-weight:bold;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text92"
font-size="152"
font-weight="bold"
font-style="normal"
y="2283.3032"
x="10488"
xml:space="preserve">Developers</text>
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="officers"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text14"
font-size="152"
font-weight="normal"
font-style="normal"
y="2399.6956"
x="7205.0444"
xml:space="preserve">elect</text>
<rect
id="rect26"
style="font-size:143.06047058px;fill:#f8f8f8;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="110"
height="1795"
width="8976"
y="2552.6292"
x="1417" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:bold;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text72"
font-size="152"
font-weight="bold"
font-style="normal"
y="2729.5276"
x="10299"
xml:space="preserve">Officers</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text74"
font-size="152"
font-weight="normal"
font-style="normal"
y="3283.1262"
x="3401.5662"
xml:space="preserve">appoints</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text76"
font-size="152"
font-weight="normal"
font-style="normal"
y="3283.1262"
x="8405.8887"
xml:space="preserve">appoints</text>
<rect
id="rect20"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="2788.6292"
x="4724" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text66"
font-size="152"
font-weight="normal"
font-style="normal"
y="3072.9121"
x="5899.4497"
xml:space="preserve">Project leader</text>
<rect
id="rect22"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="3639.6292"
x="1889" />
<rect
id="rect24"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="3639.6292"
x="7559" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text70"
font-size="152"
font-weight="normal"
font-style="normal"
y="3923.9124"
x="8734.2617"
xml:space="preserve">Project secretary</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text68"
font-size="152"
font-weight="normal"
font-style="normal"
y="3905.386"
x="3061.0811"
xml:space="preserve">Technical committee</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 9657.9202,2230.2249 C 7217.4191,2230.2249 6628.3326,2735.1562 6628.3326,2735.1562"
id="path3762"
sodipodi:nodetypes="cc" />
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 7099.9283,3011.6661 C 8037.6578,3011.6661 8626.7443,3588.7304 8626.7443,3588.7304"
id="path5594"
sodipodi:nodetypes="cc" />
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1;display:inline"
d="M 4694.9931,3011.6661 C 3757.2636,3011.6661 3168.1771,3588.7304 3168.1771,3588.7304"
id="path6123"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="delegates"
transform="translate(-8.9970808,-46.652636)"
style="display:inline"
sodipodi:insensitive="true">
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text94"
font-size="152"
font-weight="normal"
font-style="normal"
y="4091.6218"
x="5161.2393"
xml:space="preserve">appoints/approves</text>
<rect
id="rect56"
style="font-size:143.06047058px;fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="110"
height="3826"
width="3779"
y="4489.6294"
x="1417" />
<rect
id="rect44"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="4820.6294"
x="1606" />
<rect
id="rect46"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="5387.6294"
x="1606" />
<rect
id="rect48"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="5954.6294"
x="1606" />
<rect
id="rect50"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="6521.6294"
x="1606" />
<rect
id="rect52"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="7088.6294"
x="1606" />
<rect
id="rect54"
style="font-size:143.06047058px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="0"
height="472"
width="2362"
y="7655.6294"
x="1606" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text78"
font-size="152"
font-weight="normal"
font-style="normal"
y="5109.9907"
x="2777.9324"
xml:space="preserve">Release team</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text80"
font-size="152"
font-weight="normal"
font-style="normal"
y="5680.2812"
x="2771.5596"
xml:space="preserve">FTP masters</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text82"
font-size="152"
font-weight="normal"
font-style="normal"
y="6234.0483"
x="2792.5962"
xml:space="preserve">Security team</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text84"
font-size="152"
font-weight="normal"
font-style="normal"
y="6814.2812"
x="2771.5596"
xml:space="preserve">Press contacts</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text86"
font-size="152"
font-weight="normal"
font-style="normal"
y="7358.3203"
x="2776.9958"
xml:space="preserve">Administrators</text>
<text
style="font-size:143.06047058px;font-style:italic;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text88"
font-size="152"
font-weight="normal"
font-style="italic"
y="7916.2358"
x="2799.3679"
xml:space="preserve">etc.</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 5366.0044,3252.1096 L 4861.0732,4454.3268"
id="path6125"
sodipodi:nodetypes="cc" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:bold;text-anchor:end;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text90"
font-size="152"
font-weight="bold"
font-style="normal"
y="4698.854"
x="5102"
xml:space="preserve">Delegates</text>
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="other"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect100"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="5945.4854"
x="7181.2896" />
<rect
id="rect102"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="7655.6294"
x="4204" />
<rect
id="rect104"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="7651.2021"
x="7181.2896" />
<rect
id="rect106"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="7088.6294"
x="4204" />
<rect
id="rect108"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="6521.6294"
x="4204" />
<rect
id="rect110"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="2740"
y="5954.6294"
x="4204" />
<rect
id="rect112"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="7084.2021"
x="7181.2896" />
<rect
id="rect114"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:8.5787878;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="471.4212"
width="4568.5298"
y="6517.2021"
x="7181.2896" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text118"
font-size="152"
font-weight="normal"
font-style="normal"
y="6216.0312"
x="9450.1143"
xml:space="preserve">Maintainers / porters</text>
<text
style="font-size:143.06047058px;font-style:italic;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text120"
font-size="152"
font-weight="normal"
font-style="italic"
y="7916.2358"
x="5586.3682"
xml:space="preserve">etc.</text>
<text
style="font-size:143.06047058px;font-style:italic;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text122"
font-size="152"
font-weight="normal"
font-style="italic"
y="7911.519"
x="9477.9229"
xml:space="preserve">etc.</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text124"
font-size="152"
font-weight="normal"
font-style="normal"
y="7361.9683"
x="5593.2583"
xml:space="preserve">CD team</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text126"
font-size="152"
font-weight="normal"
font-style="normal"
y="6792.4644"
x="5561.9932"
xml:space="preserve">Web/list/...masters</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text128"
font-size="152"
font-weight="normal"
font-style="normal"
y="6237.8394"
x="5557.5103"
xml:space="preserve">Policy group</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text130"
font-size="152"
font-weight="normal"
font-style="normal"
y="7362.6162"
x="9478.5957"
xml:space="preserve">Quality assurance</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text132"
font-size="152"
font-weight="normal"
font-style="normal"
y="6790.2515"
x="9450.1143"
xml:space="preserve">Documentation / i18n teams</text>
</g>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="nm"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect116"
style="font-size:143.06047058px;fill:#dddddd;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter"
rx="0"
height="472"
width="6944"
y="4813.3257"
x="4204" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text148"
font-size="152"
font-weight="normal"
font-style="normal"
y="5086.6646"
x="4440"
xml:space="preserve">DAM</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text150"
font-size="152"
font-weight="normal"
font-style="normal"
y="5084.1611"
x="5905"
xml:space="preserve">NM team / advocates</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text152"
font-size="152"
font-weight="normal"
font-style="normal"
y="5079.9404"
x="10752.609"
xml:space="preserve">applicants</text>
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
id="text154"
font-size="152"
font-weight="normal"
font-style="normal"
y="4995.7749"
x="8881"
xml:space="preserve">apply</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1"
d="M 10042.63,5049.1969 L 7554.0399,5049.1969"
id="path6673" />
<text
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:start;fill:#000000;stroke-width:0.025in;display:inline;font-family:'RotisSansSerif, Helvetica'"
id="text98"
font-size="152"
font-weight="normal"
font-style="normal"
y="5649.6943"
x="7109.3945"
xml:space="preserve">approve</text>
<path
style="font-size:143.06047058px;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:13.3876543;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyDiamondL);stroke-miterlimit:4;stroke-dasharray:26.77530864, 53.55061728;stroke-dashoffset:0;stroke-opacity:1;display:inline"
d="M 6648.0014,5165.6978 C 7617.6719,5699.6531 8066.6178,5586.4739 8066.6178,5586.4739"
id="path7202"
sodipodi:nodetypes="cc" />
<polyline
transform="translate(8.9928233e-7,-314.19214)"
id="polyline156"
style="font-size:143.06047058px;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:10, 31;display:inline"
points="5196,5149 5196,5574 " />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="spi"
style="display:inline"
transform="translate(-8.9970808,-46.652636)"
sodipodi:insensitive="true">
<rect
id="rect62"
style="font-size:143.06047058px;fill:#ffffff;stroke:#000000;stroke-width:4.72311926;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
rx="102.24498"
height="495.74695"
width="2809.8779"
y="8321.7002"
x="8832.3613" />
<text
xml:space="preserve"
style="font-size:143.06047058px;font-style:normal;font-weight:normal;text-anchor:middle;fill:#000000;stroke-width:0.025in;font-family:'RotisSansSerif, Helvetica'"
x="10224.811"
y="8626.5977"
id="text8810"><tspan
sodipodi:role="line"
id="tspan8812"
x="10224.811"
y="8626.5977"
style="font-size:143.06047058px">Software in the Public Interest (SPI)</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,167 @@
#FIG 3.2 Produced by xfig version 3.2.5-alpha5
Landscape
Center
Metric
A4
100.00
Single
-2
1200 2
6 1170 1710 10080 7830
6 1350 4005 4950 7650
6 1530 5400 3780 5850
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5400 3780 5400 3780 5850 1530 5850 1530 5400
4 1 0 50 -1 16 12 0.0000 4 180 1800 2655 5672 Equipo de Seguridad\001
-6
6 1530 5940 3780 6390
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5940 3780 5940 3780 6390 1530 6390 1530 5940
4 1 0 50 -1 16 12 0.0000 4 150 1725 2655 6212 Contacto de Prensa\001
-6
6 1530 6480 3780 6930
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 6480 3780 6480 3780 6930 1530 6930 1530 6480
4 1 0 50 -1 16 12 0.0000 4 135 1410 2655 6752 Administradores\001
-6
6 1530 7020 3780 7470
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 7020 3780 7020 3780 7470 1530 7470 1530 7020
4 1 0 50 -1 17 12 0.0000 4 135 330 2655 7292 etc.\001
-6
6 1530 4320 3780 4770
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4320 3780 4320 3780 4770 1530 4770 1530 4320
4 1 0 50 -1 16 12 0.0000 4 180 2040 2655 4592 Equipo de Lanzamiento\001
-6
6 1530 4860 3780 5310
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4860 3780 4860 3780 5310 1530 5310 1530 4860
4 1 0 50 -1 16 12 0.0000 4 150 1425 2655 5132 Admins. de FTP\001
-6
2 4 0 1 0 7 50 -1 -1 4.000 0 0 7 0 0 5
4950 7650 4950 4005 1350 4005 1350 7650 4950 7650
4 2 0 50 -1 18 12 0.0000 4 180 975 4860 4230 Delegados\001
-6
6 1350 2160 9900 3870
6 4500 2385 6750 2835
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
4500 2385 6750 2385 6750 2835 4500 2835 4500 2385
4 1 0 50 -1 16 12 0.0000 4 180 1575 5625 2655 Lider del Proyecto\001
-6
6 1800 3195 4050 3645
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
1800 3195 4050 3195 4050 3645 1800 3645 1800 3195
4 1 0 50 -1 16 12 0.0000 4 150 1365 2925 3465 Comite Tecnico\001
-6
6 7200 3195 9450 3645
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
7200 3195 9450 3195 9450 3645 7200 3645 7200 3195
4 1 0 50 -1 16 12 0.0000 4 180 2040 8325 3465 Secretario del Proyecto\001
-6
2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
9900 3870 9900 2160 1350 2160 1350 3870 9900 3870
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
6750 2610 7650 2700 8100 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
4500 2610 3600 2700 3150 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
9450 3420 9810 3330 9630 2790 8820 2700 8280 3150
0.000 1.000 1.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
1800 3420 1440 3330 1620 2790 2430 2700 2970 3150
0.000 1.000 1.000 1.000 0.000
4 2 0 50 -1 18 12 0.0000 4 165 810 9810 2430 Oficiales\001
4 1 0 50 -1 16 12 0.0000 4 180 675 3060 2880 designa\001
4 1 0 50 -1 16 12 0.0000 4 180 675 8190 2880 designa\001
-6
2 4 0 1 0 7 52 -1 -1 4.000 0 0 7 0 0 5
10080 7830 10080 1710 1170 1710 1170 7830 10080 7830
3 2 1 1 0 7 50 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
4950 2880 4500 3960
0.000 0.000
4 1 0 50 -1 16 12 0.0000 4 180 1425 5490 3690 designa/aprueba\001
4 2 0 50 -1 18 12 0.0000 4 135 1470 9990 1980 Desarrolladores\001
-6
6 6840 4320 10620 4770
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 4320 10620 4320 10620 4770 6840 4770 6840 4320
4 1 0 49 -1 16 12 0.0000 4 180 2370 8730 4612 Mantenedores / migradores\001
-6
6 4005 7020 6615 7470
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 7020 6615 7020 6615 7470 4005 7470 4005 7020
4 1 0 49 -1 17 12 0.0000 4 135 330 5310 7312 etc.\001
-6
6 6840 6480 10620 6930
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 6480 10620 6480 10620 6930 6840 6930 6840 6480
4 1 0 49 -1 17 12 0.0000 4 135 330 8730 6772 etc.\001
-6
6 4005 6480 6615 6930
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 6480 6615 6480 6615 6930 4005 6930 4005 6480
4 1 0 49 -1 16 12 0.0000 4 180 1305 5310 6772 Equipo de CDs\001
-6
6 4005 5940 6615 6390
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5940 6615 5940 6615 6390 4005 6390 4005 5940
4 1 0 49 -1 16 12 0.0000 4 150 2100 5310 6232 Admins. de Web/lista/...\001
-6
6 4005 5400 6615 5850
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5400 6615 5400 6615 5850 4005 5850 4005 5400
4 1 0 49 -1 16 12 0.0000 4 180 1605 5310 5692 Grupo de Politicas\001
-6
6 6840 5940 10620 6390
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5940 10620 5940 10620 6390 6840 6390 6840 5940
4 1 0 49 -1 16 12 0.0000 4 180 2280 8730 6232 Aseguramiento de Calidad\001
-6
6 6840 5400 10620 5850
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5400 10620 5400 10620 5850 6840 5850 6840 5400
4 1 0 49 -1 16 12 0.0000 4 180 2925 8730 5692 Equipos de Documentacion / i18n\001
-6
6 8415 7290 11295 8550
6 9135 7515 10575 8280
4 1 0 49 -1 16 12 0.0000 4 150 1305 9855 7695 Software en el \001
4 1 0 49 -1 16 12 0.0000 4 150 1305 9855 7965 Interes Publico\001
4 1 0 49 -1 16 12 0.0000 4 195 450 9855 8235 (SPI)\001
-6
2 4 0 1 0 7 50 -1 20 3.000 0 0 7 0 0 5
11295 8550 11295 7290 8415 7290 8415 8550 11295 8550
-6
1 4 0 1 0 7 50 -1 0 4.000 1 0.0000 5895 4320 64 64 5850 4275 5940 4365
2 1 1 1 0 7 48 -1 -1 4.000 0 0 -1 1 0 2
3 0 2.00 60.00 120.00
9540 5130 7560 5130
2 1 2 1 0 7 47 -1 -1 3.000 0 0 -1 0 0 2
4950 4905 4950 5310
2 4 0 1 0 7 51 -1 -1 3.000 0 0 7 0 0 5
10980 8010 10980 1530 990 1530 990 8010 10980 8010
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 4860 10620 4860 10620 5310 4005 5310 4005 4860
3 0 1 1 0 7 51 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
8910 1890 6750 1980 6570 2340
0.000 1.000 0.000
3 0 1 1 0 7 48 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
5173 5080 5803 4405
0.000 0.000
4 1 0 51 -1 16 12 0.0000 4 180 510 6840 1980 eligen\001
4 0 0 48 -1 16 12 0.0000 4 180 1920 5625 5175 Equipo NM / abogacia\001
4 0 0 48 -1 16 12 0.0000 4 180 900 9630 5175 aspirantes\001
4 0 0 48 -1 16 12 0.0000 4 180 615 8460 5085 aplican\001
4 0 0 50 -1 16 12 0.0000 4 180 690 5535 4185 aprueba\001
4 1 0 51 -1 18 14 0.3491 4 195 1320 7560 7470 Voluntarios\001
4 0 0 48 -1 16 12 0.0000 4 135 435 4230 5175 DAM\001
4 1 0 50 -1 18 12 0.0000 4 135 825 10530 1800 Usuarios\001

View File

@ -0,0 +1,128 @@
#FIG 3.2 Produced by xfig version 3.2.5-alpha5
Landscape
Center
Metric
A4
100.00
Single
-2
1200 2
6 8415 7290 11295 8550
6 9135 7560 10575 8370
4 1 0 49 -1 16 12 0.0000 4 150 1305 9855 7695 Software in the\001
4 1 0 49 -1 16 12 0.0000 4 150 1260 9855 7965 Public Interest\001
4 1 0 49 -1 16 12 0.0000 4 195 450 9855 8235 (SPI)\001
-6
2 4 0 1 0 7 50 -1 20 3.000 0 0 7 0 0 5
11295 8550 11295 7290 8415 7290 8415 8550 11295 8550
-6
1 4 0 1 0 7 50 -1 0 4.000 1 0.0000 5895 4320 64 64 5850 4275 5940 4365
2 4 0 1 0 7 51 -1 -1 3.000 0 0 7 0 0 5
10980 8010 10980 1530 990 1530 990 8010 10980 8010
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 4860 10620 4860 10620 5310 4005 5310 4005 4860
2 1 1 1 0 7 48 -1 -1 4.000 0 0 -1 1 0 2
3 0 2.00 60.00 120.00
9540 5130 7560 5130
2 1 2 1 0 7 47 -1 -1 3.000 0 0 -1 0 0 2
4950 4905 4950 5310
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5940 6615 5940 6615 6390 4005 6390 4005 5940
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 7020 6615 7020 6615 7470 4005 7470 4005 7020
2 4 0 1 0 7 52 -1 -1 4.000 0 0 7 0 0 5
10080 7830 10080 1710 1170 1710 1170 7830 10080 7830
2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
9900 3870 9900 2160 1350 2160 1350 3870 9900 3870
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
1800 3195 4050 3195 4050 3645 1800 3645 1800 3195
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
4500 2385 6750 2385 6750 2835 4500 2835 4500 2385
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
7200 3195 9450 3195 9450 3645 7200 3645 7200 3195
2 4 0 1 0 7 50 -1 -1 4.000 0 0 7 0 0 5
4950 7650 4950 4005 1350 4005 1350 7650 4950 7650
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4320 3780 4320 3780 4770 1530 4770 1530 4320
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 4860 3780 4860 3780 5310 1530 5310 1530 4860
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5400 3780 5400 3780 5850 1530 5850 1530 5400
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 5940 3780 5940 3780 6390 1530 6390 1530 5940
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 6480 3780 6480 3780 6930 1530 6930 1530 6480
2 2 0 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 5
1530 7020 3780 7020 3780 7470 1530 7470 1530 7020
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 6480 6615 6480 6615 6930 4005 6930 4005 6480
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
4005 5400 6615 5400 6615 5850 4005 5850 4005 5400
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5400 10620 5400 10620 5850 6840 5850 6840 5400
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 5940 10620 5940 10620 6390 6840 6390 6840 5940
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 6480 10620 6480 10620 6930 6840 6930 6840 6480
2 2 0 1 0 7 49 -1 20 3.000 0 0 -1 0 0 5
6840 4320 10620 4320 10620 4770 6840 4770 6840 4320
3 0 1 1 0 7 51 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
8910 1890 6750 1980 6570 2340
0.000 1.000 0.000
3 0 1 1 0 7 48 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
5173 5080 5803 4405
0.000 0.000
3 2 1 1 0 7 50 -1 -1 4.000 0 1 0 2
3 0 2.00 60.00 120.00
4950 2880 4500 3960
0.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
6750 2610 7650 2700 8100 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 3
3 0 2.00 60.00 120.00
4500 2610 3600 2700 3150 3150
0.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
9450 3420 9810 3330 9630 2790 8820 2700 8280 3150
0.000 1.000 1.000 1.000 0.000
3 0 1 1 0 7 50 -1 -1 4.000 0 1 0 5
3 0 2.00 60.00 120.00
1800 3420 1440 3330 1620 2790 2430 2700 2970 3150
0.000 1.000 1.000 1.000 0.000
4 0 0 48 -1 16 12 0.0000 4 150 435 4230 5175 DAM\001
4 1 0 50 -1 18 12 0.0000 4 150 540 10620 1800 Utenti\001
4 1 0 51 -1 16 12 0.0000 4 195 780 6840 1980 eleggono\001
4 0 0 50 -1 16 12 0.0000 4 150 900 5535 4185 approvano\001
4 0 0 48 -1 16 12 0.0000 4 195 825 8460 5085 applicano\001
4 1 0 51 -1 18 14 0.3491 4 180 1035 7560 7470 Volontari\001
4 1 0 50 -1 16 12 0.0000 4 195 1200 5625 2655 Project leader\001
4 1 0 50 -1 16 12 0.0000 4 150 1605 2655 5672 Team di sicurezza\001
4 1 0 50 -1 16 12 0.0000 4 150 1260 2655 6752 Amministratori\001
4 1 0 49 -1 16 12 0.0000 4 150 765 5310 6772 CD team\001
4 2 0 50 -1 18 12 0.0000 4 195 750 4860 4230 Delegati\001
4 2 0 50 -1 18 12 0.0000 4 195 1140 9990 1980 Sviluppatori\001
4 1 0 49 -1 16 12 0.0000 4 195 1785 8730 4612 Manutentori / porting\001
4 1 0 49 -1 16 12 0.0000 4 195 1440 8730 6232 Controllo qualita'\001
4 1 0 49 -1 17 12 0.0000 4 105 375 8730 6772 ecc.\001
4 1 0 50 -1 17 12 0.0000 4 105 375 2655 7292 ecc.\001
4 1 0 49 -1 17 12 0.0000 4 105 375 5310 7312 ecc.\001
4 1 0 50 -1 16 12 0.0000 4 195 2160 8325 3465 Segretariato del Progetto\001
4 1 0 50 -1 16 12 0.0000 4 150 1470 2925 3465 Comitato tecnico\001
4 1 0 50 -1 16 12 0.0000 4 195 1425 5490 3690 designa/approva\001
4 1 0 50 -1 16 12 0.0000 4 195 675 8190 2880 designa\001
4 0 0 48 -1 16 12 0.0000 4 195 735 9630 5175 aspiranti\001
4 1 0 50 -1 16 12 0.0000 4 150 1380 2655 4592 Team di rilascio\001
4 1 0 50 -1 16 12 0.0000 4 150 1695 2655 5132 Amministratori FTP\001
4 1 0 50 -1 16 12 0.0000 4 195 1290 2655 6212 Ufficio Stampa\001
4 1 0 49 -1 16 12 0.0000 4 195 540 5310 5692 Policy\001
4 2 0 50 -1 18 12 0.0000 4 150 750 9810 2430 Direttori\001
4 0 0 48 -1 16 12 0.0000 4 150 1935 5625 5175 Team NM / sostenitori\001
4 1 0 50 -1 16 12 0.0000 4 195 570 3060 2880 elegge\001
4 0 0 50 -1 0 12 0.0000 4 135 105 8190 5715 d\001
4 1 0 49 -1 16 12 0.0000 4 150 2790 8730 5692 Team di documentazione / i18n \001
4 1 0 49 -1 16 12 0.0000 4 150 2325 5310 6232 Amministratori web/liste/...\001

5577
js/reveal.js Normal file

File diff suppressed because it is too large Load Diff

9
js/reveal.min.js vendored Normal file

File diff suppressed because one or more lines are too long

80
lib/css/zenburn.css Normal file
View File

@ -0,0 +1,80 @@
/*
Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
based on dark.css by Ivan Sagalaev
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #3f3f3f;
color: #dcdcdc;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-tag {
color: #e3ceab;
}
.hljs-template-tag {
color: #dcdcdc;
}
.hljs-number {
color: #8cd0d3;
}
.hljs-variable,
.hljs-template-variable,
.hljs-attribute {
color: #efdcbc;
}
.hljs-literal {
color: #efefaf;
}
.hljs-subst {
color: #8f8f8f;
}
.hljs-title,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-section,
.hljs-type {
color: #efef8f;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link {
color: #dca3a3;
}
.hljs-deletion,
.hljs-string,
.hljs-built_in,
.hljs-builtin-name {
color: #cc9393;
}
.hljs-addition,
.hljs-comment,
.hljs-quote,
.hljs-meta {
color: #7f9f7f;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,2 @@
SIL Open Font License (OFL)
http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL

View File

@ -0,0 +1,10 @@
@font-face {
font-family: 'League Gothic';
src: url('league-gothic.eot');
src: url('league-gothic.eot?#iefix') format('embedded-opentype'),
url('league-gothic.woff') format('woff'),
url('league-gothic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,45 @@
SIL Open Font License
Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
—————————————————————————————-
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
—————————————————————————————-
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
DEFINITIONS
“Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
“Reserved Font Name” refers to any names specified as such after the copyright statement(s).
“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).
“Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,39 @@
@font-face {
font-family: 'Source Sans Pro';
src: url('source-sans-pro-regular.eot');
src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),
url('source-sans-pro-regular.woff') format('woff'),
url('source-sans-pro-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Source Sans Pro';
src: url('source-sans-pro-italic.eot');
src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),
url('source-sans-pro-italic.woff') format('woff'),
url('source-sans-pro-italic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Source Sans Pro';
src: url('source-sans-pro-semibold.eot');
src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),
url('source-sans-pro-semibold.woff') format('woff'),
url('source-sans-pro-semibold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Source Sans Pro';
src: url('source-sans-pro-semibolditalic.eot');
src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),
url('source-sans-pro-semibolditalic.woff') format('woff'),
url('source-sans-pro-semibolditalic.ttf') format('truetype');
font-weight: 600;
font-style: italic;
}

2
lib/js/classList.js Normal file
View File

@ -0,0 +1,2 @@
/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/
if(typeof document!=="undefined"&&!("classList" in document.createElement("a"))){(function(j){var a="classList",f="prototype",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\s+|\s+$/g,"")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===""){throw new n("SYNTAX_ERR","An invalid or illegal string was specified")}if(/\s/.test(o)){throw new n("INVALID_CHARACTER_ERR","String contains an invalid character")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+="";return g(this,o)!==-1};e.add=function(o){o+="";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+="";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+="";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(" ")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))};

6
lib/js/head.min.js vendored Normal file
View File

@ -0,0 +1,6 @@
/*! head.core - v1.0.2 */
(function(n,t){"use strict";function r(n){a[a.length]=n}function k(n){var t=new RegExp(" ?\\b"+n+"\\b");c.className=c.className.replace(t,"")}function p(n,t){for(var i=0,r=n.length;i<r;i++)t.call(n,n[i],i)}function tt(){var t,e,f,o;c.className=c.className.replace(/ (w-|eq-|gt-|gte-|lt-|lte-|portrait|no-portrait|landscape|no-landscape)\d+/g,"");t=n.innerWidth||c.clientWidth;e=n.outerWidth||n.screen.width;u.screen.innerWidth=t;u.screen.outerWidth=e;r("w-"+t);p(i.screens,function(n){t>n?(i.screensCss.gt&&r("gt-"+n),i.screensCss.gte&&r("gte-"+n)):t<n?(i.screensCss.lt&&r("lt-"+n),i.screensCss.lte&&r("lte-"+n)):t===n&&(i.screensCss.lte&&r("lte-"+n),i.screensCss.eq&&r("e-q"+n),i.screensCss.gte&&r("gte-"+n))});f=n.innerHeight||c.clientHeight;o=n.outerHeight||n.screen.height;u.screen.innerHeight=f;u.screen.outerHeight=o;u.feature("portrait",f>t);u.feature("landscape",f<t)}function it(){n.clearTimeout(b);b=n.setTimeout(tt,50)}var y=n.document,rt=n.navigator,ut=n.location,c=y.documentElement,a=[],i={screens:[240,320,480,640,768,800,1024,1280,1440,1680,1920],screensCss:{gt:!0,gte:!1,lt:!0,lte:!1,eq:!1},browsers:[{ie:{min:6,max:11}}],browserCss:{gt:!0,gte:!1,lt:!0,lte:!1,eq:!0},html5:!0,page:"-page",section:"-section",head:"head"},v,u,s,w,o,h,l,d,f,g,nt,e,b;if(n.head_conf)for(v in n.head_conf)n.head_conf[v]!==t&&(i[v]=n.head_conf[v]);u=n[i.head]=function(){u.ready.apply(null,arguments)};u.feature=function(n,t,i){return n?(Object.prototype.toString.call(t)==="[object Function]"&&(t=t.call()),r((t?"":"no-")+n),u[n]=!!t,i||(k("no-"+n),k(n),u.feature()),u):(c.className+=" "+a.join(" "),a=[],u)};u.feature("js",!0);s=rt.userAgent.toLowerCase();w=/mobile|android|kindle|silk|midp|phone|(windows .+arm|touch)/.test(s);u.feature("mobile",w,!0);u.feature("desktop",!w,!0);s=/(chrome|firefox)[ \/]([\w.]+)/.exec(s)||/(iphone|ipad|ipod)(?:.*version)?[ \/]([\w.]+)/.exec(s)||/(android)(?:.*version)?[ \/]([\w.]+)/.exec(s)||/(webkit|opera)(?:.*version)?[ \/]([\w.]+)/.exec(s)||/(msie) ([\w.]+)/.exec(s)||/(trident).+rv:(\w.)+/.exec(s)||[];o=s[1];h=parseFloat(s[2]);switch(o){case"msie":case"trident":o="ie";h=y.documentMode||h;break;case"firefox":o="ff";break;case"ipod":case"ipad":case"iphone":o="ios";break;case"webkit":o="safari"}for(u.browser={name:o,version:h},u.browser[o]=!0,l=0,d=i.browsers.length;l<d;l++)for(f in i.browsers[l])if(o===f)for(r(f),g=i.browsers[l][f].min,nt=i.browsers[l][f].max,e=g;e<=nt;e++)h>e?(i.browserCss.gt&&r("gt-"+f+e),i.browserCss.gte&&r("gte-"+f+e)):h<e?(i.browserCss.lt&&r("lt-"+f+e),i.browserCss.lte&&r("lte-"+f+e)):h===e&&(i.browserCss.lte&&r("lte-"+f+e),i.browserCss.eq&&r("eq-"+f+e),i.browserCss.gte&&r("gte-"+f+e));else r("no-"+f);r(o);r(o+parseInt(h,10));i.html5&&o==="ie"&&h<9&&p("abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|progress|section|summary|time|video".split("|"),function(n){y.createElement(n)});p(ut.pathname.split("/"),function(n,u){if(this.length>2&&this[u+1]!==t)u&&r(this.slice(u,u+1).join("-").toLowerCase()+i.section);else{var f=n||"index",e=f.indexOf(".");e>0&&(f=f.substring(0,e));c.id=f.toLowerCase()+i.page;u||r("root"+i.section)}});u.screen={height:n.screen.height,width:n.screen.width};tt();b=0;n.addEventListener?n.addEventListener("resize",it,!1):n.attachEvent("onresize",it)})(window);
/*! head.css3 - v1.0.0 */
(function(n,t){"use strict";function a(n){for(var r in n)if(i[n[r]]!==t)return!0;return!1}function r(n){var t=n.charAt(0).toUpperCase()+n.substr(1),i=(n+" "+c.join(t+" ")+t).split(" ");return!!a(i)}var h=n.document,o=h.createElement("i"),i=o.style,s=" -o- -moz- -ms- -webkit- -khtml- ".split(" "),c="Webkit Moz O ms Khtml".split(" "),l=n.head_conf&&n.head_conf.head||"head",u=n[l],f={gradient:function(){var n="background-image:";return i.cssText=(n+s.join("gradient(linear,left top,right bottom,from(#9f9),to(#fff));"+n)+s.join("linear-gradient(left top,#eee,#fff);"+n)).slice(0,-n.length),!!i.backgroundImage},rgba:function(){return i.cssText="background-color:rgba(0,0,0,0.5)",!!i.backgroundColor},opacity:function(){return o.style.opacity===""},textshadow:function(){return i.textShadow===""},multiplebgs:function(){i.cssText="background:url(https://),url(https://),red url(https://)";var n=(i.background||"").match(/url/g);return Object.prototype.toString.call(n)==="[object Array]"&&n.length===3},boxshadow:function(){return r("boxShadow")},borderimage:function(){return r("borderImage")},borderradius:function(){return r("borderRadius")},cssreflections:function(){return r("boxReflect")},csstransforms:function(){return r("transform")},csstransitions:function(){return r("transition")},touch:function(){return"ontouchstart"in n},retina:function(){return n.devicePixelRatio>1},fontface:function(){var t=u.browser.name,n=u.browser.version;switch(t){case"ie":return n>=9;case"chrome":return n>=13;case"ff":return n>=6;case"ios":return n>=5;case"android":return!1;case"webkit":return n>=5.1;case"opera":return n>=10;default:return!1}}};for(var e in f)f[e]&&u.feature(e,f[e].call(),!0);u.feature()})(window);
/*! head.load - v1.0.3 */
(function(n,t){"use strict";function w(){}function u(n,t){if(n){typeof n=="object"&&(n=[].slice.call(n));for(var i=0,r=n.length;i<r;i++)t.call(n,n[i],i)}}function it(n,i){var r=Object.prototype.toString.call(i).slice(8,-1);return i!==t&&i!==null&&r===n}function s(n){return it("Function",n)}function a(n){return it("Array",n)}function et(n){var i=n.split("/"),t=i[i.length-1],r=t.indexOf("?");return r!==-1?t.substring(0,r):t}function f(n){(n=n||w,n._done)||(n(),n._done=1)}function ot(n,t,r,u){var f=typeof n=="object"?n:{test:n,success:!t?!1:a(t)?t:[t],failure:!r?!1:a(r)?r:[r],callback:u||w},e=!!f.test;return e&&!!f.success?(f.success.push(f.callback),i.load.apply(null,f.success)):e||!f.failure?u():(f.failure.push(f.callback),i.load.apply(null,f.failure)),i}function v(n){var t={},i,r;if(typeof n=="object")for(i in n)!n[i]||(t={name:i,url:n[i]});else t={name:et(n),url:n};return(r=c[t.name],r&&r.url===t.url)?r:(c[t.name]=t,t)}function y(n){n=n||c;for(var t in n)if(n.hasOwnProperty(t)&&n[t].state!==l)return!1;return!0}function st(n){n.state=ft;u(n.onpreload,function(n){n.call()})}function ht(n){n.state===t&&(n.state=nt,n.onpreload=[],rt({url:n.url,type:"cache"},function(){st(n)}))}function ct(){var n=arguments,t=n[n.length-1],r=[].slice.call(n,1),f=r[0];return(s(t)||(t=null),a(n[0]))?(n[0].push(t),i.load.apply(null,n[0]),i):(f?(u(r,function(n){s(n)||!n||ht(v(n))}),b(v(n[0]),s(f)?f:function(){i.load.apply(null,r)})):b(v(n[0])),i)}function lt(){var n=arguments,t=n[n.length-1],r={};return(s(t)||(t=null),a(n[0]))?(n[0].push(t),i.load.apply(null,n[0]),i):(u(n,function(n){n!==t&&(n=v(n),r[n.name]=n)}),u(n,function(n){n!==t&&(n=v(n),b(n,function(){y(r)&&f(t)}))}),i)}function b(n,t){if(t=t||w,n.state===l){t();return}if(n.state===tt){i.ready(n.name,t);return}if(n.state===nt){n.onpreload.push(function(){b(n,t)});return}n.state=tt;rt(n,function(){n.state=l;t();u(h[n.name],function(n){f(n)});o&&y()&&u(h.ALL,function(n){f(n)})})}function at(n){n=n||"";var t=n.split("?")[0].split(".");return t[t.length-1].toLowerCase()}function rt(t,i){function e(t){t=t||n.event;u.onload=u.onreadystatechange=u.onerror=null;i()}function o(f){f=f||n.event;(f.type==="load"||/loaded|complete/.test(u.readyState)&&(!r.documentMode||r.documentMode<9))&&(n.clearTimeout(t.errorTimeout),n.clearTimeout(t.cssTimeout),u.onload=u.onreadystatechange=u.onerror=null,i())}function s(){if(t.state!==l&&t.cssRetries<=20){for(var i=0,f=r.styleSheets.length;i<f;i++)if(r.styleSheets[i].href===u.href){o({type:"load"});return}t.cssRetries++;t.cssTimeout=n.setTimeout(s,250)}}var u,h,f;i=i||w;h=at(t.url);h==="css"?(u=r.createElement("link"),u.type="text/"+(t.type||"css"),u.rel="stylesheet",u.href=t.url,t.cssRetries=0,t.cssTimeout=n.setTimeout(s,500)):(u=r.createElement("script"),u.type="text/"+(t.type||"javascript"),u.src=t.url);u.onload=u.onreadystatechange=o;u.onerror=e;u.async=!1;u.defer=!1;t.errorTimeout=n.setTimeout(function(){e({type:"timeout"})},7e3);f=r.head||r.getElementsByTagName("head")[0];f.insertBefore(u,f.lastChild)}function vt(){for(var t,u=r.getElementsByTagName("script"),n=0,f=u.length;n<f;n++)if(t=u[n].getAttribute("data-headjs-load"),!!t){i.load(t);return}}function yt(n,t){var v,p,e;return n===r?(o?f(t):d.push(t),i):(s(n)&&(t=n,n="ALL"),a(n))?(v={},u(n,function(n){v[n]=c[n];i.ready(n,function(){y(v)&&f(t)})}),i):typeof n!="string"||!s(t)?i:(p=c[n],p&&p.state===l||n==="ALL"&&y()&&o)?(f(t),i):(e=h[n],e?e.push(t):e=h[n]=[t],i)}function e(){if(!r.body){n.clearTimeout(i.readyTimeout);i.readyTimeout=n.setTimeout(e,50);return}o||(o=!0,vt(),u(d,function(n){f(n)}))}function k(){r.addEventListener?(r.removeEventListener("DOMContentLoaded",k,!1),e()):r.readyState==="complete"&&(r.detachEvent("onreadystatechange",k),e())}var r=n.document,d=[],h={},c={},ut="async"in r.createElement("script")||"MozAppearance"in r.documentElement.style||n.opera,o,g=n.head_conf&&n.head_conf.head||"head",i=n[g]=n[g]||function(){i.ready.apply(null,arguments)},nt=1,ft=2,tt=3,l=4,p;if(r.readyState==="complete")e();else if(r.addEventListener)r.addEventListener("DOMContentLoaded",k,!1),n.addEventListener("load",e,!1);else{r.attachEvent("onreadystatechange",k);n.attachEvent("onload",e);p=!1;try{p=!n.frameElement&&r.documentElement}catch(wt){}p&&p.doScroll&&function pt(){if(!o){try{p.doScroll("left")}catch(t){n.clearTimeout(i.readyTimeout);i.readyTimeout=n.setTimeout(pt,50);return}e()}}()}i.load=i.js=ut?lt:ct;i.test=ot;i.ready=yt;i.ready(r,function(){y()&&u(h.ALL,function(n){f(n)});i.feature&&i.feature("domloaded",!0)})})(window);

7
lib/js/html5shiv.js vendored Normal file
View File

@ -0,0 +1,7 @@
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
document.createElement('hgroup');

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,136 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>reveal.js - Markdown Demo</title>
<link rel="stylesheet" href="../../css/reveal.css">
<link rel="stylesheet" href="../../css/theme/white.css" id="theme">
<link rel="stylesheet" href="../../lib/css/zenburn.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->
<section data-markdown="example.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"></section>
<!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->
<section data-markdown data-separator="---">
<script type="text/template">
## Demo 1
Slide 1
---
## Demo 1
Slide 2
---
## Demo 1
Slide 3
</script>
</section>
<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->
<section data-markdown data-separator="^\n---\n$" data-separator-vertical="^\n--\n$">
<script type="text/template">
## Demo 2
Slide 1.1
--
## Demo 2
Slide 1.2
---
## Demo 2
Slide 2
</script>
</section>
<!-- No "extra" slides, since there are no separators defined (so they'll become horizontal rulers) -->
<section data-markdown>
<script type="text/template">
A
---
B
---
C
</script>
</section>
<!-- Slide attributes -->
<section data-markdown>
<script type="text/template">
<!-- .slide: data-background="#000000" -->
## Slide attributes
</script>
</section>
<!-- Element attributes -->
<section data-markdown>
<script type="text/template">
## Element attributes
- Item 1 <!-- .element: class="fragment" data-fragment-index="2" -->
- Item 2 <!-- .element: class="fragment" data-fragment-index="1" -->
</script>
</section>
<!-- Code -->
<section data-markdown>
<script type="text/template">
```php
public function foo()
{
$foo = array(
'bar' => 'bar'
)
}
```
</script>
</section>
<!-- Images -->
<section data-markdown>
<script type="text/template">
![Sample image](https://s3.amazonaws.com/static.slid.es/logo/v2/slides-symbol-512x512.png)
</script>
</section>
</div>
</div>
<script src="../../lib/js/head.min.js"></script>
<script src="../../js/reveal.js"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: '../notes/notes.js' }
]
});
</script>
</body>
</html>

View File

@ -0,0 +1,36 @@
# Markdown Demo
## External 1.1
Content 1.1
Note: This will only appear in the speaker notes window.
## External 1.2
Content 1.2
## External 2
Content 2.1
## External 3.1
Content 3.1
## External 3.2
Content 3.2
## External 3.3
![External Image](https://s3.amazonaws.com/static.slid.es/logo/v2/slides-symbol-512x512.png)

412
plugin/markdown/markdown.js Executable file
View File

@ -0,0 +1,412 @@
/**
* The reveal.js markdown plugin. Handles parsing of
* markdown inside of presentations as well as loading
* of external markdown documents.
*/
(function( root, factory ) {
if (typeof define === 'function' && define.amd) {
root.marked = require( './marked' );
root.RevealMarkdown = factory( root.marked );
root.RevealMarkdown.initialize();
} else if( typeof exports === 'object' ) {
module.exports = factory( require( './marked' ) );
} else {
// Browser globals (root is window)
root.RevealMarkdown = factory( root.marked );
root.RevealMarkdown.initialize();
}
}( this, function( marked ) {
var DEFAULT_SLIDE_SEPARATOR = '^\r?\n---\r?\n$',
DEFAULT_NOTES_SEPARATOR = 'notes?:',
DEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '\\\.element\\\s*?(.+?)$',
DEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '\\\.slide:\\\s*?(\\\S.+?)$';
var SCRIPT_END_PLACEHOLDER = '__SCRIPT_END__';
/**
* Retrieves the markdown contents of a slide section
* element. Normalizes leading tabs/whitespace.
*/
function getMarkdownFromSlide( section ) {
// look for a <script> or <textarea data-template> wrapper
var template = section.querySelector( '[data-template]' ) || section.querySelector( 'script' );
// strip leading whitespace so it isn't evaluated as code
var text = ( template || section ).textContent;
// restore script end tags
text = text.replace( new RegExp( SCRIPT_END_PLACEHOLDER, 'g' ), '</script>' );
var leadingWs = text.match( /^\n?(\s*)/ )[1].length,
leadingTabs = text.match( /^\n?(\t*)/ )[1].length;
if( leadingTabs > 0 ) {
text = text.replace( new RegExp('\\n?\\t{' + leadingTabs + '}','g'), '\n' );
}
else if( leadingWs > 1 ) {
text = text.replace( new RegExp('\\n? {' + leadingWs + '}', 'g'), '\n' );
}
return text;
}
/**
* Given a markdown slide section element, this will
* return all arguments that aren't related to markdown
* parsing. Used to forward any other user-defined arguments
* to the output markdown slide.
*/
function getForwardedAttributes( section ) {
var attributes = section.attributes;
var result = [];
for( var i = 0, len = attributes.length; i < len; i++ ) {
var name = attributes[i].name,
value = attributes[i].value;
// disregard attributes that are used for markdown loading/parsing
if( /data\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;
if( value ) {
result.push( name + '="' + value + '"' );
}
else {
result.push( name );
}
}
return result.join( ' ' );
}
/**
* Inspects the given options and fills out default
* values for what's not defined.
*/
function getSlidifyOptions( options ) {
options = options || {};
options.separator = options.separator || DEFAULT_SLIDE_SEPARATOR;
options.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR;
options.attributes = options.attributes || '';
return options;
}
/**
* Helper function for constructing a markdown slide.
*/
function createMarkdownSlide( content, options ) {
options = getSlidifyOptions( options );
var notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) );
if( notesMatch.length === 2 ) {
content = notesMatch[0] + '<aside class="notes">' + marked(notesMatch[1].trim()) + '</aside>';
}
// prevent script end tags in the content from interfering
// with parsing
content = content.replace( /<\/script>/g, SCRIPT_END_PLACEHOLDER );
return '<script type="text/template">' + content + '</script>';
}
/**
* Parses a data string into multiple slides based
* on the passed in separator arguments.
*/
function slidify( markdown, options ) {
options = getSlidifyOptions( options );
var separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),
horizontalSeparatorRegex = new RegExp( options.separator );
var matches,
lastIndex = 0,
isHorizontal,
wasHorizontal = true,
content,
sectionStack = [];
// iterate until all blocks between separators are stacked up
while( matches = separatorRegex.exec( markdown ) ) {
notes = null;
// determine direction (horizontal by default)
isHorizontal = horizontalSeparatorRegex.test( matches[0] );
if( !isHorizontal && wasHorizontal ) {
// create vertical stack
sectionStack.push( [] );
}
// pluck slide content from markdown input
content = markdown.substring( lastIndex, matches.index );
if( isHorizontal && wasHorizontal ) {
// add to horizontal stack
sectionStack.push( content );
}
else {
// add to vertical stack
sectionStack[sectionStack.length-1].push( content );
}
lastIndex = separatorRegex.lastIndex;
wasHorizontal = isHorizontal;
}
// add the remaining slide
( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) );
var markdownSections = '';
// flatten the hierarchical stack, and insert <section data-markdown> tags
for( var i = 0, len = sectionStack.length; i < len; i++ ) {
// vertical
if( sectionStack[i] instanceof Array ) {
markdownSections += '<section '+ options.attributes +'>';
sectionStack[i].forEach( function( child ) {
markdownSections += '<section data-markdown>' + createMarkdownSlide( child, options ) + '</section>';
} );
markdownSections += '</section>';
}
else {
markdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>';
}
}
return markdownSections;
}
/**
* Parses any current data-markdown slides, splits
* multi-slide markdown into separate sections and
* handles loading of external markdown.
*/
function processSlides() {
var sections = document.querySelectorAll( '[data-markdown]'),
section;
for( var i = 0, len = sections.length; i < len; i++ ) {
section = sections[i];
if( section.getAttribute( 'data-markdown' ).length ) {
var xhr = new XMLHttpRequest(),
url = section.getAttribute( 'data-markdown' );
datacharset = section.getAttribute( 'data-charset' );
// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes
if( datacharset != null && datacharset != '' ) {
xhr.overrideMimeType( 'text/html; charset=' + datacharset );
}
xhr.onreadystatechange = function() {
if( xhr.readyState === 4 ) {
// file protocol yields status code 0 (useful for local debug, mobile applications etc.)
if ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {
section.outerHTML = slidify( xhr.responseText, {
separator: section.getAttribute( 'data-separator' ),
verticalSeparator: section.getAttribute( 'data-separator-vertical' ),
notesSeparator: section.getAttribute( 'data-separator-notes' ),
attributes: getForwardedAttributes( section )
});
}
else {
section.outerHTML = '<section data-state="alert">' +
'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +
'Check your browser\'s JavaScript console for more details.' +
'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +
'</section>';
}
}
};
xhr.open( 'GET', url, false );
try {
xhr.send();
}
catch ( e ) {
alert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );
}
}
else if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-separator-vertical' ) || section.getAttribute( 'data-separator-notes' ) ) {
section.outerHTML = slidify( getMarkdownFromSlide( section ), {
separator: section.getAttribute( 'data-separator' ),
verticalSeparator: section.getAttribute( 'data-separator-vertical' ),
notesSeparator: section.getAttribute( 'data-separator-notes' ),
attributes: getForwardedAttributes( section )
});
}
else {
section.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) );
}
}
}
/**
* Check if a node value has the attributes pattern.
* If yes, extract it and add that value as one or several attributes
* the the terget element.
*
* You need Cache Killer on Chrome to see the effect on any FOM transformation
* directly on refresh (F5)
* http://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277
*/
function addAttributeInElement( node, elementTarget, separator ) {
var mardownClassesInElementsRegex = new RegExp( separator, 'mg' );
var mardownClassRegex = new RegExp( "([^\"= ]+?)=\"([^\"=]+?)\"", 'mg' );
var nodeValue = node.nodeValue;
if( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {
var classes = matches[1];
nodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );
node.nodeValue = nodeValue;
while( matchesClass = mardownClassRegex.exec( classes ) ) {
elementTarget.setAttribute( matchesClass[1], matchesClass[2] );
}
return true;
}
return false;
}
/**
* Add attributes to the parent element of a text node,
* or the element of an attribute node.
*/
function addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {
if ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {
previousParentElement = element;
for( var i = 0; i < element.childNodes.length; i++ ) {
childElement = element.childNodes[i];
if ( i > 0 ) {
j = i - 1;
while ( j >= 0 ) {
aPreviousChildElement = element.childNodes[j];
if ( typeof aPreviousChildElement.setAttribute == 'function' && aPreviousChildElement.tagName != "BR" ) {
previousParentElement = aPreviousChildElement;
break;
}
j = j - 1;
}
}
parentSection = section;
if( childElement.nodeName == "section" ) {
parentSection = childElement ;
previousParentElement = childElement ;
}
if ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {
addAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );
}
}
}
if ( element.nodeType == Node.COMMENT_NODE ) {
if ( addAttributeInElement( element, previousElement, separatorElementAttributes ) == false ) {
addAttributeInElement( element, section, separatorSectionAttributes );
}
}
}
/**
* Converts any current data-markdown slides in the
* DOM to HTML.
*/
function convertSlides() {
var sections = document.querySelectorAll( '[data-markdown]');
for( var i = 0, len = sections.length; i < len; i++ ) {
var section = sections[i];
// Only parse the same slide once
if( !section.getAttribute( 'data-markdown-parsed' ) ) {
section.setAttribute( 'data-markdown-parsed', true )
var notes = section.querySelector( 'aside.notes' );
var markdown = getMarkdownFromSlide( section );
section.innerHTML = marked( markdown );
addAttributes( section, section, null, section.getAttribute( 'data-element-attributes' ) ||
section.parentNode.getAttribute( 'data-element-attributes' ) ||
DEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR,
section.getAttribute( 'data-attributes' ) ||
section.parentNode.getAttribute( 'data-attributes' ) ||
DEFAULT_SLIDE_ATTRIBUTES_SEPARATOR);
// If there were notes, we need to re-add them after
// having overwritten the section's HTML
if( notes ) {
section.appendChild( notes );
}
}
}
}
// API
return {
initialize: function() {
if( typeof marked === 'undefined' ) {
throw 'The reveal.js Markdown plugin requires marked to be loaded';
}
if( typeof hljs !== 'undefined' ) {
marked.setOptions({
highlight: function( code, lang ) {
return hljs.highlightAuto( code, [lang] ).value;
}
});
}
var options = Reveal.getConfig().markdown;
if ( options ) {
marked.setOptions( options );
}
processSlides();
convertSlides();
},
// TODO: Do these belong in the API?
processSlides: processSlides,
convertSlides: convertSlides,
slidify: slidify
};
}));

File diff suppressed because one or more lines are too long

67
plugin/math/math.js Executable file
View File

@ -0,0 +1,67 @@
/**
* A plugin which enables rendering of math equations inside
* of reveal.js slides. Essentially a thin wrapper for MathJax.
*
* @author Hakim El Hattab
*/
var RevealMath = window.RevealMath || (function(){
var options = Reveal.getConfig().math || {};
options.mathjax = options.mathjax || 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js';
options.config = options.config || 'TeX-AMS_HTML-full';
options.tex2jax = options.tex2jax || {
inlineMath: [['$','$'],['\\(','\\)']] ,
skipTags: ['script','noscript','style','textarea','pre'] };
loadScript( options.mathjax + '?config=' + options.config, function() {
MathJax.Hub.Config({
messageStyle: 'none',
tex2jax: options.tex2jax,
skipStartupTypeset: true
});
// Typeset followed by an immediate reveal.js layout since
// the typesetting process could affect slide height
MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );
MathJax.Hub.Queue( Reveal.layout );
// Reprocess equations in slides when they turn visible
Reveal.addEventListener( 'slidechanged', function( event ) {
MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );
} );
} );
function loadScript( url, callback ) {
var head = document.querySelector( 'head' );
var script = document.createElement( 'script' );
script.type = 'text/javascript';
script.src = url;
// Wrapper for callback to make sure it only fires once
var finish = function() {
if( typeof callback === 'function' ) {
callback.call();
callback = null;
}
}
script.onload = finish;
// IE
script.onreadystatechange = function() {
if ( this.readyState === 'loaded' ) {
finish();
}
}
// Normal browsers
head.appendChild( script );
}
})();

View File

@ -0,0 +1,13 @@
(function() {
var multiplex = Reveal.getConfig().multiplex;
var socketId = multiplex.id;
var socket = io.connect(multiplex.url);
socket.on(multiplex.id, function(data) {
// ignore data from sockets that aren't ours
if (data.socketId !== socketId) { return; }
if( window.location.host === 'localhost:1947' ) return;
Reveal.setState(data.state);
});
}());

64
plugin/multiplex/index.js Normal file
View File

@ -0,0 +1,64 @@
var http = require('http');
var express = require('express');
var fs = require('fs');
var io = require('socket.io');
var crypto = require('crypto');
var app = express();
var staticDir = express.static;
var server = http.createServer(app);
io = io(server);
var opts = {
port: process.env.PORT || 1948,
baseDir : __dirname + '/../../'
};
io.on( 'connection', function( socket ) {
socket.on('multiplex-statechanged', function(data) {
if (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;
if (createHash(data.secret) === data.socketId) {
data.secret = null;
socket.broadcast.emit(data.socketId, data);
};
});
});
[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {
app.use('/' + dir, staticDir(opts.baseDir + dir));
});
app.get("/", function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
var stream = fs.createReadStream(opts.baseDir + '/index.html');
stream.on('error', function( error ) {
res.write('<style>body{font-family: sans-serif;}</style><h2>reveal.js multiplex server.</h2><a href="/token">Generate token</a>');
res.end();
});
stream.on('readable', function() {
stream.pipe(res);
});
});
app.get("/token", function(req,res) {
var ts = new Date().getTime();
var rand = Math.floor(Math.random()*9999999);
var secret = ts.toString() + rand.toString();
res.send({secret: secret, socketId: createHash(secret)});
});
var createHash = function(secret) {
var cipher = crypto.createCipher('blowfish', secret);
return(cipher.final('hex'));
};
// Actually listen
server.listen( opts.port || null );
var brown = '\033[33m',
green = '\033[32m',
reset = '\033[0m';
console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + reset );

View File

@ -0,0 +1,34 @@
(function() {
// Don't emit events from inside of notes windows
if ( window.location.search.match( /receiver/gi ) ) { return; }
var multiplex = Reveal.getConfig().multiplex;
var socket = io.connect( multiplex.url );
function post() {
var messageData = {
state: Reveal.getState(),
secret: multiplex.secret,
socketId: multiplex.id
};
socket.emit( 'multiplex-statechanged', messageData );
};
// post once the page is loaded, so the client follows also on "open URL".
window.addEventListener( 'load', post );
// Monitor events that trigger a change in state
Reveal.addEventListener( 'slidechanged', post );
Reveal.addEventListener( 'fragmentshown', post );
Reveal.addEventListener( 'fragmenthidden', post );
Reveal.addEventListener( 'overviewhidden', post );
Reveal.addEventListener( 'overviewshown', post );
Reveal.addEventListener( 'paused', post );
Reveal.addEventListener( 'resumed', post );
}());

View File

@ -0,0 +1,19 @@
{
"name": "reveal-js-multiplex",
"version": "1.0.0",
"description": "reveal.js multiplex server",
"homepage": "http://revealjs.com",
"scripts": {
"start": "node index.js"
},
"engines": {
"node": "~4.1.1"
},
"dependencies": {
"express": "~4.13.3",
"grunt-cli": "~0.1.13",
"mustache": "~2.2.1",
"socket.io": "~1.3.7"
},
"license": "MIT"
}

View File

@ -0,0 +1,65 @@
(function() {
// don't emit events from inside the previews themselves
if( window.location.search.match( /receiver/gi ) ) { return; }
var socket = io.connect( window.location.origin ),
socketId = Math.random().toString().slice( 2 );
console.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );
window.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );
/**
* Posts the current slide data to the notes window
*/
function post() {
var slideElement = Reveal.getCurrentSlide(),
notesElement = slideElement.querySelector( 'aside.notes' );
var messageData = {
notes: '',
markdown: false,
socketId: socketId,
state: Reveal.getState()
};
// Look for notes defined in a slide attribute
if( slideElement.hasAttribute( 'data-notes' ) ) {
messageData.notes = slideElement.getAttribute( 'data-notes' );
}
// Look for notes defined in an aside element
if( notesElement ) {
messageData.notes = notesElement.innerHTML;
messageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';
}
socket.emit( 'statechanged', messageData );
}
// When a new notes window connects, post our current state
socket.on( 'new-subscriber', function( data ) {
post();
} );
// When the state changes from inside of the speaker view
socket.on( 'statechanged-speaker', function( data ) {
Reveal.setState( data.state );
} );
// Monitor events that trigger a change in state
Reveal.addEventListener( 'slidechanged', post );
Reveal.addEventListener( 'fragmentshown', post );
Reveal.addEventListener( 'fragmenthidden', post );
Reveal.addEventListener( 'overviewhidden', post );
Reveal.addEventListener( 'overviewshown', post );
Reveal.addEventListener( 'paused', post );
Reveal.addEventListener( 'resumed', post );
// Post the initial state
post();
}());

View File

@ -0,0 +1,69 @@
var http = require('http');
var express = require('express');
var fs = require('fs');
var io = require('socket.io');
var Mustache = require('mustache');
var app = express();
var staticDir = express.static;
var server = http.createServer(app);
io = io(server);
var opts = {
port : 1947,
baseDir : __dirname + '/../../'
};
io.on( 'connection', function( socket ) {
socket.on( 'new-subscriber', function( data ) {
socket.broadcast.emit( 'new-subscriber', data );
});
socket.on( 'statechanged', function( data ) {
delete data.state.overview;
socket.broadcast.emit( 'statechanged', data );
});
socket.on( 'statechanged-speaker', function( data ) {
delete data.state.overview;
socket.broadcast.emit( 'statechanged-speaker', data );
});
});
[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {
app.use( '/' + dir, staticDir( opts.baseDir + dir ) );
});
app.get('/', function( req, res ) {
res.writeHead( 200, { 'Content-Type': 'text/html' } );
fs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );
});
app.get( '/notes/:socketId', function( req, res ) {
fs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {
res.send( Mustache.to_html( data.toString(), {
socketId : req.params.socketId
}));
});
});
// Actually listen
server.listen( opts.port || null );
var brown = '\033[33m',
green = '\033[32m',
reset = '\033[0m';
var slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );
console.log( brown + 'reveal.js - Speaker Notes' + reset );
console.log( '1. Open the slides at ' + green + slidesLocation + reset );
console.log( '2. Click on the link in your JS console to go to the notes page' );
console.log( '3. Advance through your slides and your notes will advance automatically' );

View File

@ -0,0 +1,585 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>reveal.js - Slide Notes</title>
<style>
body {
font-family: Helvetica;
font-size: 18px;
}
#current-slide,
#upcoming-slide,
#speaker-controls {
padding: 6px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
#current-slide iframe,
#upcoming-slide iframe {
width: 100%;
height: 100%;
border: 1px solid #ddd;
}
#current-slide .label,
#upcoming-slide .label {
position: absolute;
top: 10px;
left: 10px;
z-index: 2;
}
.overlay-element {
height: 34px;
line-height: 34px;
padding: 0 10px;
text-shadow: none;
background: rgba( 220, 220, 220, 0.8 );
color: #222;
font-size: 14px;
}
.overlay-element.interactive:hover {
background: rgba( 220, 220, 220, 1 );
}
#current-slide {
position: absolute;
width: 60%;
height: 100%;
top: 0;
left: 0;
padding-right: 0;
}
#upcoming-slide {
position: absolute;
width: 40%;
height: 40%;
right: 0;
top: 0;
}
/* Speaker controls */
#speaker-controls {
position: absolute;
top: 40%;
right: 0;
width: 40%;
height: 60%;
overflow: auto;
font-size: 18px;
}
.speaker-controls-time.hidden,
.speaker-controls-notes.hidden {
display: none;
}
.speaker-controls-time .label,
.speaker-controls-notes .label {
text-transform: uppercase;
font-weight: normal;
font-size: 0.66em;
color: #666;
margin: 0;
}
.speaker-controls-time {
border-bottom: 1px solid rgba( 200, 200, 200, 0.5 );
margin-bottom: 10px;
padding: 10px 16px;
padding-bottom: 20px;
cursor: pointer;
}
.speaker-controls-time .reset-button {
opacity: 0;
float: right;
color: #666;
text-decoration: none;
}
.speaker-controls-time:hover .reset-button {
opacity: 1;
}
.speaker-controls-time .timer,
.speaker-controls-time .clock {
width: 50%;
font-size: 1.9em;
}
.speaker-controls-time .timer {
float: left;
}
.speaker-controls-time .clock {
float: right;
text-align: right;
}
.speaker-controls-time span.mute {
color: #bbb;
}
.speaker-controls-notes {
padding: 10px 16px;
}
.speaker-controls-notes .value {
margin-top: 5px;
line-height: 1.4;
font-size: 1.2em;
}
/* Layout selector */
#speaker-layout {
position: absolute;
top: 10px;
right: 10px;
color: #222;
z-index: 10;
}
#speaker-layout select {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 0;
box-shadow: 0;
cursor: pointer;
opacity: 0;
font-size: 1em;
background-color: transparent;
-moz-appearance: none;
-webkit-appearance: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#speaker-layout select:focus {
outline: none;
box-shadow: none;
}
.clear {
clear: both;
}
/* Speaker layout: Wide */
body[data-speaker-layout="wide"] #current-slide,
body[data-speaker-layout="wide"] #upcoming-slide {
width: 50%;
height: 45%;
padding: 6px;
}
body[data-speaker-layout="wide"] #current-slide {
top: 0;
left: 0;
}
body[data-speaker-layout="wide"] #upcoming-slide {
top: 0;
left: 50%;
}
body[data-speaker-layout="wide"] #speaker-controls {
top: 45%;
left: 0;
width: 100%;
height: 50%;
font-size: 1.25em;
}
/* Speaker layout: Tall */
body[data-speaker-layout="tall"] #current-slide,
body[data-speaker-layout="tall"] #upcoming-slide {
width: 45%;
height: 50%;
padding: 6px;
}
body[data-speaker-layout="tall"] #current-slide {
top: 0;
left: 0;
}
body[data-speaker-layout="tall"] #upcoming-slide {
top: 50%;
left: 0;
}
body[data-speaker-layout="tall"] #speaker-controls {
padding-top: 40px;
top: 0;
left: 45%;
width: 55%;
height: 100%;
font-size: 1.25em;
}
/* Speaker layout: Notes only */
body[data-speaker-layout="notes-only"] #current-slide,
body[data-speaker-layout="notes-only"] #upcoming-slide {
display: none;
}
body[data-speaker-layout="notes-only"] #speaker-controls {
padding-top: 40px;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 1.25em;
}
</style>
</head>
<body>
<div id="current-slide"></div>
<div id="upcoming-slide"><span class="overlay-element label">Upcoming</span></div>
<div id="speaker-controls">
<div class="speaker-controls-time">
<h4 class="label">Time <span class="reset-button">Click to Reset</span></h4>
<div class="clock">
<span class="clock-value">0:00 AM</span>
</div>
<div class="timer">
<span class="hours-value">00</span><span class="minutes-value">:00</span><span class="seconds-value">:00</span>
</div>
<div class="clear"></div>
</div>
<div class="speaker-controls-notes hidden">
<h4 class="label">Notes</h4>
<div class="value"></div>
</div>
</div>
<div id="speaker-layout" class="overlay-element interactive">
<span class="speaker-layout-label"></span>
<select class="speaker-layout-dropdown"></select>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="/plugin/markdown/marked.js"></script>
<script>
(function() {
var notes,
notesValue,
currentState,
currentSlide,
upcomingSlide,
layoutLabel,
layoutDropdown,
connected = false;
var socket = io.connect( window.location.origin ),
socketId = '{{socketId}}';
var SPEAKER_LAYOUTS = {
'default': 'Default',
'wide': 'Wide',
'tall': 'Tall',
'notes-only': 'Notes only'
};
socket.on( 'statechanged', function( data ) {
// ignore data from sockets that aren't ours
if( data.socketId !== socketId ) { return; }
if( connected === false ) {
connected = true;
setupKeyboard();
setupNotes();
setupTimer();
}
handleStateMessage( data );
} );
setupLayout();
// Load our presentation iframes
setupIframes();
// Once the iframes have loaded, emit a signal saying there's
// a new subscriber which will trigger a 'statechanged'
// message to be sent back
window.addEventListener( 'message', function( event ) {
var data = JSON.parse( event.data );
if( data && data.namespace === 'reveal' ) {
if( /ready/.test( data.eventName ) ) {
socket.emit( 'new-subscriber', { socketId: socketId } );
}
}
// Messages sent by reveal.js inside of the current slide preview
if( data && data.namespace === 'reveal' ) {
if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {
socket.emit( 'statechanged-speaker', { state: data.state } );
}
}
} );
/**
* Called when the main window sends an updated state.
*/
function handleStateMessage( data ) {
// Store the most recently set state to avoid circular loops
// applying the same state
currentState = JSON.stringify( data.state );
// No need for updating the notes in case of fragment changes
if ( data.notes ) {
notes.classList.remove( 'hidden' );
if( data.markdown ) {
notesValue.innerHTML = marked( data.notes );
}
else {
notesValue.innerHTML = data.notes;
}
}
else {
notes.classList.add( 'hidden' );
}
// Update the note slides
currentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );
upcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );
upcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );
}
// Limit to max one state update per X ms
handleStateMessage = debounce( handleStateMessage, 200 );
/**
* Forward keyboard events to the current slide window.
* This enables keyboard events to work even if focus
* isn't set on the current slide iframe.
*/
function setupKeyboard() {
document.addEventListener( 'keydown', function( event ) {
currentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );
} );
}
/**
* Creates the preview iframes.
*/
function setupIframes() {
var params = [
'receiver',
'progress=false',
'history=false',
'transition=none',
'backgroundTransition=none'
].join( '&' );
var currentURL = '/?' + params + '&postMessageEvents=true';
var upcomingURL = '/?' + params + '&controls=false';
currentSlide = document.createElement( 'iframe' );
currentSlide.setAttribute( 'width', 1280 );
currentSlide.setAttribute( 'height', 1024 );
currentSlide.setAttribute( 'src', currentURL );
document.querySelector( '#current-slide' ).appendChild( currentSlide );
upcomingSlide = document.createElement( 'iframe' );
upcomingSlide.setAttribute( 'width', 640 );
upcomingSlide.setAttribute( 'height', 512 );
upcomingSlide.setAttribute( 'src', upcomingURL );
document.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );
}
/**
* Setup the notes UI.
*/
function setupNotes() {
notes = document.querySelector( '.speaker-controls-notes' );
notesValue = document.querySelector( '.speaker-controls-notes .value' );
}
/**
* Create the timer and clock and start updating them
* at an interval.
*/
function setupTimer() {
var start = new Date(),
timeEl = document.querySelector( '.speaker-controls-time' ),
clockEl = timeEl.querySelector( '.clock-value' ),
hoursEl = timeEl.querySelector( '.hours-value' ),
minutesEl = timeEl.querySelector( '.minutes-value' ),
secondsEl = timeEl.querySelector( '.seconds-value' );
function _updateTimer() {
var diff, hours, minutes, seconds,
now = new Date();
diff = now.getTime() - start.getTime();
hours = Math.floor( diff / ( 1000 * 60 * 60 ) );
minutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );
seconds = Math.floor( ( diff / 1000 ) % 60 );
clockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );
hoursEl.innerHTML = zeroPadInteger( hours );
hoursEl.className = hours > 0 ? '' : 'mute';
minutesEl.innerHTML = ':' + zeroPadInteger( minutes );
minutesEl.className = minutes > 0 ? '' : 'mute';
secondsEl.innerHTML = ':' + zeroPadInteger( seconds );
}
// Update once directly
_updateTimer();
// Then update every second
setInterval( _updateTimer, 1000 );
timeEl.addEventListener( 'click', function() {
start = new Date();
_updateTimer();
return false;
} );
}
/**
* Sets up the speaker view layout and layout selector.
*/
function setupLayout() {
layoutDropdown = document.querySelector( '.speaker-layout-dropdown' );
layoutLabel = document.querySelector( '.speaker-layout-label' );
// Render the list of available layouts
for( var id in SPEAKER_LAYOUTS ) {
var option = document.createElement( 'option' );
option.setAttribute( 'value', id );
option.textContent = SPEAKER_LAYOUTS[ id ];
layoutDropdown.appendChild( option );
}
// Monitor the dropdown for changes
layoutDropdown.addEventListener( 'change', function( event ) {
setLayout( layoutDropdown.value );
}, false );
// Restore any currently persisted layout
setLayout( getLayout() );
}
/**
* Sets a new speaker view layout. The layout is persisted
* in local storage.
*/
function setLayout( value ) {
var title = SPEAKER_LAYOUTS[ value ];
layoutLabel.innerHTML = 'Layout' + ( title ? ( ': ' + title ) : '' );
layoutDropdown.value = value;
document.body.setAttribute( 'data-speaker-layout', value );
// Persist locally
if( window.localStorage ) {
window.localStorage.setItem( 'reveal-speaker-layout', value );
}
}
/**
* Returns the ID of the most recently set speaker layout
* or our default layout if none has been set.
*/
function getLayout() {
if( window.localStorage ) {
var layout = window.localStorage.getItem( 'reveal-speaker-layout' );
if( layout ) {
return layout;
}
}
// Default to the first record in the layouts hash
for( var id in SPEAKER_LAYOUTS ) {
return id;
}
}
function zeroPadInteger( num ) {
var str = '00' + parseInt( num );
return str.substring( str.length - 2 );
}
/**
* Limits the frequency at which a function can be called.
*/
function debounce( fn, ms ) {
var lastTime = 0,
timeout;
return function() {
var args = arguments;
var context = this;
clearTimeout( timeout );
var timeSinceLastCall = Date.now() - lastTime;
if( timeSinceLastCall > ms ) {
fn.apply( context, args );
lastTime = Date.now();
}
else {
timeout = setTimeout( function() {
fn.apply( context, args );
lastTime = Date.now();
}, ms - timeSinceLastCall );
}
}
}
})();
</script>
</body>
</html>

792
plugin/notes/notes.html Normal file
View File

@ -0,0 +1,792 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>reveal.js - Slide Notes</title>
<style>
body {
font-family: Helvetica;
font-size: 18px;
}
#current-slide,
#upcoming-slide,
#speaker-controls {
padding: 6px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
#current-slide iframe,
#upcoming-slide iframe {
width: 100%;
height: 100%;
border: 1px solid #ddd;
}
#current-slide .label,
#upcoming-slide .label {
position: absolute;
top: 10px;
left: 10px;
z-index: 2;
}
#connection-status {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 20;
padding: 30% 20% 20% 20%;
font-size: 18px;
color: #222;
background: #fff;
text-align: center;
box-sizing: border-box;
line-height: 1.4;
}
.overlay-element {
height: 34px;
line-height: 34px;
padding: 0 10px;
text-shadow: none;
background: rgba( 220, 220, 220, 0.8 );
color: #222;
font-size: 14px;
}
.overlay-element.interactive:hover {
background: rgba( 220, 220, 220, 1 );
}
#current-slide {
position: absolute;
width: 60%;
height: 100%;
top: 0;
left: 0;
padding-right: 0;
}
#upcoming-slide {
position: absolute;
width: 40%;
height: 40%;
right: 0;
top: 0;
}
/* Speaker controls */
#speaker-controls {
position: absolute;
top: 40%;
right: 0;
width: 40%;
height: 60%;
overflow: auto;
font-size: 18px;
}
.speaker-controls-time.hidden,
.speaker-controls-notes.hidden {
display: none;
}
.speaker-controls-time .label,
.speaker-controls-pace .label,
.speaker-controls-notes .label {
text-transform: uppercase;
font-weight: normal;
font-size: 0.66em;
color: #666;
margin: 0;
}
.speaker-controls-time, .speaker-controls-pace {
border-bottom: 1px solid rgba( 200, 200, 200, 0.5 );
margin-bottom: 10px;
padding: 10px 16px;
padding-bottom: 20px;
cursor: pointer;
}
.speaker-controls-time .reset-button {
opacity: 0;
float: right;
color: #666;
text-decoration: none;
}
.speaker-controls-time:hover .reset-button {
opacity: 1;
}
.speaker-controls-time .timer,
.speaker-controls-time .clock {
width: 50%;
}
.speaker-controls-time .timer,
.speaker-controls-time .clock,
.speaker-controls-time .pacing .hours-value,
.speaker-controls-time .pacing .minutes-value,
.speaker-controls-time .pacing .seconds-value {
font-size: 1.9em;
}
.speaker-controls-time .timer {
float: left;
}
.speaker-controls-time .clock {
float: right;
text-align: right;
}
.speaker-controls-time span.mute {
opacity: 0.3;
}
.speaker-controls-time .pacing-title {
margin-top: 5px;
}
.speaker-controls-time .pacing.ahead {
color: blue;
}
.speaker-controls-time .pacing.on-track {
color: green;
}
.speaker-controls-time .pacing.behind {
color: red;
}
.speaker-controls-notes {
padding: 10px 16px;
}
.speaker-controls-notes .value {
margin-top: 5px;
line-height: 1.4;
font-size: 1.2em;
}
/* Layout selector */
#speaker-layout {
position: absolute;
top: 10px;
right: 10px;
color: #222;
z-index: 10;
}
#speaker-layout select {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 0;
box-shadow: 0;
cursor: pointer;
opacity: 0;
font-size: 1em;
background-color: transparent;
-moz-appearance: none;
-webkit-appearance: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#speaker-layout select:focus {
outline: none;
box-shadow: none;
}
.clear {
clear: both;
}
/* Speaker layout: Wide */
body[data-speaker-layout="wide"] #current-slide,
body[data-speaker-layout="wide"] #upcoming-slide {
width: 50%;
height: 45%;
padding: 6px;
}
body[data-speaker-layout="wide"] #current-slide {
top: 0;
left: 0;
}
body[data-speaker-layout="wide"] #upcoming-slide {
top: 0;
left: 50%;
}
body[data-speaker-layout="wide"] #speaker-controls {
top: 45%;
left: 0;
width: 100%;
height: 50%;
font-size: 1.25em;
}
/* Speaker layout: Tall */
body[data-speaker-layout="tall"] #current-slide,
body[data-speaker-layout="tall"] #upcoming-slide {
width: 45%;
height: 50%;
padding: 6px;
}
body[data-speaker-layout="tall"] #current-slide {
top: 0;
left: 0;
}
body[data-speaker-layout="tall"] #upcoming-slide {
top: 50%;
left: 0;
}
body[data-speaker-layout="tall"] #speaker-controls {
padding-top: 40px;
top: 0;
left: 45%;
width: 55%;
height: 100%;
font-size: 1.25em;
}
/* Speaker layout: Notes only */
body[data-speaker-layout="notes-only"] #current-slide,
body[data-speaker-layout="notes-only"] #upcoming-slide {
display: none;
}
body[data-speaker-layout="notes-only"] #speaker-controls {
padding-top: 40px;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 1.25em;
}
@media screen and (max-width: 1080px) {
body[data-speaker-layout="default"] #speaker-controls {
font-size: 16px;
}
}
@media screen and (max-width: 900px) {
body[data-speaker-layout="default"] #speaker-controls {
font-size: 14px;
}
}
@media screen and (max-width: 800px) {
body[data-speaker-layout="default"] #speaker-controls {
font-size: 12px;
}
}
</style>
</head>
<body>
<div id="connection-status">Loading speaker view...</div>
<div id="current-slide"></div>
<div id="upcoming-slide"><span class="overlay-element label">Upcoming</span></div>
<div id="speaker-controls">
<div class="speaker-controls-time">
<h4 class="label">Time <span class="reset-button">Click to Reset</span></h4>
<div class="clock">
<span class="clock-value">0:00 AM</span>
</div>
<div class="timer">
<span class="hours-value">00</span><span class="minutes-value">:00</span><span class="seconds-value">:00</span>
</div>
<div class="clear"></div>
<h4 class="label pacing-title" style="display: none">Pacing Time to finish current slide</h4>
<div class="pacing" style="display: none">
<span class="hours-value">00</span><span class="minutes-value">:00</span><span class="seconds-value">:00</span>
</div>
</div>
<div class="speaker-controls-notes hidden">
<h4 class="label">Notes</h4>
<div class="value"></div>
</div>
</div>
<div id="speaker-layout" class="overlay-element interactive">
<span class="speaker-layout-label"></span>
<select class="speaker-layout-dropdown"></select>
</div>
<script src="../../plugin/markdown/marked.js"></script>
<script>
(function() {
var notes,
notesValue,
currentState,
currentSlide,
upcomingSlide,
layoutLabel,
layoutDropdown,
connected = false;
var SPEAKER_LAYOUTS = {
'default': 'Default',
'wide': 'Wide',
'tall': 'Tall',
'notes-only': 'Notes only'
};
setupLayout();
var connectionStatus = document.querySelector( '#connection-status' );
var connectionTimeout = setTimeout( function() {
connectionStatus.innerHTML = 'Error connecting to main window.<br>Please try closing and reopening the speaker view.';
}, 5000 );
window.addEventListener( 'message', function( event ) {
clearTimeout( connectionTimeout );
connectionStatus.style.display = 'none';
var data = JSON.parse( event.data );
// The overview mode is only useful to the reveal.js instance
// where navigation occurs so we don't sync it
if( data.state ) delete data.state.overview;
// Messages sent by the notes plugin inside of the main window
if( data && data.namespace === 'reveal-notes' ) {
if( data.type === 'connect' ) {
handleConnectMessage( data );
}
else if( data.type === 'state' ) {
handleStateMessage( data );
}
}
// Messages sent by the reveal.js inside of the current slide preview
else if( data && data.namespace === 'reveal' ) {
if( /ready/.test( data.eventName ) ) {
// Send a message back to notify that the handshake is complete
window.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );
}
else if( /slidechanged|fragmentshown|fragmenthidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {
window.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );
}
}
} );
/**
* Called when the main window is trying to establish a
* connection.
*/
function handleConnectMessage( data ) {
if( connected === false ) {
connected = true;
setupIframes( data );
setupKeyboard();
setupNotes();
setupTimer();
}
}
/**
* Called when the main window sends an updated state.
*/
function handleStateMessage( data ) {
// Store the most recently set state to avoid circular loops
// applying the same state
currentState = JSON.stringify( data.state );
// No need for updating the notes in case of fragment changes
if ( data.notes ) {
notes.classList.remove( 'hidden' );
notesValue.style.whiteSpace = data.whitespace;
if( data.markdown ) {
notesValue.innerHTML = marked( data.notes );
}
else {
notesValue.innerHTML = data.notes;
}
}
else {
notes.classList.add( 'hidden' );
}
// Update the note slides
currentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );
upcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );
upcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );
}
// Limit to max one state update per X ms
handleStateMessage = debounce( handleStateMessage, 200 );
/**
* Forward keyboard events to the current slide window.
* This enables keyboard events to work even if focus
* isn't set on the current slide iframe.
*
* Block F5 default handling, it reloads and disconnects
* the speaker notes window.
*/
function setupKeyboard() {
document.addEventListener( 'keydown', function( event ) {
if( event.keyCode === 116 || ( event.metaKey && event.keyCode === 82 ) ) {
event.preventDefault();
return false;
}
currentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );
} );
}
/**
* Creates the preview iframes.
*/
function setupIframes( data ) {
var params = [
'receiver',
'progress=false',
'history=false',
'transition=none',
'autoSlide=0',
'backgroundTransition=none'
].join( '&' );
var urlSeparator = /\?/.test(data.url) ? '&' : '?';
var hash = '#/' + data.state.indexh + '/' + data.state.indexv;
var currentURL = data.url + urlSeparator + params + '&postMessageEvents=true' + hash;
var upcomingURL = data.url + urlSeparator + params + '&controls=false' + hash;
currentSlide = document.createElement( 'iframe' );
currentSlide.setAttribute( 'width', 1280 );
currentSlide.setAttribute( 'height', 1024 );
currentSlide.setAttribute( 'src', currentURL );
document.querySelector( '#current-slide' ).appendChild( currentSlide );
upcomingSlide = document.createElement( 'iframe' );
upcomingSlide.setAttribute( 'width', 640 );
upcomingSlide.setAttribute( 'height', 512 );
upcomingSlide.setAttribute( 'src', upcomingURL );
document.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );
}
/**
* Setup the notes UI.
*/
function setupNotes() {
notes = document.querySelector( '.speaker-controls-notes' );
notesValue = document.querySelector( '.speaker-controls-notes .value' );
}
function getTimings() {
var slides = Reveal.getSlides();
var defaultTiming = Reveal.getConfig().defaultTiming;
if (defaultTiming == null) {
return null;
}
var timings = [];
for ( var i in slides ) {
var slide = slides[i];
var timing = defaultTiming;
if( slide.hasAttribute( 'data-timing' )) {
var t = slide.getAttribute( 'data-timing' );
timing = parseInt(t);
if( isNaN(timing) ) {
console.warn("Could not parse timing '" + t + "' of slide " + i + "; using default of " + defaultTiming);
timing = defaultTiming;
}
}
timings.push(timing);
}
return timings;
}
/**
* Return the number of seconds allocated for presenting
* all slides up to and including this one.
*/
function getTimeAllocated(timings) {
var slides = Reveal.getSlides();
var allocated = 0;
var currentSlide = Reveal.getSlidePastCount();
for (var i in slides.slice(0, currentSlide + 1)) {
allocated += timings[i];
}
return allocated;
}
/**
* Create the timer and clock and start updating them
* at an interval.
*/
function setupTimer() {
var start = new Date(),
timeEl = document.querySelector( '.speaker-controls-time' ),
clockEl = timeEl.querySelector( '.clock-value' ),
hoursEl = timeEl.querySelector( '.hours-value' ),
minutesEl = timeEl.querySelector( '.minutes-value' ),
secondsEl = timeEl.querySelector( '.seconds-value' ),
pacingTitleEl = timeEl.querySelector( '.pacing-title' ),
pacingEl = timeEl.querySelector( '.pacing' ),
pacingHoursEl = pacingEl.querySelector( '.hours-value' ),
pacingMinutesEl = pacingEl.querySelector( '.minutes-value' ),
pacingSecondsEl = pacingEl.querySelector( '.seconds-value' );
var timings = getTimings();
if (timings !== null) {
pacingTitleEl.style.removeProperty('display');
pacingEl.style.removeProperty('display');
}
function _displayTime( hrEl, minEl, secEl, time) {
var sign = Math.sign(time) == -1 ? "-" : "";
time = Math.abs(Math.round(time / 1000));
var seconds = time % 60;
var minutes = Math.floor( time / 60 ) % 60 ;
var hours = Math.floor( time / ( 60 * 60 )) ;
hrEl.innerHTML = sign + zeroPadInteger( hours );
if (hours == 0) {
hrEl.classList.add( 'mute' );
}
else {
hrEl.classList.remove( 'mute' );
}
minEl.innerHTML = ':' + zeroPadInteger( minutes );
if (hours == 0 && minutes == 0) {
minEl.classList.add( 'mute' );
}
else {
minEl.classList.remove( 'mute' );
}
secEl.innerHTML = ':' + zeroPadInteger( seconds );
}
function _updateTimer() {
var diff, hours, minutes, seconds,
now = new Date();
diff = now.getTime() - start.getTime();
clockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );
_displayTime( hoursEl, minutesEl, secondsEl, diff );
if (timings !== null) {
_updatePacing(diff);
}
}
function _updatePacing(diff) {
var slideEndTiming = getTimeAllocated(timings) * 1000;
var currentSlide = Reveal.getSlidePastCount();
var currentSlideTiming = timings[currentSlide] * 1000;
var timeLeftCurrentSlide = slideEndTiming - diff;
if (timeLeftCurrentSlide < 0) {
pacingEl.className = 'pacing behind';
}
else if (timeLeftCurrentSlide < currentSlideTiming) {
pacingEl.className = 'pacing on-track';
}
else {
pacingEl.className = 'pacing ahead';
}
_displayTime( pacingHoursEl, pacingMinutesEl, pacingSecondsEl, timeLeftCurrentSlide );
}
// Update once directly
_updateTimer();
// Then update every second
setInterval( _updateTimer, 1000 );
function _resetTimer() {
if (timings == null) {
start = new Date();
}
else {
// Reset timer to beginning of current slide
var slideEndTiming = getTimeAllocated(timings) * 1000;
var currentSlide = Reveal.getSlidePastCount();
var currentSlideTiming = timings[currentSlide] * 1000;
var previousSlidesTiming = slideEndTiming - currentSlideTiming;
var now = new Date();
start = new Date(now.getTime() - previousSlidesTiming);
}
_updateTimer();
}
timeEl.addEventListener( 'click', function() {
_resetTimer();
return false;
} );
}
/**
* Sets up the speaker view layout and layout selector.
*/
function setupLayout() {
layoutDropdown = document.querySelector( '.speaker-layout-dropdown' );
layoutLabel = document.querySelector( '.speaker-layout-label' );
// Render the list of available layouts
for( var id in SPEAKER_LAYOUTS ) {
var option = document.createElement( 'option' );
option.setAttribute( 'value', id );
option.textContent = SPEAKER_LAYOUTS[ id ];
layoutDropdown.appendChild( option );
}
// Monitor the dropdown for changes
layoutDropdown.addEventListener( 'change', function( event ) {
setLayout( layoutDropdown.value );
}, false );
// Restore any currently persisted layout
setLayout( getLayout() );
}
/**
* Sets a new speaker view layout. The layout is persisted
* in local storage.
*/
function setLayout( value ) {
var title = SPEAKER_LAYOUTS[ value ];
layoutLabel.innerHTML = 'Layout' + ( title ? ( ': ' + title ) : '' );
layoutDropdown.value = value;
document.body.setAttribute( 'data-speaker-layout', value );
// Persist locally
if( supportsLocalStorage() ) {
window.localStorage.setItem( 'reveal-speaker-layout', value );
}
}
/**
* Returns the ID of the most recently set speaker layout
* or our default layout if none has been set.
*/
function getLayout() {
if( supportsLocalStorage() ) {
var layout = window.localStorage.getItem( 'reveal-speaker-layout' );
if( layout ) {
return layout;
}
}
// Default to the first record in the layouts hash
for( var id in SPEAKER_LAYOUTS ) {
return id;
}
}
function supportsLocalStorage() {
try {
localStorage.setItem('test', 'test');
localStorage.removeItem('test');
return true;
}
catch( e ) {
return false;
}
}
function zeroPadInteger( num ) {
var str = '00' + parseInt( num );
return str.substring( str.length - 2 );
}
/**
* Limits the frequency at which a function can be called.
*/
function debounce( fn, ms ) {
var lastTime = 0,
timeout;
return function() {
var args = arguments;
var context = this;
clearTimeout( timeout );
var timeSinceLastCall = Date.now() - lastTime;
if( timeSinceLastCall > ms ) {
fn.apply( context, args );
lastTime = Date.now();
}
else {
timeout = setTimeout( function() {
fn.apply( context, args );
lastTime = Date.now();
}, ms - timeSinceLastCall );
}
}
}
})();
</script>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More