From: Verdon V. <ve...@us...> - 2009-02-19 23:17:11
|
Update of /cvsroot/phpwebsite-comm/modules/elections/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19786/boost Added Files: about.html boost.php controlpanel.php dependency.xml permission.php Log Message: prep for 2.0.0 --- NEW FILE: controlpanel.php --- <?php /** * elections - phpwebsite module * * See docs/AUTHORS and docs/COPYRIGHT for relevant info. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Id: controlpanel.php,v 1.1 2009/02/19 21:30:09 verdonv Exp $ * @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> */ $link[] = array( 'label' => 'Elections', 'restricted' => true, 'url' => 'index.php?module=elections&aop=menu', 'description' => 'Manage various types of ballots.', 'image' => 'elections.png', 'tab' => 'content' ); ?> --- NEW FILE: about.html --- <html> <head> <title>Elections Module</title> <link rel="stylesheet" type="text/css" href="themes/default/style.css" /> <link rel="stylesheet" type="text/css" href="themes/default/default.css" /> </head> <body class="padded"> <h1>Elections</h1> <h3>By Verdon Vaillancourt</h3> <p>Elections is a module that allows you to run one or more elections (ballots). A ballot may have a title, a description, an image, and any number of candidates. Ballots may be set to be public viewable (or not), public may vote (or not), min and max selections settings, and many other options. Ballots may also be set to allow ranking of candidates (assign points to candidates).</p> <p>Candidates may have a title, description and image, as well as up to four optional custom fields.</p> <p>Although voting is logged, only the fact that a vote was cast is logged. All voting is secret. At this time, a recorded vote is not supported.<p> <p>There are many options, settings and reports. Please explore.</p> <p class="align-center padded"><input type="button" onclick="window.close()" value="Close" /></p> </body> </html> --- NEW FILE: dependency.xml --- <?xml version="1.0"?> <dependency> <module> <title>core</title> <properName>phpWebSite Core</properName> <version>1.9.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/base/</url> </module> </dependency> --- NEW FILE: permission.php --- <?php /** * elections - phpwebsite module * * See docs/AUTHORS and docs/COPYRIGHT for relevant info. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Id: permission.php,v 1.1 2009/02/19 21:30:09 verdonv Exp $ * @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> */ $use_permissions = true; $item_permissions = false; ?> --- NEW FILE: boost.php --- <?php /** * elections - phpwebsite module * * See docs/AUTHORS and docs/COPYRIGHT for relevant info. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Id: boost.php,v 1.1 2009/02/19 21:30:09 verdonv Exp $ * @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> */ $proper_name = 'Elections'; $version = '2.0.0'; $import_sql = true; $version_http = 'http://verdon.ca/downloads/modules/elections/check.xml'; $about = true; $priority = 50; $dependency = true; ?> |