% $Id$ \documentclass[notes]{beamer} \usepackage[frenchb]{babel} \usepackage[T1]{fontenc} \usepackage{moreverb} \usepackage{graphicx} \mode { \definecolor{beamerstructure}{RGB}{143,79,112} \definecolor{sidebackground}{RGB}{230,242,250} \color{beamerstructure} \usetheme[secheader]{Madrid} \usepackage{times} \userightsidebarcolortemplate{\color{sidebackground}} \beamertemplateballitem } \AtBeginSection[] { \begin{frame} \frametitle{Plan} \tableofcontents[currentsection,hideothersubsections] \end{frame} } \title{Epoll} \subtitle{Vote en ligne} \author{Olivier Thauvin} \date{\today} \begin{document} \frame{\titlepage} \begin{frame} \tableofcontents[hideallsubsections] \end{frame} \section{Vote electronique} \begin{frame} \frametitle{Généralité} \vfill \begin{block}{http://fr.wikipedia.org/wiki/Vote\_électronique} Le vote électronique est un système de vote automatisé, notamment des scrutins, à l'aide de systèmes informatiques. \end{block} \vfill \begin{alertblock}{Est-ce bien ?} \begin{itemize} \item Facilite la vie des organisateurs \end{itemize} mais\ldots \begin{itemize} \item Impossiblité de contrôl par le votant (voir la comission electorale) \begin{itemize} \item techniquement compliqué \item logiciel souvent opaque \item contrôl visuel impossible \end{itemize} \item le syndrôme "L'ordinateur ne se trompe jamais" \end{itemize} \end{alertblock} \end{frame} \section{Epoll ?} \begin{frame} \frametitle{Résumé} \vfill \begin{block}{Application web} \begin{itemize} \item accessible avec un simple navigateur \item envois des identifiants par mail \item pas d'intervention de l'administrateur \end{itemize} \end{block} \vfill \begin{block}{Les fondations} \begin{itemize} \item Perl (\href{http://www.perl.org/}{http://www.perl.org/}) \item Catalyst (\href{http://www.catalystframework.org/}{http://www.catalystframework.org/}) \end{itemize} \begin{itemize} \item PostgreSQL (\href{http://www.postgresql.org}{http://www.postgresql.org}) \end{itemize} \end{block} \vfill \end{frame} \section{Epoll 1.0 (aujourd'hui)} \subsection{Utilisation} \begin{frame} \frametitle{Création du vote} \begin{block}{La comission electorale} \begin{enumerate} \item demande de création \item confirmation \item configuration du vote (dont date) \item inscription des votants \item envois des identifiants au votants \end{enumerate} \end{block} \end{frame} \begin{frame} \frametitle{Le vote} \begin{block}{Les votants} \begin{enumerate} \item reception du mail avec url, login et mot de passe \item authentification sur le site \item choix \item confirmation des choix \item affichage du numéro du bulletin \item reception d'un acccusé de reception par mail \end{enumerate} \end{block} \end{frame} \begin{frame} \frametitle{Le dépouillement} \begin{block}{La comission electorale} \begin{enumerate} \item consolidation des choix libres si besoin \item marquage des bulletins invalides \end{enumerate} \end{block} \end{frame} \subsection{Respect des règles} \begin{frame}[fragile] \frametitle{Anonymat} \vfill \begin{block}{stockage} Pas de relation entre le votant et le bulletin \end{block} \vfill \begin{exampleblock}{émargement} \begin{tabular}{|c|c|c|} \hline Mail&IP&heure de vote\\ \hline \hline thauvin@latmos.ipsl.fr&134.157.16.151&\verb+2009-03-19 15:31:56+\\ \hline \end{tabular} \end{exampleblock} \vfill \begin{exampleblock}{Le bulletin} \begin{tabular}{|c|c|} \hline Id&Contenu\\ \hline \hline f4f667c78a2178095c3bae4d&oui\\ \hline \end{tabular} \end{exampleblock} \vfill \end{frame} \begin{frame} \frametitle{Eviter les tricheries} \vfill \begin{block}{Coté base de données} \begin{itemize} \item le vote est transactionnel \item Contraintes référencielles \end{itemize} \end{block} \vfill \begin{block}{Controle par l'utilisateur} \begin{itemize} \item nombre de votants et nombre de bulletins disponible \item liste d'émargement disponible \item liste des bulletins disponible dès la fin du vote \end{itemize} \end{block} \vfill \end{frame} \section{L'avenir} \section{Test} \end{document}