This is an automated email from the ASF dual-hosted git repository.
markt pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-training.git.
from 6e20afd Add a basic description.
new 7e995c4 Add reveal.js 3.6.0
new 4ca32a1 Ignore files installed to run local server
new 6f9efb9 Add directories for courses and modules and update Grunt
config to watch those directories
new 3f2b516 Add reveal_external
new 11438e2 Add skelton for modules planned for first course
new 83c4b59 Add first course
new dbd857a Replace contents of default index page with links to the
available courses
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 +
Gruntfile.js | 192 +
LICENSE | 46 +
bower.json | 27 +
courses/tomcat-for-administrators.html | 73 +
css/print/paper.css | 203 +
css/print/pdf.css | 178 +
css/reveal.css | 1555 ++++++
css/reveal.scss | 1717 +++++++
css/theme/README.md | 21 +
css/theme/beige.css | 268 +
css/theme/black.css | 264 +
css/theme/blood.css | 287 ++
css/theme/league.css | 270 +
css/theme/moon.css | 268 +
css/theme/night.css | 262 +
css/theme/serif.css | 264 +
css/theme/simple.css | 267 +
css/theme/sky.css | 271 +
css/theme/solarized.css | 268 +
css/theme/source/beige.scss | 39 +
css/theme/source/black.scss | 49 +
css/theme/source/blood.scss | 78 +
css/theme/source/league.scss | 34 +
css/theme/source/moon.scss | 57 +
css/theme/source/night.scss | 34 +
css/theme/source/serif.scss | 35 +
css/theme/source/simple.scss | 43 +
css/theme/source/sky.scss | 46 +
css/theme/source/solarized.scss | 63 +
css/theme/source/white.scss | 49 +
css/theme/template/mixins.scss | 29 +
css/theme/template/settings.scss | 43 +
css/theme/template/theme.scss | 316 ++
css/theme/white.css | 264 +
index.html | 69 +
js/reveal.js | 5239 ++++++++++++++++++++
lib/css/zenburn.css | 80 +
lib/font/league-gothic/LICENSE | 2 +
lib/font/league-gothic/league-gothic.css | 10 +
lib/font/league-gothic/league-gothic.eot | Bin 0 -> 25696 bytes
lib/font/league-gothic/league-gothic.ttf | Bin 0 -> 64256 bytes
lib/font/league-gothic/league-gothic.woff | Bin 0 -> 30764 bytes
lib/font/source-sans-pro/LICENSE | 45 +
.../source-sans-pro/source-sans-pro-italic.eot | Bin 0 -> 75720 bytes
.../source-sans-pro/source-sans-pro-italic.ttf | Bin 0 -> 238084 bytes
.../source-sans-pro/source-sans-pro-italic.woff | Bin 0 -> 98556 bytes
.../source-sans-pro/source-sans-pro-regular.eot | Bin 0 -> 88070 bytes
.../source-sans-pro/source-sans-pro-regular.ttf | Bin 0 -> 288008 bytes
.../source-sans-pro/source-sans-pro-regular.woff | Bin 0 -> 114324 bytes
.../source-sans-pro/source-sans-pro-semibold.eot | Bin 0 -> 89897 bytes
.../source-sans-pro/source-sans-pro-semibold.ttf | Bin 0 -> 284640 bytes
.../source-sans-pro/source-sans-pro-semibold.woff | Bin 0 -> 115648 bytes
.../source-sans-pro-semibolditalic.eot | Bin 0 -> 75706 bytes
.../source-sans-pro-semibolditalic.ttf | Bin 0 -> 240944 bytes
.../source-sans-pro-semibolditalic.woff | Bin 0 -> 98816 bytes
lib/font/source-sans-pro/source-sans-pro.css | 39 +
lib/js/classList.js | 2 +
lib/js/head.min.js | 9 +
lib/js/html5shiv.js | 7 +
modules/background-01.html | 20 +
modules/deployment-01.html | 20 +
modules/intro.html | 19 +
modules/logging-01.html | 20 +
modules/performance-01.html | 20 +
modules/tls-01.html | 20 +
modules/tls-03.html | 20 +
modules/wrap-up.html | 19 +
package.json | 43 +
plugin/external/external.js | 193 +
plugin/highlight/highlight.js | 77 +
plugin/markdown/example.html | 129 +
plugin/markdown/example.md | 31 +
plugin/markdown/markdown.js | 412 ++
plugin/markdown/marked.js | 6 +
plugin/math/math.js | 67 +
plugin/multiplex/client.js | 13 +
plugin/multiplex/index.js | 64 +
plugin/multiplex/master.js | 34 +
plugin/multiplex/package.json | 19 +
plugin/notes-server/client.js | 65 +
plugin/notes-server/index.js | 69 +
plugin/notes-server/notes.html | 585 +++
plugin/notes/notes.html | 759 +++
plugin/notes/notes.js | 155 +
plugin/print-pdf/print-pdf.js | 69 +
plugin/search/search.js | 206 +
plugin/zoom-js/zoom.js | 272 +
88 files changed, 16809 insertions(+)
create mode 100644 .gitignore
create mode 100644 Gruntfile.js
create mode 100644 bower.json
create mode 100644 courses/tomcat-for-administrators.html
create mode 100644 css/print/paper.css
create mode 100644 css/print/pdf.css
create mode 100644 css/reveal.css
create mode 100644 css/reveal.scss
create mode 100644 css/theme/README.md
create mode 100644 css/theme/beige.css
create mode 100644 css/theme/black.css
create mode 100644 css/theme/blood.css
create mode 100644 css/theme/league.css
create mode 100644 css/theme/moon.css
create mode 100644 css/theme/night.css
create mode 100644 css/theme/serif.css
create mode 100644 css/theme/simple.css
create mode 100644 css/theme/sky.css
create mode 100644 css/theme/solarized.css
create mode 100644 css/theme/source/beige.scss
create mode 100644 css/theme/source/black.scss
create mode 100644 css/theme/source/blood.scss
create mode 100644 css/theme/source/league.scss
create mode 100644 css/theme/source/moon.scss
create mode 100644 css/theme/source/night.scss
create mode 100644 css/theme/source/serif.scss
create mode 100644 css/theme/source/simple.scss
create mode 100644 css/theme/source/sky.scss
create mode 100644 css/theme/source/solarized.scss
create mode 100644 css/theme/source/white.scss
create mode 100644 css/theme/template/mixins.scss
create mode 100644 css/theme/template/settings.scss
create mode 100644 css/theme/template/theme.scss
create mode 100644 css/theme/white.css
create mode 100644 index.html
create mode 100644 js/reveal.js
create mode 100644 lib/css/zenburn.css
create mode 100644 lib/font/league-gothic/LICENSE
create mode 100644 lib/font/league-gothic/league-gothic.css
create mode 100755 lib/font/league-gothic/league-gothic.eot
create mode 100755 lib/font/league-gothic/league-gothic.ttf
create mode 100755 lib/font/league-gothic/league-gothic.woff
create mode 100644 lib/font/source-sans-pro/LICENSE
create mode 100755 lib/font/source-sans-pro/source-sans-pro-italic.eot
create mode 100755 lib/font/source-sans-pro/source-sans-pro-italic.ttf
create mode 100755 lib/font/source-sans-pro/source-sans-pro-italic.woff
create mode 100755 lib/font/source-sans-pro/source-sans-pro-regular.eot
create mode 100755 lib/font/source-sans-pro/source-sans-pro-regular.ttf
create mode 100755 lib/font/source-sans-pro/source-sans-pro-regular.woff
create mode 100755 lib/font/source-sans-pro/source-sans-pro-semibold.eot
create mode 100755 lib/font/source-sans-pro/source-sans-pro-semibold.ttf
create mode 100755 lib/font/source-sans-pro/source-sans-pro-semibold.woff
create mode 100755 lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot
create mode 100755 lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf
create mode 100755 lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff
create mode 100644 lib/font/source-sans-pro/source-sans-pro.css
create mode 100644 lib/js/classList.js
create mode 100644 lib/js/head.min.js
create mode 100644 lib/js/html5shiv.js
create mode 100644 modules/background-01.html
create mode 100644 modules/deployment-01.html
create mode 100644 modules/intro.html
create mode 100644 modules/logging-01.html
create mode 100644 modules/performance-01.html
create mode 100644 modules/tls-01.html
create mode 100644 modules/tls-03.html
create mode 100644 modules/wrap-up.html
create mode 100644 package.json
create mode 100644 plugin/external/external.js
create mode 100644 plugin/highlight/highlight.js
create mode 100644 plugin/markdown/example.html
create mode 100644 plugin/markdown/example.md
create mode 100755 plugin/markdown/markdown.js
create mode 100644 plugin/markdown/marked.js
create mode 100755 plugin/math/math.js
create mode 100644 plugin/multiplex/client.js
create mode 100644 plugin/multiplex/index.js
create mode 100644 plugin/multiplex/master.js
create mode 100644 plugin/multiplex/package.json
create mode 100644 plugin/notes-server/client.js
create mode 100644 plugin/notes-server/index.js
create mode 100644 plugin/notes-server/notes.html
create mode 100644 plugin/notes/notes.html
create mode 100644 plugin/notes/notes.js
create mode 100644 plugin/print-pdf/print-pdf.js
create mode 100644 plugin/search/search.js
create mode 100644 plugin/zoom-js/zoom.js
--
To stop receiving notification emails like this one, please contact
[email protected].
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]