source: talk/trunk/epoll.tex @ 95

Last change on this file since 95 was 95, checked in by nanardon, 15 years ago
  • warranties
  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1% $Id$
2\documentclass[notes]{beamer}
3\usepackage[frenchb]{babel}
4\usepackage[T1]{fontenc}
5\usepackage{moreverb}
6\usepackage{graphicx}
7
8\mode<presentation>
9{
10  \definecolor{beamerstructure}{RGB}{143,79,112}
11  \definecolor{sidebackground}{RGB}{230,242,250}
12  \color{beamerstructure}
13  \usetheme[secheader]{Madrid}
14  \usepackage{times}
15  \userightsidebarcolortemplate{\color{sidebackground}}
16  \beamertemplateballitem
17}
18
19\AtBeginSection[]
20{
21\begin{frame}<beamer>
22    \frametitle{Plan}
23    \tableofcontents[currentsection,hideothersubsections]
24\end{frame}
25}
26
27\title{Epoll}
28\subtitle{Vote en ligne}
29\author{Olivier Thauvin}
30\date{\today}
31
32\begin{document}
33
34\frame{\titlepage}
35
36\begin{frame}
37\tableofcontents[hideallsubsections]
38\end{frame}
39
40\section{Vote electronique}
41
42\begin{frame}
43\frametitle{Généralité}
44
45\vfill
46\begin{block}{http://fr.wikipedia.org/wiki/Vote\_électronique}
47Le vote électronique est un système de vote automatisé, notamment des scrutins,
48à l'aide de systèmes informatiques.
49\end{block}
50\vfill
51
52\begin{alertblock}{Est-ce bien ?}
53\begin{itemize}
54\item Facilite la vie des organisateurs
55\end{itemize}
56mais\ldots
57\begin{itemize}
58\item Impossiblité de contrôl par le votant (voir la comission electorale)
59    \begin{itemize}
60    \item techniquement compliqué
61    \item logiciel souvent opaque
62    \item contrôl visuel impossible
63    \end{itemize}
64\item le syndrôme "L'ordinateur ne se trompe jamais"
65\end{itemize}
66\end{alertblock}
67\end{frame}
68
69\section{Epoll ?}
70
71\begin{frame}
72\frametitle{Résumé}
73\vfill
74\begin{block}{Application web}
75\begin{itemize}
76\item accessible avec un simple navigateur
77\item envois des identifiants par mail
78\item pas d'intervention de l'administrateur
79\end{itemize}
80\end{block}
81\vfill
82\begin{block}{Les fondations}
83\begin{itemize}
84\item Perl (\href{http://www.perl.org/}{http://www.perl.org/})
85\item Catalyst (\href{http://www.catalystframework.org/}{http://www.catalystframework.org/})
86\end{itemize}
87\begin{itemize}
88\item PostgreSQL (\href{http://www.postgresql.org}{http://www.postgresql.org})
89\end{itemize}
90\end{block}
91\vfill
92\end{frame}
93
94\section{Epoll 1.0 (aujourd'hui)}
95
96\subsection{Utilisation}
97
98\begin{frame}
99\frametitle{Création du vote}
100\begin{block}{La comission electorale}
101\begin{enumerate}
102\item demande de création
103\item confirmation
104\item configuration du vote (dont date)
105\item inscription des votants
106\item envois des identifiants au votants
107\end{enumerate}
108\end{block}
109\end{frame}
110
111\begin{frame}
112\frametitle{Le vote}
113\begin{block}{Les votants}
114\begin{enumerate}
115\item reception du mail avec url, login et mot de passe
116\item authentification sur le site
117\item choix
118\item confirmation des choix
119\item affichage du numéro du bulletin
120\item reception d'un acccusé de reception par mail
121\end{enumerate}
122\end{block}
123\end{frame}
124
125\begin{frame}
126\frametitle{Le dépouillement}
127\begin{block}{La comission electorale}
128\begin{enumerate}
129\item consolidation des choix libres si besoin
130\item marquage des bulletins invalides
131\end{enumerate}
132\end{block}
133\end{frame}
134
135\subsection{Respect des règles}
136
137\begin{frame}[fragile]
138\frametitle{Anonymat}
139\vfill
140\begin{block}{stockage}
141Pas de relation entre le votant et le bulletin
142\end{block}
143\vfill
144
145\begin{exampleblock}{émargement}
146\begin{tabular}{|c|c|c|}
147\hline
148Mail&IP&heure de vote\\
149\hline
150\hline
151thauvin@latmos.ipsl.fr&134.157.16.151&\verb+2009-03-19 15:31:56+\\
152\hline
153\end{tabular}
154\end{exampleblock}
155\vfill
156
157\begin{exampleblock}{Le bulletin}
158\begin{tabular}{|c|c|}
159\hline
160Id&Contenu\\
161\hline
162\hline
163f4f667c78a2178095c3bae4d&oui\\
164\hline
165\end{tabular}
166\end{exampleblock}
167\vfill
168\end{frame}
169
170\begin{frame}
171\frametitle{Eviter les tricheries}
172\vfill
173\begin{block}{Coté base de données}
174\begin{itemize}
175\item le vote est transactionnel
176\item Contraintes référencielles
177\end{itemize}
178\end{block}
179\vfill
180\begin{block}{Controle par l'utilisateur}
181\begin{itemize}
182\item nombre de votants et nombre de bulletins disponible
183\item liste d'émargement disponible
184\item liste des bulletins disponible dès la fin du vote
185\end{itemize}
186\end{block}
187\vfill
188\end{frame}
189
190\section{L'avenir}
191
192\section{Test}
193
194\end{document}
Note: See TracBrowser for help on using the repository browser.