├── .gitignore ├── LICENSE ├── README.md ├── actions ├── adminpagehandler.php ├── codeprint.php ├── csvcodesend.php ├── electionadminpagehandler.php ├── genlastresult.php ├── pollRoundStatus.php ├── useradminpagehandler.php ├── usersessionhandler.php └── votingpagehandler.php ├── css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css └── evote.css ├── data ├── Dialogue.php ├── RandomInfo.php ├── code_instr.txt └── evote.php ├── ecrypt.php ├── evote_ascii.php ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── footer.php ├── fpdf ├── FAQ.htm ├── changelog.htm ├── doc │ ├── __construct.htm │ ├── acceptpagebreak.htm │ ├── addfont.htm │ ├── addlink.htm │ ├── addpage.htm │ ├── aliasnbpages.htm │ ├── cell.htm │ ├── close.htm │ ├── error.htm │ ├── footer.htm │ ├── getpageheight.htm │ ├── getpagewidth.htm │ ├── getstringwidth.htm │ ├── getx.htm │ ├── gety.htm │ ├── header.htm │ ├── image.htm │ ├── index.htm │ ├── line.htm │ ├── link.htm │ ├── ln.htm │ ├── multicell.htm │ ├── output.htm │ ├── pageno.htm │ ├── rect.htm │ ├── setauthor.htm │ ├── setautopagebreak.htm │ ├── setcompression.htm │ ├── setcreator.htm │ ├── setdisplaymode.htm │ ├── setdrawcolor.htm │ ├── setfillcolor.htm │ ├── setfont.htm │ ├── setfontsize.htm │ ├── setkeywords.htm │ ├── setleftmargin.htm │ ├── setlinewidth.htm │ ├── setlink.htm │ ├── setmargins.htm │ ├── setrightmargin.htm │ ├── setsubject.htm │ ├── settextcolor.htm │ ├── settitle.htm │ ├── settopmargin.htm │ ├── setx.htm │ ├── setxy.htm │ ├── sety.htm │ ├── text.htm │ └── write.htm ├── font │ ├── courier.php │ ├── courierb.php │ ├── courierbi.php │ ├── courieri.php │ ├── helvetica.php │ ├── helveticab.php │ ├── helveticabi.php │ ├── helveticai.php │ ├── symbol.php │ ├── times.php │ ├── timesb.php │ ├── timesbi.php │ ├── timesi.php │ └── zapfdingbats.php ├── fpdf.css ├── fpdf.php ├── install.txt ├── license.txt ├── makefont │ ├── cp1250.map │ ├── cp1251.map │ ├── cp1252.map │ ├── cp1253.map │ ├── cp1254.map │ ├── cp1255.map │ ├── cp1257.map │ ├── cp1258.map │ ├── cp874.map │ ├── iso-8859-1.map │ ├── iso-8859-11.map │ ├── iso-8859-15.map │ ├── iso-8859-16.map │ ├── iso-8859-2.map │ ├── iso-8859-4.map │ ├── iso-8859-5.map │ ├── iso-8859-7.map │ ├── iso-8859-9.map │ ├── koi8-r.map │ ├── koi8-u.map │ ├── makefont.php │ └── ttfparser.php └── tutorial │ ├── 20k_c1.txt │ ├── 20k_c2.txt │ ├── calligra.php │ ├── calligra.ttf │ ├── calligra.z │ ├── countries.txt │ ├── index.htm │ ├── logo.png │ ├── makefont.php │ ├── tuto1.htm │ ├── tuto1.php │ ├── tuto2.htm │ ├── tuto2.php │ ├── tuto3.htm │ ├── tuto3.php │ ├── tuto4.htm │ ├── tuto4.php │ ├── tuto5.htm │ ├── tuto5.php │ ├── tuto6.htm │ ├── tuto6.php │ ├── tuto7.htm │ └── tuto7.php ├── index.php ├── index ├── adjust │ ├── adjustpanel.php │ └── stat.php ├── admin │ ├── electionControl.php │ └── electionsinfo.php ├── classes │ ├── MenuGenerator.php │ └── TableGenerator.php ├── clear.php ├── electionadmin │ └── electionadminpanel.php ├── session │ ├── login.php │ └── logout.php ├── useradmin │ ├── changepassword.php │ ├── newuser.php │ └── useradminpanel.php └── vote │ └── front.php ├── install ├── evote.sql └── setup.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── checkForNewRound.js ├── checkIfRoundClosed.js ├── countdown.js └── npm.js ├── localization ├── getLocalizedText.php └── localizedTextLookupTable.php └── logo.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/README.md -------------------------------------------------------------------------------- /actions/adminpagehandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/adminpagehandler.php -------------------------------------------------------------------------------- /actions/codeprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/codeprint.php -------------------------------------------------------------------------------- /actions/csvcodesend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/csvcodesend.php -------------------------------------------------------------------------------- /actions/electionadminpagehandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/electionadminpagehandler.php -------------------------------------------------------------------------------- /actions/genlastresult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/genlastresult.php -------------------------------------------------------------------------------- /actions/pollRoundStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/pollRoundStatus.php -------------------------------------------------------------------------------- /actions/useradminpagehandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/useradminpagehandler.php -------------------------------------------------------------------------------- /actions/usersessionhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/usersessionhandler.php -------------------------------------------------------------------------------- /actions/votingpagehandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/actions/votingpagehandler.php -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/evote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/css/evote.css -------------------------------------------------------------------------------- /data/Dialogue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/data/Dialogue.php -------------------------------------------------------------------------------- /data/RandomInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/data/RandomInfo.php -------------------------------------------------------------------------------- /data/code_instr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/data/code_instr.txt -------------------------------------------------------------------------------- /data/evote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/data/evote.php -------------------------------------------------------------------------------- /ecrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/ecrypt.php -------------------------------------------------------------------------------- /evote_ascii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/evote_ascii.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/footer.php -------------------------------------------------------------------------------- /fpdf/FAQ.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/FAQ.htm -------------------------------------------------------------------------------- /fpdf/changelog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/changelog.htm -------------------------------------------------------------------------------- /fpdf/doc/__construct.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/__construct.htm -------------------------------------------------------------------------------- /fpdf/doc/acceptpagebreak.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/acceptpagebreak.htm -------------------------------------------------------------------------------- /fpdf/doc/addfont.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/addfont.htm -------------------------------------------------------------------------------- /fpdf/doc/addlink.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/addlink.htm -------------------------------------------------------------------------------- /fpdf/doc/addpage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/addpage.htm -------------------------------------------------------------------------------- /fpdf/doc/aliasnbpages.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/aliasnbpages.htm -------------------------------------------------------------------------------- /fpdf/doc/cell.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/cell.htm -------------------------------------------------------------------------------- /fpdf/doc/close.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/close.htm -------------------------------------------------------------------------------- /fpdf/doc/error.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/error.htm -------------------------------------------------------------------------------- /fpdf/doc/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/footer.htm -------------------------------------------------------------------------------- /fpdf/doc/getpageheight.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/getpageheight.htm -------------------------------------------------------------------------------- /fpdf/doc/getpagewidth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/getpagewidth.htm -------------------------------------------------------------------------------- /fpdf/doc/getstringwidth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/getstringwidth.htm -------------------------------------------------------------------------------- /fpdf/doc/getx.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/getx.htm -------------------------------------------------------------------------------- /fpdf/doc/gety.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/gety.htm -------------------------------------------------------------------------------- /fpdf/doc/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/header.htm -------------------------------------------------------------------------------- /fpdf/doc/image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/image.htm -------------------------------------------------------------------------------- /fpdf/doc/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/index.htm -------------------------------------------------------------------------------- /fpdf/doc/line.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/line.htm -------------------------------------------------------------------------------- /fpdf/doc/link.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/link.htm -------------------------------------------------------------------------------- /fpdf/doc/ln.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/ln.htm -------------------------------------------------------------------------------- /fpdf/doc/multicell.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/multicell.htm -------------------------------------------------------------------------------- /fpdf/doc/output.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/output.htm -------------------------------------------------------------------------------- /fpdf/doc/pageno.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/pageno.htm -------------------------------------------------------------------------------- /fpdf/doc/rect.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/rect.htm -------------------------------------------------------------------------------- /fpdf/doc/setauthor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setauthor.htm -------------------------------------------------------------------------------- /fpdf/doc/setautopagebreak.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setautopagebreak.htm -------------------------------------------------------------------------------- /fpdf/doc/setcompression.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setcompression.htm -------------------------------------------------------------------------------- /fpdf/doc/setcreator.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setcreator.htm -------------------------------------------------------------------------------- /fpdf/doc/setdisplaymode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setdisplaymode.htm -------------------------------------------------------------------------------- /fpdf/doc/setdrawcolor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setdrawcolor.htm -------------------------------------------------------------------------------- /fpdf/doc/setfillcolor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setfillcolor.htm -------------------------------------------------------------------------------- /fpdf/doc/setfont.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setfont.htm -------------------------------------------------------------------------------- /fpdf/doc/setfontsize.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setfontsize.htm -------------------------------------------------------------------------------- /fpdf/doc/setkeywords.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setkeywords.htm -------------------------------------------------------------------------------- /fpdf/doc/setleftmargin.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setleftmargin.htm -------------------------------------------------------------------------------- /fpdf/doc/setlinewidth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setlinewidth.htm -------------------------------------------------------------------------------- /fpdf/doc/setlink.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setlink.htm -------------------------------------------------------------------------------- /fpdf/doc/setmargins.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setmargins.htm -------------------------------------------------------------------------------- /fpdf/doc/setrightmargin.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setrightmargin.htm -------------------------------------------------------------------------------- /fpdf/doc/setsubject.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setsubject.htm -------------------------------------------------------------------------------- /fpdf/doc/settextcolor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/settextcolor.htm -------------------------------------------------------------------------------- /fpdf/doc/settitle.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/settitle.htm -------------------------------------------------------------------------------- /fpdf/doc/settopmargin.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/settopmargin.htm -------------------------------------------------------------------------------- /fpdf/doc/setx.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setx.htm -------------------------------------------------------------------------------- /fpdf/doc/setxy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/setxy.htm -------------------------------------------------------------------------------- /fpdf/doc/sety.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/sety.htm -------------------------------------------------------------------------------- /fpdf/doc/text.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/text.htm -------------------------------------------------------------------------------- /fpdf/doc/write.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/doc/write.htm -------------------------------------------------------------------------------- /fpdf/font/courier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/courier.php -------------------------------------------------------------------------------- /fpdf/font/courierb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/courierb.php -------------------------------------------------------------------------------- /fpdf/font/courierbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/courierbi.php -------------------------------------------------------------------------------- /fpdf/font/courieri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/courieri.php -------------------------------------------------------------------------------- /fpdf/font/helvetica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/helvetica.php -------------------------------------------------------------------------------- /fpdf/font/helveticab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/helveticab.php -------------------------------------------------------------------------------- /fpdf/font/helveticabi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/helveticabi.php -------------------------------------------------------------------------------- /fpdf/font/helveticai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/helveticai.php -------------------------------------------------------------------------------- /fpdf/font/symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/symbol.php -------------------------------------------------------------------------------- /fpdf/font/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/times.php -------------------------------------------------------------------------------- /fpdf/font/timesb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/timesb.php -------------------------------------------------------------------------------- /fpdf/font/timesbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/timesbi.php -------------------------------------------------------------------------------- /fpdf/font/timesi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/timesi.php -------------------------------------------------------------------------------- /fpdf/font/zapfdingbats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/font/zapfdingbats.php -------------------------------------------------------------------------------- /fpdf/fpdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/fpdf.css -------------------------------------------------------------------------------- /fpdf/fpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/fpdf.php -------------------------------------------------------------------------------- /fpdf/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/install.txt -------------------------------------------------------------------------------- /fpdf/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/license.txt -------------------------------------------------------------------------------- /fpdf/makefont/cp1250.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1250.map -------------------------------------------------------------------------------- /fpdf/makefont/cp1251.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1251.map -------------------------------------------------------------------------------- /fpdf/makefont/cp1252.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1252.map -------------------------------------------------------------------------------- /fpdf/makefont/cp1253.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1253.map -------------------------------------------------------------------------------- /fpdf/makefont/cp1254.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1254.map -------------------------------------------------------------------------------- /fpdf/makefont/cp1255.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1255.map -------------------------------------------------------------------------------- /fpdf/makefont/cp1257.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1257.map -------------------------------------------------------------------------------- /fpdf/makefont/cp1258.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp1258.map -------------------------------------------------------------------------------- /fpdf/makefont/cp874.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/cp874.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-1.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-11.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-11.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-15.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-15.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-16.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-16.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-2.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-4.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-4.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-5.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-5.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-7.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-7.map -------------------------------------------------------------------------------- /fpdf/makefont/iso-8859-9.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/iso-8859-9.map -------------------------------------------------------------------------------- /fpdf/makefont/koi8-r.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/koi8-r.map -------------------------------------------------------------------------------- /fpdf/makefont/koi8-u.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/koi8-u.map -------------------------------------------------------------------------------- /fpdf/makefont/makefont.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/makefont.php -------------------------------------------------------------------------------- /fpdf/makefont/ttfparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/makefont/ttfparser.php -------------------------------------------------------------------------------- /fpdf/tutorial/20k_c1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/20k_c1.txt -------------------------------------------------------------------------------- /fpdf/tutorial/20k_c2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/20k_c2.txt -------------------------------------------------------------------------------- /fpdf/tutorial/calligra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/calligra.php -------------------------------------------------------------------------------- /fpdf/tutorial/calligra.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/calligra.ttf -------------------------------------------------------------------------------- /fpdf/tutorial/calligra.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/calligra.z -------------------------------------------------------------------------------- /fpdf/tutorial/countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/countries.txt -------------------------------------------------------------------------------- /fpdf/tutorial/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/index.htm -------------------------------------------------------------------------------- /fpdf/tutorial/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/logo.png -------------------------------------------------------------------------------- /fpdf/tutorial/makefont.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/makefont.php -------------------------------------------------------------------------------- /fpdf/tutorial/tuto1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto1.htm -------------------------------------------------------------------------------- /fpdf/tutorial/tuto1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto1.php -------------------------------------------------------------------------------- /fpdf/tutorial/tuto2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto2.htm -------------------------------------------------------------------------------- /fpdf/tutorial/tuto2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto2.php -------------------------------------------------------------------------------- /fpdf/tutorial/tuto3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto3.htm -------------------------------------------------------------------------------- /fpdf/tutorial/tuto3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto3.php -------------------------------------------------------------------------------- /fpdf/tutorial/tuto4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto4.htm -------------------------------------------------------------------------------- /fpdf/tutorial/tuto4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto4.php -------------------------------------------------------------------------------- /fpdf/tutorial/tuto5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto5.htm -------------------------------------------------------------------------------- /fpdf/tutorial/tuto5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto5.php -------------------------------------------------------------------------------- /fpdf/tutorial/tuto6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto6.htm -------------------------------------------------------------------------------- /fpdf/tutorial/tuto6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto6.php -------------------------------------------------------------------------------- /fpdf/tutorial/tuto7.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto7.htm -------------------------------------------------------------------------------- /fpdf/tutorial/tuto7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/fpdf/tutorial/tuto7.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index.php -------------------------------------------------------------------------------- /index/adjust/adjustpanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/adjust/adjustpanel.php -------------------------------------------------------------------------------- /index/adjust/stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/adjust/stat.php -------------------------------------------------------------------------------- /index/admin/electionControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/admin/electionControl.php -------------------------------------------------------------------------------- /index/admin/electionsinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/admin/electionsinfo.php -------------------------------------------------------------------------------- /index/classes/MenuGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/classes/MenuGenerator.php -------------------------------------------------------------------------------- /index/classes/TableGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/classes/TableGenerator.php -------------------------------------------------------------------------------- /index/clear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/clear.php -------------------------------------------------------------------------------- /index/electionadmin/electionadminpanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/electionadmin/electionadminpanel.php -------------------------------------------------------------------------------- /index/session/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/session/login.php -------------------------------------------------------------------------------- /index/session/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/session/logout.php -------------------------------------------------------------------------------- /index/useradmin/changepassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/useradmin/changepassword.php -------------------------------------------------------------------------------- /index/useradmin/newuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/useradmin/newuser.php -------------------------------------------------------------------------------- /index/useradmin/useradminpanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/useradmin/useradminpanel.php -------------------------------------------------------------------------------- /index/vote/front.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/index/vote/front.php -------------------------------------------------------------------------------- /install/evote.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/install/evote.sql -------------------------------------------------------------------------------- /install/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/install/setup.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/checkForNewRound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/js/checkForNewRound.js -------------------------------------------------------------------------------- /js/checkIfRoundClosed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/js/checkIfRoundClosed.js -------------------------------------------------------------------------------- /js/countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/js/countdown.js -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/js/npm.js -------------------------------------------------------------------------------- /localization/getLocalizedText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/localization/getLocalizedText.php -------------------------------------------------------------------------------- /localization/localizedTextLookupTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/localization/localizedTextLookupTable.php -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esek/evote/HEAD/logo.jpg --------------------------------------------------------------------------------