[Bug 58626] Remove user ID from user preferences output

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58626

--- Comment #2 from Kunal Mehta (Legoktm)  ---
(In reply to comment #1)
> I'd recommend putting this in the tracking bug "things to remove from prefs"
> after confirming there is some secondary access to the information via some
> other logical means like an API or OAuth.

It is exposed via the API:
https://www.mediawiki.org/w/api.php?action=query&meta=userinfo&format=jsonfm or
https://www.mediawiki.org/w/api.php?action=query&list=users&ususers=Legoktm&format=jsonfm

-- 
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 58626] Remove user ID from user preferences output

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58626

--- Comment #1 from Jared Zimmerman (WMF)  ---
I'd recommend putting this in the tracking bug "things to remove from prefs"
after confirming there is some secondary access to the information via some
other logical means like an API or OAuth.

-- 
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 58626] New: Remove user ID from user preferences output

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58626

   Web browser: ---
Bug ID: 58626
   Summary: Remove user ID from user preferences output
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: design
  Severity: normal
  Priority: Unprioritized
 Component: User preferences
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: b...@mzmcbride.com
CC: agarr...@wikimedia.org, jared.zimmer...@wikimedia.org,
jforres...@wikimedia.org, swall...@wikimedia.org,
zhoris...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Currently [[Special:Preferences]] shows a user his or her internal user ID. I'm
not sure it makes sense to expose this in the user interface. It's an internal
implementation detail. Plus on wikis with CentralAuth/unified login, there's
additional complexity (i.e., each user has a global user ID and a local user ID
on a particular wiki).

The API should expose and allow the use of a user's ID and there are separate
bugs about that. This bug report is focused purely on the user interface.

Looking at how other software/sites handle this may make sense. For example, I
don't think Facebook or Twitter or LinkedIn or Google Apps readily expose user
IDs (apart from URLs, though those also have trended away from exposing user
IDs).

This came up again in the context of .
I'm filing this as an unconfirmed bug. Any input welcome.

-- 
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 58316] Javascript escapes in URLs ("\x" rather than "%") are not decoded

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58316

--- Comment #8 from MZMcBride  ---
There's a magical \x syntax hidden in Parser.php, I believe, for Esperanto and
such. It was a workaround (a hack) for browsers that used to handle Unicode
poorly, as I recall. I'm reminded of it in this bug report.

I'm not sure this is a valid bug.

-- 
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 58502] Table bw_smw_fpt_askdu not found

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58502

--- Comment #7 from Siebrand Mazeland  ---
We were using a config feature that was removed in MySQL 5.1, according to
http://bugs.mysql.com/bug.php?id=17501.

We had:

DatabaseSettings.php:$wgDBTableOptions   = "TYPE=InnoDB";

We have:

DatabaseSettings.php:$wgDBTableOptions   = "ENGINE=InnoDB";

This is no longer an issue for translatewiki.net, but Semantic MediaWiki should
probably be updated so that other installations do not run into the same issue.

-- 
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 58502] Table bw_smw_fpt_askdu not found

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58502

--- Comment #6 from Niklas Laxström  ---
The problem is that you are using $wgDBTableOptions directly, and thus it does
not get the compatibility fix from DatabaseMysqlBase::getDefaultSchemaVars().
It is of course easy for us to uptdate $wgDBTableOptions to correct format.

-- 
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 58502] Table bw_smw_fpt_askdu not found

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58502

--- Comment #5 from Siebrand Mazeland  ---
update.php results in the following issue for translatewiki.net:

Checking table `bw_smw_fpt_askdu` ...
   Table not found, now creating...
A database query error has occurred.
Query: CREATE TABLE `translatewiki_net`.`bw_smw_fpt_askdu` (s_id  INT(8)
UNSIGNED NOT NULL,o_serialized  VARBINARY(255),o_sortkey  DOUBLE) TYPE=InnoDB
Function: SMWSQLHelpers::createTable
Error: 1064 You have an error in your SQL syntax; check the manual that
corresponds to your MariaDB server version for the right syntax to use near
'TYPE=InnoDB' at line 1 (localhost)

-- 
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 42457] Email notification mistakes most log actions for new page creation

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42457

Bug 42457 depends on bug 14901, which changed state.

Bug 14901 Summary: Email notification mistakes log action for new page creation
https://bugzilla.wikimedia.org/show_bug.cgi?id=14901

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
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 36515] RC logging issue with instance creation

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36515

Bug 36515 depends on bug 14901, which changed state.

Bug 14901 Summary: Email notification mistakes log action for new page creation
https://bugzilla.wikimedia.org/show_bug.cgi?id=14901

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
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 37583] Give ad-hoc email notification for thread move

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37583

Bug 37583 depends on bug 14901, which changed state.

Bug 14901 Summary: Email notification mistakes log action for new page creation
https://bugzilla.wikimedia.org/show_bug.cgi?id=14901

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
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 34153] Don't send email notifications upon translation review

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34153

Bug 34153 depends on bug 14901, which changed state.

Bug 14901 Summary: Email notification mistakes log action for new page creation
https://bugzilla.wikimedia.org/show_bug.cgi?id=14901

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
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 14901] Email notification mistakes log action for new page creation

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=14901

Nemo  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #75 from Nemo  ---
This bug *is* nominally fixed, by its subject: now most log actions (by number
of types) are mistaken for edits :), but the main log actions (by volume on
some kind of wikis) have proper enotifs. The remaining issues have been split
to bug 42457, bug 42458.

-- 
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 1932] ENotif/EConfirm & further enhancements (tracking)

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=1932

Bug 1932 depends on bug 14901, which changed state.

Bug 14901 Summary: Email notification mistakes log action for new page creation
https://bugzilla.wikimedia.org/show_bug.cgi?id=14901

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
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 42458] Allow each log action to set whether to send email notification and with which subject/body

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42458

Bug 42458 depends on bug 14901, which changed state.

Bug 14901 Summary: Email notification mistakes log action for new page creation
https://bugzilla.wikimedia.org/show_bug.cgi?id=14901

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
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 58585] Allow contributors to update their own details in tech metrics directly

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58585

--- Comment #2 from Alvaro  ---
Right now we have some basic tools to unify different ids to the same person.
But it is not working in all cases, as in this case for Helder. It is pretty
hard to create this mapping auto. So yes, we should offer this possibility
also.

-- 
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 42458] Allow each log action to set whether to send email notification and with which subject/body

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42458

Nemo  changed:

   What|Removed |Added

 Blocks||34153

-- 
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 34153] Don't send email notifications upon translation review

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34153

Nemo  changed:

   What|Removed |Added

 Depends on||42458, 42457

-- 
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 42457] Email notification mistakes most log actions for new page creation

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42457

Nemo  changed:

   What|Removed |Added

 Blocks||34153

-- 
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 58611] Storage errors logged with no end user feedback in Wikimania Scholarships application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58611

--- Comment #2 from Gerrit Notification Bot  ---
Change 102373 merged by jenkins-bot:
Give user a visible warning when save fails

https://gerrit.wikimedia.org/r/102373

-- 
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 58326] Update favicon wiktionary/en.ico

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58326

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|ASSIGNED|PATCH_TO_REVIEW

-- 
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 58326] Update favicon wiktionary/en.ico

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58326

--- Comment #7 from Gerrit Notification Bot  ---
Change 102386 had a related patch set uploaded by Aquifacae:
Changed wiktionary/en.ico favicon to proper image and resolutions

https://gerrit.wikimedia.org/r/102386

-- 
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 49813] Fix failing Selenium tests for PhantomJS browser on local machine

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=49813

--- Comment #15 from Gerrit Notification Bot  ---
Change 102396 had a related patch set uploaded by Mayankmadan:
Fixing Failing tests on PhantomJS

https://gerrit.wikimedia.org/r/102396

-- 
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 57545] Review and deploy Wikimania Scholarship application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57545

Bug 57545 depends on bug 57869, which changed state.

Bug 57869 Summary: DNS for scholarships.wikimedia.org
https://bugzilla.wikimedia.org/show_bug.cgi?id=57869

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

-- 
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 57869] DNS for scholarships.wikimedia.org

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57869

Ori Livneh  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 CC||o...@wikimedia.org
 Resolution|--- |FIXED

-- 
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 57869] DNS for scholarships.wikimedia.org

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57869

--- Comment #2 from Gerrit Notification Bot  ---
Change 98849 merged by Ori.livneh:
Add scholarships.wikimedia.org

https://gerrit.wikimedia.org/r/98849

-- 
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 24489] Remove the "Indentation" button from edit toolbar

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24489

--- Comment #11 from Gerrit Notification Bot  ---
Change 93665 abandoned by Tinaj1234:
Removed the indentation button from the WikiEditor toolbar.

Reason:
A patch with all required changes exists.
https://gerrit.wikimedia.org/r/#/c/94500/

https://gerrit.wikimedia.org/r/93665

-- 
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 58322] When adding a reference, and a reference in a caption, in the same edit, then the ref in the caption is changed to the ref from the text

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58322

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 58322] When adding a reference, and a reference in a caption, in the same edit, then the ref in the caption is changed to the ref from the text

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58322

--- Comment #1 from Gerrit Notification Bot  ---
Change 102386 had a related patch set uploaded by Aquifacae:
Changed wiktionary/en.ico favicon to proper image and resolutions

https://gerrit.wikimedia.org/r/102386

-- 
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 58625] Location of twig cache should be configurable in Wikimania Scholarships application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58625

Bryan Davis  changed:

   What|Removed |Added

   Priority|Unprioritized   |Highest
   Assignee|wikibugs-l@lists.wikimedia. |bda...@wikimedia.org
   |org |
   Severity|normal  |major

-- 
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 58625] New: Location of twig cache should be configurable in Wikimania Scholarships application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58625

   Web browser: ---
Bug ID: 58625
   Summary: Location of twig cache should be configurable in
Wikimania Scholarships application
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Wikimania Scholarships
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: bda...@wikimedia.org
CC: bda...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

The app should expose a configuration setting that allows the setting the
directory path be used to cache the compiled twig templates. It currently
expects to be able to write to a sub-directory of the deploy location.

-- 
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 24489] Remove the "Indentation" button from edit toolbar

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24489

--- Comment #10 from Gerrit Notification Bot  ---
Change 102101 abandoned by Tinaj1234:
Removed indentation button from WikiEditor extension

Reason:
This change previously exists. A patch was submitted earlier.
https://gerrit.wikimedia.org/r/#/c/94500/

https://gerrit.wikimedia.org/r/102101

-- 
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 58618] Touch InitialiseSettings.php if syncing

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58618

MZMcBride  changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||b...@mzmcbride.com

-- 
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 58623] BetaFeatures: Validate skin requirement is installed before showing it

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58623

--- Comment #1 from Gerrit Notification Bot  ---
Change 102383 had a related patch set uploaded by Legoktm:
Don't show skin names if the user can't enable them

https://gerrit.wikimedia.org/r/102383

-- 
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 58623] BetaFeatures: Validate skin requirement is installed before showing it

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58623

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|ASSIGNED|PATCH_TO_REVIEW

-- 
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 58624] New: Don't do link trails after transclusions of non-existent templates

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58624

   Web browser: ---
Bug ID: 58624
   Summary: Don't do link trails after transclusions of
non-existent templates
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Parser
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: at.li...@live.com.au
Classification: Unclassified
   Mobile Platform: ---

See [[testwiki:Link trails]]. Basically, link trails shouldn't be processed
when displaying the "transclusion" of non-existent templates.

Users expect the auto-generated redlink in this situation to reflect the exact
name of the transcluded template. Any extraneous displayed text is confusing,
even though the link still points to the right place.

(I find it hard to believe that this hasn't already been filed...)

-- 
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 58623] New: BetaFeatures: Validate skin requirement is installed before showing it

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58623

   Web browser: ---
Bug ID: 58623
   Summary: BetaFeatures: Validate skin requirement is installed
before showing it
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: normal
  Priority: Unprioritized
 Component: BetaFeatures
  Assignee: legoktm.wikipe...@gmail.com
  Reporter: legoktm.wikipe...@gmail.com
CC: fflo...@wikimedia.org, mtrac...@member.fsf.org
Classification: Unclassified
   Mobile Platform: ---

VisualEditor supports the 'apex' skin, however that isn't installed on WMF
projects, so users using a non-supported skin will see "".

-- 
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 58588] WikiEditor: Extra buttons are confusing

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58588

This, that and the other  changed:

   What|Removed |Added

 CC||at.li...@live.com.au

--- Comment #2 from This, that and the other  ---
That "Publish" feature seems totally undocumented, save for this comment in
WikiEditor.php:

  // Adds a button and dialog for step-by-step publishing

I can't imagine why anyone would use it.

When you click Publish, the dialog that comes up is supposed to copy the
settings from the main "Edit summary", "Minor edit", and "Watch this page"
controls [1]. But this doesn't appear to work correctly.

[1]
https://git.wikimedia.org/blob/mediawiki%2Fextensions%2FWikiEditor/375e2a12816f198187de4708cc0baf6597a817dc/modules%2Fjquery.wikiEditor.publish.js#L93

-- 
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 58622] "Near this page" icon isn't like all the other BetaFeatures

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58622

Kunal Mehta (Legoktm)  changed:

   What|Removed |Added

Summary|VectorBeta: "Near this  |"Near this page" icon isn't
   |page" icon isn't like all   |like all the other
   |the others  |BetaFeatures

-- 
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 58622] VectorBeta: "Near this page" icon isn't like all the others

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58622

Kunal Mehta (Legoktm)  changed:

   What|Removed |Added

 CC||jgon...@wikimedia.org,
   ||kw...@wikimedia.org,
   ||legoktm.wikipe...@gmail.com
   ||, maxsem.w...@gmail.com,
   ||mgro...@wikimedia.org,
   ||mpinc...@wikimedia.org,
   ||rkald...@wikimedia.org
  Component|VectorBeta  |MobileFrontend (Beta)

-- 
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 58622] New: VectorBeta: "Near this page" icon isn't like all the others

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58622

   Web browser: ---
Bug ID: 58622
   Summary: VectorBeta: "Near this page" icon isn't like all the
others
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: VectorBeta
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jforres...@wikimedia.org
CC: jrob...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Go to
https://en.wikipedia.org/wiki/Special:Preferences#mw-prefsection-betafeatures
and observe the great icons.

See how all the icons are alike, except for the "Near this page", which lacks
the faint grey implication of a top-nav bar…

-- 
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 58622] VectorBeta: "Near this page" icon isn't like all the others

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58622

James Forrester  changed:

   What|Removed |Added

   Keywords||design
   Priority|Unprioritized   |Normal
 Status|NEW |ASSIGNED
 CC||jforres...@wikimedia.org
   Assignee|wikibugs-l@lists.wikimedia. |mgallo...@wikimedia.org
   |org |
   Severity|normal  |minor

-- 
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 57581] VectorBeta: Cut off / invalid break in sidebar

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57581

James Forrester  changed:

   What|Removed |Added

 CC||nani1o...@gmail.com

--- Comment #3 from James Forrester  ---
*** Bug 58399 has been marked as a duplicate of this bug. ***

-- 
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 57581] VectorBeta: Cut off / invalid break in sidebar

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57581

James Forrester  changed:

   What|Removed |Added

 CC||amir.ahar...@mail.huji.ac.i
   ||l

--- Comment #2 from James Forrester  ---
*** Bug 58162 has been marked as a duplicate of this bug. ***

-- 
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 58162] VectorBeta: broken interlanguage links when the typography experiment is enabled

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58162

James Forrester  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from James Forrester  ---
Merging with bug 57581.

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

-- 
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 58399] VectorBeta: Width of sidebar adjusted when VectorBeta is enabled, breaking logo/etc.

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58399

James Forrester  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from James Forrester  ---
Merging with bug 57581.

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

-- 
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 58162] VectorBeta: broken interlanguage links when the typography experiment is enabled

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58162

James Forrester  changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||jforres...@wikimedia.org,
   ||jrob...@wikimedia.org
  Component|[other] |VectorBeta

-- 
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 57581] VectorBeta: Cut off / invalid break in sidebar

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57581

James Forrester  changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||jforres...@wikimedia.org,
   ||jrob...@wikimedia.org
  Component|[other] |VectorBeta
Summary|[VectorBeta] Cut off /  |VectorBeta: Cut off /
   |invalid break in sidebar|invalid break in sidebar

-- 
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 57569] Create "Draft" namespace on the English Wikipedia

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57569

--- Comment #39 from MZMcBride  ---
Thank you Matt, Steven, and everyone else for your work on this. :-)

-- 
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 58619] Database Connections not closed properly

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58619

--- Comment #1 from Bingle  ---
Prioritization and scheduling of this bug is tracked on Mingle card
https://wikimedia.mingle.thoughtworks.com/projects/analytics/cards/1326

-- 
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 43824] Parameter "holds template" is incompatible on templates with "multiple"

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43824

Yaron Koren  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #9 from Yaron Koren  ---
Changing this to "wontfix".

-- 
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 58621] New: Add kindle format putout

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58621

   Web browser: ---
Bug ID: 58621
   Summary: Add kindle format putout
   Product: Tools
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: [Other]
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: wmr89502...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

I'm also a Kindle user, and I believe there are many more Wikimedia users using
Kindle. It would be great if Wikimedia projects add kindle format (.mobi)
putout to the "Create a Book" option in the left bar, which is very useful for
reading Wikisource books.

-- 
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 58620] New: generate KSS documentation from CSS & LESS on doc.wikimedia.org

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58620

   Web browser: ---
Bug ID: 58620
   Summary: generate KSS documentation from CSS & LESS on
doc.wikimedia.org
   Product: Wikimedia
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: Continuous integration
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: sp...@wikimedia.org
CC: has...@free.fr, innocentkil...@gmail.com,
jrob...@wikimedia.org, krinklem...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

MobileFrontend generates documentation of its CSS with actual sample rendered
HTML from the project's source LESS files, see
http://git.wikimedia.org/blob/mediawiki%2Fextensions%2FMobileFrontend.git/HEAD/Makefile
.  Gerrit 98990 generates this documentation for core CSS/LESS. It would be
nice if this documentation appeared in doc.wikimedia.org along with other
generated documentation.

This sounds like bug 48337. Presumably there's some Zuul job somewhere building
the doc that appears.

-- 
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 55471] PHP Fatal error: Call to a member function getParserOutput() on a non-object in FlaggedRevs.class.php on line 575

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55471

--- Comment #6 from Sam Reed (reedy)  ---
I fixed the old_text value, and it's still blank on the wiki. Page deleted...

-- 
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 55471] PHP Fatal error: Call to a member function getParserOutput() on a non-object in FlaggedRevs.class.php on line 575

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55471

--- Comment #5 from Sam Reed (reedy)  ---
> var_dump( $rev );
object(Revision)#94 (23) {
  ["mId":protected]=>
  int(16265152)
  ["mPage":protected]=>
  int(1631229)
  ["mUserText":protected]=>
  string(2) "PG"
  ["mOrigUserText":protected]=>
  string(2) "PG"
  ["mUser":protected]=>
  int(34372)
  ["mMinorEdit":protected]=>
  int(0)
  ["mTimestamp":protected]=>
  string(14) "20090309205942"
  ["mDeleted":protected]=>
  int(0)
  ["mSize":protected]=>
  int(42)
  ["mSha1":protected]=>
  string(0) ""
  ["mParentId":protected]=>
  int(0)
  ["mComment":protected]=>
  string(91) "[[Nie mam nic, prócz Ciebie (Lady)]] przeniesiono do [[Nie mam
nic, prócz ciebie (lady)]]"
  ["mText":protected]=>
  NULL
  ["mTextRow":protected]=>
  NULL
  ["mTitle":protected]=>
  object(Title)#95 (28) {
["mTextform"]=>
string(33) "Nie mam nic, prócz Ciebie (Lady)"
["mUrlform"]=>
string(37) "Nie_mam_nic,_pr%C3%B3cz_Ciebie_(Lady)"
["mDbkeyform"]=>
string(33) "Nie_mam_nic,_prócz_Ciebie_(Lady)"
["mUserCaseDBKey"]=>
NULL
["mNamespace"]=>
int(0)
["mInterwiki"]=>
string(0) ""
["mFragment"]=>
string(0) ""
["mArticleID"]=>
int(1631229)
["mLatestID"]=>
int(16265152)
["mContentModel"]=>
bool(false)
["mEstimateRevisions":"Title":private]=>
NULL
["mRestrictions"]=>
array(0) {
}
["mOldRestrictions"]=>
bool(false)
["mCascadeRestriction"]=>
NULL
["mCascadingRestrictions"]=>
NULL
["mRestrictionsExpiry"]=>
array(0) {
}
["mHasCascadingRestrictions"]=>
NULL
["mCascadeSources"]=>
NULL
["mRestrictionsLoaded"]=>
bool(false)
["mPrefixedText"]=>
NULL
["mTitleProtection"]=>
NULL
["mDefaultNamespace"]=>
int(0)
["mWatched"]=>
NULL
["mLength"]=>
int(42)
["mRedirect"]=>
bool(true)
["mNotificationTimestamp"]=>
array(0) {
}
["mHasSubpage"]=>
NULL
["mPageLanguage":"Title":private]=>
bool(false)
  }
  ["mCurrent":protected]=>
  bool(true)
  ["mContentModel":protected]=>
  NULL
  ["mContentFormat":protected]=>
  NULL
  ["mContent":protected]=>
  NULL
  ["mContentHandler":protected]=>
  NULL
  ["mQueryFlags":protected]=>
  int(0)
  ["mTextId"]=>
  int(16147892)
  ["mUnpatrolled"]=>
  NULL
}

> reedy@tin:~sqlhp plwiki
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1413380858
Server version: 5.5.30-MariaDB-mariadb1~precise-log mariadb.org binary
distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql:wikiadmin@db1036 [plwiki]> select * from text where old_id = 16147892;
+--+---+---+--+-+--+---+---++-+---+
| old_id   | old_namespace | old_title | old_text | old_comment |
old_user | old_user_text | old_timestamp | old_minor_edit | old_flags  
| inverse_timestamp |
+--+---+---+--+-+--+---+---++-+---+
| 16147892 | 0 |   | DB://cluster20/0 | |  
 0 |   |   |  0 | utf-8,gzip,external |
  |
+--+---+---+--+-+--+---+---++-+---+
1 row in set (0.07 sec)



It really is a screwed up db row...

-- 
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 58619] New: Database Connections not closed properly

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58619

   Web browser: ---
Bug ID: 58619
   Summary: Database Connections not closed properly
   Product: Analytics
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Wikimetrics
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: dandree...@wikimedia.org
CC: christ...@quelltextlich.at, dandree...@wikimedia.org,
dvanli...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Wikimetrics does not seem to recycle either celery workers or mysql connections
properly.  This seems like a new problem since things seemed fine a short time
ago.  But that could also be because we weren't getting as much traffic as we
are now.

-- 
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 55471] PHP Fatal error: Call to a member function getParserOutput() on a non-object in FlaggedRevs.class.php on line 575

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55471

--- Comment #4 from Sam Reed (reedy)  ---
Same bug, lines have moved a bit...

[18-Dec-2013 03:32:00] Fatal error: Call to a member function getParserOutput()
on a non-object at
/usr/local/apache/common-local/php-1.23wmf6/extensions/FlaggedRevs/backend/FlaggedRevs.class.php
on line 541
Server: mw1065
Method: GET
URL: http://pl.wikipedia.org/wiki/Nie_mam_nic,_prócz_Ciebie_(Lady)
Backtrace:
#0
/usr/local/apache/common-local/php-1.23wmf6/extensions/FlaggedRevs/backend/FlaggedRevs.class.php(541):
FlaggedRevs::parseStableRevision()
#1
/usr/local/apache/common-local/php-1.23wmf6/extensions/FlaggedRevs/frontend/FlaggablePageView.php(701):
FlaggedRevs::parseStableRevision(Object(FlaggedRevision),
Object(ParserOptions))
#2
/usr/local/apache/common-local/php-1.23wmf6/extensions/FlaggedRevs/frontend/FlaggablePageView.php(354):
FlaggablePageView->showStableVersion(Object(FlaggedRevision), '', '')
#3
/usr/local/apache/common-local/php-1.23wmf6/extensions/FlaggedRevs/frontend/FlaggedRevsUI.hooks.php(194):
FlaggablePageView->setPageContent(false, true)
#4 [internal function]:
FlaggedRevsUIHooks::onArticleViewHeader(Object(Article), false, true)
#5 /usr/local/apache/common-local/php-1.23wmf6/includes/Hooks.php(199):
call_user_func_array('FlaggedRevsUIHo...', Array)
#6
/usr/local/apache/common-local/php-1.23wmf6/includes/GlobalFunctions.php(4031):
Hooks::run('ArticleViewHead...', Array)
#7 /usr/local/apache/common-local/php-1.23wmf6/includes/Article.php(615):
wfRunHooks('ArticleViewHead...', Array)
#8
/usr/local/apache/common-local/php-1.23wmf6/includes/actions/ViewAction.php(44):
Article->view()
#9 /usr/local/apache/common-local/php-1.23wmf6/includes/Wiki.php(441):
ViewAction->show()
#10 /usr/local/apache/common-local/php-1.23wmf6/includes/Wiki.php(305):
MediaWiki->performAction(Object(Article), Object(Title))
#11 /usr/local/apache/common-local/php-1.23wmf6/includes/Wiki.php(596):
MediaWiki->performRequest()
#12 /usr/local/apache/common-local/php-1.23wmf6/includes/Wiki.php(460):
MediaWiki->main()
#13 /usr/local/apache/common-local/php-1.23wmf6/index.php(49): MediaWiki->run()
#14 /usr/local/apache/common-local/w/index.php(3):
require('/usr/local/apac...')
#15 {main}

-- 
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 50673] VisualEditor: Search for images from fileRepos, rather than hard-coding use of local and Commons

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=50673

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|ASSIGNED|PATCH_TO_REVIEW

-- 
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 50673] VisualEditor: Search for images from fileRepos, rather than hard-coding use of local and Commons

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=50673

--- Comment #5 from Gerrit Notification Bot  ---
Change 102377 had a related patch set uploaded by Mooeypoo:
Use image sources from API's fileRepo

https://gerrit.wikimedia.org/r/102377

-- 
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 58555] Create API Upload Wizard Smoke Tests

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58555

--- Comment #7 from aarcos.w...@gmail.com ---
Any pointers on how to move these proof of concept tests to
'.../extensions/UploadWizard/test' would be appreciated.

Thanx !

-- 
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 50687] VisualEditor: Provide a way for the user to one-way switch from VisualEditor into wikitext source editor mode without saving

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=50687

--- Comment #11 from John Mark Vandenberg  ---
Just noting that this was broken in Firefox for a few weeks after launch due to
bug 56767, which has now been fixed, and I have disabled my switch editor.

-- 
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 58612] Warning: array_merge(): Argument #2 is not an array in CommonSettings.php on line 2552

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58612

Sam Reed (reedy)  changed:

   What|Removed |Added

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

-- 
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 58612] Warning: array_merge(): Argument #2 is not an array in CommonSettings.php on line 2552

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58612

--- Comment #5 from Matthew Flaschen  ---
(In reply to comment #3)
> One guess is that some of the Apaches have out of sync clocks.

This doesn't seem to be the case.

-- 
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 58618] New: Touch InitialiseSettings.php if syncing

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58618

   Web browser: ---
Bug ID: 58618
   Summary: Touch InitialiseSettings.php if syncing
   Product: Wikimedia
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: s...@reedyboy.net
Classification: Unclassified
   Mobile Platform: ---

When doing sync-file InitialiseSettings.php, sync-dir wmf-config, or even scap,
we should probably touch InitialiseSettings.php to cause a config recache...

Certainly at least the specific sync-file with it as a target

We've had bugs from this before, and bug 58612

-- 
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 58618] Touch InitialiseSettings.php if syncing

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58618

Sam Reed (reedy)  changed:

   What|Removed |Added

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

-- 
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 58612] Warning: array_merge(): Argument #2 is not an array in CommonSettings.php on line 2552

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58612

Matthew Flaschen  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Matthew Flaschen  ---
Sorry, I didn't mean to change the status.

-- 
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 58612] Warning: array_merge(): Argument #2 is not an array in CommonSettings.php on line 2552

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58612

Matthew Flaschen  changed:

   What|Removed |Added

 Status|RESOLVED|PATCH_TO_REVIEW
 Resolution|FIXED   |---

--- Comment #3 from Matthew Flaschen  ---
But it's unclear why, since the mtime before the manual touch was:

[12/17/13 20:55]  -rw-rw-r--  1 mflaschen   wikidev  431778 Dec 18 00:18
InitialiseSettings.php

That should have invalidated the configuration caching, and it was one of the
files actually changed and deployed (via sync-dir).

One guess is that some of the Apaches have out of sync clocks.  I haven't
checked this yet.

MZMcBride started the commit, but I finished and +2'ed it, and as deployer I
take full responsibility.

-- 
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 58611] Storage errors logged with no end user feedback in Wikimania Scholarships application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58611

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 58611] Storage errors logged with no end user feedback in Wikimania Scholarships application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58611

--- Comment #1 from Gerrit Notification Bot  ---
Change 102373 had a related patch set uploaded by BryanDavis:
Give user a visible warning when save fails

https://gerrit.wikimedia.org/r/102373

-- 
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 58612] Warning: array_merge(): Argument #2 is not an array in CommonSettings.php on line 2552

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58612

Sam Reed (reedy)  changed:

   What|Removed |Added

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

--- Comment #2 from Sam Reed (reedy)  ---
Looks like touching and syncing InitialiseSettings.php fixed it...

-- 
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 58599] Add "BetaFeatures feature" component to "MediaWiki extensions" Bugzilla product

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58599

--- Comment #5 from Andre Klapper  ---
(In reply to comment #1)
> All BetaFeatures are currently parts of some extension, so the bugs should
> probably be filed in the extensions, no?

Yes. If extensions are missing I should create them (bug 58616, bug 58617,
etc).

-- 
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 58366] Handle revision deletion properly

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58366

--- Comment #4 from Gerrit Notification Bot  ---
Change 101447 merged by jenkins-bot:
Respect revision deletion in CirrusSearch

https://gerrit.wikimedia.org/r/101447

-- 
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 58617] New: Add StopForumSpam extension component

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58617

   Web browser: ---
Bug ID: 58617
   Summary: Add StopForumSpam extension component
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: legoktm.wikipe...@gmail.com
CC: aklap...@wikimedia.org, s...@reedyboy.net,
skizz...@gmail.com, thehelpfulonew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

link: https://www.mediawiki.org/wiki/Extension:StopForumSpam

Default CC is myself and Skizzerz

Thanks!

-- 
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 58616] New: Add GlobalPreferences extension component

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58616

   Web browser: ---
Bug ID: 58616
   Summary: Add GlobalPreferences extension component
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: legoktm.wikipe...@gmail.com
CC: aklap...@wikimedia.org, s...@reedyboy.net,
thehelpfulonew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

link: https://www.mediawiki.org/wiki/Extension:GlobalPreferences

Default CC is just me.

Thanks!

-- 
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 58399] VectorBeta: Width of sidebar adjusted when VectorBeta is enabled, breaking logo/etc.

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58399

Andre Klapper  changed:

   What|Removed |Added

 CC||jrob...@wikimedia.org
  Component|[other] |VectorBeta

-- 
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 58161] Add VectorBeta extension as a Bugzilla component

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58161

Andre Klapper  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|wikibugs-l@lists.wikimedia. |aklap...@wikimedia.org
   |org |

--- Comment #2 from Andre Klapper  ---
Added and put Jon as default CC.

-- 
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 56544] Lazy loading main page puts the last modified bar at the top of the page

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56544

--- Comment #3 from Gerrit Notification Bot  ---
Change 98034 merged by jenkins-bot:
Hard refresh the main page on an edit.

https://gerrit.wikimedia.org/r/98034

-- 
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 58615] New: Math creates FSFileBackend in deprecated parameters

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58615

   Web browser: ---
Bug ID: 58615
   Summary: Math creates FSFileBackend in deprecated parameters
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Keywords: easy
  Severity: normal
  Priority: Unprioritized
 Component: Math
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: bawolff...@gmail.com
CC: peter.krautzber...@mathjax.org, phy...@ckurs.de
Classification: Unclassified
   Mobile Platform: ---

Deprecated: Use of FileBackend::__construct called without "wikiID". was
deprecated in MediaWiki 1.23. [Called from FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

Deprecated: Use of FileBackend::__construct called with non-object
"lockManager". was deprecated in MediaWiki 1.23. [Called from
FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

-

Possibly a good gci bug. Needs to change getBackend(), so that the default
config doesn't create a new FSFileBackend object without specifying wikiID and
a lockManager. The appropriate values are probably just wfWikiId() and new
NullLockManager( array() ) respectively.

-- 
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 58614] FancyCaptcha constructs an FSFileBackend in deprecated way

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58614

Bawolff (Brian Wolff)  changed:

   What|Removed |Added

   Keywords||easy

-- 
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 58614] New: FancyCaptcha constructs an FSFileBackend in deprecated way

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58614

   Web browser: ---
Bug ID: 58614
   Summary: FancyCaptcha constructs an FSFileBackend in deprecated
way
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ConfirmEdit (CAPTCHA extension)
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: bawolff...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Deprecated: Use of FileBackend::__construct called without "wikiID". was
deprecated in MediaWiki 1.23. [Called from FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

Deprecated: Use of FileBackend::__construct called with non-object
"lockManager". was deprecated in MediaWiki 1.23. [Called from
FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

-

Possiblly a good gci bug. Needs to modify getBackend(), so that the default
config doesn't create a new FSFileBackend object without specifying wikiID and
a lockManager. The appropriate values are probably just wfWikiId() and new
NullLockManager( array() ) respectively.

-- 
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 58613] EasyTimeline constructing FSFileBackend with deprecated parameters

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58613

Bawolff (Brian Wolff)  changed:

   What|Removed |Added

   Keywords||easy

-- 
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 58551] VisualEditor: Broken on mobile due to ULS dependency

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58551

--- Comment #1 from Gerrit Notification Bot  ---
Change 102368 had a related patch set uploaded by Jdlrobson:
Move additional module loading to viewPage vs general target

https://gerrit.wikimedia.org/r/102368

-- 
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 58551] VisualEditor: Broken on mobile due to ULS dependency

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58551

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|ASSIGNED|PATCH_TO_REVIEW

-- 
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 58613] New: EasyTimeline constructing FSFileBackend with deprecated parameters

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58613

   Web browser: ---
Bug ID: 58613
   Summary: EasyTimeline constructing FSFileBackend with
deprecated parameters
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: EasyTimeline
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: bawolff...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Deprecated: Use of FileBackend::__construct called without "wikiID". was
deprecated in MediaWiki 1.23. [Called from FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

Deprecated: Use of FileBackend::__construct called with non-object
"lockManager". was deprecated in MediaWiki 1.23. [Called from
FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

-

Possibly a good gci bug. Needs to modify wfRenderTimeline(), so that the
default
config doesn't create a new FSFileBackend object without specifying wikiID and
a lockManager. The appropriate values are probably just wfWikiId() and new
NullLockManager( array() ) respectively.

-- 
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 53132] Notifications are not sent when a user mentions another if the signature of the sender contains localized namespaces

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53132

Kunal Mehta (Legoktm)  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

-- 
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 53132] Notifications are not sent when a user mentions another if the signature of the sender contains localized namespaces

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53132

--- Comment #23 from Gerrit Notification Bot  ---
Change 87477 merged by jenkins-bot:
Support non-English namespace names in DiscussionParser::getUserFromLine

https://gerrit.wikimedia.org/r/87477

-- 
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 58612] Warning: array_merge(): Argument #2 is not an array in CommonSettings.php on line 2552

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58612

Sam Reed (reedy)  changed:

   What|Removed |Added

 CC||b...@mzmcbride.com

--- Comment #1 from Sam Reed (reedy)  ---
https://github.com/wikimedia/operations-mediawiki-config/commit/a6b09501a502249a549e0b71c887c655f86ada67

Ib56f1085eea106de6767162e77614e36d2a505ca

Seems it's MZMcBrides fault

-- 
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 58612] New: Warning: array_merge(): Argument #2 is not an array in CommonSettings.php on line 2552

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58612

   Web browser: ---
Bug ID: 58612
   Summary: Warning:  array_merge(): Argument #2 is not an array
in CommonSettings.php on line 2552
   Product: Wikimedia
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: minor
  Priority: Unprioritized
 Component: Site requests
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: s...@reedyboy.net
CC: benap...@gmail.com,
bugzilla+org.wikime...@tuxmachine.com,
dereck...@espace-win.org, g...@wikimedia.org,
tom...@twkozlowski.net, wikimedia.b...@snowolf.eu
Classification: Unclassified
   Mobile Platform: ---

Warning:  array_merge() [function.array-merge]: Argument #2 is not an
array in /usr/local/apache/common-local/wmf-config/CommonSettings.php on line
2552

Seems to be new

$wgExemptFromUserRobotsControl = array_merge( $wgContentNamespaces,
$wmgExemptFromUserRobotsControlExtra );

'wmgExemptFromUserRobotsControlExtra' => array(
'default' => array(),
'enwiki' => array( 118, 119 ), // draft and draft talk
),


There's a few of the seemingly constant, notice since the deploy earlier today

-- 
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 53691] browsertests: triggers for VisualEditor

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53691

--- Comment #11 from Jeff Hall  ---
Looks like it's not a problem with PhantomJS being blacklisted, per the
VisualEditor browser blacklist which begins at line 890 of this file:

https://git.wikimedia.org/blob/mediawiki%2Fextensions%2FVisualEditor/b922592902ad57f770b6810566b820aada74aa47/VisualEditor.php

…so I'll spend some more time tomorrow to see if I can figure out why PhantomJS
doesn't seem to work as intended even when navigating directly to an "editing
mode" URL.

-- 
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 58611] New: Storage errors logged with no end user feedback in Wikimania Scholarships application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58611

   Web browser: ---
Bug ID: 58611
   Summary: Storage errors logged with no end user feedback in
Wikimania Scholarships application
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Wikimania Scholarships
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: bda...@wikimedia.org
CC: bda...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

When saving an application to the database fails the application logs an error
message but returns the user to the application submission screen with no
indication that a problem was encountered.

-- 
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 58611] Storage errors logged with no end user feedback in Wikimania Scholarships application

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58611

Bryan Davis  changed:

   What|Removed |Added

   Priority|Unprioritized   |Highest
   Assignee|wikibugs-l@lists.wikimedia. |bda...@wikimedia.org
   |org |
   Severity|normal  |major

-- 
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 58610] Score constructs an FSBackend in a deprecated fashion

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58610

Bawolff (Brian Wolff)  changed:

   What|Removed |Added

Summary|GWToolset constructs an |Score constructs an
   |FSBackend in a deprecated   |FSBackend in a deprecated
   |fashion |fashion

-- 
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 58610] GWToolset constructs an FSBackend in a deprecated fashion

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58610

Aaron Schulz  changed:

   What|Removed |Added

 CC||aschulz4...@gmail.com

--- Comment #1 from Aaron Schulz  ---
(In reply to comment #0)

> Possible gci bug. Needs to modify Score::getBackend(), so that the default
> config doesn't create a new FSFileBackend object without specifying wikiID
> and
> a lockManager. The appropriate values are probably just wfWikiId() and new
> NullLockManager( array() ) respectively.

Yep

-- 
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 58610] New: GWToolset constructs an FSBackend in a deprecated fashion

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58610

   Web browser: ---
Bug ID: 58610
   Summary: GWToolset constructs an FSBackend in a deprecated
fashion
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Keywords: easy
  Severity: normal
  Priority: Unprioritized
 Component: Score
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: bawolff...@gmail.com
CC: aarcos.w...@gmail.com, bawolff...@gmail.com,
fflo...@wikimedia.org, gti...@wikimedia.org,
jger...@wikimedia.org, mtrac...@member.fsf.org,
q...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Deprecated: Use of FileBackend::__construct called without "wikiID". was
deprecated in MediaWiki 1.23. [Called from FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

Deprecated: Use of FileBackend::__construct called with non-object
"lockManager". was deprecated in MediaWiki 1.23. [Called from
FileBackendStore::__construct in
/var/www/w/git/includes/filebackend/FileBackendStore.php at line 68] in
/var/www/w/git/includes/debug/Debug.php on line 301

-

Possible gci bug. Needs to modify Score::getBackend(), so that the default
config doesn't create a new FSFileBackend object without specifying wikiID and
a lockManager. The appropriate values are probably just wfWikiId() and new
NullLockManager( array() ) respectively.

-- 
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 57569] Create "Draft" namespace on the English Wikipedia

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57569

Matthew Flaschen  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|wikibugs-l@lists.wikimedia. |mflasc...@wikimedia.org
   |org |

--- Comment #38 from Matthew Flaschen  ---
This is deployed to English Wikipedia.

You can also resume testing on Beta.  The old drafts are at
http://en.wikipedia.beta.wmflabs.org/wiki/Special:PrefixIndex/Draft .  They can
be moved back into the Draft space if desired.

-- 
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 57597] Prefer double-quoted strings in Ruby code

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57597

--- Comment #35 from Gerrit Notification Bot  ---
Change 102207 merged by jenkins-bot:
QA: Replacing single quotes with double quotes

https://gerrit.wikimedia.org/r/102207

-- 
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 48418] api.php?action=query&meta=siteinfo&siprop=extensions should print extension last commit information

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=48418

sp...@wikimedia.org changed:

   What|Removed |Added

 CC||sp...@wikimedia.org

--- Comment #11 from sp...@wikimedia.org ---
*** Bug 58606 has been marked as a duplicate of this bug. ***

-- 
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 58606] site info for extensions doesn't include git version and date

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58606

sp...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from sp...@wikimedia.org ---
bug 48418 requests extra info from siteinfo. Gerrit 65299 returns additional
info about extensions, including its commit hash, but not the date.

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

-- 
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 57569] Create "Draft" namespace on the English Wikipedia

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57569

--- Comment #37 from Gerrit Notification Bot  ---
Change 97675 merged by jenkins-bot:
Create "Draft" namespace on the English Wikipedia

https://gerrit.wikimedia.org/r/97675

-- 
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 58609] Date and time revert when creating a report

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58609

--- Comment #1 from Bingle  ---
Prioritization and scheduling of this bug is tracked on Mingle card
https://wikimedia.mingle.thoughtworks.com/projects/analytics/cards/1325

-- 
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 58587] Catchable fatal error: Argument 2 passed to {closure}() must be an array, null given, called in LocalRepo.php on line 282 and defined at LocalRepo.php on line 261

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58587

Aaron Schulz  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 CC||aschulz4...@gmail.com
 Resolution|--- |FIXED

-- 
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


  1   2   3   4   5   6   >