slippery 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.travis.yml +27 -0
- data/Gemfile +10 -0
- data/Gemfile.devtools +59 -0
- data/Gemfile.lock +220 -0
- data/LICENSE +9 -0
- data/README.md +122 -0
- data/Rakefile +2 -0
- data/assets/impress.js/css/impress-demo.css +703 -0
- data/assets/impress.js/js/impress.js +800 -0
- data/assets/reveal.js/css/print/paper.css +176 -0
- data/assets/reveal.js/css/print/pdf.css +190 -0
- data/assets/reveal.js/css/reveal.css +1616 -0
- data/assets/reveal.js/css/reveal.min.css +7 -0
- data/assets/reveal.js/css/theme/README.md +23 -0
- data/assets/reveal.js/css/theme/beige.css +142 -0
- data/assets/reveal.js/css/theme/default.css +142 -0
- data/assets/reveal.js/css/theme/moon.css +142 -0
- data/assets/reveal.js/css/theme/night.css +130 -0
- data/assets/reveal.js/css/theme/serif.css +132 -0
- data/assets/reveal.js/css/theme/simple.css +132 -0
- data/assets/reveal.js/css/theme/sky.css +139 -0
- data/assets/reveal.js/css/theme/solarized.css +142 -0
- data/assets/reveal.js/css/theme/source/beige.scss +50 -0
- data/assets/reveal.js/css/theme/source/default.scss +42 -0
- data/assets/reveal.js/css/theme/source/moon.scss +68 -0
- data/assets/reveal.js/css/theme/source/night.scss +35 -0
- data/assets/reveal.js/css/theme/source/serif.scss +35 -0
- data/assets/reveal.js/css/theme/source/simple.scss +38 -0
- data/assets/reveal.js/css/theme/source/sky.scss +46 -0
- data/assets/reveal.js/css/theme/source/solarized.scss +74 -0
- data/assets/reveal.js/css/theme/template/mixins.scss +29 -0
- data/assets/reveal.js/css/theme/template/settings.scss +33 -0
- data/assets/reveal.js/css/theme/template/theme.scss +163 -0
- data/assets/reveal.js/js/head.min.js +8 -0
- data/assets/reveal.js/js/reveal.js +2577 -0
- data/assets/reveal.js/js/reveal.min.js +8 -0
- data/assets/reveal.js/lib/css/zenburn.css +115 -0
- data/assets/reveal.js/lib/font/league_gothic-webfont.eot +0 -0
- data/assets/reveal.js/lib/font/league_gothic-webfont.svg +230 -0
- data/assets/reveal.js/lib/font/league_gothic-webfont.ttf +0 -0
- data/assets/reveal.js/lib/font/league_gothic-webfont.woff +0 -0
- data/assets/reveal.js/lib/font/league_gothic_license +2 -0
- data/assets/reveal.js/lib/js/classList.js +2 -0
- data/assets/reveal.js/lib/js/head.min.js +8 -0
- data/assets/reveal.js/lib/js/html5shiv.js +7 -0
- data/assets/reveal.js/plugin/highlight/highlight.js +31 -0
- data/assets/reveal.js/plugin/leap/leap.js +154 -0
- data/assets/reveal.js/plugin/markdown/example.html +97 -0
- data/assets/reveal.js/plugin/markdown/example.md +29 -0
- data/assets/reveal.js/plugin/markdown/markdown.js +190 -0
- data/assets/reveal.js/plugin/markdown/marked.js +37 -0
- data/assets/reveal.js/plugin/multiplex/client.js +13 -0
- data/assets/reveal.js/plugin/multiplex/index.js +56 -0
- data/assets/reveal.js/plugin/multiplex/master.js +50 -0
- data/assets/reveal.js/plugin/notes/notes.html +253 -0
- data/assets/reveal.js/plugin/notes/notes.js +100 -0
- data/assets/reveal.js/plugin/notes-server/client.js +57 -0
- data/assets/reveal.js/plugin/notes-server/index.js +59 -0
- data/assets/reveal.js/plugin/notes-server/notes.html +142 -0
- data/assets/reveal.js/plugin/postmessage/example.html +39 -0
- data/assets/reveal.js/plugin/postmessage/postmessage.js +42 -0
- data/assets/reveal.js/plugin/print-pdf/print-pdf.js +44 -0
- data/assets/reveal.js/plugin/remotes/remotes.js +39 -0
- data/assets/reveal.js/plugin/search/search.js +196 -0
- data/assets/reveal.js/plugin/zoom-js/zoom.js +256 -0
- data/config/flay.yml +3 -0
- data/config/flog.yml +2 -0
- data/config/mutant.yml +3 -0
- data/config/reek.yml +108 -0
- data/config/rubocop.yml +71 -0
- data/config/yardstick.yml +2 -0
- data/lib/slippery/converter.rb +130 -0
- data/lib/slippery/document.rb +20 -0
- data/lib/slippery/presentation.rb +36 -0
- data/lib/slippery/processor_helpers.rb +43 -0
- data/lib/slippery/processors/add_google_font.rb +27 -0
- data/lib/slippery/processors/graphviz_dot.rb +46 -0
- data/lib/slippery/processors/hr_to_sections.rb +36 -0
- data/lib/slippery/processors/impress_js/add_impress_js.rb +30 -0
- data/lib/slippery/processors/impress_js/auto_offsets.rb +25 -0
- data/lib/slippery/processors/reveal_js/add_reveal_js.rb +78 -0
- data/lib/slippery/processors/self_contained.rb +62 -0
- data/lib/slippery/version.rb +3 -0
- data/lib/slippery.rb +42 -0
- data/slippery.gemspec +25 -0
- data/spec/fixtures/blockquotes.md +6 -0
- data/spec/fixtures/code_blocks.md +9 -0
- data/spec/fixtures/definition_lists.md +2 -0
- data/spec/fixtures/header_and_paragraph.md +2 -0
- data/spec/fixtures/headers.md +13 -0
- data/spec/fixtures/ordered_list.md +3 -0
- data/spec/fixtures/unordered_list.md +3 -0
- data/spec/slippery/converter_spec.rb +67 -0
- data/spec/slippery_spec.rb +0 -0
- data/spec/spec_helper.rb +20 -0
- metadata +208 -0
@@ -0,0 +1,190 @@
|
|
1
|
+
// From https://gist.github.com/1343518
|
2
|
+
// Modified by Hakim to handle Markdown indented with tabs
|
3
|
+
(function(){
|
4
|
+
|
5
|
+
if( typeof marked === 'undefined' ) {
|
6
|
+
throw 'The reveal.js Markdown plugin requires marked to be loaded';
|
7
|
+
}
|
8
|
+
|
9
|
+
var stripLeadingWhitespace = function(section) {
|
10
|
+
|
11
|
+
var template = section.querySelector( 'script' );
|
12
|
+
|
13
|
+
// strip leading whitespace so it isn't evaluated as code
|
14
|
+
var text = ( template || section ).textContent;
|
15
|
+
|
16
|
+
var leadingWs = text.match(/^\n?(\s*)/)[1].length,
|
17
|
+
leadingTabs = text.match(/^\n?(\t*)/)[1].length;
|
18
|
+
|
19
|
+
if( leadingTabs > 0 ) {
|
20
|
+
text = text.replace( new RegExp('\\n?\\t{' + leadingTabs + '}','g'), '\n' );
|
21
|
+
}
|
22
|
+
else if( leadingWs > 1 ) {
|
23
|
+
text = text.replace( new RegExp('\\n? {' + leadingWs + '}','g'), '\n' );
|
24
|
+
}
|
25
|
+
|
26
|
+
return text;
|
27
|
+
|
28
|
+
};
|
29
|
+
|
30
|
+
var twrap = function(el) {
|
31
|
+
return '<script type="text/template">' + el + '</script>';
|
32
|
+
};
|
33
|
+
|
34
|
+
var getForwardedAttributes = function(section) {
|
35
|
+
var attributes = section.attributes;
|
36
|
+
var result = [];
|
37
|
+
|
38
|
+
for( var i = 0, len = attributes.length; i < len; i++ ) {
|
39
|
+
var name = attributes[i].name,
|
40
|
+
value = attributes[i].value;
|
41
|
+
|
42
|
+
// disregard attributes that are used for markdown loading/parsing
|
43
|
+
if( /data\-(markdown|separator|vertical)/gi.test( name ) ) continue;
|
44
|
+
|
45
|
+
if( value ) {
|
46
|
+
result.push( name + '=' + value );
|
47
|
+
}
|
48
|
+
else {
|
49
|
+
result.push( name );
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
return result.join( ' ' );
|
54
|
+
}
|
55
|
+
|
56
|
+
var slidifyMarkdown = function(markdown, separator, vertical, attributes) {
|
57
|
+
|
58
|
+
separator = separator || '^\n---\n$';
|
59
|
+
|
60
|
+
var reSeparator = new RegExp(separator + (vertical ? '|' + vertical : ''), 'mg'),
|
61
|
+
reHorSeparator = new RegExp(separator),
|
62
|
+
matches,
|
63
|
+
lastIndex = 0,
|
64
|
+
isHorizontal,
|
65
|
+
wasHorizontal = true,
|
66
|
+
content,
|
67
|
+
sectionStack = [],
|
68
|
+
markdownSections = '';
|
69
|
+
|
70
|
+
// iterate until all blocks between separators are stacked up
|
71
|
+
while( matches = reSeparator.exec(markdown) ) {
|
72
|
+
|
73
|
+
// determine direction (horizontal by default)
|
74
|
+
isHorizontal = reHorSeparator.test(matches[0]);
|
75
|
+
|
76
|
+
if( !isHorizontal && wasHorizontal ) {
|
77
|
+
// create vertical stack
|
78
|
+
sectionStack.push([]);
|
79
|
+
}
|
80
|
+
|
81
|
+
// pluck slide content from markdown input
|
82
|
+
content = markdown.substring(lastIndex, matches.index);
|
83
|
+
|
84
|
+
if( isHorizontal && wasHorizontal ) {
|
85
|
+
// add to horizontal stack
|
86
|
+
sectionStack.push(content);
|
87
|
+
} else {
|
88
|
+
// add to vertical stack
|
89
|
+
sectionStack[sectionStack.length-1].push(content);
|
90
|
+
}
|
91
|
+
|
92
|
+
lastIndex = reSeparator.lastIndex;
|
93
|
+
wasHorizontal = isHorizontal;
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
// add the remaining slide
|
98
|
+
(wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1]).push(markdown.substring(lastIndex));
|
99
|
+
|
100
|
+
// flatten the hierarchical stack, and insert <section data-markdown> tags
|
101
|
+
for( var k = 0, klen = sectionStack.length; k < klen; k++ ) {
|
102
|
+
// horizontal
|
103
|
+
if( typeof sectionStack[k] === 'string' ) {
|
104
|
+
markdownSections += '<section '+ attributes +' data-markdown>' + twrap( sectionStack[k] ) + '</section>';
|
105
|
+
}
|
106
|
+
// vertical
|
107
|
+
else {
|
108
|
+
markdownSections += '<section '+ attributes +'>' +
|
109
|
+
'<section data-markdown>' + sectionStack[k].map(twrap).join('</section><section data-markdown>') + '</section>' +
|
110
|
+
'</section>';
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
return markdownSections;
|
115
|
+
};
|
116
|
+
|
117
|
+
var querySlidingMarkdown = function() {
|
118
|
+
|
119
|
+
var sections = document.querySelectorAll( '[data-markdown]'),
|
120
|
+
section;
|
121
|
+
|
122
|
+
for( var j = 0, jlen = sections.length; j < jlen; j++ ) {
|
123
|
+
|
124
|
+
section = sections[j];
|
125
|
+
|
126
|
+
if( section.getAttribute('data-markdown').length ) {
|
127
|
+
|
128
|
+
var xhr = new XMLHttpRequest(),
|
129
|
+
url = section.getAttribute('data-markdown');
|
130
|
+
|
131
|
+
xhr.onreadystatechange = function () {
|
132
|
+
if( xhr.readyState === 4 ) {
|
133
|
+
if (xhr.status >= 200 && xhr.status < 300) {
|
134
|
+
section.outerHTML = slidifyMarkdown( xhr.responseText, section.getAttribute('data-separator'), section.getAttribute('data-vertical'), getForwardedAttributes(section) );
|
135
|
+
} else {
|
136
|
+
section.outerHTML = '<section data-state="alert">ERROR: The attempt to fetch ' + url + ' failed with the HTTP status ' + xhr.status +
|
137
|
+
'. Check your browser\'s JavaScript console for more details.' +
|
138
|
+
'<p>Remember that you need to serve the presentation HTML from a HTTP server and the Markdown file must be there too.</p></section>';
|
139
|
+
}
|
140
|
+
}
|
141
|
+
};
|
142
|
+
|
143
|
+
xhr.open('GET', url, false);
|
144
|
+
try {
|
145
|
+
xhr.send();
|
146
|
+
} catch (e) {
|
147
|
+
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);
|
148
|
+
}
|
149
|
+
|
150
|
+
} else if( section.getAttribute('data-separator') ) {
|
151
|
+
|
152
|
+
var markdown = stripLeadingWhitespace(section);
|
153
|
+
section.outerHTML = slidifyMarkdown( markdown, section.getAttribute('data-separator'), section.getAttribute('data-vertical'), getForwardedAttributes(section) );
|
154
|
+
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
};
|
159
|
+
|
160
|
+
var queryMarkdownSlides = function() {
|
161
|
+
|
162
|
+
var sections = document.querySelectorAll( '[data-markdown]');
|
163
|
+
|
164
|
+
for( var j = 0, jlen = sections.length; j < jlen; j++ ) {
|
165
|
+
|
166
|
+
makeHtml(sections[j]);
|
167
|
+
|
168
|
+
}
|
169
|
+
|
170
|
+
};
|
171
|
+
|
172
|
+
var makeHtml = function(section) {
|
173
|
+
|
174
|
+
var notes = section.querySelector( 'aside.notes' );
|
175
|
+
|
176
|
+
var markdown = stripLeadingWhitespace(section);
|
177
|
+
|
178
|
+
section.innerHTML = marked(markdown);
|
179
|
+
|
180
|
+
if( notes ) {
|
181
|
+
section.appendChild( notes );
|
182
|
+
}
|
183
|
+
|
184
|
+
};
|
185
|
+
|
186
|
+
querySlidingMarkdown();
|
187
|
+
|
188
|
+
queryMarkdownSlides();
|
189
|
+
|
190
|
+
})();
|
@@ -0,0 +1,37 @@
|
|
1
|
+
/**
|
2
|
+
* marked - a markdown parser
|
3
|
+
* Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed)
|
4
|
+
* https://github.com/chjj/marked
|
5
|
+
*/
|
6
|
+
|
7
|
+
(function(){var block={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:noop,hr:/^( *[-*_]){3,} *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,nptable:noop,lheading:/^([^\n]+)\n *(=|-){3,} *\n*/,blockquote:/^( *>[^\n]+(\n[^\n]+)*\n*)+/,list:/^( *)(bull) [\s\S]+?(?:hr|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:/^ *(?:comment|closed|closing) *(?:\n{2,}|\s*$)/,def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,table:noop,paragraph:/^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
|
8
|
+
text:/^[^\n]+/};block.bullet=/(?:[*+-]|\d+\.)/;block.item=/^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;block.item=replace(block.item,"gm")(/bull/g,block.bullet)();block.list=replace(block.list)(/bull/g,block.bullet)("hr",/\n+(?=(?: *[-*_]){3,} *(?:\n+|$))/)();block._tag="(?!(?:"+"a|em|strong|small|s|cite|q|dfn|abbr|data|time|code"+"|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo"+"|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|@)\\b";block.html=replace(block.html)("comment",/\x3c!--[\s\S]*?--\x3e/)("closed",
|
9
|
+
/<(tag)[\s\S]+?<\/\1>/)("closing",/<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)(/tag/g,block._tag)();block.paragraph=replace(block.paragraph)("hr",block.hr)("heading",block.heading)("lheading",block.lheading)("blockquote",block.blockquote)("tag","<"+block._tag)("def",block.def)();block.normal=merge({},block);block.gfm=merge({},block.normal,{fences:/^ *(`{3,}|~{3,}) *(\S+)? *\n([\s\S]+?)\s*\1 *(?:\n+|$)/,paragraph:/^/});block.gfm.paragraph=replace(block.paragraph)("(?!","(?!"+block.gfm.fences.source.replace("\\1",
|
10
|
+
"\\2")+"|")();block.tables=merge({},block.gfm,{nptable:/^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,table:/^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/});function Lexer(options){this.tokens=[];this.tokens.links={};this.options=options||marked.defaults;this.rules=block.normal;if(this.options.gfm)if(this.options.tables)this.rules=block.tables;else this.rules=block.gfm}Lexer.rules=block;Lexer.lex=function(src,options){var lexer=new Lexer(options);return lexer.lex(src)};
|
11
|
+
Lexer.prototype.lex=function(src){src=src.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n");return this.token(src,true)};Lexer.prototype.token=function(src,top){var src=src.replace(/^ +$/gm,""),next,loose,cap,bull,b,item,space,i,l;while(src){if(cap=this.rules.newline.exec(src)){src=src.substring(cap[0].length);if(cap[0].length>1)this.tokens.push({type:"space"})}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);cap=cap[0].replace(/^ {4}/gm,
|
12
|
+
"");this.tokens.push({type:"code",text:!this.options.pedantic?cap.replace(/\n+$/,""):cap});continue}if(cap=this.rules.fences.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"code",lang:cap[2],text:cap[3]});continue}if(cap=this.rules.heading.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[1].length,text:cap[2]});continue}if(top&&(cap=this.rules.nptable.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g,
|
13
|
+
"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/\n$/,"").split("\n")};for(i=0;i<item.align.length;i++)if(/^ *-+: *$/.test(item.align[i]))item.align[i]="right";else if(/^ *:-+: *$/.test(item.align[i]))item.align[i]="center";else if(/^ *:-+ *$/.test(item.align[i]))item.align[i]="left";else item.align[i]=null;for(i=0;i<item.cells.length;i++)item.cells[i]=item.cells[i].split(/ *\| */);this.tokens.push(item);continue}if(cap=this.rules.lheading.exec(src)){src=
|
14
|
+
src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[2]==="="?1:2,text:cap[1]});continue}if(cap=this.rules.hr.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"hr"});continue}if(cap=this.rules.blockquote.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"blockquote_start"});cap=cap[0].replace(/^ *> ?/gm,"");this.token(cap,top);this.tokens.push({type:"blockquote_end"});continue}if(cap=this.rules.list.exec(src)){src=src.substring(cap[0].length);
|
15
|
+
bull=cap[2];this.tokens.push({type:"list_start",ordered:bull.length>1});cap=cap[0].match(this.rules.item);next=false;l=cap.length;i=0;for(;i<l;i++){item=cap[i];space=item.length;item=item.replace(/^ *([*+-]|\d+\.) +/,"");if(~item.indexOf("\n ")){space-=item.length;item=!this.options.pedantic?item.replace(new RegExp("^ {1,"+space+"}","gm"),""):item.replace(/^ {1,4}/gm,"")}if(this.options.smartLists&&i!==l-1){b=block.bullet.exec(cap[i+1])[0];if(bull!==b&&!(bull.length>1&&b.length>1)){src=cap.slice(i+
|
16
|
+
1).join("\n")+src;i=l-1}}loose=next||/\n\n(?!\s*$)/.test(item);if(i!==l-1){next=item[item.length-1]==="\n";if(!loose)loose=next}this.tokens.push({type:loose?"loose_item_start":"list_item_start"});this.token(item,false);this.tokens.push({type:"list_item_end"})}this.tokens.push({type:"list_end"});continue}if(cap=this.rules.html.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:cap[1]==="pre"||cap[1]==="script",text:cap[0]});continue}if(top&&
|
17
|
+
(cap=this.rules.def.exec(src))){src=src.substring(cap[0].length);this.tokens.links[cap[1].toLowerCase()]={href:cap[2],title:cap[3]};continue}if(top&&(cap=this.rules.table.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/(?: *\| *)?\n$/,"").split("\n")};for(i=0;i<item.align.length;i++)if(/^ *-+: *$/.test(item.align[i]))item.align[i]="right";else if(/^ *:-+: *$/.test(item.align[i]))item.align[i]=
|
18
|
+
"center";else if(/^ *:-+ *$/.test(item.align[i]))item.align[i]="left";else item.align[i]=null;for(i=0;i<item.cells.length;i++)item.cells[i]=item.cells[i].replace(/^ *\| *| *\| *$/g,"").split(/ *\| */);this.tokens.push(item);continue}if(top&&(cap=this.rules.paragraph.exec(src))){src=src.substring(cap[0].length);this.tokens.push({type:"paragraph",text:cap[1][cap[1].length-1]==="\n"?cap[1].slice(0,-1):cap[1]});continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"text",
|
19
|
+
text:cap[0]});continue}if(src)throw new Error("Infinite loop on byte: "+src.charCodeAt(0));}return this.tokens};var inline={escape:/^\\([\\`*{}\[\]()#+\-.!_>])/,autolink:/^<([^ >]+(@|:\/)[^ >]+)>/,url:noop,tag:/^\x3c!--[\s\S]*?--\x3e|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,link:/^!?\[(inside)\]\(href\)/,reflink:/^!?\[(inside)\]\s*\[([^\]]*)\]/,nolink:/^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,strong:/^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,em:/^\b_((?:__|[\s\S])+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
|
20
|
+
code:/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,br:/^ {2,}\n(?!\s*$)/,del:noop,text:/^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/};inline._inside=/(?:\[[^\]]*\]|[^\]]|\](?=[^\[]*\]))*/;inline._href=/\s*<?([^\s]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;inline.link=replace(inline.link)("inside",inline._inside)("href",inline._href)();inline.reflink=replace(inline.reflink)("inside",inline._inside)();inline.normal=merge({},inline);inline.pedantic=merge({},inline.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
|
21
|
+
em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/});inline.gfm=merge({},inline.normal,{escape:replace(inline.escape)("])","~|])")(),url:/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,del:/^~~(?=\S)([\s\S]*?\S)~~/,text:replace(inline.text)("]|","~]|")("|","|https?://|")()});inline.breaks=merge({},inline.gfm,{br:replace(inline.br)("{2,}","*")(),text:replace(inline.gfm.text)("{2,}","*")()});function InlineLexer(links,options){this.options=options||marked.defaults;this.links=links;this.rules=inline.normal;
|
22
|
+
if(!this.links)throw new Error("Tokens array requires a `links` property.");if(this.options.gfm)if(this.options.breaks)this.rules=inline.breaks;else this.rules=inline.gfm;else if(this.options.pedantic)this.rules=inline.pedantic}InlineLexer.rules=inline;InlineLexer.output=function(src,links,options){var inline=new InlineLexer(links,options);return inline.output(src)};InlineLexer.prototype.output=function(src){var out="",link,text,href,cap;while(src){if(cap=this.rules.escape.exec(src)){src=src.substring(cap[0].length);
|
23
|
+
out+=cap[1];continue}if(cap=this.rules.autolink.exec(src)){src=src.substring(cap[0].length);if(cap[2]==="@"){text=cap[1][6]===":"?this.mangle(cap[1].substring(7)):this.mangle(cap[1]);href=this.mangle("mailto:")+text}else{text=escape(cap[1]);href=text}out+='<a href="'+href+'">'+text+"</a>";continue}if(cap=this.rules.url.exec(src)){src=src.substring(cap[0].length);text=escape(cap[1]);href=text;out+='<a href="'+href+'">'+text+"</a>";continue}if(cap=this.rules.tag.exec(src)){src=src.substring(cap[0].length);
|
24
|
+
out+=this.options.sanitize?escape(cap[0]):cap[0];continue}if(cap=this.rules.link.exec(src)){src=src.substring(cap[0].length);out+=this.outputLink(cap,{href:cap[2],title:cap[3]});continue}if((cap=this.rules.reflink.exec(src))||(cap=this.rules.nolink.exec(src))){src=src.substring(cap[0].length);link=(cap[2]||cap[1]).replace(/\s+/g," ");link=this.links[link.toLowerCase()];if(!link||!link.href){out+=cap[0][0];src=cap[0].substring(1)+src;continue}out+=this.outputLink(cap,link);continue}if(cap=this.rules.strong.exec(src)){src=
|
25
|
+
src.substring(cap[0].length);out+="<strong>"+this.output(cap[2]||cap[1])+"</strong>";continue}if(cap=this.rules.em.exec(src)){src=src.substring(cap[0].length);out+="<em>"+this.output(cap[2]||cap[1])+"</em>";continue}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);out+="<code>"+escape(cap[2],true)+"</code>";continue}if(cap=this.rules.br.exec(src)){src=src.substring(cap[0].length);out+="<br>";continue}if(cap=this.rules.del.exec(src)){src=src.substring(cap[0].length);out+="<del>"+
|
26
|
+
this.output(cap[1])+"</del>";continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);out+=escape(cap[0]);continue}if(src)throw new Error("Infinite loop on byte: "+src.charCodeAt(0));}return out};InlineLexer.prototype.outputLink=function(cap,link){if(cap[0][0]!=="!")return'<a href="'+escape(link.href)+'"'+(link.title?' title="'+escape(link.title)+'"':"")+">"+this.output(cap[1])+"</a>";else return'<img src="'+escape(link.href)+'" alt="'+escape(cap[1])+'"'+(link.title?' title="'+
|
27
|
+
escape(link.title)+'"':"")+">"};InlineLexer.prototype.smartypants=function(text){if(!this.options.smartypants)return text;return text.replace(/--/g,"\u2014").replace(/'([^']*)'/g,"\u2018$1\u2019").replace(/"([^"]*)"/g,"\u201c$1\u201d").replace(/\.{3}/g,"\u2026")};InlineLexer.prototype.mangle=function(text){var out="",l=text.length,i=0,ch;for(;i<l;i++){ch=text.charCodeAt(i);if(Math.random()>0.5)ch="x"+ch.toString(16);out+="&#"+ch+";"}return out};function Parser(options){this.tokens=[];this.token=null;
|
28
|
+
this.options=options||marked.defaults}Parser.parse=function(src,options){var parser=new Parser(options);return parser.parse(src)};Parser.prototype.parse=function(src){this.inline=new InlineLexer(src.links,this.options);this.tokens=src.reverse();var out="";while(this.next())out+=this.tok();return out};Parser.prototype.next=function(){return this.token=this.tokens.pop()};Parser.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0};Parser.prototype.parseText=function(){var body=this.token.text;
|
29
|
+
while(this.peek().type==="text")body+="\n"+this.next().text;return this.inline.output(body)};Parser.prototype.tok=function(){switch(this.token.type){case "space":return"";case "hr":return"<hr>\n";case "heading":return"<h"+this.token.depth+">"+this.inline.output(this.token.text)+"</h"+this.token.depth+">\n";case "code":if(this.options.highlight){var code=this.options.highlight(this.token.text,this.token.lang);if(code!=null&&code!==this.token.text){this.token.escaped=true;this.token.text=code}}if(!this.token.escaped)this.token.text=
|
30
|
+
escape(this.token.text,true);return"<pre><code"+(this.token.lang?' class="'+this.options.langPrefix+this.token.lang+'"':"")+">"+this.token.text+"</code></pre>\n";case "table":var body="",heading,i,row,cell,j;body+="<thead>\n<tr>\n";for(i=0;i<this.token.header.length;i++){heading=this.inline.output(this.token.header[i]);body+=this.token.align[i]?'<th align="'+this.token.align[i]+'">'+heading+"</th>\n":"<th>"+heading+"</th>\n"}body+="</tr>\n</thead>\n";body+="<tbody>\n";for(i=0;i<this.token.cells.length;i++){row=
|
31
|
+
this.token.cells[i];body+="<tr>\n";for(j=0;j<row.length;j++){cell=this.inline.output(row[j]);body+=this.token.align[j]?'<td align="'+this.token.align[j]+'">'+cell+"</td>\n":"<td>"+cell+"</td>\n"}body+="</tr>\n"}body+="</tbody>\n";return"<table>\n"+body+"</table>\n";case "blockquote_start":var body="";while(this.next().type!=="blockquote_end")body+=this.tok();return"<blockquote>\n"+body+"</blockquote>\n";case "list_start":var type=this.token.ordered?"ol":"ul",body="";while(this.next().type!=="list_end")body+=
|
32
|
+
this.tok();return"<"+type+">\n"+body+"</"+type+">\n";case "list_item_start":var body="";while(this.next().type!=="list_item_end")body+=this.token.type==="text"?this.parseText():this.tok();return"<li>"+body+"</li>\n";case "loose_item_start":var body="";while(this.next().type!=="list_item_end")body+=this.tok();return"<li>"+body+"</li>\n";case "html":return!this.token.pre&&!this.options.pedantic?this.inline.output(this.token.text):this.token.text;case "paragraph":return"<p>"+this.inline.output(this.token.text)+
|
33
|
+
"</p>\n";case "text":return"<p>"+this.parseText()+"</p>\n"}};function escape(html,encode){return html.replace(!encode?/&(?!#?\w+;)/g:/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function replace(regex,opt){regex=regex.source;opt=opt||"";return function self(name,val){if(!name)return new RegExp(regex,opt);val=val.source||val;val=val.replace(/(^|[^\[])\^/g,"$1");regex=regex.replace(name,val);return self}}function noop(){}noop.exec=noop;function merge(obj){var i=
|
34
|
+
1,target,key;for(;i<arguments.length;i++){target=arguments[i];for(key in target)if(Object.prototype.hasOwnProperty.call(target,key))obj[key]=target[key]}return obj}function marked(src,opt,callback){if(callback||typeof opt==="function"){if(!callback){callback=opt;opt=null}if(opt)opt=merge({},marked.defaults,opt);var tokens=Lexer.lex(tokens,opt),highlight=opt.highlight,pending=0,l=tokens.length,i=0;if(!highlight||highlight.length<3)return callback(null,Parser.parse(tokens,opt));var done=function(){delete opt.highlight;
|
35
|
+
var out=Parser.parse(tokens,opt);opt.highlight=highlight;return callback(null,out)};for(;i<l;i++)(function(token){if(token.type!=="code")return;pending++;return highlight(token.text,token.lang,function(err,code){if(code==null||code===token.text)return--pending||done();token.text=code;token.escaped=true;--pending||done()})})(tokens[i]);return}try{if(opt)opt=merge({},marked.defaults,opt);return Parser.parse(Lexer.lex(src,opt),opt)}catch(e){e.message+="\nPlease report this to https://github.com/chjj/marked.";
|
36
|
+
if((opt||marked.defaults).silent)return"<p>An error occured:</p><pre>"+escape(e.message+"",true)+"</pre>";throw e;}}marked.options=marked.setOptions=function(opt){merge(marked.defaults,opt);return marked};marked.defaults={gfm:true,tables:true,breaks:false,pedantic:false,sanitize:false,smartLists:false,silent:false,highlight:null,langPrefix:""};marked.Parser=Parser;marked.parser=Parser.parse;marked.Lexer=Lexer;marked.lexer=Lexer.lex;marked.InlineLexer=InlineLexer;marked.inlineLexer=InlineLexer.output;
|
37
|
+
marked.parse=marked;if(typeof exports==="object")module.exports=marked;else if(typeof define==="function"&&define.amd)define(function(){return marked});else this.marked=marked}).call(function(){return this||(typeof window!=="undefined"?window:global)}());
|
@@ -0,0 +1,13 @@
|
|
1
|
+
(function() {
|
2
|
+
var multiplex = Reveal.getConfig().multiplex;
|
3
|
+
var socketId = multiplex.id;
|
4
|
+
var socket = io.connect(multiplex.url);
|
5
|
+
|
6
|
+
socket.on(multiplex.id, function(data) {
|
7
|
+
// ignore data from sockets that aren't ours
|
8
|
+
if (data.socketId !== socketId) { return; }
|
9
|
+
if( window.location.host === 'localhost:1947' ) return;
|
10
|
+
|
11
|
+
Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote');
|
12
|
+
});
|
13
|
+
}());
|
@@ -0,0 +1,56 @@
|
|
1
|
+
var express = require('express');
|
2
|
+
var fs = require('fs');
|
3
|
+
var io = require('socket.io');
|
4
|
+
var crypto = require('crypto');
|
5
|
+
|
6
|
+
var app = express.createServer();
|
7
|
+
var staticDir = express.static;
|
8
|
+
|
9
|
+
io = io.listen(app);
|
10
|
+
|
11
|
+
var opts = {
|
12
|
+
port: 1948,
|
13
|
+
baseDir : __dirname + '/../../'
|
14
|
+
};
|
15
|
+
|
16
|
+
io.sockets.on('connection', function(socket) {
|
17
|
+
socket.on('slidechanged', function(slideData) {
|
18
|
+
if (typeof slideData.secret == 'undefined' || slideData.secret == null || slideData.secret === '') return;
|
19
|
+
if (createHash(slideData.secret) === slideData.socketId) {
|
20
|
+
slideData.secret = null;
|
21
|
+
socket.broadcast.emit(slideData.socketId, slideData);
|
22
|
+
};
|
23
|
+
});
|
24
|
+
});
|
25
|
+
|
26
|
+
app.configure(function() {
|
27
|
+
[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {
|
28
|
+
app.use('/' + dir, staticDir(opts.baseDir + dir));
|
29
|
+
});
|
30
|
+
});
|
31
|
+
|
32
|
+
app.get("/", function(req, res) {
|
33
|
+
res.writeHead(200, {'Content-Type': 'text/html'});
|
34
|
+
fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
|
35
|
+
});
|
36
|
+
|
37
|
+
app.get("/token", function(req,res) {
|
38
|
+
var ts = new Date().getTime();
|
39
|
+
var rand = Math.floor(Math.random()*9999999);
|
40
|
+
var secret = ts.toString() + rand.toString();
|
41
|
+
res.send({secret: secret, socketId: createHash(secret)});
|
42
|
+
});
|
43
|
+
|
44
|
+
var createHash = function(secret) {
|
45
|
+
var cipher = crypto.createCipher('blowfish', secret);
|
46
|
+
return(cipher.final('hex'));
|
47
|
+
};
|
48
|
+
|
49
|
+
// Actually listen
|
50
|
+
app.listen(opts.port || null);
|
51
|
+
|
52
|
+
var brown = '\033[33m',
|
53
|
+
green = '\033[32m',
|
54
|
+
reset = '\033[0m';
|
55
|
+
|
56
|
+
console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + reset );
|
@@ -0,0 +1,50 @@
|
|
1
|
+
(function() {
|
2
|
+
// don't emit events from inside the previews themselves
|
3
|
+
if ( window.location.search.match( /receiver/gi ) ) { return; }
|
4
|
+
var multiplex = Reveal.getConfig().multiplex;
|
5
|
+
|
6
|
+
var socket = io.connect(multiplex.url);
|
7
|
+
|
8
|
+
var notify = function( slideElement, indexh, indexv, origin ) {
|
9
|
+
if( typeof origin === 'undefined' && origin !== 'remote' ) {
|
10
|
+
var nextindexh;
|
11
|
+
var nextindexv;
|
12
|
+
|
13
|
+
var fragmentindex = Reveal.getIndices().f;
|
14
|
+
if (typeof fragmentindex == 'undefined') {
|
15
|
+
fragmentindex = 0;
|
16
|
+
}
|
17
|
+
|
18
|
+
if (slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION') {
|
19
|
+
nextindexh = indexh;
|
20
|
+
nextindexv = indexv + 1;
|
21
|
+
} else {
|
22
|
+
nextindexh = indexh + 1;
|
23
|
+
nextindexv = 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
var slideData = {
|
27
|
+
indexh : indexh,
|
28
|
+
indexv : indexv,
|
29
|
+
indexf : fragmentindex,
|
30
|
+
nextindexh : nextindexh,
|
31
|
+
nextindexv : nextindexv,
|
32
|
+
secret: multiplex.secret,
|
33
|
+
socketId : multiplex.id
|
34
|
+
};
|
35
|
+
|
36
|
+
socket.emit('slidechanged', slideData);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
Reveal.addEventListener( 'slidechanged', function( event ) {
|
41
|
+
notify( event.currentSlide, event.indexh, event.indexv, event.origin );
|
42
|
+
} );
|
43
|
+
|
44
|
+
var fragmentNotify = function( event ) {
|
45
|
+
notify( Reveal.getCurrentSlide(), Reveal.getIndices().h, Reveal.getIndices().v, event.origin );
|
46
|
+
};
|
47
|
+
|
48
|
+
Reveal.addEventListener( 'fragmentshown', fragmentNotify );
|
49
|
+
Reveal.addEventListener( 'fragmenthidden', fragmentNotify );
|
50
|
+
}());
|
@@ -0,0 +1,253 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
|
6
|
+
<title>reveal.js - Slide Notes</title>
|
7
|
+
|
8
|
+
<style>
|
9
|
+
body {
|
10
|
+
font-family: Helvetica;
|
11
|
+
}
|
12
|
+
|
13
|
+
#notes {
|
14
|
+
font-size: 24px;
|
15
|
+
width: 640px;
|
16
|
+
margin-top: 5px;
|
17
|
+
clear: left;
|
18
|
+
}
|
19
|
+
|
20
|
+
#wrap-current-slide {
|
21
|
+
width: 640px;
|
22
|
+
height: 512px;
|
23
|
+
float: left;
|
24
|
+
overflow: hidden;
|
25
|
+
}
|
26
|
+
|
27
|
+
#current-slide {
|
28
|
+
width: 1280px;
|
29
|
+
height: 1024px;
|
30
|
+
border: none;
|
31
|
+
|
32
|
+
-webkit-transform-origin: 0 0;
|
33
|
+
-moz-transform-origin: 0 0;
|
34
|
+
-ms-transform-origin: 0 0;
|
35
|
+
-o-transform-origin: 0 0;
|
36
|
+
transform-origin: 0 0;
|
37
|
+
|
38
|
+
-webkit-transform: scale(0.5);
|
39
|
+
-moz-transform: scale(0.5);
|
40
|
+
-ms-transform: scale(0.5);
|
41
|
+
-o-transform: scale(0.5);
|
42
|
+
transform: scale(0.5);
|
43
|
+
}
|
44
|
+
|
45
|
+
#wrap-next-slide {
|
46
|
+
width: 448px;
|
47
|
+
height: 358px;
|
48
|
+
float: left;
|
49
|
+
margin: 0 0 0 10px;
|
50
|
+
overflow: hidden;
|
51
|
+
}
|
52
|
+
|
53
|
+
#next-slide {
|
54
|
+
width: 1280px;
|
55
|
+
height: 1024px;
|
56
|
+
border: none;
|
57
|
+
|
58
|
+
-webkit-transform-origin: 0 0;
|
59
|
+
-moz-transform-origin: 0 0;
|
60
|
+
-ms-transform-origin: 0 0;
|
61
|
+
-o-transform-origin: 0 0;
|
62
|
+
transform-origin: 0 0;
|
63
|
+
|
64
|
+
-webkit-transform: scale(0.35);
|
65
|
+
-moz-transform: scale(0.35);
|
66
|
+
-ms-transform: scale(0.35);
|
67
|
+
-o-transform: scale(0.35);
|
68
|
+
transform: scale(0.35);
|
69
|
+
}
|
70
|
+
|
71
|
+
.slides {
|
72
|
+
position: relative;
|
73
|
+
margin-bottom: 10px;
|
74
|
+
border: 1px solid black;
|
75
|
+
border-radius: 2px;
|
76
|
+
background: rgb(28, 30, 32);
|
77
|
+
}
|
78
|
+
|
79
|
+
.slides span {
|
80
|
+
position: absolute;
|
81
|
+
top: 3px;
|
82
|
+
left: 3px;
|
83
|
+
font-weight: bold;
|
84
|
+
font-size: 14px;
|
85
|
+
color: rgba( 255, 255, 255, 0.9 );
|
86
|
+
}
|
87
|
+
|
88
|
+
.error {
|
89
|
+
font-weight: bold;
|
90
|
+
color: red;
|
91
|
+
font-size: 1.5em;
|
92
|
+
text-align: center;
|
93
|
+
margin-top: 10%;
|
94
|
+
}
|
95
|
+
|
96
|
+
.error code {
|
97
|
+
font-family: monospace;
|
98
|
+
}
|
99
|
+
|
100
|
+
.time {
|
101
|
+
width: 448px;
|
102
|
+
margin: 30px 0 0 10px;
|
103
|
+
float: left;
|
104
|
+
text-align: center;
|
105
|
+
opacity: 0;
|
106
|
+
|
107
|
+
-webkit-transition: opacity 0.4s;
|
108
|
+
-moz-transition: opacity 0.4s;
|
109
|
+
-o-transition: opacity 0.4s;
|
110
|
+
transition: opacity 0.4s;
|
111
|
+
}
|
112
|
+
|
113
|
+
.elapsed,
|
114
|
+
.clock {
|
115
|
+
color: #333;
|
116
|
+
font-size: 2em;
|
117
|
+
text-align: center;
|
118
|
+
display: inline-block;
|
119
|
+
padding: 0.5em;
|
120
|
+
background-color: #eee;
|
121
|
+
border-radius: 10px;
|
122
|
+
}
|
123
|
+
|
124
|
+
.elapsed h2,
|
125
|
+
.clock h2 {
|
126
|
+
font-size: 0.8em;
|
127
|
+
line-height: 100%;
|
128
|
+
margin: 0;
|
129
|
+
color: #aaa;
|
130
|
+
}
|
131
|
+
|
132
|
+
.elapsed .mute {
|
133
|
+
color: #ddd;
|
134
|
+
}
|
135
|
+
|
136
|
+
</style>
|
137
|
+
</head>
|
138
|
+
|
139
|
+
<body>
|
140
|
+
|
141
|
+
<div id="wrap-current-slide" class="slides">
|
142
|
+
<script>document.write( '<iframe width="1280" height="1024" id="current-slide" src="'+ window.opener.location.href +'"></iframe>' );</script>
|
143
|
+
</div>
|
144
|
+
|
145
|
+
<div id="wrap-next-slide" class="slides">
|
146
|
+
<script>document.write( '<iframe width="640" height="512" id="next-slide" src="'+ window.opener.location.href +'"></iframe>' );</script>
|
147
|
+
<span>UPCOMING:</span>
|
148
|
+
</div>
|
149
|
+
|
150
|
+
<div class="time">
|
151
|
+
<div class="clock">
|
152
|
+
<h2>Time</h2>
|
153
|
+
<span id="clock">0:00:00 AM</span>
|
154
|
+
</div>
|
155
|
+
<div class="elapsed">
|
156
|
+
<h2>Elapsed</h2>
|
157
|
+
<span id="hours">00</span><span id="minutes">:00</span><span id="seconds">:00</span>
|
158
|
+
</div>
|
159
|
+
</div>
|
160
|
+
|
161
|
+
<div id="notes"></div>
|
162
|
+
|
163
|
+
<script src="../../plugin/markdown/marked.js"></script>
|
164
|
+
<script>
|
165
|
+
|
166
|
+
window.addEventListener( 'load', function() {
|
167
|
+
|
168
|
+
if( window.opener && window.opener.location && window.opener.location.href ) {
|
169
|
+
|
170
|
+
var notes = document.getElementById( 'notes' ),
|
171
|
+
currentSlide = document.getElementById( 'current-slide' ),
|
172
|
+
nextSlide = document.getElementById( 'next-slide' );
|
173
|
+
|
174
|
+
window.addEventListener( 'message', function( event ) {
|
175
|
+
var data = JSON.parse( event.data );
|
176
|
+
// No need for updating the notes in case of fragment changes
|
177
|
+
if ( data.notes !== undefined) {
|
178
|
+
if( data.markdown ) {
|
179
|
+
notes.innerHTML = marked( data.notes );
|
180
|
+
}
|
181
|
+
else {
|
182
|
+
notes.innerHTML = data.notes;
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
// Showing and hiding fragments
|
187
|
+
if( data.fragment === 'next' ) {
|
188
|
+
currentSlide.contentWindow.Reveal.nextFragment();
|
189
|
+
}
|
190
|
+
else if( data.fragment === 'prev' ) {
|
191
|
+
currentSlide.contentWindow.Reveal.prevFragment();
|
192
|
+
}
|
193
|
+
else {
|
194
|
+
// Update the note slides
|
195
|
+
currentSlide.contentWindow.Reveal.slide( data.indexh, data.indexv );
|
196
|
+
nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv );
|
197
|
+
}
|
198
|
+
|
199
|
+
}, false );
|
200
|
+
|
201
|
+
var start = new Date(),
|
202
|
+
timeEl = document.querySelector( '.time' ),
|
203
|
+
clockEl = document.getElementById( 'clock' ),
|
204
|
+
hoursEl = document.getElementById( 'hours' ),
|
205
|
+
minutesEl = document.getElementById( 'minutes' ),
|
206
|
+
secondsEl = document.getElementById( 'seconds' );
|
207
|
+
|
208
|
+
setInterval( function() {
|
209
|
+
|
210
|
+
timeEl.style.opacity = 1;
|
211
|
+
|
212
|
+
var diff, hours, minutes, seconds,
|
213
|
+
now = new Date();
|
214
|
+
|
215
|
+
diff = now.getTime() - start.getTime();
|
216
|
+
hours = Math.floor( diff / ( 1000 * 60 * 60 ) );
|
217
|
+
minutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );
|
218
|
+
seconds = Math.floor( ( diff / 1000 ) % 60 );
|
219
|
+
|
220
|
+
clockEl.innerHTML = now.toLocaleTimeString();
|
221
|
+
hoursEl.innerHTML = zeroPadInteger( hours );
|
222
|
+
hoursEl.className = hours > 0 ? "" : "mute";
|
223
|
+
minutesEl.innerHTML = ":" + zeroPadInteger( minutes );
|
224
|
+
minutesEl.className = minutes > 0 ? "" : "mute";
|
225
|
+
secondsEl.innerHTML = ":" + zeroPadInteger( seconds );
|
226
|
+
|
227
|
+
}, 1000 );
|
228
|
+
|
229
|
+
// Navigate the main window when the notes slide changes
|
230
|
+
currentSlide.contentWindow.Reveal.addEventListener( 'slidechanged', function( event ) {
|
231
|
+
|
232
|
+
window.opener.Reveal.slide( event.indexh, event.indexv );
|
233
|
+
|
234
|
+
} );
|
235
|
+
|
236
|
+
}
|
237
|
+
else {
|
238
|
+
|
239
|
+
document.body.innerHTML = '<p class="error">Unable to access <code>window.opener.location</code>.<br>Make sure the presentation is running on a web server.</p>';
|
240
|
+
|
241
|
+
}
|
242
|
+
|
243
|
+
|
244
|
+
}, false );
|
245
|
+
|
246
|
+
function zeroPadInteger( num ) {
|
247
|
+
var str = "00" + parseInt( num );
|
248
|
+
return str.substring( str.length - 2 );
|
249
|
+
}
|
250
|
+
|
251
|
+
</script>
|
252
|
+
</body>
|
253
|
+
</html>
|