aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config_sample.rb2
-rw-r--r--poll.rb4
-rw-r--r--timepollhead.rb6
3 files changed, 6 insertions, 6 deletions
diff --git a/config_sample.rb b/config_sample.rb
index e1c4e58..1075f33 100644
--- a/config_sample.rb
+++ b/config_sample.rb
@@ -45,7 +45,7 @@ NOTICE
# Example 2: displays all available Polls
notice += <<NOTICE
<h2>Available Polls</h2>
-<table summary='Available Polls'>
+<table>
<tr>
<th>Poll</th><th>Last change</th>
</tr>
diff --git a/poll.rb b/poll.rb
index e2c410e..ee9a642 100644
--- a/poll.rb
+++ b/poll.rb
@@ -63,7 +63,7 @@ class Poll
showparticipation = false
invite = true
end
- ret = "<table border='1' summary='Main Poll table'>\n"
+ ret = "<table border='1'>\n"
sortcolumns = $cgi.include?("sort") ? $cgi.params["sort"] : ["timestamp"]
ret += @head.to_html(sortcolumns)
@@ -174,7 +174,7 @@ INVITE
value=\"#{edituser}\"/>"
ret += "</td>\n"
@head.columns.each{|column|
- ret += "<td class='checkboxes'><table summary='Input for one column' class='checkboxes'>"
+ ret += "<td class='checkboxes'><table class='checkboxes'>"
[[YES, YESVAL],[NO, NOVAL],[MAYBE, MAYBEVAL]].each{|valhuman, valbinary|
ret += <<TR
<tr class='input-#{valbinary}'>
diff --git a/timepollhead.rb b/timepollhead.rb
index f9df5ed..a176b4f 100644
--- a/timepollhead.rb
+++ b/timepollhead.rb
@@ -212,11 +212,11 @@ class TimePollHead
end
hintstr = _("Click on the dates to add or remove columns.")
ret = <<END
-<table style='width:100%' summary='edit column'><tr><td style="vertical-align:top">
+<table style='width:100%'><tr><td style="vertical-align:top">
<div id='AddRemoveColumndaysDescription' class='shorttextcolumn'>
#{hintstr}
</div>
-<table class='calendarday' summary='The day to vote for.'><tr>
+<table class='calendarday'><tr>
END
def navi val,curmonth,revision
return <<END
@@ -286,7 +286,7 @@ END
#{optstr}<br/>
#{hintstr}
</div>
-<table class='calendarday' summary='The concrete timeslot'>
+<table class='calendarday'>
<tr>
END