[Bug 43221] invalid XML response ("4::olduser", "5::newuser", "6::edits" appears as node attributes)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43221

--- Comment #6 from Marius Hoch  ---
It takes some time till software changes get deployed. This one will go live on
January 7 on enwiki AFAIR

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43314] New: Update Lohit Bengali font

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43314

   Web browser: ---
Bug ID: 43314
   Summary: Update Lohit Bengali font
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WebFonts
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jayanta...@gmail.com
CC: asha...@wikimedia.org, s.mazel...@xs4all.nl,
santhosh.thottin...@gmail.com, srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---

As Lohit Bengali font fixed some bug and updated. Please update here for
rendering. 

https://bugzilla.redhat.com/show_bug.cgi?id=860047

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43313] Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43313

Carl Austin Bennett  changed:

   What|Removed |Added

URL|Wikivoyage_talk:Breadcrumb_ |http://en.wikivoyage.org/wi
   |navigation#Remove_parenthes |ki/Wikivoyage_talk:Breadcru
   |is_at_display   |mb_navigation#Remove_parent
   ||hesis_at_display

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43313] Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43313

Carl Austin Bennett  changed:

   What|Removed |Added

   Keywords||patch-in-gerrit,
   ||patch-need-review

--- Comment #1 from Carl Austin Bennett  ---
https://gerrit.wikimedia.org/r/39728
https://gerrit.wikimedia.org/r/39729

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42946] [GeoCrumbs] Crumbs are shown even on project/special pages

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42946

Carl Austin Bennett  changed:

   What|Removed |Added

 Blocks||43313

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43313] Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43313

Carl Austin Bennett  changed:

   What|Removed |Added

URL||Wikivoyage_talk:Breadcrumb_
   ||navigation#Remove_parenthes
   ||is_at_display
 Blocks||41184
 Depends on||42946

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41184] Wikivoyage migration (tracking)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41184

Carl Austin Bennett  changed:

   What|Removed |Added

 Depends on||43313

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43313] New: Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43313

   Web browser: ---
Bug ID: 43313
   Summary: Crumbs contain (disambiguation) in names which
duplicates locations already in breadcrumb path
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: GeoCrumbs
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: carlb...@hotmail.com
Classification: Unclassified
   Mobile Platform: ---

Moving this issue from [[voy:Wikivoyage talk:Breadcrumb navigation#Remove
parenthesis at display]]...

In [[voy:Hamilton (Ohio)]], the GeoCrumb trail looks like:

North America > United States of America > Midwest (United States of America) >
Ohio > Southwest Ohio > Butler County (Ohio) > Hamilton (Ohio)

This is redundantly redundant; the same path could be expressed succinctly as:

North America > United States of America > Midwest > Ohio > Southwest Ohio >
Butler County > Hamilton

We already _know_ this is in Ohio because " > Ohio > " is in the trail, so any
" (Ohio)" disambiguators in the town and county names can be hidden from the
user without losing anything useful.


The breadcrumb trail is generated in GeoCrumbs.class.php in function
makeTrail().

Adding code to this function to keep a $nameStack of place names already in the
path and then hiding these where they appear in (brackets) elsewhere in the
same trail would give:

public function makeTrail( Title $title ) {
$breadcrumbs = array();

// avoid cyclic trails & define emergency break
$nameStack = array();
$idStack = array();
$cnt = 20;

while ( $title && $cnt-- ) {
$link = Linker::link( $title, $title->getSubpageText()
);

// mark redirects with italics.
if ( $title->isRedirect() ) {
$link = Html::rawElement( 'i', array(), $link
);
}
array_unshift( $breadcrumbs, $link );

if ( in_array( $title->getArticleID(), $idStack ) ) {
$breadcrumbs[0] = Html::rawElement( 'strike',
array(), $breadcrumbs[0] );
break;
}

$nameStack[] = $title->getText();
$idStack[] = $title->getArticleID();
$title = $this->getParentRegion( $title );
}

// hide (disambiguator) in displayed titles if already in path
foreach ($nameStack as $bname) {
foreach ($breadcrumbs as &$crumb)
   $crumb = str_replace(" (" . $bname .
")","",$crumb);
}

return $breadcrumbs;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43302] Drop the term "autoconfirmed" from user interface

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43302

Robin Pepermans (SPQRobin)  changed:

   What|Removed |Added

 CC||robinp.1...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43221] invalid XML response ("4::olduser", "5::newuser", "6::edits" appears as node attributes)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43221

--- Comment #5 from bianjiang  ---
do you need to clean-up any "cache"?

http://en.wikipedia.org/w/api.php?action=query&format=xml&list=recentchanges&rclimit=90&rcnamespace=0%7C2%7C4%7C6%7C10%7C14%7C100&rcprop=comment%7Cflags%7Cids%7Cloginfo%7Csizes%7Ctimestamp%7Ctitle%7Cuser&rcstart=2012-12-18T04:55:35Z

still broken.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37655] gitweb: grep needle is not encoded correctly when echoed back

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37655

Liangent  changed:

   What|Removed |Added

 Resolution|WONTFIX |FIXED

--- Comment #6 from Liangent  ---
(In reply to comment #4)
> Not going to worry about this since the plan is to ditch gitweb anyway ->
> WONTFIX.

However I see this bug fixed now.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37655] gitweb: grep needle is not encoded correctly when echoed back

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37655

--- Comment #5 from Liangent  ---
(In reply to comment #4)
> Not going to worry about this since the plan is to ditch gitweb anyway ->
> WONTFIX.

What will be its replacement?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43302] Drop the term "autoconfirmed" from user interface

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43302

MZMcBride  changed:

   What|Removed |Added

 CC||b...@mzmcbride.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16791] Don't offer meaningless protection levels (e.g., move=autoconfirmed with moves restricted to autoconfirmed)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16791

MZMcBride  changed:

   What|Removed |Added

 CC||b...@mzmcbride.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 40040] Special:PasswordReset could use some design love

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=40040

--- Comment #3 from MZMcBride  ---
(In reply to comment #2)
> Discussion and explanation is at
> https://en.wikipedia.org/wiki/Wikipedia:MediaWiki_messages#Special:PasswordReset_improvements
> (might get archived).

Permalink:
https://en.wikipedia.org/w/index.php?title=Wikipedia:MediaWiki_messages&oldid=529045427#Special:PasswordReset_improvements

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43312] New: Add pointer to TemplateSandbox documentation

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43312

   Web browser: ---
Bug ID: 43312
   Summary: Add pointer to TemplateSandbox documentation
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: TemplateSandbox
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: b...@mzmcbride.com
CC: bjor...@wikimedia.org, wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

The form that appears below the edit window when editing a template with the
TemplateSandbox extension enabled does not have any pointer to the
TemplateSandbox documentation.

This is problematic as there's no explanation of what the box is, how it works,
etc. It just says:

---
Preview page with this template

Page title: [_] [Show preview]
---

Some kind of "what is this?" feature is needed, at least for now, I think. I
tried to request that the "Preview page with this template" MediaWiki message
be changed to include a "what's this?" link, but the message is not parsed (cf.
).
I'm not sure why this is.

The message should either be parsed and/or there should be a pointer to the
TemplateSandbox documentation from the input area below the edit window. The
"Usage" section of the template's documentation is good, it's just impossible
to figure out how to find that page on mediawiki.org
() from the edit
window.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43311] New: Did you mean runaround

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43311

   Web browser: ---
Bug ID: 43311
   Summary: Did you mean runaround
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: DidYouMean
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jida...@jidanni.org
Classification: Unclassified
   Mobile Platform: ---

Could somebody try the following flow:
http://en.wikipedia.org/w/index.php?title=Special%3ASearch&profile=default&search=park+kin+huee&fulltext=Search
Says
Did you mean: park kinh hue, so we click that and get
Did you mean: park kun hye, so we click that and get...

The user just feels he his getting the run around.

Anyway, this is much different than one's Google experience, where the
buck stops right on the first page...

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43255] Don't serve Special:GettingStarted to mobile users

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43255

Matthew Flaschen  changed:

   What|Removed |Added

   Keywords||patch-in-gerrit
   Assignee|wikibugs-l@lists.wikimedia. |mflasc...@wikimedia.org
   |org |

--- Comment #13 from Matthew Flaschen  ---
https://gerrit.wikimedia.org/r/#/c/39715/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 9034] Bundle anti-spam extensions in distribution packages

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=9034

Tom Morris  changed:

   What|Removed |Added

 CC||t...@tommorris.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 40040] Special:PasswordReset could use some design love

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=40040

Matthew Flaschen  changed:

   What|Removed |Added

 CC||mflasc...@wikimedia.org,
   ||mpinc...@wikimedia.org,
   ||sp...@wikimedia.org

--- Comment #2 from Matthew Flaschen  ---
In the meantime, I implemented a solution on English Wikipedia: 

https://en.wikipedia.org/wiki/Special:PasswordReset

It only really makes sense when it has exactly these two boxes (the two English
Wikipedia happens to use), and I know there can be up to three (username,
email, and domain (the latter of which I don't really get).

Under the covers:
https://en.wikipedia.org/wiki/Special:PasswordReset?uselang=qqx

Discussion and explanation is at
https://en.wikipedia.org/wiki/Wikipedia:MediaWiki_messages#Special:PasswordReset_improvements
(might get archived).

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43310] Enable Transwiki import on it.wikivoyage

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43310

Emanuele Raoli  changed:

   What|Removed |Added

   Keywords||shell

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43310] Enable Transwiki import on it.wikivoyage

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43310

Emanuele Raoli  changed:

   What|Removed |Added

 CC||e...@live.it

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43310] New: Enable Transwiki import on it.wikivoyage

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43310

   Web browser: ---
Bug ID: 43310
   Summary: Enable Transwiki import on it.wikivoyage
   Product: Wikimedia
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Site requests
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: e...@live.it
CC: benap...@gmail.com, dereck...@espace-win.org,
wikibugs-l@lists.wikimedia.org,
wikimedia.b...@snowolf.eu
Classification: Unclassified
   Mobile Platform: ---

There is consensus among all active administrators.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43308] test2; IE7/IE8; Wikipedia:Sandbox error breaks UW

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43308

Chris McMahon  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from Chris McMahon  ---
temporary condition during deploy to test2wiki

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43181] Special:GettingStarted: "How to help" box is outside the page

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43181

Steven Walling  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43273] Feedback post-edit for it.wikivoyage

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43273

Steven Walling  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Steven Walling  ---
Deployed today (12/20/2012)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43188] Enhance imagescaler processes containment

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43188

Tim Starling  changed:

   What|Removed |Added

 CC||tstarl...@wikimedia.org

--- Comment #4 from Tim Starling  ---
Cgroups are a fairly nice option for memory limiting. With a little bit of
per-server setup, an unprivileged user can create a cgroup dynamically for each
convert/avconv process. It measures memory in an intelligent way, better than
RSS and much better than vsize. And when the limit is reached, the kernel OOM
killer kills it, so there's no chance of a deadlock.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43220] mw:extension:Listings needs to be able to override defaults for listing format and parameters

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43220

Carl Austin Bennett  changed:

   What|Removed |Added

Version|REL1_20 branch  |master

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43260] Special:BrowseData with SQL error browsing a category having filters

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43260

--- Comment #6 from Yaron Koren  ---
Oops! You're right - it always causes problems when I check in code without
testing it first, but somehow I keep doing it. Anyway, I just checked in a fix
that uses "MAX" instead of "LIMIT" - it at least doesn't crash.

By the way, if possible, could you run those two queries I listed above? I'm
still curious which one returns more than one row.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41832] files from a foreign repo display wrong or not at all for "stable" versions of pages

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41832

--- Comment #11 from Bartosz Dziewoński  ---
(In reply to comment #10)
> For dewiki & plwiki, display the most recent commons file rather than the
> version at time of review?

Well, that would certainly be less unexpected than the malformed output we are
getting at e.g. https://pl.wikipedia.org/wiki/Jeziora_Afryki?stable=1 , with
some images missing, and some replaced with chunks of wikitext.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43236] Citation references are zero-indexed rather than one-indexed in target names

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43236

Gabriel Wicke  changed:

   What|Removed |Added

   Priority|Unprioritized   |Low

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41832] files from a foreign repo display wrong or not at all for "stable" versions of pages

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41832

Matthias Mullie  changed:

   What|Removed |Added

 CC||mmul...@wikimedia.org

--- Comment #10 from Matthias Mullie  ---
It's not really clear to me what should happen - what exactly would be the
suggested solution (if feasible)?

For dewiki & plwiki, display the most recent commons file rather than the
version at time of review?

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43309] New: Add nagios check to ensure global nfs shares are shared properly from labstore1-4

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43309

   Web browser: ---
Bug ID: 43309
   Summary: Add nagios check to ensure global nfs shares are
shared properly from labstore1-4
   Product: Wikimedia Labs
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Infrastructure
  Assignee: rlan...@gmail.com
  Reporter: rlan...@gmail.com
CC: abog...@wikimedia.org, fai...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

For things like public datasets, we're sharing NFS read-only to the world. We
should check to ensure it's shared properly (showmount -e), but we should also
check to ensure that only the ones we specify are being shared via nfs.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43280] Cache shouldDisplayMobileView for duration of request

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43280

--- Comment #4 from Matthew Flaschen  ---
Great, now I can fix bug 43255 worry-free.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43283] InfoAction doesn't take namespace protection into account

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43283

Sam Reed (reedy)  changed:

   What|Removed |Added

   Severity|normal  |minor

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43280] Cache shouldDisplayMobileView for duration of request

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43280

--- Comment #3 from Arthur Richards  ---
This will likely go into production during our next deployment on 12/26

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43280] Cache shouldDisplayMobileView for duration of request

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43280

Arthur Richards  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Arthur Richards  ---
Looks good!

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43260] Special:BrowseData with SQL error browsing a category having filters

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43260

--- Comment #5 from Andreas Plank  ---
Hi Yaron,

(1) I did use git HEAD of SemanticDrilldown but it did not help in the end. You
mentioned the problem lies in the update procedure somehow, so 
(2) I did first on Special:SMWAdmin clicked on, started [Initialise or upgrade
tables] and 
(3) clicked on/started [Start updating data]. After that
(4) the error occurred: MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME
subquery' (maybe a JOIN can do it? See similar problem
http://stackoverflow.com/questions/12434525/this-version-of-mysql-doesnt-yet-support-limit-in-all-any-some-subquery)

(5) I switched back to SemanticDrilldown 1.2.4. 


Below is the debug output of HEAD of SemanticDrilldown and
http://terms.gbif.org/w/index.php?title=Special:BrowseData/Concept was:

A database query syntax error has occurred. This may indicate a bug in the
software. The last attempted database query was: 
SELECT DISTINCT ids.smw_title AS title, ids.smw_title AS value, ids.smw_title
AS t, ids.smw_namespace AS namespace, ids.smw_namespace AS ns, ids.smw_id AS
id, ids.smw_iw AS iw, ids.smw_sortkey AS sortkey FROM `smw_object_ids` ids JOIN
`smw_fpt_inst` insts ON ids.smw_id = insts.s_id AND ids.smw_namespace != 14
WHERE insts.o_id IN (SELECT smw_id FROM `smw_object_ids` cat_ids WHERE
smw_namespace = 14 AND (smw_title = 'Concept') LIMIT 1) ORDER BY sortkey LIMIT
501 
 from within function "SDBrowseDataPage::reallyDoQuery". Database returned
error "1235: This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME
subquery' (localhost)".

Backtrace:

#0 /usr/share/mediawiki20/includes/db/Database.php(916):
DatabaseBase->reportQueryError('This version of...', 1235, 'SELECT
DISTINCT...', 'SDBrowseDataPag...', false)
 #1 /usr/share/mediawiki20/includes/QueryPage.php(397):
DatabaseBase->query('SELECT DISTINCT...', 'SDBrowseDataPag...')
 #2 /usr/share/mediawiki20/includes/QueryPage.php(488):
QueryPage->reallyDoQuery(501, 0)
 #3
/usr/share/mediawiki20/extensions/SemanticDrilldown/specials/SD_BrowseData.php(124):
QueryPage->execute('Concept')
 #4 /usr/share/mediawiki20/includes/SpecialPage.php(611):
SDBrowseData->execute('Concept')
 #5 /usr/share/mediawiki20/includes/SpecialPageFactory.php(494):
SpecialPage->run('Concept')
 #6 /usr/share/mediawiki20/includes/Wiki.php(290):
SpecialPageFactory::executePath(Object(Title), Object(RequestContext))
 #7 /usr/share/mediawiki20/includes/Wiki.php(536): MediaWiki->performRequest()
 #8 /usr/share/mediawiki20/includes/Wiki.php(446): MediaWiki->main()
 #9 /usr/share/mediawiki20/index.php(59): MediaWiki->run()
 #10 {main}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43306] Warn when user selects resolved later (deprecated option) using JavaScript

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43306

--- Comment #3 from Sam Reed (reedy)  ---
(In reply to comment #0)
> On 2012-12-19 11:29 MEZ, I received an e-Mail by AKLAPPER asking me writing a
> patch for the RESOLVED LATER issue mentioned in Bug 42548. So I downloaded
> and
> installed Bugzilla (version 4.2.4) on IIS. This was a nightmare (especially
> perl since Windows also shipped with a perl version [but too old] and the
> latest release of “activeperl” didn't work for me) and took me 7 times longer
> than writing the patch.

Since when did any version of windows ship with any version of perl?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43306] Warn when user selects resolved later (deprecated option) using JavaScript

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43306

--- Comment #2 from Sam Reed (reedy)  ---
Created attachment 11550
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=11550&action=edit
knob.html.tmpl.diff

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43306] Warn when user selects resolved later (deprecated option) using JavaScript

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43306

--- Comment #1 from Sam Reed (reedy)  ---
Created attachment 11549
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=11549&action=edit
field.js.diff

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42288] Categorize {{#babel}} on sv-wikt

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42288

Dereckson  changed:

   What|Removed |Added

   Keywords|shellpolicy |shell
 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |dereck...@espace-win.org
   |org |

--- Comment #4 from Dereckson  ---
Thank you for the follow-up.

I will prepare your configuration change later this evening.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41350] Project namespace's (i.e. "Wikipedia") transliteration done wrong

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41350

Dereckson  changed:

   What|Removed |Added

   Keywords|shellpolicy |patch-in-gerrit, shell
 Status|UNCONFIRMED |ASSIGNED
URL||http://pa.wikipedia.org/w/i
   ||ndex.php?title=%E0%A8%B5%E0
   ||%A8%BF%E0%A8%95%E0%A8%BF%E0
   ||%A8%AA%E0%A9%80%E0%A8%A1%E0
   ||%A8%BF%E0%A8%86:%E0%A8%B8%E
   ||0%A9%B1%E0%A8%A5&oldid=1054
   ||41#Bug_filed.2C_please_vote
   Assignee|wikibugs-l@lists.wikimedia. |platoni...@gmail.com
   |org |
 Ever confirmed|0   |1

--- Comment #19 from Dereckson  ---
Ok. shellpolicy -> shell

Bug assigned to code submitter.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39381] Add Javanese font to WebFonts

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39381

--- Comment #17 from Dereckson  ---
Nikerabbit indicates the next i18n deployment window will be next year.

This means this could be enabled 2013-01-02 or 2013-01-09.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43308] test2; IE7/IE8; Wikipedia:Sandbox error breaks UW

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43308

Chris McMahon  changed:

   What|Removed |Added

Web browser|--- |Internet Explorer

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43308] test2; IE7/IE8; Wikipedia:Sandbox error breaks UW

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43308

--- Comment #2 from Chris McMahon  ---
Created attachment 11548
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=11548&action=edit
error 3

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43308] test2; IE7/IE8; Wikipedia:Sandbox error breaks UW

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43308

--- Comment #1 from Chris McMahon  ---
Created attachment 11547
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=11547&action=edit
error 2

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43308] New: test2; IE7/IE8; Wikipedia:Sandbox error breaks UW

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43308

   Web browser: ---
Bug ID: 43308
   Summary: test2; IE7/IE8; Wikipedia:Sandbox error breaks UW
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UploadWizard
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: cmcma...@wikimedia.org
CC: mtrac...@member.fsf.org, nischay...@gmail.com,
wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Created attachment 11546
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=11546&action=edit
error 1

seen on test2wiki just now, IE7 and IE8 only (so far) 

open https://test2.wikipedia.org/wiki/Special:UploadWizard
click to login
log in
back to UW using link post-login

IE7/IE8 report error on page.  Error is from Wikipedia:Sandbox, see screen
shots

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41823] Please upload a video file to Wikimedia Commons 1.81 GB

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41823

--- Comment #10 from Krenair  ---
It finished a couple of hours ago and plays correctly.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43181] Special:GettingStarted: "How to help" box is outside the page

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43181

--- Comment #3 from Munaf Assaf  ---
Fixed here:

https://gerrit.wikimedia.org/r/#/c/39616/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43306] Warn when user selects resolved later (deprecated option) using JavaScript

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43306

Rainer Rillke @commons.wikimedia  changed:

   What|Removed |Added

   Keywords||patch

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43307] LogFormatterTest obliterates extension l10n cache, breaks later tests

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43307

Brad Jorsch  changed:

   What|Removed |Added

   Keywords||patch-in-gerrit

--- Comment #1 from Brad Jorsch  ---
Gerrit change 39618.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43307] New: LogFormatterTest obliterates extension l10n cache, breaks later tests

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43307

   Web browser: ---
Bug ID: 43307
   Summary: LogFormatterTest obliterates extension l10n cache,
breaks later tests
   Product: MediaWiki
   Version: 1.21-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Unit tests
  Assignee: bjor...@wikimedia.org
  Reporter: bjor...@wikimedia.org
CC: has...@free.fr, krinklem...@gmail.com,
m...@everybody.org
Classification: Unclassified
   Mobile Platform: ---

While running "make safe" for phpunit, the tests suddenly start spitting out
errors like '"" is not a valid magic word for "if"'.

It turns out this is due to LogFormatterTest removing all localization files
except its own from $wgExtensionMessagesFiles and recaching $wgLang's
localization cache in setUp, but then forgetting to recache again after
restoring $wgExtensionMessagesFiles in tearDown.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43280] Cache shouldDisplayMobileView for duration of request

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43280

Max Semenik  changed:

   What|Removed |Added

   Keywords||patch-in-gerrit
 CC||maxsem.w...@gmail.com

--- Comment #1 from Max Semenik  ---
https://gerrit.wikimedia.org/r/39617

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 40217] Remember last browser, OS setting when filing reports

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=40217

--- Comment #5 from Rainer Rillke @commons.wikimedia  
---
When entering a new bug, my local installation of Bugzilla auto-detects the OS
and browser but this here doesn't.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42452] display problem, login problem, possible caching issue

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42452

mybugs.m...@gmail.com changed:

   What|Removed |Added

 CC||mybugs.m...@gmail.com

--- Comment #39 from mybugs.m...@gmail.com ---
(In reply to comment #37)
> Gerrit change #34702 (bug 42354) changed all h5 to h3, but that breaks the
> collapsible
> navigation in Vector for cached html, 
...and also the hack used by dozen of wikis to workaround bug 708:
https://pt.wikipedia.org/wiki/MediaWiki:Gadget-InterprojectLinks.js
I just fixed two (on ptwiki and ptwikibooks), but there are copies on other
wikis...

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 4903] Add "show new changes starting from" links to Watchlist and Newpages

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=4903

--- Comment #9 from Eran Roz  ---
I don't have time for this now (too busy with studying).
I think this feature isn't useful as it was when it was first purposed: there
is already BOLD (.mw-changeslist-line-watched) changes for pages the user
didn't visit in watchlist (and non-bold for visited pages). Users can set all
the changes as visited by "mark all pages visited".

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42637] StripState->addItem internal error

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42637

--- Comment #9 from Chad H.  ---
The content of attachment 11544 has been deleted by
Chad H. 
who provided the following reason:

Contains private info (eg: session cookies)

The token used to delete this attachment was generated at 2012-12-20 19:25:08
UTC.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43306] New: Warn when user selects resolved later (deprecated option) using JavaScript

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43306

   Web browser: ---
Bug ID: 43306
   Summary: Warn when user selects resolved later (deprecated
option) using JavaScript
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: rainerril...@hotmail.com
CC: aklap...@wikimedia.org, s...@reedyboy.net,
thehelpfulonew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Created attachment 11545
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=11545&action=edit
patch (*.diff), original/base files, edited files

On 2012-12-19 11:29 MEZ, I received an e-Mail by AKLAPPER asking me writing a
patch for the RESOLVED LATER issue mentioned in Bug 42548. So I downloaded and
installed Bugzilla (version 4.2.4) on IIS. This was a nightmare (especially
perl since Windows also shipped with a perl version [but too old] and the
latest release of “activeperl” didn't work for me) and took me 7 times longer
than writing the patch.

In the 7z archive you'll receive the base/original files (.original.x), the
updated files and unified diff (.diff). These diff files also contain the path
to where you have to install them. Since I never worked on collaborative
projects with "real" source code management, let me know if you need another
format and how to achieve it using MS Windows.

Also too bad that Bugzilla is using YUI! and not jQuery. I decided using native
JS-implementation and tested with IE8, FF17 and Opera 12.12, all on Windows
Server 2008 R2 Datacenter.

To conclude my advanture: Bugzilla is not only ugly for users but also for
administrators and those who want to write more complex JS. My apologies, Andre
(sans accent aigu?).

Have some nice X-mas days.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38450] Reimplement MediaWiki's info action (tracking)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38450

Bug 38450 depends on bug 41470, which changed state.

Bug 41470 Summary: $lang->formatDuration() does not convert to user language
https://bugzilla.wikimedia.org/show_bug.cgi?id=41470

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41470] $lang->formatDuration() does not convert to user language

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41470

Alexandre Emsenhuber [IAlex]  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||ialex.w...@gmail.com
 Resolution|--- |FIXED

--- Comment #8 from Alexandre Emsenhuber [IAlex]  ---
Change merged.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42637] StripState->addItem internal error

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42637

Asaf Bartov  changed:

   What|Removed |Added

 CC||asaf.bar...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42637] StripState->addItem internal error

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42637

--- Comment #8 from Asaf Bartov  ---
Created attachment 11544
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=11544&action=edit
headers and payload of a failing POST

Added an attachment with the contents of a failing POST from my reproducing
browser tab.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43305] Mobile edit tagging is hacky

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43305

Jon  changed:

   What|Removed |Added

 CC||maxsem.w...@gmail.com,
   ||mpinc...@wikimedia.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43305] New: Mobile edit tagging is hacky

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43305

   Web browser: ---
Bug ID: 43305
   Summary: Mobile edit tagging is hacky
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: MobileFrontend (Beta)
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jrob...@wikimedia.org
CC: jrob...@wikimedia.org, mgro...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Currently anything edited via mobile has [Via Mobile] at the end of the edit
summary and is not tagged with 'mobile edit'.

Max has written a hack to tag these correctly but this should be mademore
formal.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43302] Drop the term "autoconfirmed" from user interface

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43302

Krenair  changed:

   What|Removed |Added

 CC||kren...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 22516] New page Special:Userinfo

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22516

Krenair  changed:

   What|Removed |Added

 CC||kren...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43269] Extension:ShortUrl has memcached keys too long

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43269

Krenair  changed:

   What|Removed |Added

 CC||kren...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43281] Strange diff on the English Wikipedia

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43281

Krenair  changed:

   What|Removed |Added

 CC||kren...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43260] Special:BrowseData with SQL error browsing a category having filters

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43260

--- Comment #4 from Yaron Koren  ---
Hi,

Okay - the issue that causes all this is, I think, a bug in SMW, where more
than one "SMW ID" is being set for the same page. My guess is that this problem
happened during your database upgrade. Specifically, one of the following
queries is returning more than one row:

SELECT smw_id FROM `smw_object_ids` WHERE smw_namespace = 14 AND smw_title =
'Concept'

SELECT smw_id FROM `smw_object_ids` WHERE smw_title = 'skos:prefLabel' AND
smw_namespace = 102

I would be curious which of these is generating the problem (my guess is the
2nd one), but in any case, again this is something Semantic Drilldown should be
handling better - this time by ignoring the problem, instead of displaying an
error message. I just added a change in Gerrit, that's meant to fix this
problem, here:

https://gerrit.wikimedia.org/r/#/c/39609/

If you have Git, I'd recommend pulling the latest code. Otherwise, I guess you
could just add the changes manually. Please let me know if that worked.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43284] ProofreadPage tag is broken in Vietnamese localization

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43284

Tpt  changed:

   What|Removed |Added

   Keywords||patch-in-gerrit

--- Comment #2 from Tpt  ---
I've uploaded a patch that solve the issue:
https://gerrit.wikimedia.org/r/#/c/39607/

This bug is related to the fact that the index namespace name is composed of
two words an not one word as in most of Wikisources.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37866] gerrit-wm messages for operations/mediawiki-config.git to #wikimedia-dev

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37866

Chad H.  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #9 from Chad H.  ---
I'm going to mark this fixed. I think everyone's fine with the current logging.
If we need to redirect any other logs out of #mediawiki, submit a change for
puppet.

(Also, this doesn't preclude moving all of the notifs out of #mediawiki and
into #mediawiki-feed, but that's orthogonal to this bug)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43285] Undoing alias change results in losing alias

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43285

tobias.gritschac...@wikimedia.de changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43303] Make recent changes respect Wikibase Client namespace setting

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43303

--- Comment #1 from Aude  ---
https://gerrit.wikimedia.org/r/#/c/39605/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43303] Make recent changes respect Wikibase Client namespace setting

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43303

Aude  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43304] [Statements-ui] Implement other Property-Snak types than Property-Value Snaks

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43304

Daniel Werner  changed:

   What|Removed |Added

   Assignee|wikidata-bugs@lists.wikimed |daniel.wer...@wikimedia.de
   |ia.org  |

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43304] [Statements-ui] Implement other Property-Snak types than Property-Value Snaks

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43304

Daniel Werner  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43304] [Statements-ui] Implement other Property-Snak types than Property-Value Snaks

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43304

Daniel Werner  changed:

   What|Removed |Added

 Whiteboard||Storypoints: 13

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43304] New: [Statements-ui] Implement other Property-Snak types than Property-Value Snaks

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43304

   Web browser: ---
Bug ID: 43304
   Summary: [Statements-ui] Implement other Property-Snak types
than Property-Value Snaks
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.wer...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

It should be possible to create other Snak types than PropertyValueSnak.
Generate a generic system to edit different Property-Snak types, start with
PropertySomeValue and PropertyNoValue Snaks.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37655] gitweb: grep needle is not encoded correctly when echoed back

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37655

Chad H.  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #4 from Chad H.  ---
Not going to worry about this since the plan is to ditch gitweb anyway ->
WONTFIX.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43303] New: Make recent changes respect Wikibase Client namespace setting

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43303

   Web browser: ---
Bug ID: 43303
   Summary: Make recent changes respect Wikibase Client namespace
setting
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataClient
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: aude.w...@gmail.com
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

The repo can include links to Wikipedia pages in other namespaces.  The client
has a 'namespace' setting that specifies which namespaces can have Wikidata
links in the sidebar.

The recent changes currently allows everything, but it should respect the
setting.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43290] Links from client to non-main namespace missing namespace prefix

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43290

Aude  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #1 from Aude  ---
https://gerrit.wikimedia.org/r/#/c/39600/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43009] "This title contains some undesirable characters. Please remove them." is not helpful

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43009

Nischay Nahata  changed:

   What|Removed |Added

 CC||rkald...@wikimedia.org
Version|unspecified |master

--- Comment #3 from Nischay Nahata  ---
I am willing to fix this but not sure if there is an easy way to do it, waiting
for some qualified person to comment. Since most of the checking is based on
regexes there has to be a message associated with each of the regex used in
jquery.validate.wmCommonsBlacklist

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43244] Selecting an option, then choosing another still requires you to fill in the first option's info. Also, bad help messages

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43244

--- Comment #1 from Nischay Nahata  ---
Thanks for the bug report, could you please indicate the URL where you are
using UploadWizard or the version you are using?

we are already tracking the second issue you reported at
https://bugzilla.wikimedia.org/show_bug.cgi?id=43009

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43299] Curation Toolbar does not show up when I click "Review" at Special:NewPagesFeed

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43299

Krenair  changed:

   What|Removed |Added

 CC||kren...@gmail.com

--- Comment #2 from Krenair  ---
WFM Chrome 24.0.1290.1 dev HTTPS-Everywhere on.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38638] Interface messages needing rewording or documentation and other issues with existing messages (tracking)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38638

Andre Klapper  changed:

   What|Removed |Added

 Depends on||43302

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43302] Drop the term "autoconfirmed" from user interface

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43302

Andre Klapper  changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
 Blocks||38638
Summary|[Jargon] Drop the term  |Drop the term
   |"autoconfirmed" from user   |"autoconfirmed" from user
   |interface   |interface

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41835] Requesting a new hook to allow manipulation of image data (e.g. src attribute) before the image is rendered

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41835

Krenair  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #13 from Krenair  ---
Everything in Bugzilla is a 'bug', even when it's actually an enhancement
request. :)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 14466] Add definitions to Special:ListGroupRights from $wgAutopromote

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=14466

Nemo  changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=16791

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16791] Don't offer meaningless protection levels (e.g., move=autoconfirmed with moves restricted to autoconfirmed)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16791

Nemo  changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=14466

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41835] Requesting a new hook to allow manipulation of image data (e.g. src attribute) before the image is rendered

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41835

--- Comment #12 from Victor Danilchenko  ---
I am not sure why it's a bug... it's an improvement. The functionality prior to
this patch was not broken, merely absent.

yea, new enhancement should be the proper classification for this patch.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43272] Edit protection options in English are confusing

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43272

--- Comment #14 from Nemo  ---
(In reply to comment #13)
> Yes I would prefer changing it everywhere where it is used, and it can be
> done
> as separate thing. We already have similar case for sysop -> Administrator so
> it is possible.

Split to bug 43302.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43302] New: [Jargon] Drop the term "autoconfirmed" from user interface

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43302

   Web browser: ---
Bug ID: 43302
   Summary: [Jargon] Drop the term "autoconfirmed" from user
interface
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: General/Unknown
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: federicol...@tiscali.it
CC: niklas.laxst...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

(Split from bug 43272 comment #13)
> Yes I would prefer changing it everywhere where it is used, and it can be
> done
> as separate thing. We already have similar case for sysop -> Administrator so
> it is possible.

The problem is that we don't have a non-jargon term for "autoconfirmed", for
the very good reason that all community members are supposed to be
autoconfirmed, although some wikis are more restrictive than others and stretch
the concept a bit more (too much).
We have some established terms for non-autoconfirmed, though: 'newbie' (also
valid in code), [[m:Newly registered user]].

In core:
'group-autoconfirmed' => 'Autoconfirmed users',
'group-autoconfirmed-member' => '{{GENDER:$1|autoconfirmed user}}',
'grouppage-autoconfirmed' => '{{ns:project}}:Autoconfirmed users',
'protect-level-autoconfirmed' => 'Block new and unregistered users',

Note that Wikimedia projects also have a "confirmed" group by default (that can
be added by stewards).

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41835] Requesting a new hook to allow manipulation of image data (e.g. src attribute) before the image is rendered

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41835

--- Comment #11 from Nischay Nahata  ---
(In reply to comment #10)
> There's nothing in the history about it, must've always been unconfirmed.

New+enhancement sounds better to me.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43272] Edit protection options in English are confusing

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43272

Nemo  changed:

   What|Removed |Added

 Depends on||12549

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 12549] MediaWiki:protect-level-autoconfirmed is misleading and often incorrect

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=12549

Nemo  changed:

   What|Removed |Added

 CC||federicol...@tiscali.it
 Blocks||43272

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16791] Don't offer meaningless protection levels (e.g., move=autoconfirmed with moves restricted to autoconfirmed)

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16791

Nemo  changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=43272

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43272] Edit protection options in English are confusing

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43272

Nemo  changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=16791

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41823] Please upload a video file to Wikimedia Commons 1.81 GB

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41823

--- Comment #9 from Krenair  ---
I am in the progress of downloading it with wget.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 41823] Please upload a video file to Wikimedia Commons 1.81 GB

2012-12-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41823

--- Comment #8 from Jeanne Menjoulet  ---
You mean, you have downloaded the file ?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


  1   2   3   >