From 00183811523468d9571d9da34bbe1356528dacae Mon Sep 17 00:00:00 2001 From: Benjamin Kellermann Date: Fri, 20 Nov 2009 15:31:14 +0100 Subject: hide participation thing in history --- history.rb | 2 +- poll.rb | 8 ++++---- pollhead.rb | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/history.rb b/history.rb index e49f2e2..1d438c6 100755 --- a/history.rb +++ b/history.rb @@ -60,7 +60,7 @@ if defined?(REVISION) else $html << "

Current Poll

" end -$html << table.to_html +$html << table.to_html("",false) $html << "

History

" $html << "
#{table.history_to_html}
" diff --git a/poll.rb b/poll.rb index 3ecd2ab..97ae081 100644 --- a/poll.rb +++ b/poll.rb @@ -60,10 +60,10 @@ class Poll end end - def to_html(edituser = "", activecolumn = nil, participation = true) + def to_html(edituser = "", showparticipation = true) ret = "\n" - ret += @head.to_html(activecolumn) + ret += @head.to_html sort_data($cgi.include?("sort") ? $cgi.params["sort"] : ["timestamp"]).each{|participant,poll| if edituser == participant ret += participate_to_html(edituser) @@ -71,7 +71,7 @@ class Poll ret += "\n" ret += "\n" @head.each_column{|columnid,columntitle| klasse = poll[columnid] @@ -94,7 +94,7 @@ class Poll } # PARTICIPATE - ret += participate_to_html(edituser) unless @data.keys.include?(edituser) + ret += participate_to_html(edituser) unless @data.keys.include?(edituser) || !showparticipation # SUMMARY ret += "\n" diff --git a/pollhead.rb b/pollhead.rb index 35d397c..f062b13 100644 --- a/pollhead.rb +++ b/pollhead.rb @@ -78,13 +78,13 @@ class PollHead end end - def to_html(config = false,activecolumn = nil) + def to_html(showeditbuttons = false,activecolumn = nil) ret = "\n" @data.each{|columntitle,columndescription| ret += "#{CGI.escapeHTML(columntitle)}" - if config + if showeditbuttons ret += < @@ -125,7 +125,7 @@ EDITDELETE
Preview
" ret += participant - ret += " #{EDIT}" + ret += " #{EDIT}" if showparticipation ret += "
total
Name
-#{to_html(true)} +#{to_html(true,activecolumn)}
END -- cgit v1.2.3