2011-05-04 12:53:04 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2005-10-24 17:59:15 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="vote.css" />
2011-05-04 12:53:04 +00:00
<title>GNOME Foundation Elections and Referenda</title>
2005-10-24 17:59:15 +00:00
<meta name="cvsdate" content="$Date$" />
2006-07-03 18:31:02 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2005-10-24 17:59:15 +00:00
</head>
<body>
<?php
2011-05-04 12:53:04 +00:00
//require_once ("include/election-sql.php");
2005-10-24 17:59:15 +00:00
?>
2011-05-04 12:53:04 +00:00
<h1>GNOME Foundation Elections and Referenda</h1>
2005-10-24 17:59:15 +00:00
2011-05-04 12:53:04 +00:00
<h2>Election Materials</h2>
2005-10-24 17:59:15 +00:00
2011-05-04 12:53:04 +00:00
<p>
The GNOME Foundation Membership elects the Board of Directors each
November. Any member can nominate themself to run in the election. The
overall election process is overseen by the Membership and Elections
Committee, which can be reached at <a
href="mailto:elections@gnome.org">elections@gnome.org</a>.
</p>
<ul>
<li><a href="2010/">Material from the Spring 2010 Elections</a></li>
<li><a href="2009/">Material from the Spring 2009 Elections</a></li>
<li><a href="2007/">Material from the Fall 2007 Elections</a></li>
<li><a href="2006/">Material from the Fall 2006 Elections</a></li>
<li><a href="2005/">Material from the Fall 2005 Elections</a></li>
<li><a href="2004/">Material from the Fall 2004 Elections</a></li>
<li><a href="2003/">Material from the Fall 2003 Elections</a></li>
<li><a href="2002/">Material from the Fall 2002 Elections</a></li>
<li><a href="2001/">Material from the Fall 2001 Elections</a></li>
<li><a href="2000/">Material from the Fall 2000 Elections</a></li>
</ul>
<h2>Referenda Materials</h2>
<p>
Bug 629334: Move referenda page into the election page
This is accompanied by the following MySQL commands:
INSERT INTO elections ( type, name, voting_start, voting_end, choices_nb, question) VALUES (
'referendum', 'Anonymous Voting Referendum', '2004-09-27', '2004-10-08 25:59:59', 1, 'Do you agree with an anonymous voting process for any future GNOME Foundation elections and referenda?'
);
INSERT INTO election_results (election_id, result) VALUES (
LAST_INSERT_ID(), '<p><strong>Yes</strong>: all future GNOME Foundation elections and referenda will use
an anonymous voting process.</p><p>Please see the original <a href="2004-10/">referendum site</a> for more information on the results.</p>'
);
This commit will be followed by some cleaning up actions like fixing old references and finally removing the referenda directory.
2010-10-01 13:32:16 +00:00
Any member of the GNOME Foundation can suggest a referendum. To be
accepted, a request for a referendum must be endorsed by 10% of the
Membership. The overall referendum process is overseen by the
Membership and Elections Committee, which can be reached at <a
href="mailto:elections@gnome.org">elections@gnome.org</a>.
2011-05-04 12:53:04 +00:00
</p>
2005-10-24 17:59:15 +00:00
2011-05-04 12:53:04 +00:00
<ul>
<li><a href="../vote/2005-10/index.html">Material from the Office Term Referendum</a></li>
<li><a href="../vote/results.php?election_id=1">Material from the Reducing Board Size Referendum</a></li><!-- This is ugly, ideally we'd have an information page as with the other elections and referenda -->
<li><a href="../vote/2004-10/index.html">Material from the Anonymous Voting Referendum</a></li>
</ul>
</body>
</html>
2005-10-24 17:59:15 +00:00
<?php
2011-05-04 12:53:04 +00:00
/* ATTENTION: All the code is eleminated. The reason for it being here is that
it might become useful again.
*/
if (0) { /* BEGIN OF Big Disable If */
2005-10-24 17:59:15 +00:00
$handle = elec_sql_open ();
if ($handle === FALSE) {
echo "<div class=\"error\">Can not open the database.</div>\n";
$current_elections = array ();
$previous_elections = array ();
} else {
$current_elections = elec_get_current_by_date_desc ($handle);
$previous_elections = elec_get_previous_by_date_desc ($handle);
elec_sql_close ($handle);
}
if (count ($current_elections) > 0) {
?>
<h2>Current elections & referenda</h2>
<p>Please click on one of the following links in order to vote for the corresponding election or referendum.</p>
<ul>
<?php
foreach ($current_elections as $election) {
2009-06-06 11:54:24 +00:00
echo " <li><a href=\"vote.php?election_id=".rawurlencode($election["id"])."\">".htmlspecialchars($election["name"])."</a></li>\n";
2005-10-24 17:59:15 +00:00
}
?>
</ul>
<?php
}
if (count ($previous_elections) > 0) {
?>
<h2>Archives of previous elections & referenda</h2>
<p>Please click on one of the following links in order to see the results for the corresponding election or referendum.</p>
<ul>
<?php
foreach ($previous_elections as $election) {
2009-06-06 11:54:24 +00:00
echo " <li><a href=\"results.php?election_id=".rawurlencode($election["id"])."\">".htmlspecialchars($election["name"])."</a></li>\n";
2005-10-24 17:59:15 +00:00
}
?>
</ul>
<?php
}
2011-05-04 12:53:04 +00:00
} /* END OF Big Disable If */
2005-10-24 17:59:15 +00:00
?>