-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·416 lines (376 loc) · 16.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Drupalcamp Paris 2013 - Comment contribuer à Drupal ?</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/beige.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
<style>
div.multi-columns {
column-count:2;
/*-moz-column-width: 640px;*/
-moz-column-count:2; /* Firefox */
-webkit-column-count:2; /* Safari and Chrome */
}
div.multi-columns .column {
column-span: 1;
-moz-column-span:1; /* Firefox */
-webkit-column-span:1; /* Safari and Chrome */
}
ul li.special {
margin-top: 1em;
}
ul li.details {
margin-left: 1em;
}
.reveal section img.deco-translation {
margin-left: 1em;
margin-bottom: -0.5em;
}
.reveal section img.deco-time {
margin-left: 1em;
margin-bottom: 0em;
}
.reveal section img.deco-bugs{
margin-left: 1em;
margin-bottom: -1.75em;
}
.reveal section img.deco-code{
margin-left: 1em;
margin-bottom: -1em;
}
.reveal section img.deco-meetup {
border: none;
background: none;
box-shadow: none;
margin-top: 1.5em;
}
.credits p {
font-size: 50%;
}
.credits ul {
list-style: none;
font-size: 35%;
width: 86%;
column-count:6;
/*-moz-column-width: 640px;*/
-moz-column-count:6; /* Firefox */
-webkit-column-count:6; /* Safari and Chrome */
}
html.begin body .reveal .state-background {
background: url("images/bg-end.png") no-repeat center center fixed;
background-size: cover;
}
html.end body .reveal{
background: url("images/bg-end.png") no-repeat center center fixed;
background-size: cover;
}
html.end body .reveal section ul {
transform: rotate(-6deg);
}
html.end body .reveal section ul li {
color: white;
}
html.begin body .reveal h2,
html.end body .reveal section h2,
html.end body .reveal section h3 {
color: white;
transform: rotate(-6deg);
}
section ul .bug {
border-radius: 10px;
color: white;
text-align: center;
list-style: none;
padding: 0.25em;
margin-bottom: 0.5em;
}
.bug.bug-active {
background-color: purple;
}
.bug.bug-work {
background-color: red;
}
.bug.bug-review {
background-color: darkorange;
}
.bug.bug-tested {
background-color: dodgerblue;
}
.bug.bug-fixed {
background-color: lawngreen;
}
</style>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-state="begin">
<h2>Comment contribuer à Drupal</h2>
</section>
<section>
<h2>Qui sommes-nous ?</h2>
<div class="multi-columns">
<div class="column">
<p>Simon Georges<br />
(@simongeorges, saisai sur #drupal-fr)<br />
Lead développeur chez Makina Corpus<br />
Impliqué dans la communauté depuis 2009<br />
Co-mainteneur de Service Links (entre autres)
</p>
<p><img src="images/saisai.jpg" alt="Simon Georges the magnifique"/><br /></p>
</div>
<div class="column">
<p>
Julien Dubois<br />
(@Artusamak)<br />
Lead développeur chez Commerce Guys<br />
Impliqué dans la communauté depuis 2009<br />
Co-mainteneur de plusieurs modules Commerce
</p>
<p><img src="images/artusamak.jpg" alt="Julien Dubois the redoutable"/></p>
</div>
</div>
<aside class="notes">
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).
</aside>
</section>
<section>
<h2>Qui êtes-vous ?</h2>
<div class="multi-columns">
<div class="column">
<p>Codeurs</p>
<ul>
<li>Déjà contributeurs ?</li>
<li>Curieux ?</li>
</ul>
<p> </p>
</div>
<div class="column">
<p>Non-codeurs</p>
<ul>
<li>Gérants ?</li>
<li>Evangélistes ?</li>
<li>Webmasters ?</li>
</ul>
</div>
</div>
<div class="multi-columns">
<p>
<img src="images/geek.jpg" /><br />
<img src="images/suited.jpg" />
</p>
</div>
</section>
<section>
<h2>Courbe d'apprentissage</h2>
<p>
<img src="images/learning_curve_tought.png" alt="Courbe d'apprentissage déjantée" />
</p>
</section>
<section>
<h2>Courbe d'apprentissage plus réaliste</h2>
<p>
<img src="images/learning_curve.jpg" alt="Courbe d'apprentissage normale" />
</p>
</section>
<section>
<blockquote>Il n'y a pas qu'UNE forme de contribution</blockquote>
</section>
<section>
<h2>Traduction</h2>
<div>
<ul>
<li>Niveau d'anglais en France</li>
<li>Nécessité de modules localisés</li>
<li>Equipe disponible et rôdée</li>
<li>Collaboration</li>
<li>Karma</li>
<li>Pérennité de la contribution</li>
<li class="special">Exemple de Liaz / sebcobin</li>
</ul>
<img src="images/traduction.jpg" class="deco-translation"/>
</div>
</section>
<section>
<h2>Donner du temps</h2>
<div>
<ul>
<li>Rédiger un billet de blog</li>
<li class="details">Peu importe le sujet !</li>
<li>Bénévolat lors d'événements</li>
<li class="details">Présentation de session</li>
<li class="details">Aidez à l'organisation d'un Drupalcamp</li>
<li>Organisation d'événements</li>
<li class="details">Apport personnel</li>
<li class="details">Création d'un réseau</li>
<li>Formation (Hello Drupal)</li>
</ul>
<img src="images/share.jpg" class="deco-time"/>
</div>
</section>
<section>
<h2>Gestion des bugs</h2>
<div>
<ul>
<li>"Up"</li>
<li>Test de patches</li>
<li>Rapports de bug</li>
<li>Aide au tri des issues</li>
<li class="details">Exemple de "Views triage"</li>
</ul>
<img src="images/bugs.jpg" class="deco-bugs"/>
</div>
</section>
<section>
<h2>Ecriture de code</h2>
<div>
<ul>
<li>Novice</li>
<li class="details"><a href="http://drupal.org/project/issues/search/drupal?issue_tags=Novice">Voir sur drupal.org</a></li>
<li>Ecriture de tests</li>
<li>Contribution "core"</li>
<li class="details">Drupal 8 !</li>
<li class="details">Contrib (portage de modules)</li>
<li>Co-maintenance</li>
</ul>
<img src="images/code.jpg" class="deco-code"/>
</div>
</section>
<section>
<h2>Cycle de vie d'une issue</h2>
<ul>
<li class="fragment bug bug-active roll-in">Active</li>
<li class="fragment bug bug-review roll-in">Needs review</li>
<li class="fragment bug bug-work roll-in">Needs work</li>
<li class="fragment bug bug-review roll-in">Needs review</li>
<li class="fragment bug bug-work roll-in">Needs work</li>
<li class="fragment bug bug-tested roll-in">Reviewed & tested</li>
<li class="fragment bug bug-fixed roll-in">Fixed</li>
</ul>
<p><small>Crédits : webchick</small></p>
</section>
<section>
<h2>Etude de cas / retours d'expérience</h2>
<div>
<ul>
<li>Impliquer les clients</li>
<li class="details">Mettre en valeur votre travail ET le site du client</li>
</ul>
<p>
<img src="images/meetup_logo.png" class="deco-meetup"/>
</p>
</div>
</section>
<section>
<h2>Sponsorisation</h2>
<div>
<ul>
<li>Formation gratuite</li>
<li>Formation payante</li>
<li>Drupalcamp</li>
<li>Barcamp</li>
<li>Acquia Large Scale</li>
<li>Temps pour vos équipes</li>
<li>JEI</li>
<li>Visibilité sur page projet</li>
</ul>
<p>
<img src="images/sponsors.jpg" class="deco-sponsors"/>
</p>
</div>
</section>
<section>
<h2>Comment se lancer</h2>
<div>
<ul>
<li>#1day1patch</li>
<li><a href="http://drupal.org/node/1242856">Office hours</a></li>
<li>Views triage</li>
<li>Initiative overview</li>
<li class="details"><a href="http://groups.drupal.org/drupal-initiatives">Avancement</a></li>
<li class="details"><a href="http://drupal.org/community-initiatives/drupal-core">Liste</a></li>
<li class="special">IRC : #drupal-contribute ; #drupal-fr<br />
pomliane / saisai / sebcorbin</li>
</ul>
</div>
</section>
<section>
<h2>Quels bénéfices ?</h2>
<div>
<ul>
<li>Réseau</li>
<li>Karma</li>
<li><a href="http://drupal.org/drupalgive">/drupalgive</a></li>
<li>Cercle vertueux</li>
<li>CV en ligne sur Drupal.org</li>
<li>Vous vous sentez utile (!)</li>
<li class="special">Exemple Scald</li>
<li>Exemple Facebook connect</li>
</ul>
</div>
</section>
<section>
<blockquote cite="Saisai">Toutes les contributions se valent.</blockquote>
</section>
<section class="credits" data-state="end">
<h2>Et vous, comment aimeriez-vous contribuer ?</h2>
<h3>On veut des questions !</h3>
<ul>
<li>Crédits :</li>
<li>http://www.sxc.hu/photo/89159</li>
<li>http://www.sxc.hu/photo/1065245</li>
<li>http://www.sxc.hu/photo/1330424</li>
<li>http://www.sxc.hu/photo/1182513</li>
<li>http://www.sxc.hu/photo/995000</li>
</ul>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: false,
progress: true,
history: true,
center: true,
width: 1350,
mouseWheel: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/search/search.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
Reveal.addEventListener( 'end', function() {
// TODO: Sprinkle magic
}, false );
</script>
</body>
</html>