After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 50008 - Voting still appears in some places
Voting still appears in some places
Status: RESOLVED FIXED
Product: bugzilla.gnome.org
Classification: Infrastructure
Component: general
unspecified
Other other
: Normal trivial
: ---
Assigned To: Bugzilla Maintainers
Bugzilla Maintainers
Depends on:
Blocks: 60186
 
 
Reported: 2000-12-09 22:03 UTC by Owen Taylor
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Owen Taylor 2000-12-09 22:03:42 UTC
Some places (like the component/product editing screens) still
have remnants of voting visible
Comment 1 Rolf Grossmann 2001-02-20 19:53:13 UTC
If voting for bugs is undesirable (why???), you should also remove the
"My votes" link in the page footer.
Comment 2 Kjartan Maraas 2002-06-07 12:57:06 UTC
Well, Louie?
Comment 3 Wayne Schuller 2002-06-08 06:22:31 UTC
here is a hack...

Index: CGI.pl
===================================================================
RCS file: /cvs/gnome/bugzilla/CGI.pl,v
retrieving revision 1.7
diff -u -r1.7 CGI.pl
--- CGI.pl	12 Jun 2001 16:56:35 -0000	1.7
+++ CGI.pl	8 Jun 2002 06:17:28 -0000
@@ -947,7 +947,8 @@
         if (!defined $::anyvotesallowed) {
             GetVersionTable();
         }
-        if ($::anyvotesallowed) {
+
# FIXME HACK: We don't want them to see the votes option.
+        if (FALSE && $::anyvotesallowed) {
             $html .= qq{ | <A HREF="showvotes.cgi"><NOBR>My
votes</NOBR></A>};
         }


I know we want to keep our bugzilla from forking any further, but this
is a non-essential change. eg: it's nice now, but it won't matter if
we lose it when we upgrade bugzilla.

Comment 4 Luis Villa 2002-06-08 15:48:53 UTC
It is really odd that this should still be present... I'd think that
this indicates that somewhere we've still got voting on :) But yeah,
I've got no objection to this going in- like you say, it doesn't
really affect the upgrade process at all, so... go for it, I guess, Wayne.
Comment 5 Vincent Untz 2003-09-22 22:24:34 UTC
Did this ever get commited ?
Comment 6 Shaun McCance 2004-03-25 22:00:20 UTC
There's also the Voter column under Preferences/Email Settings.
Comment 7 James Henstridge 2004-03-26 03:32:54 UTC
Is there any reason to care about this at all?

The majority of products in bugzilla have voting disabled (maxvotes=0), so the
bug pages don't mention voting.  For the few products that have enabled voting,
the vote UI is shown.

The remaining mentions of voting seem pretty harmless.  Does the ability for
Gimp users to vote on Gimp bugs impact GTK bugs at all?

For reference, the following products have voting enabled:
  balsa
  galeon
  GIMP
  gnome-db
  gnome-vfs
  gtranslator
  libgda
  totem (voting for this one was turned on as a joke though)
Comment 8 Luis Villa 2004-04-02 00:29:33 UTC
If it is only visible in those products, that's fine. Marking FIXED, unless
someone has an example of it showing up anywhere it shouldn't in the current
installation.