From a4976f966f0de5abc11235e8decb760ad79ecad1 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 30 Jan 2011 14:10:39 -0500 Subject: Removed deleted files from previous commit Wow, that took a long time to notice. --- admin/editPoll.php | 118 ---------------------------------------------- admin/newPoll.php | 114 -------------------------------------------- admin/polls.php | 98 -------------------------------------- pages/poll-results.php | 49 ------------------- pages/poll.php | 104 ---------------------------------------- pages/polloftheweek.php | 56 ---------------------- theme/admin/polls.tpl | 94 ------------------------------------ theme/admin/writePoll.tpl | 76 ----------------------------- theme/poll.tpl | 24 ---------- theme/pollIndex.tpl | 10 ---- theme/polloftheweek.tpl | 59 ----------------------- theme/related.tpl | 9 ---- 12 files changed, 811 deletions(-) delete mode 100755 admin/editPoll.php delete mode 100755 admin/newPoll.php delete mode 100755 admin/polls.php delete mode 100755 pages/poll-results.php delete mode 100755 pages/poll.php delete mode 100755 pages/polloftheweek.php delete mode 100755 theme/admin/polls.tpl delete mode 100755 theme/admin/writePoll.tpl delete mode 100755 theme/poll.tpl delete mode 100755 theme/pollIndex.tpl delete mode 100755 theme/polloftheweek.tpl delete mode 100755 theme/related.tpl diff --git a/admin/editPoll.php b/admin/editPoll.php deleted file mode 100755 index 425f33c..0000000 --- a/admin/editPoll.php +++ /dev/null @@ -1,118 +0,0 @@ -add('TITLE', 'Edit Poll'); -$template->add('ACTION', '/admin/editPoll.php?id=' . $_GET['id'] . '&submit='); - -if (isset($_GET['submit'])) -{ - if (empty($_POST['question'])) - { - $errors[] = array( 'field' => 'question', - 'text' => 'Question is a required field'); - } - - if (empty($_POST['option1'])) - { - $errors[] = array( 'field' => 'option1', - 'text' => 'Option 1 is a required field'); - } - - if (empty($_POST['option2'])) - { - $errors[] = array( 'field' => 'option2', - 'text' => 'Option 2 is a required field'); - } - - if (empty($_POST['option3'])) - { - $errors[] = array( 'field' => 'option3', - 'text' => 'Option 3 is a required field'); - } - - if (empty($_POST['option4'])) - { - $errors[] = array( 'field' => 'option4', - 'text' => 'Option 4 is a required field'); - } - - if (isset($errors)) - { - $template->adds_block('ISERROR',array('exi'=>1)); - - $eid = 0; - foreach ($errors as $error) - { - $template->adds_block('ERROR', array( 'ID' => $eid, - 'TEXT' => $error['text'])); - $template->add('IS' . strtoupper($error['field']) . 'ERROR', ' error'); - $template->adds_block(strtoupper($error['field']) . 'ERROR', array( 'ID' => $eid, - 'TEXT' => $error['text'])); - - $eid++; - } - - $getpoll = "SELECT * FROM polloftheweek WHERE id = " . $_GET['id']; - $getpoll2 = mysql_query($getpoll); - $getpoll3 = mysql_fetch_array($getpoll2); - - $template->add('QUESTIONVALUE', htmlentities($_POST['question'])); - $template->add('OPTION1VALUE', htmlentities($_POST['option1'])); - $template->add('OPTION2VALUE', htmlentities($_POST['option2'])); - $template->add('OPTION3VALUE', htmlentities($_POST['option3'])); - $template->add('OPTION4VALUE', htmlentities($_POST['option4'])); - $template->add('TEXTVALUE', $_POST['text']); - } else { - $inspoll = "UPDATE polloftheweek SET question = \"" . mysql_real_escape_string($_POST['question']) . "\", option1 = \"" . mysql_real_escape_string($_POST['option1']) . "\", option2 = \"" . mysql_real_escape_string($_POST['option2']) . "\", option3 = \"" . mysql_real_escape_string($_POST['option3']) . "\", option4 = \"" . mysql_real_escape_string($_POST['option4']) . "\", text = \"" . mysql_real_escape_string($_POST['text']) . "\" WHERE id = " . $_GET['id']; - $inspoll2 = mysql_query($inspoll); - - $template->add('QUESTIONVALUE', htmlentities($_POST['question'])); - $template->add('OPTION1VALUE', htmlentities($_POST['option1'])); - $template->add('OPTION2VALUE', htmlentities($_POST['option2'])); - $template->add('OPTION3VALUE', htmlentities($_POST['option3'])); - $template->add('OPTION4VALUE', htmlentities($_POST['option4'])); - $template->add('TEXTVALUE', $_POST['text']); - - $template->adds_block('FLASH', array('TEXT' => 'Your poll has been sucessfully edited. View poll.')); - } -} else { - $getpoll = "SELECT * FROM polloftheweek WHERE id = " . $_GET['id']; - $getpoll2 = mysql_query($getpoll); - $getpoll3 = mysql_fetch_array($getpoll2); - - $template->add('QUESTIONVALUE', htmlentities($getpoll3['question'])); - $template->add('OPTION1VALUE', htmlentities($getpoll3['option1'])); - $template->add('OPTION2VALUE', htmlentities($getpoll3['option2'])); - $template->add('OPTION3VALUE', htmlentities($getpoll3['option3'])); - $template->add('OPTION4VALUE', htmlentities($getpoll3['option4'])); - $template->add('TEXTVALUE', $getpoll3['text']); -} - -$template->display(); - -?> diff --git a/admin/newPoll.php b/admin/newPoll.php deleted file mode 100755 index d105f45..0000000 --- a/admin/newPoll.php +++ /dev/null @@ -1,114 +0,0 @@ - 'question', - 'text' => 'Question is a required field'); - } - - if (empty($_POST['option1'])) - { - $errors[] = array( 'field' => 'option1', - 'text' => 'Option 1 is a required field'); - } - - if (empty($_POST['option2'])) - { - $errors[] = array( 'field' => 'option2', - 'text' => 'Option 2 is a required field'); - } - - if (empty($_POST['option3'])) - { - $errors[] = array( 'field' => 'option3', - 'text' => 'Option 3 is a required field'); - } - - if (empty($_POST['option4'])) - { - $errors[] = array( 'field' => 'option4', - 'text' => 'Option 4 is a required field'); - } - - if (isset($errors)) - { - $template->adds_block('ISERROR',array('exi'=>1)); - - $eid = 0; - foreach ($errors as $error) - { - $template->adds_block('ERROR', array( 'ID' => $eid, - 'TEXT' => $error['text'])); - $template->add('IS' . strtoupper($error['field']) . 'ERROR', ' error'); - $template->adds_block(strtoupper($error['field']) . 'ERROR', array( 'ID' => $eid, - 'TEXT' => $error['text'])); - - $eid++; - } - - $template->add('TITLE', 'New Poll'); - $template->add('ACTION', '/admin/newPoll.php?submit='); - - $template->add('QUESTIONVALUE', htmlentities($_POST['question'])); - $template->add('OPTION1VALUE', htmlentities($_POST['option1'])); - $template->add('OPTION2VALUE', htmlentities($_POST['option2'])); - $template->add('OPTION3VALUE', htmlentities($_POST['option3'])); - $template->add('OPTION4VALUE', htmlentities($_POST['option4'])); - $template->add('TEXTVALUE', htmlentities($_POST['text'])); - } else { - $inspoll = "INSERT INTO polloftheweek (question,option1,option2,option3,option4,text) VALUES (\"" . mysql_real_escape_string($_POST['question']) . "\",\"" . mysql_real_escape_string($_POST['option1']) . "\",\"" . mysql_real_escape_string($_POST['option2']) . "\",\"" . mysql_real_escape_string($_POST['option3']) . "\",\"" . mysql_real_escape_string($_POST['option4']) . "\",\"" . mysql_real_escape_string($_POST['text']) . "\")"; - $inspoll2 = mysql_query($inspoll); - - $id = mysql_insert_id(); - - $cleardid = "TRUNCATE TABLE didpollalready"; - $cleardid2 = mysql_query($cleardid); - - $template->add('QUESTIONVALUE', htmlentities($_POST['question'])); - $template->add('OPTION1VALUE', htmlentities($_POST['option1'])); - $template->add('OPTION2VALUE', htmlentities($_POST['option2'])); - $template->add('OPTION3VALUE', htmlentities($_POST['option3'])); - $template->add('OPTION4VALUE', htmlentities($_POST['option4'])); - $template->add('TEXTVALUE', htmlentities($_POST['text'])); - - $template->add('TITLE', 'Edit Poll'); - $template->add('ACTION', '/admin/editPoll.php?id=' . $id . '&submit='); - $template->adds_block('FLASH', array('TEXT' => 'Your poll has been sucessfully created. View poll.')); - } -} else { - $template->add('TITLE', 'New Poll'); - $template->add('ACTION', '/admin/newPoll.php?submit='); -} - -$template->display(); - -?> diff --git a/admin/polls.php b/admin/polls.php deleted file mode 100755 index e4239fa..0000000 --- a/admin/polls.php +++ /dev/null @@ -1,98 +0,0 @@ -adds_block('AVAIL',array('exi'=>1)); -} else { - $template->adds_block('NOTAVAIL',array('exi'=>1)); -} - -$pager = &Pager::factory(array( 'mode' => 'Sliding', - 'perPage' => 20, - 'delta' => 2, - 'itemData' => $getposts3)); - -$j=0; - -foreach ($pager->getPageData() as $post) -{ - if (!empty($post)) - { - $template->adds_block('POST', array( 'TITLE' => htmlentities($post['question']), - 'ID' => $post['id'], - 'ODD' => ($j % 2 ? '' : ' class="odd"'))); - } - - $j++; -} - -$template->add('PAGEID', $pager->getCurrentPageID()); -$template->add('PAGINATION', $pager->links); - -$template->display(); - -?> diff --git a/pages/poll-results.php b/pages/poll-results.php deleted file mode 100755 index e2fe154..0000000 --- a/pages/poll-results.php +++ /dev/null @@ -1,49 +0,0 @@ -= 1) && ($_GET['id'] <= 4)) -{ - $getip = "SELECT * FROM didpollalready WHERE ip = \"" . $_SERVER['REMOTE_ADDR'] . "\""; - $getip2 = mysql_query($getip); - $getip3 = mysql_fetch_array($getip2); - - if ($getip3['ip'] != $_SERVER['REMOTE_ADDR']) - { - $setip = "INSERT INTO didpollalready SET ip = \"" . $_SERVER['REMOTE_ADDR'] . "\""; - $setip2 = mysql_query($setip); - $getpoll = "SELECT * FROM polloftheweek ORDER BY id DESC LIMIT 0,1"; - $getpoll2 = mysql_query($getpoll); - $getpoll3 = mysql_fetch_array($getpoll2); - $setpoll = "UPDATE polloftheweek SET clicks" . $_GET['id'] . " = " . ($getpoll3['clicks' . $_GET['id']]+1) . " WHERE id = " . $getpoll3['id']; - $setpoll2 = mysql_query($setpoll); - - die(getPollOfTheWeek()); - } else { - generateError('404'); - } -} else { - generateError('404'); -} - -?> diff --git a/pages/poll.php b/pages/poll.php deleted file mode 100755 index c7cc909..0000000 --- a/pages/poll.php +++ /dev/null @@ -1,104 +0,0 @@ - 50) - { - $question = substr($question, 0, 50); - while (substr($question, strlen($question)-1) != ' ') - { - $question = substr($question, 0, strlen($question)-1); - } - - $question = substr($question, 0, strlen($question)-1); - $question .= '....'; - } - $template->adds_block('POLL', array( 'ID' => $getpolls3[$i]['id'], - 'QUESTION' => doAprilFoolsDay(htmlentities(stripslashes($question))), - 'WEEK' => date('F jS Y', strtotime($getpolls3[$i]['week'])), - 'EVEN' => (($i % 2 == 1) ? ' class="even"' : ''))); - $i++; - } - - $cntpolls = "SELECT COUNT(*) FROM polloftheweek"; - $cntpolls2 = mysql_query($cntpolls); - $cntpolls3 = mysql_fetch_array($cntpolls2); - if ($start < floor($cntpolls3['COUNT(*)'] / 10)) - { - $template->adds_block('NEXT', array('ID' => ($start+1))); - } - - $template->display(); -} else { - $template = new FITemplate('poll'); - - $getpoll = "SELECT * FROM polloftheweek WHERE id = " . $_GET['id']; - $getpoll2 = mysql_query($getpoll); - $getpoll3 = mysql_fetch_array($getpoll2); - - if ($getpoll3['id'] == $_GET['id']) - { - $template->add('QUESTION', htmlentities(stripslashes($getpoll3['question']))); - - if ($getpoll3['text'] != '') - { - $template->adds_block('COMPLETE', array( 'RSS' => parseText(stripslashes($getpoll3['text'])), - 'AUTHOR' => $getrss3['author'], - 'DATE' => date("F jS Y \a\\t g:i:s a",strtotime($getpoll3['week'])), - 'OPTION1' => doAprilFoolsDay(stripslashes($getpoll3['option1'])), - 'OPTION2' => doAprilFoolsDay(stripslashes($getpoll3['option2'])), - 'OPTION3' => doAprilFoolsDay(stripslashes($getpoll3['option3'])), - 'OPTION4' => doAprilFoolsDay(stripslashes($getpoll3['option4'])), - 'CLICKS1' => $getpoll3['clicks1'], - 'CLICKS2' => $getpoll3['clicks2'], - 'CLICKS3' => $getpoll3['clicks3'], - 'CLICKS4' => $getpoll3['clicks4'])); - } else { - $template->adds_block('INCOMPLETE', array('exi'=>1)); - } - - $template->add('POTW', getPollOfTheWeek($_GET['id'])); - $template->display(); - - $page_id = 'polloftheweek-' . $getpoll3['id']; - include('includes/comments.php'); - - displayRelated($getpoll3['question']); - } else { - generateError('404'); - } -} - -?> diff --git a/pages/polloftheweek.php b/pages/polloftheweek.php deleted file mode 100755 index 0410151..0000000 --- a/pages/polloftheweek.php +++ /dev/null @@ -1,56 +0,0 @@ -add('QUESTION', $getpoll3['question']); -$template->add('OPTION1', $getpoll3['option1']); -$template->add('OPTION2', $getpoll3['option2']); -$template->add('OPTION3', $getpoll3['option3']); -$template->add('OPTION4', $getpoll3['option4']); - -$getip = "SELECT * FROM didpollalready WHERE ip = \"" . $_SERVER['REMOTE_ADDR'] . "\""; -$getip2 = mysql_query($getip); -$getip3 = mysql_fetch_array($getip2); - -if (($getip3['ip'] != $_SERVER['REMOTE_ADDR']) && (!isset($forceDisplay))) -{ - $template->adds_block('FORM',array('exi'=>1)); -} else { - $template->adds_block('DISPLAY',array('exi'=>1)); - - $template->add('PERCENT1', getpercent($getpoll3,'1')); - $template->add('PERCENT2', getpercent($getpoll3,'2')); - $template->add('PERCENT3', getpercent($getpoll3,'3')); - $template->add('PERCENT4', getpercent($getpoll3,'4')); -} - -?> diff --git a/theme/admin/polls.tpl b/theme/admin/polls.tpl deleted file mode 100755 index 81613a9..0000000 --- a/theme/admin/polls.tpl +++ /dev/null @@ -1,94 +0,0 @@ -

Manage Polls

- -
- - - - -
-
- - - -
-
- -
- - - - - - - - - > - - - - - - - -
QuestionActions
EditDeleteView
- -
- - -
There are no polls.
- diff --git a/theme/admin/writePoll.tpl b/theme/admin/writePoll.tpl deleted file mode 100755 index a40eb5e..0000000 --- a/theme/admin/writePoll.tpl +++ /dev/null @@ -1,76 +0,0 @@ -

- -
- -
-

Oops! There was an error!

- -
    - -
  1. - -
-
- - - -

- - -
-
- -

- - - -
- -
- -

- - - -
- -
- -

- - - -
- -
- -

- - - -
- -
- -

- - - -
-
- -
-
- -

- - - -
-
- -
- - -
-
diff --git a/theme/poll.tpl b/theme/poll.tpl deleted file mode 100755 index 9547214..0000000 --- a/theme/poll.tpl +++ /dev/null @@ -1,24 +0,0 @@ -

- - - -
- - - -

- - vote(s)!
- - vote(s)!
- - vote(s)!
- - vote(s)! -

-
- - - - - The results of this poll of the week are pending. Meanwhile, if you haven't voted yet, why not do so? - - diff --git a/theme/pollIndex.tpl b/theme/pollIndex.tpl deleted file mode 100755 index d3788db..0000000 --- a/theme/pollIndex.tpl +++ /dev/null @@ -1,10 +0,0 @@ -

Poll of the Week

- -

Welcome to the Poll of the Week! Feel free to vote on these! You can review old ones and also comment on them if you're logged in using the links below!

- - - - - > - -
QuestionWeek
diff --git a/theme/polloftheweek.tpl b/theme/polloftheweek.tpl deleted file mode 100755 index dfbc772..0000000 --- a/theme/polloftheweek.tpl +++ /dev/null @@ -1,59 +0,0 @@ - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
%
%
%
%
- diff --git a/theme/related.tpl b/theme/related.tpl deleted file mode 100755 index 783b253..0000000 --- a/theme/related.tpl +++ /dev/null @@ -1,9 +0,0 @@ -
- -
- - by on
- -
- -Theoretically Related Posts -- cgit 1.4.1