├── Dockerfile ├── Pothole_Repair_Requests.csv ├── README.md ├── colorbg.png ├── img ├── bilingual.png ├── gg_mapping.png ├── rinpython.png ├── rinpython_1_4.png ├── rinpython_2_4.png ├── rinpython_3_4.png └── rinpython_4_4.png ├── index.html ├── notebooks ├── potholes.html └── potholes.ipynb ├── potholes_files ├── potholes_20_0.png ├── potholes_21_0.png ├── potholes_22_0.png ├── potholes_22_1.png ├── potholes_23_0.png ├── potholes_24_0.png ├── potholes_25_0.png ├── potholes_25_1.png ├── potholes_26_0.png ├── potholes_27_0.png ├── potholes_28_0.png ├── potholes_29_0.png ├── potholes_30_0.png ├── potholes_31_0.png ├── potholes_32_0.png ├── potholes_33_0.png ├── potholes_34_0.png ├── potholes_35_0.png ├── potholes_36_0.png ├── potholes_37_0.png ├── potholes_38_0.png ├── potholes_39_0.png ├── potholes_40_0.png ├── potholes_41_0.png ├── potholes_42_0.png ├── potholes_43_0.png ├── potholes_44_0.png ├── potholes_45_0.png ├── potholes_46_0.png ├── potholes_47_0.png ├── potholes_48_0.png ├── potholes_51_0.png ├── potholes_53_0.png ├── potholes_54_0.png ├── potholes_55_0.png ├── potholes_56_0.png ├── potholes_57_0.png ├── potholes_58_0.png ├── potholes_59_0.png ├── potholes_60_0.png ├── potholes_61_0.png ├── potholes_62_0.png ├── potholes_63_0.png ├── potholes_64_0.png ├── potholes_65_0.png ├── potholes_66_0.png ├── potholes_67_0.png ├── potholes_68_0.png ├── potholes_69_0.png ├── potholes_70_0.png ├── potholes_71_0.png ├── potholes_72_0.png ├── potholes_73_0.png ├── potholes_74_0.png └── potholes_75_0.png ├── potholes_tweaked.md └── reveal.js-3.2.0 ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── css ├── print │ ├── paper.css │ └── pdf.css ├── reveal.css ├── reveal.scss └── theme │ ├── README.md │ ├── beige.css │ ├── black.css │ ├── blood.css │ ├── league.css │ ├── moon.css │ ├── night.css │ ├── serif.css │ ├── simple.css │ ├── sky.css │ ├── solarized.css │ ├── source │ ├── beige.scss │ ├── black.scss │ ├── blood.scss │ ├── league.scss │ ├── moon.scss │ ├── night.scss │ ├── serif.scss │ ├── simple.scss │ ├── sky.scss │ ├── solarized.scss │ └── white.scss │ ├── template │ ├── mixins.scss │ ├── settings.scss │ └── theme.scss │ └── white.css ├── index.html ├── js └── reveal.js ├── lib ├── css │ └── zenburn.css ├── font │ ├── league-gothic │ │ ├── LICENSE │ │ ├── league-gothic.css │ │ ├── league-gothic.eot │ │ ├── league-gothic.ttf │ │ └── league-gothic.woff │ └── source-sans-pro │ │ ├── LICENSE │ │ ├── source-sans-pro-italic.eot │ │ ├── source-sans-pro-italic.ttf │ │ ├── source-sans-pro-italic.woff │ │ ├── source-sans-pro-regular.eot │ │ ├── source-sans-pro-regular.ttf │ │ ├── source-sans-pro-regular.woff │ │ ├── source-sans-pro-semibold.eot │ │ ├── source-sans-pro-semibold.ttf │ │ ├── source-sans-pro-semibold.woff │ │ ├── source-sans-pro-semibolditalic.eot │ │ ├── source-sans-pro-semibolditalic.ttf │ │ ├── source-sans-pro-semibolditalic.woff │ │ └── source-sans-pro.css └── js │ ├── classList.js │ ├── head.min.js │ └── html5shiv.js ├── package.json ├── plugin ├── highlight │ └── highlight.js ├── markdown │ ├── example.html │ ├── example.md │ ├── markdown.js │ └── marked.js ├── math │ └── math.js ├── multiplex │ ├── client.js │ ├── index.js │ └── master.js ├── notes-server │ ├── client.js │ ├── index.js │ └── notes.html ├── notes │ ├── notes.html │ └── notes.js ├── print-pdf │ └── print-pdf.js ├── search │ └── search.js └── zoom-js │ └── zoom.js └── test ├── examples ├── assets │ ├── image1.png │ └── image2.png ├── barebones.html ├── embedded-media.html ├── math.html ├── slide-backgrounds.html └── slide-transitions.html ├── qunit-1.12.0.css ├── qunit-1.12.0.js ├── test-markdown-element-attributes.html ├── test-markdown-element-attributes.js ├── test-markdown-slide-attributes.html ├── test-markdown-slide-attributes.js ├── test-markdown.html ├── test-markdown.js ├── test-pdf.html ├── test-pdf.js ├── test.html └── test.js /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/Dockerfile -------------------------------------------------------------------------------- /Pothole_Repair_Requests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/Pothole_Repair_Requests.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/README.md -------------------------------------------------------------------------------- /colorbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/colorbg.png -------------------------------------------------------------------------------- /img/bilingual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/img/bilingual.png -------------------------------------------------------------------------------- /img/gg_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/img/gg_mapping.png -------------------------------------------------------------------------------- /img/rinpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/img/rinpython.png -------------------------------------------------------------------------------- /img/rinpython_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/img/rinpython_1_4.png -------------------------------------------------------------------------------- /img/rinpython_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/img/rinpython_2_4.png -------------------------------------------------------------------------------- /img/rinpython_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/img/rinpython_3_4.png -------------------------------------------------------------------------------- /img/rinpython_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/img/rinpython_4_4.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/index.html -------------------------------------------------------------------------------- /notebooks/potholes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/notebooks/potholes.html -------------------------------------------------------------------------------- /notebooks/potholes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/notebooks/potholes.ipynb -------------------------------------------------------------------------------- /potholes_files/potholes_20_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_20_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_21_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_22_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_22_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_22_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_22_1.png -------------------------------------------------------------------------------- /potholes_files/potholes_23_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_23_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_24_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_24_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_25_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_25_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_25_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_25_1.png -------------------------------------------------------------------------------- /potholes_files/potholes_26_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_26_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_27_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_27_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_28_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_28_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_29_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_29_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_30_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_30_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_31_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_31_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_32_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_32_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_33_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_33_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_34_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_34_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_35_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_35_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_36_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_36_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_37_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_37_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_38_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_38_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_39_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_39_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_40_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_40_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_41_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_41_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_42_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_42_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_43_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_43_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_44_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_44_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_45_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_45_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_46_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_46_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_47_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_47_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_48_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_48_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_51_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_51_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_53_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_53_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_54_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_54_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_55_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_55_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_56_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_56_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_57_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_57_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_58_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_58_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_59_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_59_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_60_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_60_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_61_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_61_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_62_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_62_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_63_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_63_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_64_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_64_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_65_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_65_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_66_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_66_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_67_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_67_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_68_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_68_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_69_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_69_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_70_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_70_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_71_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_71_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_72_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_72_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_73_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_73_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_74_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_74_0.png -------------------------------------------------------------------------------- /potholes_files/potholes_75_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_files/potholes_75_0.png -------------------------------------------------------------------------------- /potholes_tweaked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/potholes_tweaked.md -------------------------------------------------------------------------------- /reveal.js-3.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/.gitignore -------------------------------------------------------------------------------- /reveal.js-3.2.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/.travis.yml -------------------------------------------------------------------------------- /reveal.js-3.2.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /reveal.js-3.2.0/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/Gruntfile.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/LICENSE -------------------------------------------------------------------------------- /reveal.js-3.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/README.md -------------------------------------------------------------------------------- /reveal.js-3.2.0/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/bower.json -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/print/paper.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/print/pdf.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/reveal.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/reveal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/reveal.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/README.md -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/beige.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/black.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/blood.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/league.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/league.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/moon.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/night.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/serif.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/simple.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/sky.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/solarized.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/beige.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/black.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/blood.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/league.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/league.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/moon.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/night.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/serif.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/simple.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/sky.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/source/white.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/source/white.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/template/settings.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/template/theme.scss -------------------------------------------------------------------------------- /reveal.js-3.2.0/css/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/css/theme/white.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/index.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/js/reveal.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/css/zenburn.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/league-gothic/LICENSE -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/js/classList.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/js/head.min.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/lib/js/html5shiv.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/package.json -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/markdown/example.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/markdown/example.md -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/markdown/marked.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/math/math.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/multiplex/client.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/multiplex/index.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/multiplex/master.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/notes-server/client.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/notes-server/index.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/notes/notes.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/notes/notes.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/search/search.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/examples/assets/image1.png -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/examples/assets/image2.png -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/examples/barebones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/examples/barebones.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/examples/embedded-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/examples/embedded-media.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/examples/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/examples/math.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/examples/slide-backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/examples/slide-backgrounds.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/examples/slide-transitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/examples/slide-transitions.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/qunit-1.12.0.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-markdown-element-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-markdown-element-attributes.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-markdown-element-attributes.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-markdown-slide-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-markdown-slide-attributes.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-markdown-slide-attributes.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-markdown.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-markdown.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-pdf.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test-pdf.js -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test.html -------------------------------------------------------------------------------- /reveal.js-3.2.0/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgautier/jpd-pdapr-slides/HEAD/reveal.js-3.2.0/test/test.js --------------------------------------------------------------------------------