99 lines
2.8 KiB
JavaScript
99 lines
2.8 KiB
JavaScript
// The Antville Project
|
||
// http://code.google.com/p/antville
|
||
//
|
||
// Copyright 2001–2014 by the Workers of Antville.
|
||
//
|
||
// Licensed under the Apache License, Version 2.0 (the ``License'');
|
||
// you may not use this file except in compliance with the License.
|
||
// You may obtain a copy of the License at
|
||
//
|
||
// http://www.apache.org/licenses/LICENSE-2.0
|
||
//
|
||
// Unless required by applicable law or agreed to in writing, software
|
||
// distributed under the License is distributed on an ``AS IS'' BASIS,
|
||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
// See the License for the specific language governing permissions and
|
||
// limitations under the License.
|
||
|
||
Poll.prototype.choices_macro = function(param) {
|
||
var vote;
|
||
if (session.user && this.votes.get(session.user.name)) {
|
||
vote = this.votes.get(session.user.name).choice;
|
||
}
|
||
for (var i=0; i<this.size(); i++) {
|
||
var choice = this.get(i);
|
||
param.name = "choice";
|
||
param.title = renderSkinAsString(createSkin(choice.title));
|
||
param.value = choice._id;
|
||
param.checked = "";
|
||
if (choice == vote) {
|
||
param.checked = " checked=\"checked\"";
|
||
}
|
||
res.write(choice.renderSkinAsString("$Choice#main", param));
|
||
}
|
||
return;
|
||
}
|
||
|
||
Poll.prototype.total_macro = function(param) {
|
||
var n = this.votes.size();
|
||
if (n == 0) {
|
||
n += " " + (param.no || "votes");
|
||
} else if (n == 1) {
|
||
n += " " + (param.one || "vote");
|
||
} else {
|
||
n += " " + (param.more || "votes");
|
||
}
|
||
return n;
|
||
}
|
||
|
||
Poll.prototype.question_macro = function(param) {
|
||
if (param.as == "editor") {
|
||
this.textarea_macro(param, "question");
|
||
} else {
|
||
res.write(this.question);
|
||
}
|
||
return;
|
||
}
|
||
|
||
Poll.prototype.closetime_macro = function(param, format) {
|
||
format || (format = param.format);
|
||
return this.closed_macro(param, format);
|
||
}
|
||
|
||
Poll.prototype.results_macro = function(param2) {
|
||
for (var i=0; i<this.size(); i++) {
|
||
var c = this.get(i);
|
||
var param = new Object();
|
||
param.title = c.title;
|
||
param.count = c.size();
|
||
param.percent = 0;
|
||
if (param.count > 0) {
|
||
param.percent = param.count.toPercent(this.votes.size());
|
||
param.width = Math.round(param.percent * 2.5);
|
||
param.graph = c.renderSkinAsString("graph", param);
|
||
if (param.count == 1)
|
||
param.text = " " + (param2.one || "vote");
|
||
else
|
||
param.text = " " + (param2.more || "votes");
|
||
} else
|
||
param.text = " " + (param2.no || "votes");
|
||
c.renderSkin("$Choice#result", param);
|
||
}
|
||
return;
|
||
}
|
||
|
||
Poll.prototype.editlink_macro = function(param) {
|
||
return this.link_macro(param, "edit");
|
||
}
|
||
|
||
Poll.prototype.deletelink_macro = function(param) {
|
||
return this.link_macro(param, "delete");
|
||
}
|
||
|
||
Poll.prototype.viewlink_macro = function(param) {
|
||
return this.link_macro(param, ".", "view");
|
||
}
|
||
|
||
Poll.prototype.closelink_macro = function(param) {
|
||
return this.link_macro(param, "rotate");
|
||
}
|