summary refs log tree commit diff stats
path: root/theme
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-01-30 14:10:39 -0500
committerStarla Insigna <starla4444@gmail.com>2011-01-30 14:10:39 -0500
commita4976f966f0de5abc11235e8decb760ad79ecad1 (patch)
tree1c1ec1c5fd31a66b543bd9f092a1295de5bbdd42 /theme
parent74db7a24d9c2230b104979f4e4981c57ff73de71 (diff)
downloadfourisland-a4976f966f0de5abc11235e8decb760ad79ecad1.tar.gz
fourisland-a4976f966f0de5abc11235e8decb760ad79ecad1.tar.bz2
fourisland-a4976f966f0de5abc11235e8decb760ad79ecad1.zip
Removed deleted files from previous commit
Wow, that took a long time to notice.
Diffstat (limited to 'theme')
-rwxr-xr-xtheme/admin/polls.tpl94
-rwxr-xr-xtheme/admin/writePoll.tpl76
-rwxr-xr-xtheme/poll.tpl24
-rwxr-xr-xtheme/pollIndex.tpl10
-rwxr-xr-xtheme/polloftheweek.tpl59
-rwxr-xr-xtheme/related.tpl9
6 files changed, 0 insertions, 272 deletions
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 @@
1<h2>Manage Polls</h2>
2
3<div class="clear"></div>
4
5<script type="text/javascript">
6function deletePoll(id)
7{
8 if (confirm("Are you sure you would like to delete this poll?"))
9 {
10 postwith("/admin/polls.php?pageID=<!--PAGEID-->&action=delete",{id:id});
11 }
12}
13
14// following function taken from http://mentaljetsam.wordpress.com/2008/06/02/using-javascript-to-post-data-between-pages/
15function postwith (to,p) {
16 var myForm = document.createElement("form");
17 myForm.method="post" ;
18 myForm.action = to ;
19 for (var k in p) {
20 var myInput = document.createElement("input") ;
21 myInput.setAttribute("name", k) ;
22 myInput.setAttribute("value", p[k]);
23 myForm.appendChild(myInput) ;
24 }
25 document.body.appendChild(myForm) ;
26 myForm.submit() ;
27 document.body.removeChild(myForm) ;
28}
29
30function bulkAction()
31{
32 var bulk=new Array();
33 $(".the-check:checked").each(function() {
34 bulk.push($(this).val());
35 });
36 var ids = bulk.join(",")
37
38 if (ids != "")
39 {
40 if ($('#manage-bulk select').val() == "delete")
41 {
42 if (confirm("Are you sure you would like to delete the selected polls?"))
43 {
44 postwith("/admin/polls.php?pageID=<!--PAGEID-->&action=deletes",{ids:ids});
45 }
46 }
47 }
48}
49
50$(document).ready(function() {
51 $("input#all-check").click(function() {
52 var what = this.checked;
53 $("input.the-check").each(function() {
54 this.checked = what;
55 });
56 });
57});
58</script>
59
60<!--BEGIN AVAIL-->
61<div id="manage-options">
62 <div id="manage-bulk">
63 <select name="bulk-type">
64 <option value="delete">Delete</option>
65 </select>
66
67 <button id="bulk" type="button" onclick="bulkAction()">Bulk</button>
68 </div>
69</div>
70
71<div class="manage-pagination"><!--PAGINATION--></div>
72
73<table>
74 <tr class="table-header">
75 <td class="table-checkbox"><input type="checkbox" id="all-check" /></td>
76 <td>Question</td>
77 <td colspan="3">Actions</td>
78 </tr>
79 <!--BEGIN POST-->
80 <tr<!--POST.ODD-->>
81 <td class="table-checkbox"><input class="the-check" type="checkbox" name="bulk" value="<!--POST.ID-->" /></td>
82 <td><!--POST.TITLE--></td>
83 <td class="table-img"><a href="/admin/editPoll.php?id=<!--POST.ID-->"><img src="/theme/images/icons/page_edit.png" alt="Edit" /></a></td>
84 <td class="table-img"><a href="#" onclick="deletePoll(<!--POST.ID-->)"><img src="/theme/images/icons/page_delete.png" alt="Delete" /></a></td>
85 <td class="table-img"><a href="/poll/<!--POST.ID-->.php"><img src="/theme/images/icons/page_go.png" alt="View" /></a></td>
86 </tr>
87 <!--END POST-->
88</table>
89
90<div class="manage-pagination"><!--PAGINATION--></div>
91<!--END AVAIL-->
92<!--BEGIN NOTAVAIL-->
93<div class="manage-pagination">There are no polls.</div>
94<!--END NOTAVAIL-->
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 @@
1<h2><!--TITLE--></h2>
2
3<form action="<!--ACTION-->" method="post" class="uniForm">
4 <!--BEGIN ISERROR-->
5 <div id="errorMsg">
6 <h3>Oops! There was an error!</h3>
7
8 <ol>
9 <!--BEGIN ERROR-->
10 <li><a href="#error<!--ERROR.ID-->" title="Jump to error"><!--ERROR.TEXT--></a></li>
11 <!--END ERROR-->
12 </ol>
13 </div>
14 <!--END ISERROR-->
15
16 <!--BEGIN FLASH-->
17 <div id="OKMsg"><p><!--FLASH.TEXT--></p></div>
18 <!--END FLASH-->
19
20 <fieldset class="inlineLabels">
21 <div class="ctrlHolder<!--ISQUESTIONERROR-->">
22 <!--BEGIN QUESTIONERROR-->
23 <p id="error<!--QUESTIONERROR.ID-->" class="errorField"><strong><!--QUESTIONERROR.TEXT--></strong></p>
24 <!--END QUESTIONERROR-->
25 <label for="question"><em>*</em> Question</label>
26 <input name="question" id="question" value="<!--QUESTIONVALUE-->" type="text" class="textInput" />
27 </div>
28
29 <div class="ctrlHolder<!--ISOPTION1ERROR-->">
30 <!--BEGIN OPTION1ERROR-->
31 <p id="error<!--OPTION1ERROR.ID-->" class="errorField"><strong><!--OPTION1ERROR.ID--></strong></p>
32 <!--END OPTION1ERROR-->
33 <label for="option1"><em>*</em> Option 1</label>
34 <input name="option1" id="option1" value="<!--OPTION1VALUE-->" type="text" class="textInput" />
35 </div>
36
37 <div class="ctrlHolder<!--ISOPTION2ERROR-->">
38 <!--BEGIN OPTION2ERROR-->
39 <p id="error<!--OPTION2ERROR.ID-->" class="errorField"><strong><!--OPTION2ERROR.ID--></strong></p>
40 <!--END OPTION2ERROR-->
41 <label for="option2"><em>*</em> Option 2</label>
42 <input name="option2" id="option2" value="<!--OPTION2VALUE-->" type="text" class="textInput" />
43 </div>
44
45 <div class="ctrlHolder<!--ISOPTION3ERROR-->">
46 <!--BEGIN OPTION3ERROR-->
47 <p id="error<!--OPTION3ERROR.ID-->" class="errorField"><strong><!--OPTION3ERROR.ID--></strong></p>
48 <!--END OPTION3ERROR-->
49 <label for="option3"><em>*</em> Option 3</label>
50 <input name="option3" id="option3" value="<!--OPTION3VALUE-->" type="text" class="textInput" />
51 </div>
52
53 <div class="ctrlHolder<!--ISOPTION4ERROR-->">
54 <!--BEGIN OPTION4ERROR-->
55 <p id="error<!--OPTION4ERROR.ID-->" class="errorField"><strong><!--OPTION4ERROR.ID--></strong></p>
56 <!--END OPTION4ERROR-->
57 <label for="option4"><em>*</em> Option 4</label>
58 <input name="option4" id="option4" value="<!--OPTION4VALUE-->" type="text" class="textInput" />
59 </div>
60 </fieldset>
61
62 <fieldset class="blockLabels">
63 <div class="ctrlHolder<!--ISTEXTERROR-->">
64 <!--BEGIN TEXTERROR-->
65 <p id="error<!--TEXTERROR.ID-->" class="errorField"><strong><!--TEXTERROR.TEXT--></strong></p>
66 <!--END TEXTERROR-->
67 <label for="text">Text</label>
68 <textarea name="text" id="text"><!--TEXTVALUE--></textarea>
69 </div>
70 </fieldset>
71
72 <div class="buttonHolder">
73 <button type="reset" class="resetButton">Reset</button>
74 <button type="submit" class="primaryAction">Submit</button>
75 </div>
76</form>
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 @@
1<h2 class="light-at-night"><!--QUESTION--></h2>
2
3<div class="module rounded center sidebar">
4 <!--POTW-->
5</div>
6
7<div class="module rounded">
8 <!--BEGIN COMPLETE-->
9 <!--COMPLETE.RSS-->
10
11 <p>
12 <!--COMPLETE.OPTION1--> - <!--COMPLETE.CLICKS1--> vote(s)!<br />
13 <!--COMPLETE.OPTION2--> - <!--COMPLETE.CLICKS2--> vote(s)!<br />
14 <!--COMPLETE.OPTION3--> - <!--COMPLETE.CLICKS3--> vote(s)!<br />
15 <!--COMPLETE.OPTION4--> - <!--COMPLETE.CLICKS4--> vote(s)!
16 </p>
17</div>
18
19<cite class="rounded"><!--COMPLETE.DATE--></cite>
20<!--END COMPLETE-->
21<!--BEGIN INCOMPLETE-->
22 The results of this poll of the week are pending. Meanwhile, if you haven't voted yet, why not do so?
23</div>
24<!--END INCOMPLETE-->
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 @@
1<h2 class="light-at-night">Poll of the Week</h2>
2
3<p class="light-at-night">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!</p>
4
5<table class="webmail">
6 <tr><th>Question</th><th>Week</th></tr>
7 <!--BEGIN POLL-->
8 <tr<!--POLL.EVEN-->><td><a href="/poll/<!--POLL.ID-->.php"><!--POLL.QUESTION--></a></td><td class="nobr"><!--POLL.WEEK--></td></tr>
9 <!--END POLL-->
10</table>
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 @@
1<!--BEGIN FORM-->
2<div id="potw-ajax">
3 <span style="font-size: 16px; text-align: center">
4 <a href="/poll/<!--ID-->.php"><!--QUESTION--></a>
5 </span>
6
7 <br />
8
9 <input type="radio" name="options" value="1" class="option1" />
10 <!--OPTION1-->
11
12 <br />
13
14 <input type="radio" name="options" value="2" class="option2" />
15 <!--OPTION2-->
16
17 <br />
18
19 <input type="radio" name="options" value="3" class="option3" />
20 <!--OPTION3-->
21
22 <br />
23
24 <input type="radio" name="options" value="4" class="option4" />
25 <!--OPTION4-->
26
27 <p align="center">
28 <button type="button" onclick="jQuery('#potw-ajax').slideUp().load('/poll-results.php?id='+jQuery('#potw-ajax input:radio[name=options]:checked').val()).slideDown();">Vote!</button>
29 </p>
30</div>
31<!--END FORM-->
32
33<!--BEGIN DISPLAY-->
34<span style="font-size: 16px; text-align: center">
35 <a href="/poll/<!--ID-->.php"><!--QUESTION--></a>
36</span>
37
38<table width="100%" border="0" style="font-size: 12px">
39 <tr>
40 <td>%<!--PERCENT1--></td>
41 <td><!--OPTION1--></td>
42 </tr>
43
44 <tr>
45 <td>%<!--PERCENT2--></td>
46 <td><!--OPTION2--></td>
47 </tr>
48
49 <tr>
50 <td>%<!--PERCENT3--></td>
51 <td><!--OPTION3--></td>
52 </tr>
53
54 <tr>
55 <td>%<!--PERCENT4--></td>
56 <td><!--OPTION4--></td>
57 </tr>
58</table>
59<!--END DISPLAY-->
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 @@
1<div class="cleardiv"></div>
2
3<div class="module rounded">
4 <!--BEGIN POST-->
5 <a href="/blog/<!--POST.CODED-->/"><!--POST.TITLE--></a> by <a href="/blog/author/<!--POST.AUTHOR-->.php"><!--POST.AUTHOR--></a> on <!--POST.DATE--><br />
6 <!--END POST-->
7</div>
8
9<cite class="rounded light-at-night"><strong>Theoretically Related Posts</strong></cite>