[Bug 62960] Prototype CAPTCHA optimized for multilingual and mobile

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62960

--- Comment #14 from Aalekh Nigam aalekh1...@rediffmail.com ---
Two points to mention :

1)There has been edit made in making category unrelated which is mentioned
here:

In order to make categories unrelated we can make super-set of the categories
for example:- there could be categories of artist,astronauts can be
categorized under the Super Category of humans, similarly collection of an
array can be made comprising of unrelated categories such as “people”,
“animals”, “machines etc...,moreover this array of unrelated categories can be
modified by administrators of Wiki's to add more categories according to his
need.

2)A point was made by mentor regarding user experience while using odd one out
question ,it was proposed to use 2 odd options out of 8 given but using two
option can prove problem for users to determine the odd option, hence i would
like propose the use of only one odd option out off eight options provided in
question ,i request all members to give their feedback regarding it.

In addition url obfuscation can be made in order to make url un-retrievable
from source, also use of apertium as described in the proposal can be
substituted by use of translate wiki.

Thank You

-- 
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 63176] New: Hovercards: bottom of vertical hovercard and timestamp jiggle on load

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63176

Bug ID: 63176
   Summary: Hovercards: bottom of vertical hovercard and timestamp
jiggle on load
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: Macintosh
OS: Mac OS X 10.9
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Popups
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jared.zimmer...@wikimedia.org
CC: psax...@wikimedia.org, yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

vertical hovercards (picture on top) move/jitter on load at the end of the
animation

-- 
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 63177] New: Hovercards: first image on page is sometimes skipped

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63177

Bug ID: 63177
   Summary: Hovercards: first image on page is sometimes skipped
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Popups
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jared.zimmer...@wikimedia.org
CC: psax...@wikimedia.org, yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

hover over Paramount Network Television from infobox on
https://en.wikipedia.org/wiki/Cheers second image (outside infobox) is used in
Hovercard

-- 
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 63178] New: Fatal Error after installation with Oracle backend

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63178

Bug ID: 63178
   Summary: Fatal Error after installation with Oracle backend
   Product: MediaWiki
   Version: 1.22.4
  Hardware: PC
OS: Windows 7
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Installer
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jens.roe...@tryg.dk
   Web browser: ---
   Mobile Platform: ---

Created attachment 14937
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=14937action=edit
phpinfo

I am not able to setup MediaWiki with the below environment specifications:

Windows NT MISC-PC01 6.1 build 7601 (Windows 7 Business Edition Service Pack 1)

Apache/2.2.25 (Win32) PHP/5.4.26 mod_fcgid/2.3.6

Oracle Run-time Client Library Version: 11.2.0.4.0 

Log status:

Install

##Including extensions... done
##Setting up database... done
##Creating database user... done
##Creating tables... done
##Populating default interwiki table... done
##Initializing statistics... done
##Generating secret keys... done
##Creating administrator user account... done
##Creating main page with default content...
Warning: strpos() expects parameter 1 to be string, object given in
C:\Apache2.2\htdocs\wiki\includes\db\DatabaseOracle.php on line 1146

Warning: strpos() expects parameter 1 to be string, object given in
C:\Apache2.2\htdocs\wiki\includes\db\DatabaseOracle.php on line 1142

Warning: substr() expects parameter 1 to be string, object given in
C:\Apache2.2\htdocs\wiki\includes\db\DatabaseOracle.php on line 1142
 done
##Creating tables for enabled extensions...

When trying to enter the page this error message shows up:

Fatal error: Call to a member function checkTitleEncoding() on a non-object in
C:\Apache2.2\htdocs\wiki\includes\db\DatabaseOracle.php on line 1158

-- 
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 62856] ContentHandler / #REDIRECT missing when using $content-getParserOutput( ...)

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62856

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

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

--- Comment #3 from Brad Jorsch bjor...@wikimedia.org ---
This does not seem to be an issue in ContentHandler, as the following produces
expected output (using 1.23wmf17 as deployed on enwiki):

 $title = Title::newFromText(Foo);
 $revision = Revision::newFromTitle( $title, false, Revision::READ_NORMAL );
 $content = $revision-getContent( Revision::RAW );
 $parserOutput = $content-getParserOutput( $title, $revision-getId(), null,
true );
 echo $parserOutput-getText();

When var_dumping the $parserOutput object, I see nothing that remotely
resembles the output that you are claiming your test returns (no field in the
object contains wikitext), so I further doubt this has anything to do with
MediaWiki core.

I don't see SMW\Test\SimplePageRedirectRegressionTest anywhere, so I can't
comment on what it or the code it is testing might be doing. Although if Gerrit
change 105829 is related, I can guess that you may be using some hook inside
$wgParser-parse() to try to grab the wikitext being parsed for use later.

Absent further details, this bug should probably be reassigned to the
appropriate extension.

--- Comment #4 from Daniel Kinzler daniel.kinz...@wikimedia.de ---
Note that getParserOutput()-getText() will return the rendered HTML of the
page. 

There is no reason we should assume or insist that for a redirect, it will
contain #REDIRECT. In fact, it would be perfectly sensible for it to return the
HTML you are seeing when viewing a redirect with redirect=no: basically, a link
to the redirect target, and an icon. 

Also, for content models other than wikitext, redirects my be defined in some
other way; #REDIRECT is used for wikitext only.

Marking as invalid since the expectation that rendered HTML contain #REDIRECT
is unfounded.

-- 
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 62643] term validation via changeop

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62643

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Blocks||62927

-- 
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 62927] Perform input validation based on ChangeOp

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62927

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||62643

-- 
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 62643] term validation via changeop

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62643

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Blocks||49583

-- 
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 62927] Perform input validation based on ChangeOp

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62927

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||62644

-- 
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 62644] do snack validation in changeop

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62644

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Blocks||62927

-- 
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 49583] Use standard DataValue validators for labels, descriptions and aliases

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=49583

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||62643

-- 
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 49583] Use standard DataValue validators for labels, descriptions and aliases

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=49583

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on|62927   |

-- 
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 62927] Perform input validation based on ChangeOp

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62927

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Blocks|49583   |

-- 
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 63168] Correct the format of the wikitext output

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63168

--- Comment #4 from dan d_ent...@yahoo.com ---
in regards to maintaining the template parameter order as it is within the
actual 
template; e.g., not always alphabetical. this could not be dealt with here
because
GWToolset is using templatedata to retrieve the template parameters and
templatedata is alphabetising the parameters. does this need to be dealt
with as a templatedata bug?

@see
https://commons.wikimedia.org/w/api.php?action=templatedatatitles=Template:Artwork

-- 
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 45150] Maintenance script for summary

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45150

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de

--- Comment #1 from Daniel Kinzler daniel.kinz...@wikimedia.de ---
I suppose this is meant to apply to to revisions as visible in the edit history
on the repo.

-- 
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 45150] Maintenance script for summary

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45150

--- Comment #2 from Lydia Pintscher lydia.pintsc...@wikimedia.de ---
Yes.

-- 
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 63178] Fatal Error after installation with Oracle backend

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63178

--- Comment #1 from Jens Røbel jens.roe...@tryg.dk ---
Oracle Version

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
PL/SQL Release 11.2.0.3.0 - Production
CORE11.2.0.3.0Production
TNS for Linux: Version 11.2.0.3.0 - Production
NLSRTL Version 11.2.0.3.0 - Production

-- 
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 63179] New: Editing a page when accessing via a redirect does not work

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63179

Bug ID: 63179
   Summary: Editing a page when accessing via a redirect does not
work
   Product: Wikipedia App
   Version: Android (alpha)
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Generic
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: liang...@gmail.com
CC: yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

Editing the lead section shows me wikitext #REDIRECT stuff, and editing other
section gives Could not connect to the network (because of exception?).

-- 
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 63180] New: Redirect pages to pages in another language are shown as redirects to local pages

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63180

Bug ID: 63180
   Summary: Redirect pages to pages in another language are shown
as redirects to local pages
   Product: Wikipedia App
   Version: Android (alpha)
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Generic
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: liang...@gmail.com
CC: yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

[[zh:User:Liangent/iwrd2]] is shown as a redirect to [[zh:维基百科]] (which
langlinks to [[en:Wikipedia]]). Given that we have the ability to view page in
another language (via both langlinks and iwlinks), is this a feature or a 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 28206] PDF generation does not support Complex Script Wikis (e.g. Indic languages) and needs to be re-written

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28206

--- Comment #20 from Rahmanuddin Shaik nani1o...@gmail.com ---
Any update on this?

-- 
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 62416] Support language variants (LanguageConverter)

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62416

Liangent liang...@gmail.com changed:

   What|Removed |Added

 Depends on||60743

-- 
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 60743] Special case Traditional and Simplified Chinese in all language handling

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60743

Liangent liang...@gmail.com changed:

   What|Removed |Added

 CC||liang...@gmail.com
 Blocks||62416

-- 
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 63179] Editing a page when accessing via a redirect does not work

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63179

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 63179] Editing a page when accessing via a redirect does not work

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63179

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 121321 had a related patch set uploaded by Yuvipanda:
Handle page redirects properly

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

-- 
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 63117] FlaggedRevs should pass jshint

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63117

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 121099 had a related patch set uploaded by Hashar:
Make jslint non-voting for FlaggedRevs

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

-- 
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 63117] FlaggedRevs should pass jshint

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63117

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 121099 merged by jenkins-bot:
Make jslint non-voting for FlaggedRevs

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

-- 
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 63117] FlaggedRevs should pass jshint

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63117

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 63117] FlaggedRevs should pass jshint

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63117

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |NEW

-- 
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 63152] sudo rights removed, WDQ VM offline

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63152

Magnus Manske magnusman...@gmail.com changed:

   What|Removed |Added

   Severity|blocker |normal

-- 
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 63152] sudo rights removed, WDQ VM offline

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63152

--- Comment #2 from Magnus Manske magnusman...@gmail.com ---
sudo issue is fixed now. Downgrading bug importance.

-- 
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 63181] New: Turn Hover Cards off in certain Spaces

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63181

Bug ID: 63181
   Summary: Turn Hover Cards off in certain Spaces
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Popups
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: vba...@wikimedia.org
CC: dga...@wikimedia.org, jared.zimmer...@wikimedia.org,
psax...@wikimedia.org, yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

List of Pages where hover cards should be turned of

-Article History

-- 
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 63155] Hovercards: Sentence is awkwardly cut off

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63155

--- Comment #1 from Vibha Bamba vba...@wikimedia.org ---
Jared, I recommend we strip redirect and title out for now.
Lmk, if you have any concerns.

-- 
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 62774] Hitting 'Done' when on search bar should navigate to first result

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62774

Liangent liang...@gmail.com changed:

   What|Removed |Added

 CC||liang...@gmail.com

--- Comment #3 from Liangent liang...@gmail.com ---
This makes visiting newly created pages which are not indexed yet difficult.

-- 
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 61879] CirrusSearch: Support Elasticsearch 1.0+

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=61879

key...@gmail.com changed:

   What|Removed |Added

 CC||key...@gmail.com

--- Comment #4 from key...@gmail.com ---
Can we also use Elasticsearch 1.1.0 ?

-- 
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 57848] CommonsMetadata should remove simple HTML wrapping

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57848

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 120948 merged by jenkins-bot:
Clean parsed HTML

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

-- 
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 57262] Language name remains inside description

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57262

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 120948 merged by jenkins-bot:
Clean parsed HTML

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

-- 
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 57458] '\n' are added to various elements in CommonsMetadata output

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57458

--- Comment #5 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 120948 merged by jenkins-bot:
Clean parsed HTML

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

-- 
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 63182] New: Show unknown value and no value for qualifier and reference snaks in non-JS view

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63182

Bug ID: 63182
   Summary: Show unknown value and no value for qualifier and
reference snaks in non-JS view
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: tobias.gritschac...@wikimedia.de
CC: wikidata-b...@lists.wikimedia.org
   Web browser: ---
   Mobile Platform: ---

We are currently not showing no value or unknown value in snaks in the
qualifier and reference sections of the non-JS UI.

-- 
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 63182] Show unknown value and no value for qualifier and reference snaks in non-JS view

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63182

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

   What|Removed |Added

   Priority|Unprioritized   |High
 Whiteboard||u=dev c=frontend p=0
   Severity|normal  |major

-- 
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 63183] Replace preg_replace /e with preg_replace_callback

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63183

Niklas Laxström niklas.laxst...@gmail.com 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 63183] New: Replace preg_replace /e with preg_replace_callback

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63183

Bug ID: 63183
   Summary: Replace preg_replace /e with preg_replace_callback
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Translate
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: niklas.laxst...@gmail.com
CC: da...@sheetmusic.org.uk, niklas.laxst...@gmail.com,
siebr...@kitano.nl, sucheta.ghos...@gmail.com
   Web browser: ---
   Mobile Platform: ---

Notice: Deprecated: preg_replace(): The /e modifier is deprecated, use
preg_replace_callback instead in
/www/dev.translatewiki.net/w/extensions/Translate/ffs/FlatPhpFFS.php on line 43

-- 
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 63072] Investigate if there are already claims for properties on wikidata.org

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63072

Lydia Pintscher lydia.pintsc...@wikimedia.de changed:

   What|Removed |Added

 CC||lydia.pintscher@wikimedia.d
   ||e
 Whiteboard|u=dev c=infrastructure p=0  |u=dev c=infrastructure p=3

-- 
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 63113] Convert wikibase i18n files to json format

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63113

Lydia Pintscher lydia.pintsc...@wikimedia.de changed:

   What|Removed |Added

 Whiteboard|u=dev c=backend p=0 |u=dev c=backend p=3

-- 
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 63124] Bureaucrats should be able to add users to gwtoolset group on Commons

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63124

Tomasz W. Kozlowski tom...@twkozlowski.net changed:

   What|Removed |Added

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

--- Comment #3 from Tomasz W. Kozlowski tom...@twkozlowski.net ---
This was merged  deployed by Ori.

-- 
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 63148] Improve test coverage for special pages

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63148

Lydia Pintscher lydia.pintsc...@wikimedia.de changed:

   What|Removed |Added

 CC||lydia.pintscher@wikimedia.d
   ||e
 Whiteboard||u=dev c=frontend p=8

-- 
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 63148] Improve test coverage for special pages

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63148

Lydia Pintscher lydia.pintsc...@wikimedia.de changed:

   What|Removed |Added

   Priority|Unprioritized   |High

-- 
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 63179] Editing a page when accessing via a redirect does not work

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63179

--- Comment #2 from Yuvi Panda yuvipa...@gmail.com ---
This patch means there's no way to specify 'redirect=no' but I think that's ok.

-- 
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 63184] New: action=mobileview should support displaytitle / variant converted titles

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63184

Bug ID: 63184
   Summary: action=mobileview should support displaytitle /
variant converted titles
   Product: MobileFrontend
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: yuvipa...@gmail.com
CC: aricha...@wikimedia.org, jgon...@wikimedia.org,
jrob...@wikimedia.org, kw...@wikimedia.org,
maxsem.w...@gmail.com, rkald...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

This is required to support pages that use {{DISPLAYTITLE}} to specify that an
underscore should be displayed in the title, and also to handle variant
conversion for titles.

-- 
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 63184] action=mobileview should support displaytitle / variant converted titles

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63184

--- Comment #1 from Yuvi Panda yuvipa...@gmail.com ---
action=parse respects these, fwiw.

-- 
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 63184] action=mobileview should support displaytitle / variant converted titles

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63184

--- Comment #2 from Bingle bingle-ad...@wikimedia.org ---
Prioritization and scheduling of this bug is tracked on Mingle card
https://wikimedia.mingle.thoughtworks.com/projects/mobile/cards/1813

-- 
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 60540] new indexes on wb_terms table

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60540

Aude aude.w...@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Aude aude.w...@gmail.com ---
per sean, the indexes have been applied

-- 
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 49188] Schema changes for Wikimedia wikis (tracking)

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=49188

Bug 49188 depends on bug 60540, which changed state.

Bug 60540 Summary: new indexes on wb_terms table
https://bugzilla.wikimedia.org/show_bug.cgi?id=60540

   What|Removed |Added

 Status|NEW |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 60539] convert wb_terms term_row_id from INT to BIGINT

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60539

--- Comment #3 from Aude aude.w...@gmail.com ---
per sean, this is not done yet and is not a high priority right now (but not
forgotten)

bigint is not needed quite yet, given table size, and the smaller primary index
is not a bad thing at the moment. 

(but the change shall be done at some point)

-- 
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 60540] new indexes on wb_terms table

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60540

Sean Pringle sprin...@wikimedia.org changed:

   What|Removed |Added

 CC||sprin...@wikimedia.org
   Assignee|wikidata-bugs@lists.wikimed |sprin...@wikimedia.org
   |ia.org  |

-- 
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 60539] convert wb_terms term_row_id from INT to BIGINT

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60539

Sean Pringle sprin...@wikimedia.org changed:

   What|Removed |Added

 CC||sprin...@wikimedia.org
   Assignee|wikidata-bugs@lists.wikimed |sprin...@wikimedia.org
   |ia.org  |

-- 
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 63113] Convert wikibase i18n files to json format

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63113

--- Comment #1 from Aude aude.w...@gmail.com ---
this also includes any of our libraries not in gerrit (if they have i18n files)

-- 
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 63161] Installation Documentation error for Semantic Mediawiki

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63161

--- Comment #3 from Andre Klapper aklap...@wikimedia.org ---
(In reply to Vicki Brown from comment #2)
 They link to this Bugzilla from their site. :-(

Told Jeroen a few times already to fix it, e.g. bug 62114 comment 7...

-- 
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 63185] New: Don't show image if only an sister project icon is on the page

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63185

Bug ID: 63185
   Summary: Don't show image if only an sister project icon is on
the page
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Popups
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: raimond.spekk...@gmail.com
CC: psax...@wikimedia.org, yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

Created attachment 14940
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=14940action=edit
screenshot

If a page has no real images but only an icon from a link to a sister project
(or similar): Don't show any image. The icon on the hovercard has no real
information for the reader.

Example:
Open https://de.wikipedia.org/wiki/Kolumba_%28Museum%29 and hover about the
first link to https://de.wikipedia.org/wiki/Pritzker-Architektur-Preis

See screenshot for output.

-- 
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 62774] Hitting 'Go' when on search bar should navigate to exact page title

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62774

Yuvi Panda yuvipa...@gmail.com changed:

   What|Removed |Added

Summary|Hitting 'Done' when on  |Hitting 'Go' when on search
   |search bar should navigate  |bar should navigate to
   |to first result |exact page title

-- 
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 62774] Hitting 'Go' when on search bar should navigate to exact page title

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62774

--- Comment #4 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 121353 had a related patch set uploaded by Yuvipanda:
Make 'Go' button go to exact page title user typed

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

-- 
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 62774] Hitting 'Go' when on search bar should navigate to exact page title

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62774

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 63166] Please add David Haskiya to default CC for GWToolset

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63166

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||david.hask...@europeana.eu
 Resolution|--- |FIXED
   Assignee|wikibugs-l@lists.wikimedia. |aklap...@wikimedia.org
   |org |

--- Comment #1 from Andre Klapper aklap...@wikimedia.org ---
Done (CC'ing here too).

-- 
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 700] Code quality issues (tracking)

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=700

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 Depends on||63183

-- 
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 60539] convert wb_terms term_row_id from INT to BIGINT

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60539

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal

-- 
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 63183] Replace preg_replace /e with preg_replace_callback

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63183

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 Blocks||700

-- 
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 63178] Fatal Error after installation with Oracle backend: Call to checkTitleEncoding() on a non-object

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63178

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 CC||aklap...@wikimedia.org
 Blocks||38916
Summary|Fatal Error after   |Fatal Error after
   |installation with Oracle|installation with Oracle
   |backend |backend: Call to
   ||checkTitleEncoding() on a
   ||non-object
   Severity|normal  |major

--- Comment #2 from Andre Klapper aklap...@wikimedia.org ---
Thanks for taking the time to report this!

-- 
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 38916] Oracle DB support (tracking)

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38916

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 Depends on||63178

-- 
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 57693] Create HTML anchors to statements by property

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57693

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 121361 had a related patch set uploaded by Daniel Kinzler:
(bug 57693) supply id for claim group

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

-- 
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 57693] Create HTML anchors to statements by property

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57693

Gerrit Notification Bot gerritad...@wikimedia.org 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 63175] Inconsistency in how MediaHandler::doTransform called

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63175

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
Version|unspecified |1.23-git

-- 
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 62114] Disable new bug posting for some semantic extensions (moving to GitHub)

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62114

[[kgh]] mediaw...@kghoffmeyer.de changed:

   What|Removed |Added

 CC||mediaw...@kghoffmeyer.de

--- Comment #9 from [[kgh]] mediaw...@kghoffmeyer.de ---
There was also the smw_smwadmin_mediazilla system message which pointed to
bugzilla. This one was [1] amended March 4, 2014. However one will have to
upgrade/update SMW to get the new link. Reality has it that the updating
situation for SMW is unfortunately as bad as for MW itself. :(

[1]
https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/943e22ae2d09bbffe2f14467a69c4275fb8426ae#diff-97befc8fae2e31265042c4d8425cccee

-- 
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 63186] New: /maintenance/findHooks.php still has the old path /include/job/ instead of include/jobqueue/

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63186

Bug ID: 63186
   Summary: /maintenance/findHooks.php still has the old path
/include/job/ instead of include/jobqueue/
   Product: MediaWiki
   Version: 1.23-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Maintenance scripts
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: cbr...@gmail.com
   Web browser: ---
   Mobile Platform: ---

/include/job has been renamed to /include/jobqueue but
/maintenance/findHooks.php has a reference to the old path.

-- 
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 63122] improve detectTofu algorithm so it can detect replacement characters in fixed-width glyphs

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63122

--- Comment #2 from Xiangquan Xiao xiaoxiangq...@gmail.com ---
Created attachment 14941
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=14941action=edit
Patch for the detect chinese tofu function

Hope it can work. I just finish the function, while don't know how to integrate
it with ULS currently.

-- 
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 63122] improve detectTofu algorithm so it can detect replacement characters in fixed-width glyphs

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63122

--- Comment #3 from Xiangquan Xiao xiaoxiangq...@gmail.com ---
Created attachment 14942
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=14942action=edit
A simple test page

it will alert a tofu char, and a not-tofu char

-- 
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 63185] Hovercards: Don't show image if only an sister project icon is on the page

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63185

Prateek Saxena psax...@wikimedia.org changed:

   What|Removed |Added

Summary|Don't show image if only an |Hovercards: Don't show
   |sister project icon is on   |image if only an sister
   |the page|project icon is on the page

-- 
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 63181] Hovercards: Turn Hover Cards off in certain Spaces

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63181

Prateek Saxena psax...@wikimedia.org changed:

   What|Removed |Added

Summary|Turn Hover Cards off in |Hovercards: Turn Hover
   |certain Spaces  |Cards off in certain Spaces

-- 
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 58016] Flow: Suppression redacts the wrong username

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58016

--- Comment #15 from Matthias Mullie mmul...@wikimedia.org ---
Well, I don't know here... Seeing that log entry is to be expected according to
how we implemented things.

It looks like the thing that got suppressed was the topic title. You're seeing
a log entry for a comment (that was not suppressed - I guess) on that topic,
with the topic name replaced by a message that it's suppressed.

That message should indeed be fixed to display the real username (actually, I
think a fix of that has recently been submitted - I'll check that out).

As for if the log entry should actually be displayed: I don't know. Right now,
suppressing a topic title only suppressed exactly that; all posts in the topic
are left untouched (same for suppressing a post that has replies - those
replies are left alone)

Should suppressing a topic title suppress everything within that topic (and
suppressing a post suppress all child replies), or not?
Or should we build something new to make both possible?

-- 
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 43844] VisualEditor: Browser back button should work as expected

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43844

Lokal_Profil lokal_pro...@hotmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||lokal_pro...@hotmail.com
 Resolution|FIXED   |---

--- Comment #9 from Lokal_Profil lokal_pro...@hotmail.com ---
This seems to be broken again (back button changes URL but doesn't take user
back to read state)

-- 
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 48426] VisualEditor: Pre-beta needs (tracker)

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=48426

Bug 48426 depends on bug 43844, which changed state.

Bug 43844 Summary: VisualEditor: Browser back button should work as expected
https://bugzilla.wikimedia.org/show_bug.cgi?id=43844

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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 54098] [UI] Front-end performance: Improve loading time of items

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=54098

Bug 54098 depends on bug 62527, which changed state.

Bug 62527 Summary: Reuse existing DOM on page initialization
https://bugzilla.wikimedia.org/show_bug.cgi?id=62527

   What|Removed |Added

 Status|ASSIGNED|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 62527] Reuse existing DOM on page initialization

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62527

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.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 56522] Remove 'wrongpassword' message reuse on Special:ChangeEmail

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56522

--- Comment #12 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 121367 had a related patch set uploaded by Ganeshaditya1:
Add message wrongpassword as html and remove its reuse in Special:ChangeEmail

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

-- 
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 56522] Remove 'wrongpassword' message reuse on Special:ChangeEmail

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56522

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 62567] Non-breaking-space inside a quantity is shown as nbsp; in the UI

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62567

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

   What|Removed |Added

 Status|PATCH_TO_REVIEW |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 63122] improve detectTofu algorithm so it can detect replacement characters in fixed-width glyphs

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63122

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Keywords||patch, patch-need-review
 CC||aklap...@wikimedia.org

--- Comment #4 from Andre Klapper aklap...@wikimedia.org ---
(In reply to Xiangquan Xiao from comment #2)
 Created attachment 14941 [details]
 Patch for the detect chinese tofu function

Thanks for your patch!
You are welcome to use Developer access
  https://www.mediawiki.org/wiki/Developer_access
to submit this as a Git branch directly into Gerrit:
  https://www.mediawiki.org/wiki/Git/Tutorial

Putting your branch in Git makes it easier to review it quickly. If you don't
want to set up Git/Gerrit, you can also use
https://tools.wmflabs.org/gerrit-patch-uploader/
Thanks again! We appreciate your contribution.

-- 
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 48368] VisualEditor: Copy wikiEditor's search-and-replace tool

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=48368

--- Comment #4 from Amir E. Aharoni amir.ahar...@mail.huji.ac.il ---
I'd say that it's a regression and not an enhancement.

-- 
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 43844] VisualEditor: Browser back button should work as expected

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43844

--- Comment #10 from Andre Klapper aklap...@wikimedia.org ---
Lokal_Profil: Where? Example link? Browser? Reopening not helpful without
giving instructions to reproduce... :-)

-- 
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 63187] New: The French Wiktionary and Wikibooks have required its the VisualEditor

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63187

Bug ID: 63187
   Summary: The French Wiktionary and Wikibooks have required its
the VisualEditor
   Product: VisualEditor
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: General
  Assignee: jforrester+veteambztick...@wikimedia.org
  Reporter: hubert.bos...@gmail.com
CC: jforres...@wikimedia.org, krinklem...@gmail.com,
ryasm...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

Consequently to the success of VisualEditor on the French Wikipedia and
Wikiversity, the French Wiktionary and Wikibooks have voted in favor of its
utilization:

https://fr.wiktionary.org/wiki/Wiktionnaire:Prise_de_d%C3%A9cision/Installation_de_l%27%C3%A9diteur_visuel

https://fr.wikibooks.org/wiki/Wikilivres:Prise_de_d%C3%A9cision/Installation_de_l%27%C3%A9diteur_visuel

So, thank you to deploy it on fr.wikt and fr.b please.

-- 
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 63155] Hovercards: Sentence is awkwardly cut off

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63155

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 63155] Hovercards: Sentence is awkwardly cut off

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63155

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 121373 had a related patch set uploaded by Prtksxna:
Remove `redirects to` text and heading

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

-- 
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 63187] The French Wiktionary and Wikibooks have required the VisualEditor

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63187

JackPotte hubert.bos...@gmail.com changed:

   What|Removed |Added

Summary|The French Wiktionary and   |The French Wiktionary and
   |Wikibooks have required its |Wikibooks have required the
   |the VisualEditor|VisualEditor

-- 
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 61879] CirrusSearch: Support Elasticsearch 1.0+

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=61879

--- Comment #5 from Nik Everett neverett+bugzi...@wikimedia.org ---
I haven't tried 1.1.0 yet but I'm excited to.  It has two features which'll be
great for big wikis: multiple rescores and phrase suggester speed boost.  I
don't see a reason why it won't just work but I'm waiting to try it because
I'm watching an issue that might cause them to release a 1.1.1 pretty quickly
(https://github.com/elasticsearch/elasticsearch/issues/5573).   It doesn't
effect Cirrus but if they spin out a new release in the next few days I don't
want to have to reverify everything.   Or upgrade the production cluster twice.
 That is a pain.

-- 
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 63181] Hovercards: Turn Hover Cards off in certain Spaces

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63181

Niharika niharikakohl...@gmail.com changed:

   What|Removed |Added

 CC||niharikakohl...@gmail.com

--- Comment #1 from Niharika niharikakohl...@gmail.com ---
https://www.mediawiki.org/wiki/MediaWiki/Homepage_redesign/Preview

Hovering on User Guide, Development etc produces misplaced hovercards.

-- 
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 63162] Hovercards: When image is not masked by pin should use main popup height

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63162

Prateek Saxena psax...@wikimedia.org changed:

   What|Removed |Added

 CC||vba...@wikimedia.org

--- Comment #1 from Prateek Saxena psax...@wikimedia.org ---
This is a decision that Vibha and I consciously took. As the proportions of
these images can vary we have a fixed size box and the image stretches/clips to
fit that area. Keeps the Hovercard clean. 

Any suggestions are 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 62776] Article talk page should be accessible from inside the app

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62776

Sage Ross rages...@gmail.com changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||rages...@gmail.com
   Severity|normal  |major

--- Comment #2 from Sage Ross rages...@gmail.com ---
Yes, definitely. I think the way talk pages are handled in Mobile Frontend
experimental mode is going in the right direction.

Although talk pages are complex, and can be especially confusing for newcomers
who are trying to post to them, the mobile formatting already goes a long way
toward making them seem more like a conventional discussion forum, and even if
we don't want to *encourage* newcomers to edit talk pages, at the minimum we
should make it easy to find and view them.

For me, one of my common usages for mobile is to post a source link on the talk
page, so that I or another editor can later use that source to improve the
article. MFE experimental makes this pretty easy; it'd be nice if I could do
the same workflow in the app.

-- 
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 62947] Hovercards: small images are increased in size on cards, causing them to become blurry or pixelated

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62947

Prateek Saxena psax...@wikimedia.org changed:

   What|Removed |Added

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

-- 
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 63185] Hovercards: Don't show image if only an sister project icon is on the page

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63185

Prateek Saxena psax...@wikimedia.org changed:

   What|Removed |Added

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

-- 
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 63177] Hovercards: first image on page is sometimes skipped

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63177

--- Comment #1 from Prateek Saxena psax...@wikimedia.org ---
We are currently using the PageImages[1] extension to get the thumbnail.

 Its aim is to return the single most appropriate thumbnail
 associated with an article, attempting to return only meaningful
 images, e.g. not those from maintenance templates, stubs or flag
 icons. Currently it uses the first non-meaningless image used in the page.

Any alternatives and suggestions are welcome.

[1] https://www.mediawiki.org/wiki/Extension:PageImages

-- 
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 63188] New: validate sitelinks (value and uniqueness) in ChangeOp

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63188

Bug ID: 63188
   Summary: validate sitelinks (value and uniqueness) in ChangeOp
   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.kinz...@wikimedia.de
CC: wikidata-b...@lists.wikimedia.org
   Web browser: ---
   Mobile Platform: ---

Doing this validation in the ChangeOp would be consistent with validation for
terms and snaks.

However, sitelink uniqueness is a hard constraint, actually enforced by a
nunique key in the database. That may mean that it does need to be checked
every time the item is saved (not just when the sitelink is modified).

-- 
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 63188] validate sitelinks (value and uniqueness) in ChangeOp

2014-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63188

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Blocks||62927

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


  1   2   3   4   5   >