[Bug 19055] rebuildrecentchanges.php must purge RSS and Atom feeds

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19055





--- Comment #5 from jida...@jidanni.org  2009-06-03 06:25:51 UTC ---
Not only does using
$messageMemc-delete(wfMemcKey( array( 'rcfeed', $feed, 'timestamp' )));
not help in deleting
keyname: radioscanningtw:rcfeed:atom:50::
keyname: radioscanningtw:rcfeed:rss:2::
keyname: radioscanningtw:rcfeed:rss:4::
but it doesn't even delete
keyname: radioscanningtw:rcfeed:rss:timestamp
So, sorry.

What I need is a utility function, like UNIX rm -r, which will expand
to all rcfeed:* matches, no matter how many trailing colons. That way
I need not leave any of these now useless strings wastefully behind
there in the database, for months too in the case of quiet wikis. By
the way
public static function checkPurge( $timekey, $key )
could make use of such a function too, as it also leaves some things
wastefully behind. Such a function should reside in the same file the
rest of those mem* functions do.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18690] Special:Allpages namespace selector issues

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18690


jida...@jidanni.org changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 OS/Version|Linux   |All
 Resolution|FIXED   |
Summary|Special:Allpages namespace  |Special:Allpages namespace
   |selector unusable since 1.14|selector issues
Version|1.15-svn|unspecified




--- Comment #7 from jida...@jidanni.org  2009-06-03 06:31:47 UTC ---
Leaving bug open until all issues are ironed out.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19062] New: Escaped HTML-entities do not round-trip when using forms

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19062

   Summary: Escaped HTML-entities do not round-trip when using forms
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://km.aifb.uni-
karlsruhe.de/projects/owltests/index.php?title=Consisten
t-but-all-unsatoldid=3329
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: SemanticForms
AssignedTo: yaro...@gmail.com
ReportedBy: mar...@semantic-mediawiki.org
CC: wikibugs-l@lists.wikimedia.org


The above example URL shows a wiki where XML-documents are managed using
templates and forms. XML uses many characters that also have special meaning in
MediaWiki, but most of those do not need any escaping, since they do not occur
in contexts that MW recognizes. There are two exceptions:

* Comments in XML are written as in MediaWiki. To prevent MW from interpreting
them, it is necessary to write lt;!-- on the wiki page instead of !--.

* XML entities are unescaped by MediaWiki during parsing. So to get an escaped
entity like lt; into a semantic property value, one needs to write
amp;lt; in the input.

Both encodings work in MW and SMW. (A more general but less user-friendly
strategy would be to escape all , , , ... in the input fields. This would be
more systematic, but most cases work pretty well without such escapes.)

Now the problem is that, when editing with SRF, the text that is loaded into
the form does not contain the original entities, i.e. it shows !-- where the
page included lt;!-- and it shows lt; where the page included amp;lt;.
Either SF does too much unescaping, or it simply passes on literal escaped text
to the browser who unescapes it for display. In any case, edit with form
changes the page contents even if the user does not modify the form contents at
all.

Tested on FF 3.0.10, MW 1.14alpha,  SMW 1.5e-SVN, SF 1.6.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19063] New: Pipe (|) in form inputs

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19063

   Summary: Pipe (|) in form inputs
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://km.aifb.uni-
karlsruhe.de/projects/owltests/index.php?title=Inconsist
ent-pattern-disjointnessoldid=3330
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: SemanticForms
AssignedTo: yaro...@gmail.com
ReportedBy: mar...@semantic-mediawiki.org
CC: wikibugs-l@lists.wikimedia.org


Using a | in a form input is currently problematic since | has a special
meaning in templates. Doing this will put the page into a very bad state, and
this cannot be recovered with edit with form since the | confuses SF as well.
It is not possible to avoid this by clever template construction, since it
already happens when parameter values are passed.

The problem can be avoided by replacing | with #124;.  The example URL shows
this workaround -- see older versions for what it looks like without it. Doing
this escape in general, however, would break intentional mark-up, e.g. when a
user includes a link with an alternative display text in a form input. I
suggest to either parse the user input with the MW parser to distinguish those
cases, or to have some option verbatim that can be declared for an input
field when defining a form: this option should make SF escape all special
characters, thus preventing most HTML or MW markups, but preserving the
original writing. This should be very useful for wikis where users are
completely unaware of the underlying wiki.

Note that this solution could also be useful in the context of Bug 19062. Also
note that it is not possible to have a parser function that does the escaping
in the template, since the special characters often affect the way in which
parser functions are actually interpreted, and since mark-up like !-- will
never get to aparser function.

Tested on FF 3.0.10, MW 1.14alpha,  SMW 1.5e-SVN, SF 1.6.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19063] Pipe (|) in inputs leads to hiding and possibly deletion of content

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19063


Markus Krötzsch mar...@semantic-mediawiki.org changed:

   What|Removed |Added

   Severity|enhancement |normal
Summary|Pipe (|) in form inputs |Pipe (|) in inputs leads to
   ||hiding and possibly deletion
   ||of content




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19062] Escaped HTML-entities do not round-trip when using forms

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19062





--- Comment #1 from Markus Krötzsch mar...@semantic-mediawiki.org  2009-06-03 
08:15:31 UTC ---
The problem also occurs for #-style escapes as required for working around Bug
19063. In other words, the workaround, after being implemented by a
knowledgeable user, will be destroyed as soon as the page is edited by someone
who is not aware of this, or who forgets to re-encode one occurrence of the
escapes after editing.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18958] reuse $wgDisableLangConversion to be able to disable the conversion entirely

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18958





--- Comment #3 from Shinjiman shinji...@gmail.com  2009-06-03 08:24:10 UTC ---
A type check has been applied on r51390 to check whether is is 0 (disabled) or
null (not set, by default).


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19059] prototype.wikimedia.org should support SUL

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19059


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com




--- Comment #1 from Roan Kattouw roan.katt...@gmail.com  2009-06-03 09:24:57 
UTC ---
Since prototype has its own database server, it doesn't have access to the
shared centralauth database, which AFAICT makes it hard or even impossible to
set up SUL.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18763] Unable to save preferences after switching language

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18763


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
09:38:56 UTC ---
Should be fixed as of r51395.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18886] PDFs created by Wikipedia are viewable but will not print

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18886


PediaPress Support Team supp...@pediapress.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #10 from PediaPress Support Team supp...@pediapress.com  
2009-06-03 09:45:25 UTC ---
fixed with http://code.pediapress.com/hg/mwlib.rl/rev/5922a9a7f504

will be online on wikipedia within the next couple of days


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19064] New: Malayalam translation for the name space File

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19064

   Summary: Malayalam translation for the name space File
   Product: MediaWiki
   Version: unspecified
  Platform: All
   URL: http://ml.wikipedia.org
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Internationalization
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: shijua...@hotmail.com
CC: shijualexonl...@gmail.com


Hi,

I am from Malayalam Wikipedia (http://ml.wikipedia.org)

Recently, the Namespace used for the images (and file uploads) is changed to
File in the MediaWiki software. 

Due to this, we (the Malayalam Wiki projects) have decided to use a name space
that convey the same meaning as the english word File. The existing translation
is ചിത്രം. Now we need to change that to പ്രമാണം
which is the translation of the word File. So, please change the current
malayalam translation for the namespace File from ചിത്രം to
പ്രമാണം . Also, keep the current namespace ചിത്രം
as alias. 

hange ചിത്രം -- പ്രമാണം

This change need to be done for all the Malayalam wiki projects.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19064] Malayalam translation for the name space File

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19064


Siebrand siebr...@wikipedia.be changed:

   What|Removed |Added

 CC||siebr...@wikipedia.be
 Status|NEW |ASSIGNED




--- Comment #1 from Siebrand siebr...@wikipedia.be  2009-06-03 10:33:37 UTC 
---
Please do this at
http://translatewiki.net/w/i.php?language=mlmodule=namespacetitle=Special%3AAdvancedTranslate.
You can also localise magic words and special page aliases there (as well as
the translation of interface messages, but you already knew that :P). Thanks.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19059] prototype.wikimedia.org should support SUL

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19059





--- Comment #2 from Gurch matthew.brit...@btinternet.com  2009-06-03 10:36:00 
UTC ---
Er... forgive me for being obtuse, but what exactly is so important that we
need *yet another* random wikimedia wiki that nobody knows about set up?


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19064] Malayalam translation for the name space File

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19064


Shiju Alex shijua...@hotmail.com changed:

   What|Removed |Added

 CC||shijua...@hotmail.com




--- Comment #2 from Shiju Alex shijua...@hotmail.com  2009-06-03 10:56:50 UTC 
---
:) Yes. I know. And we have already made that change in the translate wiki long
before. 

But, still all our wikis are showing the old namespace. Foe example, see
http://ml.wikipedia.org/w/api.php?action=querymeta=siteinfosiprop=namespaces

We are looking for the permanent solution.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19064] Malayalam translation for the name space File

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19064


Siebrand siebr...@wikipedia.be changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #3 from Siebrand siebr...@wikipedia.be  2009-06-03 11:02:17 UTC 
---
Wikimedia has not updated its software for over two months. SVN has already
been updated 7 weeks ago[1]. See [2] for the current file, which does contain
the change you are requesting here. Marking fixed.

[1]
http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/languages/messages/MessagesMl.php?r1=49320r2=49503
[2]
http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/languages/messages/MessagesMl.php?revision=51244view=markup


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18690] Special:Allpages namespace selector issues

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18690





--- Comment #8 from Aaron Schulz jschulz_4...@msn.com  2009-06-03 13:37:21 
UTC ---
OK, the issue fixed in r51302 was the automatic changing of the to/from fields.

As for a reset button, JS solutions tend to be frowned upon, so maybe a clear
link or link button is best.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19065] New: Automatically enable nofollow for non-existing links

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19065

   Summary: Automatically enable nofollow for non-existing links
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://webmasterteachyourself.com
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: ekomp...@gmail.com


Hi, is it possible for MediaWiki to automatically enable nofollow for
non-existing links? As it is, I am using the metatag for each page because my
new wiki has just too many red links.

Regards,

PM Poon


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18005] Requesting to enable FlaggedRevs Patrolling Configuration on es.wikinews

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18005


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #5 from Rob Halsell rhals...@wikimedia.org  2009-06-03 14:14:48 
UTC ---
There are no specifications on what settings requested, so I will enabled
Flagged Revisions with the default settings.  If more specific settings are
required, please reply to this ticket.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18005] Requesting to enable FlaggedRevs Patrolling Configuration on es.wikinews

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18005


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #6 from Rob Halsell rhals...@wikimedia.org  2009-06-03 14:20:10 
UTC ---
FlaggedRevisions has been enabled on eswikinews with the default settings.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18590] Add 'autoeditor' group and remove 'autopromote' on Ukrainian Wiktionary

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18590


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #2 from Rob Halsell rhals...@wikimedia.org  2009-06-03 14:31:50 
UTC ---
I have added the group and allowed bureaucrats to add and remove the right. 
However, I am not sure what autopromote you mean.  Do you mean the flagged
revisions autopromote?

Both of these requests should technically have a link to a project consensus.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 4582] Provide preference-based autoformatting for unlinked dates

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=4582


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 6331] Request to change namespaces on fy.wiktionary.org

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=6331


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #10 from Rob Halsell rhals...@wikimedia.org  2009-06-03 14:35:07 
UTC ---
Is there some review and consensus by the project to change these things? 
Usually there is a discussion on the project and an agreement.  Has this
occured for this project and there is just no link?  Can a link be provided
please?


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18670] Create ability to remove tags from edits / actions

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18670


cenarium.sy...@gmail.com changed:

   What|Removed |Added

 CC||cenarium.sy...@gmail.com




--- Comment #2 from cenarium.sy...@gmail.com  2009-06-03 14:36:11 UTC ---
A way to directly create and delete tags would considerably improve the tagging
interface.

It would allow to choose the wanted tag in a scroll-down menu among existing
tags in recent changes, histories, etc and the abuse filter interface, which is
much preferable than having to type its name (and has negative effects in cases
of mistakes or name changes, see bug 18908).

Also, a tag should not be deletable if it is called by an abuse filter.

I would agree that there is no need for tags to be visible after 30 days.

For examples, the following tags are no longer active on enwiki, and can be
deleted safely:

ref group removal (1763 tagged changes), removal of references (460),
personal attack (170), possible conflict of interest spam (259), spam
(153), link vandalism (2)


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18908] Ignore tags from deleted filters

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18908





--- Comment #2 from cenarium.sy...@gmail.com  2009-06-03 14:36:15 UTC ---
Expanded on this at bug 18670 . Still the initial matter for deleting filters
calling tags.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13853] Setup new groups in no.wikibooks and access to Special:Userrights

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13853


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #4 from Rob Halsell rhals...@wikimedia.org  2009-06-03 14:48:48 
UTC ---
I have added the groups and assignment rights as requested.  If there are any
questions or concerns, please let me know via this ticket.

Thanks!


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19066] New: 'mv_user_cant_edit' hard to localise

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19066

   Summary: 'mv_user_cant_edit' hard to localise
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Keywords: i18n
  Severity: enhancement
  Priority: Normal
 Component: MetaVidWiki
AssignedTo: d...@ucsc.edu
ReportedBy: siebr...@wikipedia.be


'mv_user_cant_edit' contains parameters for a login link and a cancel link.
Other messages are used as a label for those links. This is hard to localise in
some languages, because the messages that are used, may not always require the
exact same conjugation. Please change this so that the labels are part of the
message, and only the link is inserted ([$1 desc] instead of $1). Example
in r50802.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19067] New: Right 'patrolmarks' unused?

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19067

   Summary: Right 'patrolmarks' unused?
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: FlaggedRevs
AssignedTo: jschulz_4...@msn.com
ReportedBy: siebr...@wikipedia.be


FlaggedRevs.php:$wgAvailableRights[] = 'patrolmarks';

This is the only mention of 'patrolmarks' in all of flagged revs. I am
uncertain if this has not been renamed when it should be, or if it is obsolete.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19059] prototype.wikimedia.org should support SUL

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19059





--- Comment #3 from Roan Kattouw roan.katt...@gmail.com  2009-06-03 15:06:13 
UTC ---
(In reply to comment #2)
 Er... forgive me for being obtuse, but what exactly is so important that we
 need *yet another* random wikimedia wiki that nobody knows about set up?
 

The wikis (5 of them) on prototype.wikimedia.org will be used by us at the
usability project to showcase our designs and new functionality, and allow the
community to test them. An announcement about this should be made soon.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18095] AbuseFilter should be able to access file metadata on upload

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18095


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:11:10 UTC ---
Done in r51408.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18176] Add messages to MediaWiki: namespace

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18176





--- Comment #2 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:14:30 UTC ---
BADSYNTAX, SYNTAXERROR, MATCH and NOMATCH should never be displayed in the UI.
If they are, then that's a bug.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18230] AbuseFilter Log should be sortable by action taken

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18230





--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:15:17 UTC ---
This isn't easy to do in a performant manner.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18247] Allowing per page filters

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18247





--- Comment #5 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:16:57 UTC ---
Minor technical quibble: It isn't computationally trivial to search for a
substring in thousands of rows. It requires an expensive row scan. If
implemented, it would be done differently.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18285] Diff formatting of filter shows references

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18285





--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:19:43 UTC ---
Hoping this will disappear with next code update.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18302] Display average runtime per filter to Special:AbuseFilter table

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18302





--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:22:06 UTC ---
Without modifying the TablePager infrastructure, this wouldn't be sortable, and
is annoying to implement in any case.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18176] Hard coded text in AbuseFilter

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18176


Siebrand siebr...@wikipedia.be changed:

   What|Removed |Added

Summary|Add messages to MediaWiki:  |Hard coded text in
   |namespace   |AbuseFilter




--- Comment #3 from Siebrand siebr...@wikipedia.be  2009-06-03 15:22:15 UTC 
---
Updated summary


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18343] Add a right to exempt users from global blocks, but not local ones

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18343


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:33:22 UTC ---
Done in r51410.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18098] Format Special:GlobalBlock like Special:Block

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18098





--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:36:04 UTC ---
(In reply to comment #0)
 The form at Special:Block hides the other field when you use it - global
 blocking should do the same.

Reported separately at bug 18412.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18642] Supply parameters to abuse filter warning messages

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18642


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:42:18 UTC ---
$1 was already the public filter description. As of r51412, the filter ID is in
slot $2.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16180] Upload and Transwiki settings for Japanese Wikiversity

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16180


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Rob Halsell rhals...@wikimedia.org  2009-06-03 15:46:44 
UTC ---
Firstly, EXCELLENT bug report.  All that was required was asking for the
features, however, adding all the settings like that just really ensures that
we are on the same page for the changes.  It is HIGHLY appreciated!!!

I have made the requested changes and they are now live on the cluster.  If you
have any questions or concerns, please do not hesitate to let me know!


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18659] Ability to set block duration for abuse filters which issue blocks (ESP IPs)

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18659


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

   Severity|normal  |enhancement
 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:53:32 UTC ---
Fixed in r51413.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19068] New: PAGESINCATEGORY doesn't give correct number of pages

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19068

   Summary: PAGESINCATEGORY doesn't give correct number of pages
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Normal
 Component: Categories
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: hercule.wikipe...@gmail.com


Hello,

I have identified a bug on the magic word PAGESINCATEGORY. i discussed on
http://fr.wikipedia.org/w/index.php?title=Wikipédia:Le_Bistro/3_juin_2009#Erreur_de_comptage_.7B.7BPAGESINCATEGORY:Bon_article.7D.7D
and it seem to be a real bug.

The number given by PAGESINCATEGORY is incorrect. On french category 'Bon
article' we have 610 articles and 4 categories, and the function returns 609. 

When browsing the category it's shown there is 605 articles whereas there are
610 (I'm sure of that)

Regards


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18670] Create ability to remove tags from edits / actions

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18670





--- Comment #3 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
15:55:39 UTC ---
(In reply to comment #2)
 A way to directly create and delete tags would considerably improve the 
 tagging
 interface.
 
 It would allow to choose the wanted tag in a scroll-down menu among existing
 tags in recent changes, histories, etc and the abuse filter interface, which 
 is
 much preferable than having to type its name (and has negative effects in 
 cases
 of mistakes or name changes, see bug 18908).
 
 Also, a tag should not be deletable if it is called by an abuse filter.
 
 I would agree that there is no need for tags to be visible after 30 days.
 
 For examples, the following tags are no longer active on enwiki, and can be
 deleted safely:
 
 ref group removal (1763 tagged changes), removal of references (460),
 personal attack (170), possible conflict of interest spam (259), spam
 (153), link vandalism (2)
 

They can't be deleted, because they're applied to edits. When they are removed
from all edits, they will disappear automatically.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19068] PAGESINCATEGORY doesn't give correct number of pages

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19068


^demon innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE




--- Comment #1 from ^demon innocentkil...@gmail.com  2009-06-03 15:56:24 UTC 
---


*** This bug has been marked as a duplicate of bug 16036 ***


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16036] PAGESINCATEGORY inaccurate for template-populated deletion categories

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16036


^demon innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||hercule.wikipe...@gmail.com




--- Comment #2 from ^demon innocentkil...@gmail.com  2009-06-03 15:56:24 UTC 
---
*** Bug 19068 has been marked as a duplicate of this bug. ***


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18908] Ignore tags from deleted filters

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18908


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Comment #3 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
16:07:01 UTC ---
Fixed a related issue, but not the one you're thinking of in r51415.

However, tags which have been applied to edits should be shown in the
interface, even if they are no longer applied. The solution to removing
annoying old tags is to provide functionality for mass-removing and moving tags
from edits, which is in another bug report.

To summarize: this is expected behaviour.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 17967] Alias of 'Wikibooks' namespace in Chinese Wikibooks

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17967


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #1 from Rob Halsell rhals...@wikimedia.org  2009-06-03 16:12:09 
UTC ---
The requested aliases have been setup and deployed to the project.  If there
are any questions or concerns, please let me know.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 17802] Update commons image count

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17802


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Rob Halsell rhals...@wikimedia.org  2009-06-03 16:18:12 
UTC ---
initStats has been run against commonswiki.  The statistics should now be
updated.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16660] Database table cleanup (tracking)

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16660


Bug 16660 depends on bug 17802, which changed state.

Bug 17802 Summary: Update commons image count
https://bugzilla.wikimedia.org/show_bug.cgi?id=17802

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||FIXED



-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16777] Upgrade Bugzilla to 3.2

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16777


Fred Vassard fvass...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #5 from Fred Vassard fvass...@wikimedia.org  2009-06-03 16:21:46 
UTC ---
Current bugzilla version now installed on Singer. The skin has been ported, and
so have the cronjobs.
It is currently running out of a copy of the current bugzilla database (last
update from Monday June 1st): bugzilla_testing.
I will reserve a couple of days for testing before taking it live.
It is currently running on https://bugzilla3.wikimedia.org/.

Let me know if you see anything weird. 


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18479] Set $wgUseDynamicDates = false for the English Wikipedia

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18479





--- Comment #11 from locke.cole.w...@gmail.com  2009-06-03 16:32:27 UTC ---
The syntax would need to allow linked and formatted dates, likely using some
bastardization of category and file linking syntax:

[[:April 1]] [[2009]]

Would link April 1 and format it, but leave 2009 unlinked.

[[:April 1]] [[:2009]]

Would link both the month/day and year, and format it.

[[April 1]] [[2009]]

Would format the date but generate no links.

Editors would need to force links using this colon syntax, but the delinking
(of which there are more dates that need to be delinked than there are dates
which need to keep their links) would be instantaneous and not require
thousands of bot edits. This also avoids edit wars over delinking. I'm still of
the opinion that it makes FAR more sense to fix Dynamic Dates than to abandon
it entirely.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19069] New: Add Extension Poll to Bugzilla

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19069

   Summary: Add Extension Poll to Bugzilla
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensio
ns/Poll/
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Bugzilla
AssignedTo: br...@wikimedia.org
ReportedBy: j...@jans-seite.de


Hello,

Could you please add an area for the Extension Poll in Bugzilla

Sincerely,
Jan Luca


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18956] Import sources on el.wikiversity

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18956


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Rob Halsell rhals...@wikimedia.org  2009-06-03 16:44:55 
UTC ---
The requested import sources have been added.  If there are any questions or
concerns, please do not hesitate to contact me.

Best regards,

Rob Halsell


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18870] The toggle defined in $extraUserToggles won't display in the user preferences

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18870


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #5 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
16:45:28 UTC ---
Fixed in r51417.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19069] Add Extension Poll to Bugzilla

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19069


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 CC||agarr...@wikimedia.org
 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
16:46:27 UTC ---
Done.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19069] Add Extension Poll to Bugzilla

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19069





--- Comment #2 from Jan Luca j...@jans-seite.de  2009-06-03 16:49:52 UTC ---
Thank you.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18961] Restore all default settings should be a button

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18961





--- Comment #2 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
16:54:14 UTC ---
A button executes an action, this does not. It takes you to a confirmation
page. I think this should be marked WONTFIX, but I'm open to third opinions.

Thanks for the report as to it not working, I've added saveSettings() in
r51420.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 15252] Allow group rights to be changed on-wiki

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=15252


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

   Keywords|need-review, patch  |




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18588] Create a namespace aliases on yuewiki

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18588


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Rob Halsell rhals...@wikimedia.org  2009-06-03 16:56:30 
UTC ---
The namespaces have been added and the script run.  If there are any questions
or concerns, please do not hesitate to let us know.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16315] Change favicon for Wiktionaries

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16315


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #21 from Rob Halsell rhals...@wikimedia.org  2009-06-03 17:10:19 
UTC ---
Well, since the old favicon is indeed identical to wikipedia, I went ahead and
pushed the updated one.  If the consensus changes to have it use a different
one, we can reopen this ticket, or create a new one.

For now the tile-w logo is now in place, replacing the plain W favicon
identical on Wikipedia.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19070] New: add section [edit] links to the default skin - for IP users

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19070

   Summary: add section [edit] links to the default skin - for IP
users
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Page editing
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: stv...@gmail.com


Currently it is required that one be logged in to see section edit links. The
reason for this AIUI appears to be a qualitative opinion with regard to IP
(anon) editors and what problems they might create if editing is made
particularly visible and therefore easy to do. If this is a reason, I think
it's unwiki, and any issues can be handled by the community, albeit not without
some thought. 

Section editing is great, and as someone made clear a couple years ago IP edits
account for a great deal of content. Some articles are getting longer too, and
this means that IP editors who want to edit a section need to load up the whole
page in edit mode. It could be that the large articles are well-developed and
as such there is a modality of nudging contributors to log in to edit such
articles, but I'm not certain there wouldn't be some quantifiable benefits to
making section editing available to IP editors. 

There are of course other default interface issues to deal with, and some
inclusive discussion about that might generate some ideas. Quick-selection of
some basic CSS for options is one.

-Steven


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19059] prototype.wikimedia.org should support SUL

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19059





--- Comment #4 from Eugene Zelenko eugene.zele...@gmail.com  2009-06-03 
17:19:33 UTC ---
Announcement was made already
(http://blog.wikimedia.org/2009/06/02/brewing-ideas-for-the-wikipedia-usability-initiative/).

From usability point of view, wiki from wikimedia.org which doesn't support SUL
looks kinda strange :-)


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18612] Please enable transwiki import and upload import to es.wikibooks.

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18612


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #2 from Rob Halsell rhals...@wikimedia.org  2009-06-03 17:26:16 
UTC ---
What sources do you want to be allowed to import from.  Also, this sort of
thing usually requires a consensus or atleast a village pump discussion to
exist where folks are not radically opposed to it.  Please advise.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18642] Supply parameters to abuse filter warning messages

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18642





--- Comment #2 from Gurch matthew.brit...@btinternet.com  2009-06-03 17:37:23 
UTC ---
(In reply to comment #1)
 $1 was already the public filter description. As of r51412, the filter ID is 
 in
 slot $2.

Oh, so it was, sorry about that. Assumed it wasn't there since en.wikipedia
isn't using it, despite being obviously useful. I'll have to go pester them at
some point.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18591] Add 'autoeditor' group, remove 'autopromote', 'patroller' and 'autopatroller' groups on Russian Wikisource

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18591


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #2 from Rob Halsell rhals...@wikimedia.org  2009-06-03 17:43:13 
UTC ---
I have removed the Autopatroller and Patroller groups, as well as adding the
Autoeditor groups with the rights specified.  However, I do not see any setting
enabled for autopromote for ruwikisource.  Did you perhaps mean Autoconfirmed? 
Please advise.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16290] Creation of namespace 'Portal' at bar.wikipedia.org

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16290


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 AssignedTo|rhals...@wikimedia.org  |br...@wikimedia.org
 Status|REOPENED|NEW




--- Comment #14 from Rob Halsell rhals...@wikimedia.org  2009-06-03 17:50:09 
UTC ---
I am really not sure how to fix this issue.  I am re-assigning this ticket to
Brion.  He is currently on vacation, but when he gets back I will review it
with him so I can fix this sort of thing in the future.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18590] Add 'autoeditor' group and remove 'autopromote' on Ukrainian Wiktionary

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18590


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 17967] Alias of 'Wikibooks' namespace in Chinese Wikibooks

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17967


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19066] 'mv_user_cant_edit' hard to localise

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19066





--- Comment #1 from Michael Dale d...@ucsc.edu  2009-06-03 17:57:36 UTC ---
hmm .. does not work to well if we have a JavaScript action passes as the
link.. not easy to pass # either .. well updated the link that was a actual
page link. in r51418 ... I will think about that javascript link (this code
will probably be re-factored to more JavaScript driven interface in the future
)


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18532] Lost Talk Pages during creation of new namespace at pl.wikibooks.org

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18532


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #2 from Rob Halsell rhals...@wikimedia.org  2009-06-03 18:02:09 
UTC ---
Ran cleanupTitles
plwikibooks 2009-06-03 17:58:25: page 14460
(Dyskusja:Wikijunior:Języki/Rosyjski) is illegal.
plwikibooks 2009-06-03 17:58:25: renaming 14460
(1,'Wikijunior:Języki/Rosyjski') to
(1,'Broken/Wikijunior\x3aJ\xc4\x99zyki/Rosyjski')

plwikibooks 2009-06-03 17:58:27: page 16391 (Dyskusja:Wikijunior:Języki) is
illegal.
plwikibooks 2009-06-03 17:58:27: renaming 16391 (1,'Wikijunior:Języki') to
(1,'Broken/Wikijunior\x3aJ\xc4\x99zyki')

plwikibooks 2009-06-03 17:58:27: Finished page... 2 of 12082 rows updated


I also ran namespaceDupes and it all looked good, as well as cleanupDupes,
which also looked fine.  Is the issue resolved?  Please let me know.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18594] Add 'autoeditor' group and remove 'autopromote' on Russian Wikiquote

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18594


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Rob Halsell rhals...@wikimedia.org  2009-06-03 18:12:11 
UTC ---
I assume by administrator that you mean sysop.  I have added the group and
given sysops the rights to add and remove the flag from users.

As with your other tickets, I am not sure what you mean by autopromote, as I do
not see any autopromote setting for ruwikiquote.  Did you mean the
FlaggedRevsAutopromote?

I am going to mark this as resolved.  Please reopen it if the autopromote
request is not in error, and please clarify it.  Thanks!


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19071] New: CategoryTree always start fully expanded except last level

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19071

   Summary: CategoryTree always start fully expanded except last
level
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: critical
  Priority: Normal
 Component: CategoryTree
AssignedTo: dan...@brightbyte.de
ReportedBy: baddr...@gmail.com


This occur using latest CategoryTree on MediaWiki 1.14+.  

CategoryTree always start fully expanded except last level. This make
CategoryTree not usable for depth  2. Need to get back old behaviour of
CategoryTree start fully collapse without regard to how many depth specified.

For example, set depth=4 means level 0-3 fully expanded and only level 4 show
the + and be collapsed.

For further example, set depth=8 means level 0-7 fully expanded and only level
8 show + and be collapsed. 

This make CategoryTree unacceptable for use of depth  2, as listing becomes
too long for navigation.

Need to have the old behaviour return or alternatively a parameter can be set,
for instance onload=collapse or onload=expand to determine initial display
behaviour.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 17050] Change upload rights at Russian Wikipedia

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17050


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #4 from Rob Halsell rhals...@wikimedia.org  2009-06-03 20:25:24 
UTC ---
I have added the 'uploader' group which as upload rights.  Presently sysops can
add and remove users from the group.  The upload right has been removed from
autoconfirmed users.

I also added in auto-promotion to the uploader group for anyone registered over
14 days with 20 edits as requested.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16290] Creation of namespace 'Portal' at bar.wikipedia.org

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16290





--- Comment #15 from Melancholie wiki.melancho...@web.de  2009-06-03 20:26:37 
UTC ---
(In reply to comment #14)
 ... I will review it with him so I can fix this sort of thing in the future.
 

Thank you for your efforts, by the way!


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18183] Hide globally hidden user names on Special:Log/globalauth

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18183





--- Comment #3 from Mike.lifeguard mike.lifegu...@gmail.com  2009-06-03 
20:27:15 UTC ---
Actually, you're not quite right on the policy issue, but close enough  it
shouldn't matter in any case. Hidden users *must* be actually hidden.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18874] Add enwiki as import source at mediawikiwiki

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18874


Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Rob Halsell rhals...@wikimedia.org  2009-06-03 20:38:34 
UTC ---
I enabled this a couple of hours ago.  I somehow forgot to update the ticket. 
Sorry about that, its done!


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18334] Test implementation of FlaggedRevs for the English Wikipedia on en.labs.wikimedia.org

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18334


Andrew Garrett agarr...@wikimedia.org changed:

   What|Removed |Added

 CC||agarr...@wikimedia.org
Summary|Test implementation of  |Test implementation of
   |FlaggedRevs for the English |FlaggedRevs for the English
   |Wikipedia   |Wikipedia on
   ||en.labs.wikimedia.org




--- Comment #5 from Andrew Garrett agarr...@wikimedia.org  2009-06-03 
21:21:43 UTC ---
Clarified bug summary.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18895] seek does not work

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18895





--- Comment #2 from Michael Dale d...@ucsc.edu  2009-06-03 22:49:13 UTC ---
A lot of seeking problems where caused by lack of oggz_chop. Seeking is a bit 
tricky because java  vlc over plain http is not very accurate (until recently 
native firefox seeking was pretty bad too).

So I added a LocalSettings.php configuration flag to specify if you have 
oggz_chop installed or not. Then re-factored the plugin-code to better adapt to 
http  oggz_chop seeking based on the 'URLTimeEncoding' flag. Then redid the 
local doSeek function per java, vlc  native. r51379 r51385

Now seeking seems to be working better across IE  firefox across plug-in types
(in both http and oggz_chop modes)


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19072] New: Sister project search results should show localized project name

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19072

   Summary: Sister project search results should show localized
project name
   Product: MediaWiki
   Version: unspecified
  Platform: All
   URL: http://en.wikipedia.org/w/index.php?title=Special%3ASear
chsearch=afulltext=Search
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Special pages
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: gti...@gmail.com


Search results from the sister projects now have captions like
en.wiktionary.org results, which is not very helpful for non-English
projects: few people know about the smaller projects, and the user might not be
able to figure out from the English domain name, what that project is about. If
possible, the localized project names should be used instead.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19030] in FF 3.5b4 timer shows full time of original clip

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19030





--- Comment #1 from Michael Dale d...@ucsc.edu  2009-06-03 23:04:14 UTC ---
This issue exists because of the recent changed currentTime reading in
segmented ogg files per the discussion in whatwg group:
http://www.mail-archive.com/wha...@lists.whatwg.org/msg14278.html

I can't target the FF 3.5b4 since that will be updated with a release candidate
shortly. It displays the proper time in the nightlies.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19073] New: Add support for using graphicsmagick instead of imagemagick for thumbnailing

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19073

   Summary: Add support for using graphicsmagick instead of
imagemagick for thumbnailing
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Images and files
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: b...@exotica.org.uk


Graphicsmagick (http://www.graphicsmagick.org/) is a fork of imagemagick, that
is smaller, faster and has more api stability. It also seems to have improved
documentation (or at least it has examples and descriptions in the man file
that imagemagick does not)

example performance chart:

http://rmagick.rubyforge.org/resizing-charts.html

it comes with a compatibility package to provide the imagemagick
convert/mogrify etc commands but has dropped some of the imagemagick shortcuts
like -thumbnail

to thumbnail on graphicsmagick you would do

gm convert -size 120x120 cockatoo.jpg -resize 120x120 +profile *
thumbnail.jpg

the -thumbnail on imagemagick is a shortcut to -resize 120x120 -strip.
GraphicsMagick integrates the -strip with the profile option that already is
there to manage image profiles

It is quite easy to add support for this. I made a quick patch for my system,
however I would think it might be better to actually replace imagemagick with
graphicsmagick (for the reasons listed above). If it was to be added as an
option, would you prefer a new set of config options or to modify how the
current ones are used? also would you prefer it was handled in a separate if
block or merged with the current imagemagick support?

I vote for switching to graphicsmagick anyway.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18042] Spam not being deleted from OTRS system

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18042


Fred Vassard fvass...@wikimedia.org changed:

   What|Removed |Added

 CC||fvass...@wikimedia.org
 AssignedTo|tstarl...@wikimedia.org |fvass...@wikimedia.org




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19073] Add support for using graphicsmagick instead of imagemagick for thumbnailing

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19073





--- Comment #1 from Jools Smyth b...@exotica.org.uk  2009-06-03 23:19:56 UTC 
---
I have just seen that in defaultsettings it refers to using customconvert
command for example with graphicsmagick. However, this doesn't make it as easy
as not everyone will know about the various workaround in imagemagick (such as
white background for older browsers on transparent images), that would also
apply to graphicsmagick.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18780] Enable RevisionDelete on WMF wikis for admins

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18780


Mike.lifeguard mike.lifegu...@gmail.com changed:

   What|Removed |Added

 CC||mike.lifegu...@gmail.com




--- Comment #3 from Mike.lifeguard mike.lifegu...@gmail.com  2009-06-03 
23:26:26 UTC ---
(In reply to comment #1)
 Do we actually want to do this? The use case for removing individual old
 versions should be pretty rare, which is why we've got it in a tiny subgroup.
 

Yes. Wasn't that always the intention?

(In reply to comment #2)
 Well, this feature is intended to replace the God-awful delete the whole page
 and restore certain revisions hack. Whether or not there are few enough
 requests to keep this feature in the hands of only oversighters is unclear.
 Surely someone will come along soon to offer their opinion. ;-)
 

Most wikis don't have oversighters, and getting stewards to do it is really not
such a great idea - either we'd be swamped, or people would just continue to
use the God-awful hack (the latter being both more likely and worse). Even
for wikis with oversighters, I doubt we want to lay this on them - mostly due
to workload, but also because it's not what they were elected/appointed to do.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18780] Enable RevisionDelete on WMF wikis for admins

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18780





--- Comment #4 from ChrisiPK chris...@gmail.com  2009-06-03 23:31:52 UTC ---
(In reply to comment #3)
 (In reply to comment #1)
  Do we actually want to do this? The use case for removing individual old
  versions should be pretty rare, which is why we've got it in a tiny 
  subgroup.
  
 
 Yes. Wasn't that always the intention?
I also had the impression that enabling this for sysops was on the agenda all
along. There are many reasons to hide revisions from the greater public but
still leave them accessible for admins. Not all to-be-deleted content is
deleted for privacy reasons (which is mainly what oversight is for). Think
about copyright violations, for example. Those need to be removed but also need
to be accessible for restoration, should we receive OTRS permission.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 14866] MediaWiki:Recentchangeslinked to be split into four individual messages

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=14866


Siebrand siebr...@wikipedia.be changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #3 from Siebrand siebr...@wikipedia.be  2009-06-03 23:57:24 UTC 
---
From r51441 on we have 4 messages:
* 'recentchangeslinked'  = 'Related changes',
* 'recentchangeslinked-feed' = 'Related changes',
* 'recentchangeslinked-toolbox'  = 'Related changes',
* 'recentchangeslinked-title'= 'Changes related to $1',


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19070] add section [edit] links to the default skin - for IP users

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19070


^demon innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||innocentkil...@gmail.com




--- Comment #1 from ^demon innocentkil...@gmail.com  2009-06-03 23:57:25 UTC 
---
WORKSFORME?


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19070] add section [edit] links to the default skin - for IP users

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19070


Siebrand siebr...@wikipedia.be changed:

   What|Removed |Added

 CC||siebr...@wikipedia.be
 Status|NEW |RESOLVED
 Resolution||WORKSFORME




--- Comment #2 from Siebrand siebr...@wikipedia.be  2009-06-04 00:01:28 UTC 
---
WFM confirmed: http://translatewiki.net/wiki/Support?useskin=monobook (runs
HEAD or very close)


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19073] Add support for using graphicsmagick instead of imagemagick for thumbnailing

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19073





--- Comment #2 from Jools Smyth b...@exotica.org.uk  2009-06-04 00:32:20 UTC 
---
Created an attachment (id=6190)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=6190)
patch to implement a graphicsmagick option

Here is my patch against 1.14.0 that implements a new variable
$wgUseGraphicsMagick.
It uses the config values from the imagemagick config like

$wgUseGraphicsMagick = true;
$wgImageMagickConvertCommand = /usr/bin/gm;

This is just one way to implement it, and I'm not suggesting it is the best
way.
it is more useful than using the custom command as it handles the differing
compression for png/jpeg quality as well as other workarounds for animated gifs
etc.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19073] Add support for using graphicsmagick instead of imagemagick for thumbnailing

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19073


Jools Smyth b...@exotica.org.uk changed:

   What|Removed |Added

Attachment #6190 is|0   |1
   obsolete||




--- Comment #3 from Jools Smyth b...@exotica.org.uk  2009-06-04 00:37:25 UTC 
---
Created an attachment (id=6191)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=6191)
add graphicsmagick option

I had accidentally replaced thumbnail with resize for imagemagick. oops


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 9327] Some DjVu files do not display within Commons while others do

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=9327


Snottygobble snottygob...@gmail.com changed:

   What|Removed |Added

 CC||snottygob...@gmail.com
 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #2 from Snottygobble snottygob...@gmail.com  2009-06-04 00:39:09 
UTC ---
Reopening. In the past two weeks I have come across numerous examples of DjVu
files for which MediaWiki is failing to display at least ''some'' pages.
Purging doesn't solve the problem, nor does waiting a while.

On Commons, affected files include
* [[Commons:File:Studies in the Scriptures - Series I - The Plan of the Ages
(1909).djvu]]
* [[Commons:File:Speeches And Writings MKGandhi.djvu]]
* [[Commons:File:Post-Mediaeval Preachers.djvu]]
* [[Commons:File:JPS1917-The Writings.djvu
* [[Commons:File:Armistice Day.djvu
* [[Commons:File:A complete index volumes 1-25 of Poet Lore.djvu

On the English Wikisource, affected files include:
* [[en:Wikisource:File:Romain Rolland Handel.djvu]]
* [[en:Wikisource:File:Oxford Book of English Verse 1250-1918.djvu


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19073] Add support for using graphicsmagick instead of imagemagick for thumbnailing

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19073


Jools Smyth b...@exotica.org.uk changed:

   What|Removed |Added

   Keywords||patch




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19033] in IE6 progress bar location is wrong

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19033





--- Comment #1 from Michael Dale d...@ucsc.edu  2009-06-04 00:45:06 UTC ---
hmm ... ie6.. ugg.. oky installing another vm instance. will report back
shortly


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19029] Download function doesn't work

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19029





--- Comment #1 from Michael Dale d...@ucsc.edu  2009-06-04 00:55:08 UTC ---
hmm... I think the VLC issue has been fixed (or at least it works for me) 

In the other cases your describing the nature of download links.. you have to
right click on them and save target as unless you can send special headers
so the browser knows not to try and view the item. Something like 

header(Content-disposition: attachment; filename=$file);
header(Content-type: $filetype);

should work... maybe we could standardize some get parameters that we interpret
to let people download the item then javascript could just append that to the
url.  This may be helpful for very large images in commons as well. 

In the short term I added right click and save target as to the download
menu item in r51443


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18588] Create a namespace aliases on yuewiki

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18588


Shinjiman shinji...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #2 from Shinjiman shinji...@gmail.com  2009-06-04 00:58:39 UTC ---
Sorry for bothering, please remove this alias for linking to the interwiki
links correctly:

PT: for NS-101 (Portal talk:) -- clashed with link to the Portuguese language
of Wikipedia (ptwiki).

thanks.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 11654] updateSearchIndex.php assumes it is the writing for the only wiki using the disk

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11654


^demon innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #9 from ^demon innocentkil...@gmail.com  2009-06-04 01:10:56 UTC 
---
Fixed in r51444. Put in some b/c so next time a wiki runs it will use the old
.pos file, then unlinking it and using the new wikiId-based ones.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19033] in IE6 progress bar location is wrong

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19033


Michael Dale d...@ucsc.edu changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME




--- Comment #2 from Michael Dale d...@ucsc.edu  2009-06-04 02:22:18 UTC ---
r51445 should fix progress bar display and r51446 improves java playback
support (but don't quote me on that one ;P... IE6 / sun java seems to display
very inconsistent behavior around javascript queries on the java element ... 

lets just say 60% of the time it works every time ;P


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19034] in IE6 when no java/VLC are installed - link to MetaVid appears

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19034


Michael Dale d...@ucsc.edu changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Michael Dale d...@ucsc.edu  2009-06-04 02:24:11 UTC ---
This is fixed in r51445 now links to
http://commons.wikimedia.org/wiki/Commons:Media_help
that page could use some clean up as suggested on the talk page: 

http://commons.wikimedia.org/wiki/Commons_talk:Media_help#Give_Browser_Links_higher_Priority


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19036] Clip does not play in IE6 with Java engine

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19036





--- Comment #1 from Michael Dale d...@ucsc.edu  2009-06-04 02:25:30 UTC ---
tested on version r51446 works ~most~ of the time. 


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19037] in IE6 each click on the download button add new link to download on top of player

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19037


Michael Dale d...@ucsc.edu changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME




--- Comment #1 from Michael Dale d...@ucsc.edu  2009-06-04 02:37:43 UTC ---
fixed in r51447 ... still kind of rough around the edges .. but at least it
displays and we can re-factor it once we re-skin those parts. 


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 18591] Add 'autoeditor' group, remove 'autopromote', 'patroller' and 'autopatroller' groups on Russian Wikisource

2009-06-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18591





--- Comment #3 from Innv irm...@gmail.com  2009-06-04 02:52:24 UTC ---
Thanks for you work :)
About autopromote: its
http://www.mediawiki.org/wiki/FlaggedRevs#Automatic_user_promotion and this
isn't autoconfirmed.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


  1   2   >