I would like to suggest to the owner/developer of the wikibugs-l mailinglist (Brion ?)
to implement a new and more general email preference option to suppress duplicate mails to be sent, e.g. when one has a relation to a certain bug and is also member of the wikibugs-l mailinglist. (In this case, one currently receives two mails).
Thomas Gries wrote:
I would like to suggest to the owner/developer of the wikibugs-l mailinglist (Brion ?)
to implement a new and more general email preference option to suppress duplicate mails to be sent, e.g. when one has a relation to a certain bug and is also member of the wikibugs-l mailinglist. (In this case, one currently receives two mails).
Wikitech-l mailing list Wikitech-l@wikimedia.org http://mail.wikipedia.org/mailman/listinfo/wikitech-l
This would require some reprogramming and hacking on Bugzilla, which isnt easy.
Thomas,
Have you tried disabling your email at http://bugzilla.wikipedia.org/userprefs.cgi?tab=email
-- Zigger
On Mon, 03 Jan 2005 00:42:40 +0100, Thomas Gries wrote:
... to implement a new and more general email preference option to suppress duplicate mails to be sent, e.g. when one has a relation to a certain bug and is also member of the wikibugs-l mailinglist. (In this case, one currently receives two mails). ...
I wonder if you could help. Is there a tag tat will display the text contained within only if the user is logged in? If not, can anyone suggest a way to do this.
Many thanks.
On Jan 2, 2005, at 6:29 PM, Robert Jones wrote:
I wonder if you could help. Is there a tag tat will display the text contained within only if the user is logged in?
No.
If not, can anyone suggest a way to do this.
http://meta.wikimedia.org/wiki/Write_your_own_MediaWiki_extension
-- brion vibber (brion @ pobox.com)
Thanks Biron. I made my extension, and it works apart from the fact that the text inside isn't parsed into wiki format. I've experimented with $wgOut but haven't been able to figure it out, can you/anyone advise?
Many thanks.
My code:
function renderLoggedIn( $input ) { global $wgUser; if ( 0 != $wgUser->getID() ) { $output = $input; // User is logged in. return $output; } else { $output = ""; // User is not logged in. return $output; } }
-----Original Message----- From: wikitech-l-bounces@wikimedia.org [mailto:wikitech-l-bounces@wikimedia.org] On Behalf Of Brion Vibber Sent: 03 January 2005 02:42 To: Wikimedia developers Subject: Re: [Wikitech-l] Question: logged-in tag?
On Jan 2, 2005, at 6:29 PM, Robert Jones wrote:
I wonder if you could help. Is there a tag tat will display
the text
contained within only if the user is logged in?
No.
If not, can anyone suggest a way to do this.
http://meta.wikimedia.org/wiki/Write_your_own_MediaWiki_extension
-- brion vibber (brion @ pobox.com)
On Jan 2, 2005, at 7:37 PM, Robert Jones wrote:
Thanks Biron. I made my extension, and it works apart from the fact that the text inside isn't parsed into wiki format. I've experimented with $wgOut but haven't been able to figure it out, can you/anyone advise?
Look at OutputPage::addWikiText and try doing similar.
Note that outputting raw HTML may be dangerous on a public wiki, as arbitrary JavaScript code may be inserted which captures users' login tokens and sends them to an offsite harvester, or uses ActiveX plugins or other possible security exploits to attack vulnerable browsers.
-- brion vibber (brion @ pobox.com)
wikitech-l@lists.wikimedia.org