reveal-ck 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +13 -0
- data/bin/reveal-ck +23 -8
- data/lib/reveal-ck.rb +6 -0
- data/lib/reveal-ck/build_task.rb +14 -0
- data/lib/reveal-ck/builder.rb +21 -0
- data/lib/reveal-ck/config.rb +43 -0
- data/lib/reveal-ck/file_slicer.rb +19 -17
- data/lib/reveal-ck/file_splicer.rb +30 -28
- data/lib/reveal-ck/file_string_replacer.rb +17 -0
- data/lib/reveal-ck/haml_processor.rb +17 -15
- data/lib/reveal-ck/presentation_builder.rb +69 -0
- data/lib/reveal-ck/slide_builder.rb +66 -0
- data/lib/reveal-ck/version.rb +1 -1
- data/rakelib/cucumber.rake +14 -1
- data/reveal.js/Gruntfile.js +132 -0
- data/reveal.js/LICENSE +1 -1
- data/reveal.js/README.md +362 -50
- data/reveal.js/css/print/paper.css +14 -14
- data/reveal.js/css/print/pdf.css +60 -30
- data/reveal.js/css/reveal.css +444 -149
- data/reveal.js/css/reveal.min.css +2 -2
- data/reveal.js/css/theme/README.md +8 -10
- data/reveal.js/css/theme/beige.css +24 -45
- data/reveal.js/css/theme/default.css +24 -45
- data/reveal.js/css/theme/moon.css +142 -0
- data/reveal.js/css/theme/night.css +24 -44
- data/reveal.js/css/theme/serif.css +27 -45
- data/reveal.js/css/theme/simple.css +25 -45
- data/reveal.js/css/theme/sky.css +26 -43
- data/reveal.js/css/theme/solarized.css +142 -0
- data/reveal.js/css/theme/source/beige.scss +2 -2
- data/reveal.js/css/theme/source/default.scss +2 -2
- data/reveal.js/css/theme/source/moon.scss +68 -0
- data/reveal.js/css/theme/source/night.scss +4 -4
- data/reveal.js/css/theme/source/serif.scss +8 -6
- data/reveal.js/css/theme/source/simple.scss +5 -5
- data/reveal.js/css/theme/source/sky.scss +9 -4
- data/reveal.js/css/theme/source/solarized.scss +74 -0
- data/reveal.js/css/theme/template/settings.scss +2 -2
- data/reveal.js/examples/assets/image1.png +0 -0
- data/reveal.js/examples/assets/image2.png +0 -0
- data/reveal.js/examples/barebones.html +42 -0
- data/reveal.js/examples/embedded-media.html +49 -0
- data/reveal.js/examples/slide-backgrounds.html +101 -0
- data/reveal.js/index.html +63 -56
- data/reveal.js/js/reveal.js +997 -216
- data/reveal.js/js/reveal.min.js +3 -3
- data/reveal.js/package.json +43 -29
- data/reveal.js/plugin/highlight/highlight.js +28 -6
- data/reveal.js/plugin/markdown/example.html +97 -0
- data/reveal.js/plugin/markdown/example.md +29 -0
- data/reveal.js/plugin/markdown/markdown.js +164 -11
- data/reveal.js/plugin/markdown/marked.js +37 -0
- data/reveal.js/plugin/multiplex/client.js +13 -0
- data/reveal.js/plugin/multiplex/index.js +56 -0
- data/reveal.js/plugin/multiplex/master.js +50 -0
- data/reveal.js/plugin/notes-server/index.js +1 -0
- data/reveal.js/plugin/notes-server/notes.html +8 -5
- data/reveal.js/plugin/notes/notes.html +133 -44
- data/reveal.js/plugin/notes/notes.js +3 -1
- data/reveal.js/plugin/print-pdf/print-pdf.js +8 -3
- data/reveal.js/plugin/remotes/remotes.js +13 -4
- data/reveal.js/plugin/search/search.js +196 -0
- data/reveal.js/plugin/zoom-js/zoom.js +26 -21
- data/spec/data/config/config.toml +6 -0
- data/spec/data/string_replacer/after_replace +4 -0
- data/spec/data/string_replacer/before_replace +4 -0
- data/spec/lib/reveal-ck/config_spec.rb +50 -0
- data/spec/lib/reveal-ck/file_slicer_spec.rb +29 -27
- data/spec/lib/reveal-ck/file_splicer_spec.rb +28 -26
- data/spec/lib/reveal-ck/file_string_replacer_spec.rb +32 -0
- data/spec/lib/reveal-ck/haml_processor_spec.rb +28 -26
- metadata +82 -27
- data/rakelib/presentation.rake +0 -41
- data/rakelib/reveal.rake +0 -15
- data/reveal.js/css/shaders/tile-flip.fs +0 -64
- data/reveal.js/css/shaders/tile-flip.vs +0 -141
- data/reveal.js/grunt.js +0 -84
- data/reveal.js/plugin/markdown/showdown.js +0 -62
@@ -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
|
+
}());
|
@@ -3,6 +3,8 @@
|
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8">
|
5
5
|
|
6
|
+
<meta name="viewport" content="width=1150">
|
7
|
+
|
6
8
|
<title>reveal.js - Slide Notes</title>
|
7
9
|
|
8
10
|
<style>
|
@@ -14,6 +16,7 @@
|
|
14
16
|
font-size: 24px;
|
15
17
|
width: 640px;
|
16
18
|
margin-top: 5px;
|
19
|
+
clear: left;
|
17
20
|
}
|
18
21
|
|
19
22
|
#wrap-current-slide {
|
@@ -27,13 +30,13 @@
|
|
27
30
|
width: 1280px;
|
28
31
|
height: 1024px;
|
29
32
|
border: none;
|
30
|
-
|
33
|
+
|
31
34
|
-webkit-transform-origin: 0 0;
|
32
35
|
-moz-transform-origin: 0 0;
|
33
36
|
-ms-transform-origin: 0 0;
|
34
37
|
-o-transform-origin: 0 0;
|
35
38
|
transform-origin: 0 0;
|
36
|
-
|
39
|
+
|
37
40
|
-webkit-transform: scale(0.5);
|
38
41
|
-moz-transform: scale(0.5);
|
39
42
|
-ms-transform: scale(0.5);
|
@@ -53,7 +56,7 @@
|
|
53
56
|
width: 1280px;
|
54
57
|
height: 1024px;
|
55
58
|
border: none;
|
56
|
-
|
59
|
+
|
57
60
|
-webkit-transform-origin: 0 0;
|
58
61
|
-moz-transform-origin: 0 0;
|
59
62
|
-ms-transform-origin: 0 0;
|
@@ -99,7 +102,7 @@
|
|
99
102
|
<div id="notes"></div>
|
100
103
|
|
101
104
|
<script src="/socket.io/socket.io.js"></script>
|
102
|
-
<script src="/plugin/markdown/
|
105
|
+
<script src="/plugin/markdown/marked.js"></script>
|
103
106
|
|
104
107
|
<script>
|
105
108
|
var socketId = '{{socketId}}';
|
@@ -113,7 +116,7 @@
|
|
113
116
|
if (data.socketId !== socketId) { return; }
|
114
117
|
|
115
118
|
if (data.markdown) {
|
116
|
-
notes.innerHTML = (
|
119
|
+
notes.innerHTML = marked(data.notes);
|
117
120
|
}
|
118
121
|
else {
|
119
122
|
notes.innerHTML = data.notes;
|
@@ -14,6 +14,7 @@
|
|
14
14
|
font-size: 24px;
|
15
15
|
width: 640px;
|
16
16
|
margin-top: 5px;
|
17
|
+
clear: left;
|
17
18
|
}
|
18
19
|
|
19
20
|
#wrap-current-slide {
|
@@ -29,16 +30,16 @@
|
|
29
30
|
border: none;
|
30
31
|
|
31
32
|
-webkit-transform-origin: 0 0;
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
-moz-transform-origin: 0 0;
|
34
|
+
-ms-transform-origin: 0 0;
|
35
|
+
-o-transform-origin: 0 0;
|
36
|
+
transform-origin: 0 0;
|
36
37
|
|
37
38
|
-webkit-transform: scale(0.5);
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
-moz-transform: scale(0.5);
|
40
|
+
-ms-transform: scale(0.5);
|
41
|
+
-o-transform: scale(0.5);
|
42
|
+
transform: scale(0.5);
|
42
43
|
}
|
43
44
|
|
44
45
|
#wrap-next-slide {
|
@@ -55,16 +56,16 @@
|
|
55
56
|
border: none;
|
56
57
|
|
57
58
|
-webkit-transform-origin: 0 0;
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
59
|
+
-moz-transform-origin: 0 0;
|
60
|
+
-ms-transform-origin: 0 0;
|
61
|
+
-o-transform-origin: 0 0;
|
62
|
+
transform-origin: 0 0;
|
62
63
|
|
63
64
|
-webkit-transform: scale(0.35);
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
65
|
+
-moz-transform: scale(0.35);
|
66
|
+
-ms-transform: scale(0.35);
|
67
|
+
-o-transform: scale(0.35);
|
68
|
+
transform: scale(0.35);
|
68
69
|
}
|
69
70
|
|
70
71
|
.slides {
|
@@ -95,6 +96,43 @@
|
|
95
96
|
.error code {
|
96
97
|
font-family: monospace;
|
97
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
|
+
|
98
136
|
</style>
|
99
137
|
</head>
|
100
138
|
|
@@ -108,47 +146,92 @@
|
|
108
146
|
<script>document.write( '<iframe width="640" height="512" id="next-slide" src="'+ window.opener.location.href +'"></iframe>' );</script>
|
109
147
|
<span>UPCOMING:</span>
|
110
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
|
+
|
111
161
|
<div id="notes"></div>
|
112
162
|
|
113
|
-
<script src="../../plugin/markdown/
|
163
|
+
<script src="../../plugin/markdown/marked.js"></script>
|
114
164
|
<script>
|
165
|
+
|
115
166
|
window.addEventListener( 'load', function() {
|
116
167
|
|
117
168
|
if( window.opener && window.opener.location && window.opener.location.href ) {
|
118
169
|
|
119
|
-
(
|
120
|
-
|
121
|
-
|
122
|
-
nextSlide = document.getElementById( 'next-slide' );
|
123
|
-
|
124
|
-
window.addEventListener( 'message', function( event ) {
|
125
|
-
var data = JSON.parse( event.data );
|
126
|
-
// No need for updating the notes in case of fragment changes
|
127
|
-
if ( data.notes !== undefined) {
|
128
|
-
if( data.markdown ) {
|
129
|
-
notes.innerHTML = (new Showdown.converter()).makeHtml( data.notes );
|
130
|
-
}
|
131
|
-
else {
|
132
|
-
notes.innerHTML = data.notes;
|
133
|
-
}
|
134
|
-
}
|
170
|
+
var notes = document.getElementById( 'notes' ),
|
171
|
+
currentSlide = document.getElementById( 'current-slide' ),
|
172
|
+
nextSlide = document.getElementById( 'next-slide' );
|
135
173
|
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
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 );
|
142
180
|
}
|
143
181
|
else {
|
144
|
-
|
145
|
-
currentSlide.contentWindow.Reveal.slide( data.indexh, data.indexv );
|
146
|
-
nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv );
|
182
|
+
notes.innerHTML = data.notes;
|
147
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;
|
148
211
|
|
149
|
-
|
212
|
+
var diff, hours, minutes, seconds,
|
213
|
+
now = new Date();
|
150
214
|
|
151
|
-
|
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
|
+
} );
|
152
235
|
|
153
236
|
}
|
154
237
|
else {
|
@@ -157,8 +240,14 @@
|
|
157
240
|
|
158
241
|
}
|
159
242
|
|
243
|
+
|
160
244
|
}, false );
|
161
245
|
|
246
|
+
function zeroPadInteger( num ) {
|
247
|
+
var str = "00" + parseInt( num );
|
248
|
+
return str.substring( str.length - 2 );
|
249
|
+
}
|
250
|
+
|
162
251
|
</script>
|
163
252
|
</body>
|
164
253
|
</html>
|