aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-02 09:38:02 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-02 09:38:02 +0000
commitcee739e6278020dd4d79a5dcd86465c6c6a44a6c (patch)
treeac1399996ba74719599c5619fef93f0a536bc532 /www
parentb622fda3ad7679dd0b0daaa9c45c86efc5abdaeb (diff)
downloadsemanticscuttle-cee739e6278020dd4d79a5dcd86465c6c6a44a6c.tar.gz
semanticscuttle-cee739e6278020dd4d79a5dcd86465c6c6a44a6c.tar.bz2
add horizontal voting links and switch config setting
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@498 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'www')
-rw-r--r--www/ajaxVote.php11
-rw-r--r--www/images/vote-against-voted.pngbin0 -> 419 bytes
-rw-r--r--www/images/vote-against.pngbin0 -> 495 bytes
-rw-r--r--www/images/vote-for-voted.pngbin0 -> 415 bytes
-rw-r--r--www/images/vote-for.pngbin0 -> 625 bytes
-rw-r--r--www/scuttle.css28
6 files changed, 33 insertions, 6 deletions
diff --git a/www/ajaxVote.php b/www/ajaxVote.php
index 27eb62c..3e603da 100644
--- a/www/ajaxVote.php
+++ b/www/ajaxVote.php
@@ -9,12 +9,19 @@ $bs = SemanticScuttle_Service_Factory::get('Bookmark');
$ts = SemanticScuttle_Service_Factory::get('Template');
$bmrow = $bs->getBookmark($bookmark);
+switch ($GLOBALS['votingMode']) {
+case 2:
+ $template = 'bookmarks-vote-horizontal.inc.tpl.php';
+ break;
+default:
+ $template = 'bookmarks-vote.inc.tpl.php';
+}
+
header('Content-Type: text/xml; charset=utf-8');
echo '<voteresult><bookmark>' . $bookmark . '</bookmark>'
. '<html xmlns="http://www.w3.org/1999/xhtml">';
$ts->loadTemplate(
- 'bookmarks-vote.inc.tpl.php',
- array('row' => $bmrow)
+ $template, array('row' => $bmrow)
);
echo '</html></voteresult>';
diff --git a/www/images/vote-against-voted.png b/www/images/vote-against-voted.png
new file mode 100644
index 0000000..740dfc8
--- /dev/null
+++ b/www/images/vote-against-voted.png
Binary files differ
diff --git a/www/images/vote-against.png b/www/images/vote-against.png
new file mode 100644
index 0000000..f15ea4d
--- /dev/null
+++ b/www/images/vote-against.png
Binary files differ
diff --git a/www/images/vote-for-voted.png b/www/images/vote-for-voted.png
new file mode 100644
index 0000000..5abd43e
--- /dev/null
+++ b/www/images/vote-for-voted.png
Binary files differ
diff --git a/www/images/vote-for.png b/www/images/vote-for.png
new file mode 100644
index 0000000..5973ae9
--- /dev/null
+++ b/www/images/vote-for.png
Binary files differ
diff --git a/www/scuttle.css b/www/scuttle.css
index e7fbf81..f28b46a 100644
--- a/www/scuttle.css
+++ b/www/scuttle.css
@@ -298,12 +298,17 @@ div.vote-horiz .voting {
font-weight: bold;
}
li.xfolkentry div.vote-horiz-for {
- border-left: 1em solid #ccffbb;
- padding-left: 0.5em;
+/* border-left: 1em solid #ccffbb;*/
+/* padding-left: 0.5em;*/
}
li.xfolkentry div.vote-horiz-against {
- border-left: 1em solid #ffcccc;
- padding-left: 0.5em;
+/* border-left: 1em solid #ffcccc;*/
+/* padding-left: 0.5em;*/
+}
+.vote-horiz a, .vote-horiz .vote-for-inactive,
+.vote-horiz .vote-against-inactive {
+ padding-left: 1.5em;
+ margin-left: 0.7em;
}
.vote-horiz a.vote-for:hover {
background-color: #ccffbb;
@@ -311,6 +316,21 @@ li.xfolkentry div.vote-horiz-against {
.vote-horiz a.vote-against:hover {
background-color: #ffcccc;
}
+.vote-horiz .vote-for-inactive, .vote-horiz .vote-against-inactive {
+ color: #AAA;
+}
+.vote-horiz .vote-for {
+ background: url(images/vote-for.png) no-repeat;
+}
+.vote-horiz .vote-against {
+ background: url(images/vote-against.png) no-repeat;
+}
+.vote-horiz .vote-for-inactive {
+ background: url(images/vote-for-voted.png) no-repeat;
+}
+.vote-horiz .vote-against-inactive {
+ background: url(images/vote-against-voted.png) no-repeat;
+}
/* SIDEBAR */