Skip to content

Commit 9b7bd05

Browse files
committed
add Julian's preso
1 parent e964445 commit 9b7bd05

File tree

106 files changed

+20024
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+20024
-0
lines changed

reschke-headers/CONTRIBUTING.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Contributing
2+
3+
Please keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.
4+
5+
6+
### Personal Support
7+
If you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).
8+
9+
10+
### Bug Reports
11+
When reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.
12+
13+
14+
### Pull Requests
15+
- Should follow the coding style of the file you work in, most importantly:
16+
- Tabs to indent
17+
- Single-quoted strings
18+
- Should be made towards the **dev branch**
19+
- Should be submitted from a feature/topic branch (not your master)
20+
21+
22+
### Plugins
23+
Please do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines

reschke-headers/CVS/Entries

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/index.html/1.4/Tue Jul 28 19:57:13 2015//
2+
D

reschke-headers/CVS/Repository

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jre/pres-httpws

reschke-headers/CVS/Root

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:ext:[email protected]:/var/cvsroot

reschke-headers/CVS/Template

Whitespace-only changes.

reschke-headers/Gruntfile.js

+170
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
/* global module:false */
2+
module.exports = function(grunt) {
3+
var port = grunt.option('port') || 8000;
4+
// Project configuration
5+
grunt.initConfig({
6+
pkg: grunt.file.readJSON('package.json'),
7+
meta: {
8+
banner:
9+
'/*!\n' +
10+
' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' +
11+
' * http://lab.hakim.se/reveal-js\n' +
12+
' * MIT licensed\n' +
13+
' *\n' +
14+
' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n' +
15+
' */'
16+
},
17+
18+
qunit: {
19+
files: [ 'test/*.html' ]
20+
},
21+
22+
uglify: {
23+
options: {
24+
banner: '<%= meta.banner %>\n'
25+
},
26+
build: {
27+
src: 'js/reveal.js',
28+
dest: 'js/reveal.min.js'
29+
}
30+
},
31+
32+
sass: {
33+
core: {
34+
files: {
35+
'css/reveal.css': 'css/reveal.scss',
36+
}
37+
},
38+
themes: {
39+
files: [
40+
{
41+
expand: true,
42+
cwd: 'css/theme/source',
43+
src: ['*.scss'],
44+
dest: 'css/theme',
45+
ext: '.css'
46+
}
47+
]
48+
}
49+
},
50+
51+
autoprefixer: {
52+
dist: {
53+
src: 'css/reveal.css'
54+
}
55+
},
56+
57+
cssmin: {
58+
compress: {
59+
files: {
60+
'css/reveal.min.css': [ 'css/reveal.css' ]
61+
}
62+
}
63+
},
64+
65+
jshint: {
66+
options: {
67+
curly: false,
68+
eqeqeq: true,
69+
immed: true,
70+
latedef: true,
71+
newcap: true,
72+
noarg: true,
73+
sub: true,
74+
undef: true,
75+
eqnull: true,
76+
browser: true,
77+
expr: true,
78+
globals: {
79+
head: false,
80+
module: false,
81+
console: false,
82+
unescape: false,
83+
define: false,
84+
exports: false
85+
}
86+
},
87+
files: [ 'Gruntfile.js', 'js/reveal.js' ]
88+
},
89+
90+
connect: {
91+
server: {
92+
options: {
93+
port: port,
94+
base: '.',
95+
livereload: true,
96+
open: true
97+
}
98+
}
99+
},
100+
101+
zip: {
102+
'reveal-js-presentation.zip': [
103+
'index.html',
104+
'css/**',
105+
'js/**',
106+
'lib/**',
107+
'images/**',
108+
'plugin/**'
109+
]
110+
},
111+
112+
watch: {
113+
options: {
114+
livereload: true
115+
},
116+
js: {
117+
files: [ 'Gruntfile.js', 'js/reveal.js' ],
118+
tasks: 'js'
119+
},
120+
theme: {
121+
files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],
122+
tasks: 'css-themes'
123+
},
124+
css: {
125+
files: [ 'css/reveal.scss' ],
126+
tasks: 'css-core'
127+
},
128+
html: {
129+
files: [ 'index.html']
130+
}
131+
}
132+
133+
});
134+
135+
// Dependencies
136+
grunt.loadNpmTasks( 'grunt-contrib-qunit' );
137+
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
138+
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
139+
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
140+
grunt.loadNpmTasks( 'grunt-contrib-watch' );
141+
grunt.loadNpmTasks( 'grunt-sass' );
142+
grunt.loadNpmTasks( 'grunt-contrib-connect' );
143+
grunt.loadNpmTasks( 'grunt-autoprefixer' );
144+
grunt.loadNpmTasks( 'grunt-zip' );
145+
146+
// Default task
147+
grunt.registerTask( 'default', [ 'css', 'js' ] );
148+
149+
// JS task
150+
grunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );
151+
152+
// Theme CSS
153+
grunt.registerTask( 'css-themes', [ 'sass:themes' ] );
154+
155+
// Core framework CSS
156+
grunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );
157+
158+
// All CSS
159+
grunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );
160+
161+
// Package presentation to archive
162+
grunt.registerTask( 'package', [ 'default', 'zip' ] );
163+
164+
// Serve presentation locally
165+
grunt.registerTask( 'serve', [ 'connect', 'watch' ] );
166+
167+
// Run tests
168+
grunt.registerTask( 'test', [ 'jshint', 'qunit' ] );
169+
170+
};

reschke-headers/LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (C) 2015 Hakim El Hattab, http://hakim.se
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

0 commit comments

Comments
 (0)