[Bug 44653] texvc missing from 1.21wmf9

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44653

PleaseStand pleasest...@live.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||pleasest...@live.com
 Resolution|FIXED   |---

--- Comment #3 from PleaseStand pleasest...@live.com ---
It's happening again, yet apparently only for servers mw1161-1168 (although I
haven't checked the API Apaches). mw1017-1113 appear to be working normally.

(User report at
https://en.wikipedia.org/wiki/Wikipedia:Village_pump_(technical)#Missing_texvc_executable
)

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


[Bug 44608] Exception Invalid marker on edit with unbalanced /translate tag count

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44608

--- Comment #5 from T. H. Kelly pinkampersand.wikime...@gmail.com ---
(In reply to comment #4)

Yeah in both cases I definitely did make markup mistakes. But I was under the
impression that exception errors are basically never supposed to happen, even
when you're doing something wrong. Last time there was also the issue that
Marius didn't get the same error - I'd be curious to know if this is the case
this time too. (IIRC, he tried it on IP as well, and it worked, implying that
I'm the exception, rather than the rule.)

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


[Bug 44608] Exception Invalid marker on edit with unbalanced /translate tag count

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44608

--- Comment #6 from Nemo federicol...@tiscali.it ---
Comment 0 is about a different markup error.
I'm not saying that fatals are not a bug, I'm only trying to confirm that it's
actually a Translate bug: I think we've established it is for your case, while
for hoo's error comment 2 stays for now. Maybe they're related, maybe not:
Niklas will tell us if he has more ideas.

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


[Bug 44936] Parser functions in additional parameters of {{#tag:}} ignored / thrown away

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44936

--- Comment #7 from db duplicate...@googlemail.com ---
Yes, a empty name is treated as a valid name, so that does not help here.

I think it is a feature, that a equals sign in the value of a param is treated
as plain text and not as key=value, because than you can override param usage
in sub templates.

So the example above would work, because Template A is expand to {{B|1=a=b}},
which works and looks expected.

Maybe Cite should be fixed for empty names, it is a breaking change, but the
most use of that should be wrong use.

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


[Bug 45056] Remove head icon for personal tools from Vector and Monobook skins

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45056

db duplicate...@googlemail.com changed:

   What|Removed |Added

 CC||duplicate...@googlemail.com

--- Comment #7 from db duplicate...@googlemail.com ---
our bugzilla has the same icon.

You can try it out on a wikipedia by changing the common.css and when there is
no bad response, than kill it for every one. Can be part of the E3?

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


[Bug 38403] Sortable search results

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38403

--- Comment #1 from Jan Ainali w...@ainali.com ---
Oh, I meant especially on 'date'.

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


[Bug 45069] New: PHP Notice: Undefined index: path in wfParseUrl function in mailto:?subject= URLs

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45069

   Web browser: ---
Bug ID: 45069
   Summary: PHP Notice: Undefined index: path in wfParseUrl
function in mailto:?subject= URLs
   Product: MediaWiki
   Version: 1.21-git
  Hardware: All
   URL: https://www.mediawiki.org/wiki/Thread:Project:Support_
desk/GLobafunctions.php_wfParseUrl_choking_on_url
OS: All
Status: UNCONFIRMED
  Keywords: easy
  Severity: trivial
  Priority: Unprioritized
 Component: Parser
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: martinezn...@gmail.com
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

According to the forum thread linked from this bug, when inserting a mailto:
url without email address but with a query string it gives a PHP notice.

For example:

mailto:?subject=Visit%20this%20website!body=asdad

This URL syntax makes the mail program to create a new message without TO:
address but with the subject and body defined, useful to give users an easy way
to generate an email template for sharing.

This is the solution proposed on the forum thread: Testing for isset(
$bits['path'] ) at GlobalFunctions.php line 755 corrects the error.

 /* parse_url loses the third / for file:///c:/ urls (but not on variants) */
 if (  isset( $bits['path'] ) ) {  /* new */
 if ( substr( $bits['path'], 0, 1 ) !== '/' ) {
 $bits['path'] = '/' . $bits['path'];
 }
 }  else {   /* new */
 $bits['path'] = '';
 }

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


[Bug 45070] New: Wikitable sortable - capital letters sort both before and after small ones

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45070

   Web browser: ---
Bug ID: 45070
   Summary: Wikitable sortable - capital letters sort both before
and after small ones
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: JavaScript
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: garba...@seznam.cz
CC: krinklem...@gmail.com, tpars...@wikimedia.org,
wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Capital letters sometime sort before and sometime after small ones.

Example here: http://cs.wikipedia.org/wiki/Wikipedista:Kozuch/Sorting

Current situation: A,a,b,B,C,c

Desired order: A,a,B,b,C,c
OR
a,A,b,B,c,C

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


[Bug 45071] New: Wikitable sortable has wrong order for Czech diacritics

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45071

   Web browser: ---
Bug ID: 45071
   Summary: Wikitable sortable has wrong order for Czech
diacritics
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: JavaScript
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: garba...@seznam.cz
CC: krinklem...@gmail.com, tpars...@wikimedia.org,
wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Special characters in Czech diacritics sort to the end, which is wrong.

Example here: http://cs.wikipedia.org/wiki/Wikipedista:Kozuch/Sorting

Current situation: A,a ... d, á, č, Č, ď

Desired order: A,a,á ... C, Č, c, č, ď

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


[Bug 45056] Remove head icon for personal tools from Vector and Monobook skins

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45056

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 CC||martinezn...@gmail.com

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


[Bug 45071] Wikitable sortable has wrong order for Czech diacritics

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45071

db duplicate...@googlemail.com changed:

   What|Removed |Added

 CC||duplicate...@googlemail.com

--- Comment #1 from db duplicate...@googlemail.com ---
There is no special sort order for languages yet, you can override this, when
adding to the Common.js:

mw.config.set( 'tableSorterCollation', {'Č':'C', ...} );

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


[Bug 45072] New: JobQueueGroup::getQueuesWithJobs used one query per type

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45072

   Web browser: ---
Bug ID: 45072
   Summary: JobQueueGroup::getQueuesWithJobs used one query per
type
   Product: MediaWiki
   Version: 1.21-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: JobQueue
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: duplicate...@googlemail.com
CC: aschulz4...@gmail.com, wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Looking at the log gives many queries against the job table to determine, if
some jobs exist there. The calls are out of JobQueueGroup::getQueuesWithJobs or
JobQueueGroup::getDefaultQueuesWithJobs to JobQueue::isEmpty

Maybe this can be optimized by using a DISTINCT query? That sounds faster,
than, by default, 9 queries.

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


[Bug 45040] When RevDel log entries, the (viewpagelogs) = View logs for this page link is senseless and broken

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45040

--- Comment #3 from Alex Monk (Krenair) kren...@gmail.com ---
So on Special:Log, when the target is Special:Log, we should match all subpages
as well?

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


[Bug 45040] When RevDel log entries, the (viewpagelogs) = View logs for this page link is senseless and broken

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45040

Alex Monk (Krenair) kren...@gmail.com changed:

   What|Removed |Added

  Component|Revision deletion   |Logging

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


[Bug 44768] wbeditentity ignores baserevid (causes the same alias added multiple times)

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44768

jeb...@gmail.com changed:

   What|Removed |Added

 CC||jeb...@gmail.com

--- Comment #3 from jeb...@gmail.com ---
This is a failure is really in his bot, not in the baserevid.

What happens is that he tries to add a set of data values that contains
sitelinks, labels, descriptions and aliases. This does a partial save and he
gets a failure after the save completes. As he says he adds information during
the save operation. After the failure he resends the same request, without
doing a reload. During second and third save attempt only the aliases are
stored. The reason is that he adds to the existing set. The add operation is
unconditional and will not check for unique values, it just adds the new values
and the bot says it should do so.

In my opinion the correct behavior for the bot would be to reload and inspect
the data returned when something like this happen.

If we change the behavior to a conditional add, and only accept unique values,
then duplicates should be removed before a successful save can be completed.
Handling some violating entries while new violations can't be added is
counterituitive and should be avoided.

An option could be to remove non-unique entries silently, both on save and on
load, but I'm not sure we can do that without loosing some error messages that
otherwise should be returned. For that to work it would mean to remove all
non-unique entries in EntityView, ApiGetEntities, ApiSetAliases and
ApiEditEntity. I don't think we should change Entity to handle this error
condition, that one should not have the responsibility to clean up user data.

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


[Bug 44768] wbeditentity adds aliases unconditionally (causes the same alias added multiple times)

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44768

jeb...@gmail.com changed:

   What|Removed |Added

Summary|wbeditentity ignores|wbeditentity adds aliases
   |baserevid (causes the same  |unconditionally (causes the
   |alias added multiple times) |same alias added multiple
   ||times)

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


[Bug 45068] Trying to post or answer a moodbar-comment always triggers moodbar-abuse-title

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45068

--- Comment #1 from Sumurai8 (NL) sumur...@gmail.com ---
Apparently this bug surfaced when they 'undeployed' moodbar on en.wikipedia 3
days ago. Is [[bug:45067]] also related to this 'undeployment'?

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


[Bug 45040] When RevDel log entries, the (viewpagelogs) = View logs for this page link is senseless and broken

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45040

--- Comment #4 from Liangent liang...@gmail.com ---
(In reply to comment #3)
 So on Special:Log, when the target is Special:Log, we should match all
 subpages
 as well?

This sounds OK.

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


[Bug 45073] New: Wikidata search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

   Web browser: ---
Bug ID: 45073
   Summary: Wikidata search returns nothing
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: critical
  Priority: Unprioritized
 Component: Wikidata
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: aude.w...@gmail.com
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

The search is returning nothing at all:

http://www.wikidata.org/w/index.php?title=Special:Searchsearch=Chicagofulltext=Searchprofile=allredirs=0

doesn't matter if I am on wikidata.org or www.wikidata.org

http://www.wikidata.org/w/index.php?title=Special%3ASearchprofile=allsearch=User%3AAudefulltext=Search

or 

http://www.wikidata.org/w/index.php?title=Special%3ASearchprofile=allsearch=Audefulltext=Search

do not work for me either, for non-items and normal wiki pages.

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


[Bug 45073] Wikidata search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

--- Comment #1 from Aude aude.w...@gmail.com ---
I have no idea how long it has been like this, and there very well may be a
duplicate bug but can't find it.

The search has never been good but it returning nothing is not nice at all.

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


[Bug 45074] New: Link entries of special pages are broken after site language changes

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45074

   Web browser: ---
Bug ID: 45074
   Summary: Link entries of special pages are broken after site
language changes
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Logging
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: liang...@gmail.com
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

RevDel logs of log entries for example.

We should store canonical names instead of localized names of special pages.

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


[Bug 41484] Make personal tools icon clearly and recognizably gender-neutral

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41484

--- Comment #27 from Sumana Harihareswara suma...@wikimedia.org ---
(In reply to comment #24)

 Speaking on this issue, I think we should avoid any kind of gender cues in
 the
 icon. The concept of gender is intensely personal, mercurial, and
 ephemeral.

I completely get what you're saying here (and nudge you to potentially undo the
WONTFIX on Bug 25834 to expand the currently binary gender options MediaWiki
preferences offer users).  But is it really possible to avoid *any* gender cues
in an icon given that male is, to the perception of most users, the default
state of any head-and-shoulders icon unless it includes specific not male
markers?  Defeating the unmarked state is tough.

 This bug actually points to a larger issue that we have within the software
 itself (which is that gender is a binary switch, rather than something that
 accommodates individuals who identify as genderqueer).

 (And yes, I know that namespace translations for user pages based on gender
 is
 a whole other ball of wax, and I can't hope to think we'll ever solve for
 gender-identification problems that are fundamental to a language itself).

Solve entirely?  No.  *Improve* how we deal with genderqueer people in all
languages?  Sure.

People opining on this bug ought to also look at Bug 30442 - give the user a
chance to specify the gender when opening the account - and Bug 31816 - Improve
the wording of gender selection option.

 As far as the icon itself goes, I would prefer that we also would move
 towards
 an image that is also racially neutral (thus, Munaf's grey icon is probably
 the
 best choice).

Seconding the request for the icon's skin color to be neutral. :-)

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


[Bug 45073] On Wikidata and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

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

   What|Removed |Added

Summary|Wikidata search returns |On Wikidata and other
   |nothing |wikis, search returns
   ||nothing

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


[Bug 45073] On Wikidata and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

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

   What|Removed |Added

 CC||rain...@eunet.rs
  Component|Wikidata|lucene-search-2
   Assignee|wikidata-bugs@lists.wikimed |wikibugs-l@lists.wikimedia.
   |ia.org  |org

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


[Bug 45073] On Wikidata and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

--- Comment #2 from Aude aude.w...@gmail.com ---
this problem is not just on wikidata.

http://www.mediawiki.org/w/index.php?title=Special:Searchsearch=mapnikfulltext=Searchprofile=allredirs=1

for example, Google tells me there is plenty of stuff for search to find.

or 

http://wikimania2012.wikimedia.org/w/index.php?title=Special%3ASearchprofile=defaultsearch=openstreetmapfulltext=Search

same problem :(

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


[Bug 44604] Enable Post-edit feedback on Urdu Wikipedia

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44604

Dereckson dereck...@espace-win.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |dereck...@espace-win.org
   |org |
 Ever confirmed|0   |1

--- Comment #4 from Dereckson dereck...@espace-win.org ---
Taking this bug.

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


[Bug 45075] New: Link bug within Huggle

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45075

   Web browser: ---
Bug ID: 45075
   Summary: Link bug within Huggle
   Product: Huggle
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Other
  Assignee: benap...@gmail.com
  Reporter: fox2...@web.de
CC: benap...@gmail.com, mmovc...@wikipedia.de,
wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Hello

it seems there is a Link Bug inside Huggle (noticed on en.wiki) 

after you login to the en.wiki the Vandalism page
https://en.wikipedia.org/wiki/Wikipedia:Huggle/Message wil be displayed and
shows the current Vandalism state there is a line that reads xxx/x According to
VoxelBot when you click on the VoxelBot link
http://en.wikipedia.org/w//en.wikipedia.org/wiki/User:VoxelBot open's in your
standard browser and showing an 404 since the page should be
http://en.wikipedia.org/wiki/User:VoxelBot I checked on the
https://en.wikipedia.org/wiki/Wikipedia:Huggle/Message site and the site is
correct so the error /bug must be within Huggle...

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


[Bug 44604] Enable Post-edit feedback on Urdu Wikipedia

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44604

--- Comment #5 from Dereckson dereck...@espace-win.org ---
Gerrit change 49378

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


[Bug 44653] texvc missing from 1.21wmf9

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44653

--- Comment #4 from Sam Reed (reedy) s...@reedyboy.net ---
(In reply to comment #3)
 It's happening again, yet apparently only for servers mw1161-1168 (although I
 haven't checked the API Apaches). mw1017-1113 appear to be working normally.
 
 (User report at
 https://en.wikipedia.org/wiki/Wikipedia:
 Village_pump_(technical)#Missing_texvc_executable
 )

New servers commissioned withotu it being run, i think.

Fixed either way.

Per Tim, we really just need to package this and install it that way so this
doesn't happen

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


[Bug 44653] texvc missing from 1.21wmf9

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44653

Sam Reed (reedy) s...@reedyboy.net changed:

   What|Removed |Added

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

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


[Bug 45073] On Wikidata and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||federicol...@tiscali.it

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


[Bug 45076] New: Package texvc and distribute that way

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45076

   Web browser: ---
Bug ID: 45076
   Summary: Package texvc and distribute that way
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: General/Unknown
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: s...@reedyboy.net
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Per Tim, we should distribute texvc as a deb, rather than compiling per server
as changes to it are so infrequent, like with other dependancies.

That way, it can be installed automatically and people don't forget to run
scap-recompile on servers.

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


[Bug 45051] Phase out the Vector extension; merge the good parts into core

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45051

misdre+mediaw...@gmail.com changed:

   What|Removed |Added

 CC||misdre+mediaw...@gmail.com

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


[Bug 43066] Replace search box with item selector

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43066

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

   Keywords||patch-in-gerrit

--- Comment #3 from Nemo federicol...@tiscali.it ---
Gerrit change 49263

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


[Bug 45075] Link bug within Huggle

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45075

Peter Bena benap...@gmail.com changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Peter Bena benap...@gmail.com ---
this is a special page, in fact it shouldn't contain links like that - it was
never designed to do that :/ I can't think of a simple fix in huggle 2x, on
other hand this bug is rather trivial - should be fixed in huggle 3x

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


[Bug 43020] Auto-suggest in the search box should work on item labels

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43020

--- Comment #3 from Nemo federicol...@tiscali.it ---
(In reply to comment #2)
 In short, does this mean making the gadget
 https://www.wikidata.org/wiki/MediaWiki:Gadget-Search.js (or equivalent) the
 default search?

Maybe that's actually bug 43066; autosuggests probably requires something more
than just using that gadget (and its underlying infrastructure)?

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


[Bug 45077] New: On login successful page, returnto link is broken

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45077

   Web browser: ---
Bug ID: 45077
   Summary: On login successful page, returnto link is broken
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: aude.w...@gmail.com
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

If I was on Wikidata:Project_chat, then login, the login success page give me
the following.

a href=//wikidata.org/wiki/Project_chat class=extiw
title=wikidata:Project chatwikidata:Project chat/a

and it redirects me to http://wikidata.org/wiki/Project_chat

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


[Bug 45077] On login successful page, returnto link is broken

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45077

--- Comment #1 from Aude aude.w...@gmail.com ---
this might be a config issue and nothing the extension can fix, but not sure
without further investigating this

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


[Bug 41484] User icon in Vector's personal portlet should be gender-neutral

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41484

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

Summary|Make personal tools icon|User icon in Vector's
   |clearly and recognizably|personal portlet should be
   |gender-neutral  |gender-neutral

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


[Bug 41484] User icon in Vector's personal portlet should be gender-neutral

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41484

Liangent liang...@gmail.com changed:

   What|Removed |Added

 CC||liang...@gmail.com

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


[Bug 45073] On Wikidata and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

jeb...@gmail.com changed:

   What|Removed |Added

 CC||jeb...@gmail.com

--- Comment #3 from jeb...@gmail.com ---
Checked at nowiki and the same thing there.

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


[Bug 45073] On Wikidata and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

Maarten Dammers maar...@mdammers.nl changed:

   What|Removed |Added

 CC||maar...@mdammers.nl

--- Comment #4 from Maarten Dammers maar...@mdammers.nl ---
Is the behavior like https://bugzilla.wikimedia.org/show_bug.cgi?id=43920 ?

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


[Bug 45073] On Wikidata, Commons and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

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

   What|Removed |Added

Summary|On Wikidata and other   |On Wikidata, Commons and
   |wikis, search returns   |other wikis, search returns
   |nothing |nothing

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


[Bug 43920] Frequent search timeouts at Commons returning no results

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43920

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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||aude.w...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #1 from Aude aude.w...@gmail.com ---


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

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


[Bug 45073] On Wikidata, Commons and other wikis, search returns nothing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45073

--- Comment #5 from Aude aude.w...@gmail.com ---
*** Bug 43920 has been marked as a duplicate of this bug. ***

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


[Bug 43920] Frequent search timeouts at Commons returning no results

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43920

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

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |---

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


[Bug 45078] New: fcron not working on bots-4

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45078

   Web browser: ---
Bug ID: 45078
   Summary: fcron not working on bots-4
   Product: Wikimedia Labs
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: blocker
  Priority: Unprioritized
 Component: bots
  Assignee: benap...@gmail.com
  Reporter: m.p.ropp...@web.de
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

fcron doesn't work on bots-4 since approximately the beginning of February: my
jobs are apparently not executed. I have no idea why. My bot scripts cannot run
anymore ([vixie] cron on our boxes doesn't support timezones or, more
importantly, DST). My IRC requests of installing software on bots-[b]nrN die
without any resolution, I have to resort to toolserver. Please fix, thx. gifti

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


[Bug 43920] Frequent search timeouts at Commons returning no results

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43920

--- Comment #2 from Maarten Dammers maar...@mdammers.nl ---
This is not a duplicate. This is a bug report for the behavior before the whole
search farm seems to have imploded. If some would have bothered to look into
this it would have deteriorated into a complete search outage.

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


[Bug 41484] User icon in Vector's personal portlet (personal tools) should be gender-neutral

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41484

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

Summary|User icon in Vector's   |User icon in Vector's
   |personal portlet should be  |personal portlet (personal
   |gender-neutral  |tools) should be
   ||gender-neutral

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


[Bug 43920] Frequent search timeouts at Commons returning no results

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43920

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 CC||federicol...@tiscali.it

--- Comment #3 from Nemo federicol...@tiscali.it ---
(In reply to comment #2)
 This is not a duplicate. This is a bug report for the behavior before the
 whole
 search farm seems to have imploded. 

Yes, it's definitely not the same bug.

 If some would have bothered to look into
 this it would have deteriorated into a complete search outage.

Are you sure? It looks like a duplicate of bug 42423.

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


[Bug 43920] Frequent search timeouts at Commons returning no results

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43920

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Nemo federicol...@tiscali.it ---


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

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


[Bug 42423] Wikimedia wiki search is broken (outputting inconsistent results)

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42423

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 CC||maar...@mdammers.nl

--- Comment #50 from Nemo federicol...@tiscali.it ---
*** Bug 43920 has been marked as a duplicate of this bug. ***

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


[Bug 45056] Remove user icon from personal tools in Vector and Monobook skins

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45056

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

Summary|Remove head icon for|Remove user icon from
   |personal tools from Vector  |personal tools in Vector
   |and Monobook skins  |and Monobook skins

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


[Bug 23023] Admin shortcuts are not working in Vector

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23023

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||wikibugs-l@lists.wikimedia.
   ||org
  Component|Vector  |Interface
Version|unspecified |1.17
 Resolution|--- |WORKSFORME
Product|MediaWiki extensions|MediaWiki
   Target Milestone|--- |1.18.0 release

--- Comment #9 from Krinkle krinklem...@gmail.com ---
Presumably somewhere in the UsabilityInitiative iterations accesskey attributes
were broken, but ever since the skin landed in core this was fine afaik.

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


[Bug 44881] Vector skin extension issues (tracking)

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44881

Bug 44881 depends on bug 23023, which changed state.

Bug 23023 Summary: Admin shortcuts are not working in Vector
https://bugzilla.wikimedia.org/show_bug.cgi?id=23023

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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


[Bug 45056] Remove user icon from personal tools in Vector and Monobook skins

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45056

Danny B. dann...@email.cz changed:

   What|Removed |Added

 CC||dann...@email.cz

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


[Bug 45066] Disable anonymous page creation at tr.wikipedia

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45066

Ariel T. Glenn ar...@wikimedia.org changed:

   What|Removed |Added

 CC||ar...@wikimedia.org

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


[Bug 43467] Add invert selection in [[Special:NewPages]]

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43467

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Bug 45054] rsvg not creating thumbnails

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45054

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords||patch-in-gerrit
 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |esand...@wikimedia.org
   |org |

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


[Bug 45064] Create block log entries on HideUser blocks

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45064

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords||patch-in-gerrit
 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |liang...@gmail.com
   |org |

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


[Bug 37120] Special:Undelete on suppressed revisions

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37120

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |kren...@gmail.com
   |org |

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


[Bug 44823] wikibase entityselector should find entities by their IDs

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44823

Luke Boyling harryboy...@gmail.com changed:

   What|Removed |Added

 CC||harryboy...@gmail.com

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


[Bug 43282] Add per-namespace restrictions and rights to Special:ListGroupRights

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43282

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |kren...@gmail.com
   |org |

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


[Bug 44987] Allow n=form in plural syntax

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44987

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords||patch-in-gerrit

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


[Bug 35753] Add a way to use {{FORMATNUM}} to just do digit transform

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35753

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Bug 43172] Reword some messages on account creation interface for logged in users

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43172

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords||patch-in-gerrit

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


[Bug 2867] Interwiki lists sort in phonetic, site-defined order

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=2867

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-reviewed   |patch-in-gerrit
 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |t...@tim-landscheidt.de
   |org |

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


[Bug 41291] Add checkbox to submit user-agent info via built-in feedback form

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41291

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords||patch-in-gerrit

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


[Bug 41337] Fatal error: Call to a member function msg() on a non-object at Preferences.php

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41337

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |ialex.w...@gmail.com
   |org |

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


[Bug 38632] [Fatal error] Attempt to get the latitude of an invalid location

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38632

David Leonelli leonelli.da...@gmail.com changed:

   What|Removed |Added

 CC||leonelli.da...@gmail.com

--- Comment #7 from David Leonelli leonelli.da...@gmail.com ---
Although this is listed as fixed/resolved I still get exactly the same error. 

May config is as below the alphas are an attempt to see if an update would fix
the error. Also I have tried initializing Maps and SM outside of SB.

Are you still getting reports from others?

PS, Thanks for all your hard work on SMW!   

MediaWiki 1.20.2
PHP 5.3.13 (cgi-fcgi)
MySQL 5.0.91-log

Semantic Bundle (Version 1.8alpha)
Semantic Compound Queries (Version 0.3.4)
Semantic Drilldown (Version 1.2.4)
Semantic Forms (Version 2.5.1)
Semantic Forms Inputs (Version 0.7 alpha)
Semantic Image Input (Version 0.2 alpha)
Semantic Internal Objects (Version 0.7.1)
Semantic Maps (Version 2.0.1.2)
Semantic MediaWiki (Version 1.8.0.1)
Semantic Result Formats (Version 1.8)
SemanticTasks (Version 1.4.1)
Admin Links (Version 0.1.7)
Data Transfer (Version 0.3.12)
Nuke (Version 1.1.7)
Renameuser 
Replace Text (Version 0.9.5)
Parser hooks
Arrays (Version 2.0rc3 alpha)
External Data (Version 1.4.2)
Header Tabs (Version 0.9.2)
Maps (Version 2.1 alpha)
Page Schemas (Version 0.3.1)
ParserFunctions (Version 1.4.1)
ConfirmEdit (Version 1.1)
Other
Gadgets 
Validator (Version 0.5.1)
Vector (Version 0.3.0)
WikiEditor (Version 0.3.1)

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


[Bug 19991] Provide default time zone selection in installer

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19991

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Bug 25592] LogEventsList::showLogExtract is affected by dir=prev

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25592

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Bug 32483] en.wp uses lang=simple for simple: interlang links.

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32483

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |hartman.w...@gmail.com
   |org |

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


[Bug 41021] Unknown -moz-* properties of Mozilla Firefox

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41021

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords||patch-in-gerrit
 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |das.abh...@gmail.com
   |org |

--- Comment #7 from Jesús Martínez Novo (Ciencia Al Poder) 
martinezn...@gmail.com ---
Gerrit change 46281

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


[Bug 44385] The situation with $.collapsibleTabs and its Vector ext. counterpart sucks badly

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44385

Jeffrey Gill jeffrey.p.g...@gmail.com changed:

   What|Removed |Added

 CC||jeffrey.p.g...@gmail.com

--- Comment #5 from Jeffrey Gill jeffrey.p.g...@gmail.com ---
With commit 8e01e294b632bcd340789133c3ea360319e7977d (Fri Feb 15 18:50:40 2013
+), I am receiving this error (when $wgShowExceptionDetails = true) on an
otherwise vanilla wiki running MediaWiki 1.20.2 (perhaps I need to be running
the bleeding edge version of MediaWiki?):

MediaWiki internal error.

Original exception: exception 'MWException' with message 'ResourceLoader
duplicate registration error. Another module has already been registered as
jquery.collapsibleTabs' in
/var/www/wiki/includes/resourceloader/ResourceLoader.php:238
Stack trace:
#0 /var/www/wiki/includes/resourceloader/ResourceLoader.php(206):
ResourceLoader-register(Array)
#1 /var/www/wiki/includes/OutputPage.php(2504): ResourceLoader-__construct()
#2 /var/www/wiki/includes/OutputPage.php(432): OutputPage-getResourceLoader()
#3 /var/www/wiki/includes/OutputPage.php(457): OutputPage-filterModules(Array,
'bottom')
#4 /var/www/wiki/includes/OutputPage.php(527): OutputPage-getModules(true,
'bottom', 'mModuleMessages')
#5 /var/www/wiki/includes/OutputPage.php(2757):
OutputPage-getModuleMessages(true, 'bottom')
#6 /var/www/wiki/includes/OutputPage.php(2870):
OutputPage-getScriptsForBottomQueue(false)
#7 /var/www/wiki/includes/Skin.php(583): OutputPage-getBottomScripts()
#8 /var/www/wiki/includes/SkinTemplate.php(390): Skin-bottomScripts()
#9 /var/www/wiki/includes/OutputPage.php(1989): SkinTemplate-outputPage()
#10 /var/www/wiki/includes/Wiki.php(543): OutputPage-output()
#11 /var/www/wiki/includes/Wiki.php(446): MediaWiki-main()
#12 /var/www/wiki/index.php(59): MediaWiki-run()
#13 {main}

Exception caught inside exception handler: exception 'MWException' with message
'ResourceLoader duplicate registration error. Another module has already been
registered as jquery.collapsibleTabs' in
/var/www/wiki/includes/resourceloader/ResourceLoader.php:238
Stack trace:
#0 /var/www/wiki/includes/resourceloader/ResourceLoader.php(206):
ResourceLoader-register(Array)
#1 /var/www/wiki/includes/OutputPage.php(2504): ResourceLoader-__construct()
#2 /var/www/wiki/includes/OutputPage.php(432): OutputPage-getResourceLoader()
#3 /var/www/wiki/includes/OutputPage.php(457): OutputPage-filterModules(Array,
'bottom')
#4 /var/www/wiki/includes/OutputPage.php(527): OutputPage-getModules(true,
'bottom', 'mModuleMessages')
#5 /var/www/wiki/includes/OutputPage.php(2757):
OutputPage-getModuleMessages(true, 'bottom')
#6 /var/www/wiki/includes/OutputPage.php(2870):
OutputPage-getScriptsForBottomQueue(false)
#7 /var/www/wiki/includes/Skin.php(583): OutputPage-getBottomScripts()
#8 /var/www/wiki/includes/SkinTemplate.php(390): Skin-bottomScripts()
#9 /var/www/wiki/includes/OutputPage.php(1989): SkinTemplate-outputPage()
#10 /var/www/wiki/includes/Exception.php(227): OutputPage-output()
#11 /var/www/wiki/includes/Exception.php(272): MWException-reportHTML()
#12 /var/www/wiki/includes/Exception.php(620): MWException-report()
#13 /var/www/wiki/includes/Exception.php(690):
MWExceptionHandler::report(Object(MWException))
#14 /var/www/wiki/includes/Wiki.php(449):
MWExceptionHandler::handle(Object(MWException))
#15 /var/www/wiki/index.php(59): MediaWiki-run()
#16 {main}

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


[Bug 44495] Implement lc, lcfirst, uc, and ucfirst magic words in jqueryMsg

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44495

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

   Target Milestone|--- |Future release
   Severity|normal  |enhancement

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


[Bug 20789] What links here pager says No pages link to ... when it's not true

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20789

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

   Keywords|patch-need-review   |
 Status|NEW |ASSIGNED
 CC||martinezn...@gmail.com
   Assignee|beezja...@yahoo.com |jarry1...@gmail.com

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


[Bug 44385] The situation with $.collapsibleTabs and its Vector ext. counterpart sucks badly

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44385

--- Comment #6 from Bartosz Dziewoński matma@gmail.com ---
Yes, Vector after this change is incompatible with older MediaWiki.

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


[Bug 27725] Username invisible on thread overview page

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27725

--- Comment #2 from Krinkle krinklem...@gmail.com ---
(In reply to comment #0)
 Created attachment 8212 [details]
 The IP-adres is not visible in the red marked areas.
 
 Look at :
 
 http://www.mediawiki.org/w/index.php?title=Project:
 Support_deskoffset=20110225115614#help_2467
 
 The username/ip-adres is not visible
 
 Source code shows an empty element:
 
 div class=lqt-thread-signature
 span class=lqt-thread-user-signature/span
 span class=lqt-thread-toolbar-timestamp09:31, 19 February
 2011/span/div

There is two ways to get to it:

On the stand-alone thread page:

https://www.mediawiki.org/w/index.php?title=Thread:Project:Support_desk/help

And via the overview with a certain offset:

https://www.mediawiki.org/w/index.php?title=Project:Support_deskdir=prevoffset=20110225102033limit=20#help_2467

(though this latter link can get outdated as the offset refers to the time the
thread was last updated, not when it was created, so it it shifting).

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


[Bug 27725] Username invisible on thread overview page

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27725

--- Comment #3 from Krinkle krinklem...@gmail.com ---
The screenshot attached is stil accurate for these two links.

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


[Bug 43915] Maintenance script to delete pages in the MediaWiki namespace equal to system default

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43915

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

   Keywords|patch-in-gerrit |
 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

--- Comment #8 from Krinkle krinklem...@gmail.com ---
(In reply to comment #1)
 Change-Id: I97529b775d4db4f996c40395c891a0049d2e43c5

Landed in master.

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


[Bug 43917] Create and run a maintenance script on all wikis to delete redundant MediaWiki pages

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43917

Bug 43917 depends on bug 43915, which changed state.

Bug 43915 Summary: Maintenance script to delete pages in the MediaWiki 
namespace equal to system default
https://bugzilla.wikimedia.org/show_bug.cgi?id=43915

   What|Removed |Added

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

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


[Bug 27725] Username invisible on thread overview page

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27725

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 CC||martinezn...@gmail.com

--- Comment #4 from Jesús Martínez Novo (Ciencia Al Poder) 
martinezn...@gmail.com ---
The signature is editable, even for anons, both when creating/adding a new
message and when editing an existing message.

Maybe the IP intentionally edited the signature to leave it blank, and it seems
a legit way to reproduce this.

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


[Bug 43917] Run the maintenance script on all wikis to delete redundant MediaWiki pages

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43917

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

   Keywords||shell
Summary|Create and run a|Run the maintenance script
   |maintenance script on all   |on all wikis to delete
   |wikis to delete redundant   |redundant MediaWiki pages
   |MediaWiki pages   |

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


[Bug 44938] Create a mailing list for Maithili (mai) Wikipedia

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44938

--- Comment #2 from Rajesh Ranjan rajeshka...@yahoo.com ---
Thanks! The List name is fine.

Gajendra Thakur ggajen...@videha.com 

Please add the ^^ as alternate list admin.

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


[Bug 38632] [Fatal error] Attempt to get the latitude of an invalid location

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38632

--- Comment #8 from Jeroen De Dauw jeroen_ded...@yahoo.com ---
 Although this is listed as fixed/resolved I still get exactly the same error.

I'm guessing it is still there. It however can no longer be there on the latest
dev version as the relevant code no longer exists, and thus will also not be
present in the next release.

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


[Bug 43020] Auto-suggest in the search box should work on item labels

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43020

jeb...@gmail.com changed:

   What|Removed |Added

 CC||jeb...@gmail.com

--- Comment #4 from jeb...@gmail.com ---
The solution in https://www.wikidata.org/wiki/MediaWiki:Gadget-Search.js is
only a lookup for an exact match, it is not a real search. Due to a
misunderstanding of the differences between site ids and language codes it will
fail for several requests, For example the site id for Norwegian Bokmål
Wikipedia is nowiki and the language code for Norwegian Bokmål is nb. Trying to
build the site id from the language code the way this gadget works will give
you the id nbwiki which is undefined.

A working search should give results across all languages and should not use
either language codes or site ids unless this is specified as part of the
search.

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


[Bug 45079] New: Set up P as an alias for Property namespace

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45079

   Web browser: ---
Bug ID: 45079
   Summary: Set up P as an alias for Property namespace
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
   URL: https://www.wikidata.org/w/index.php?title=Wikidata:Pr
oject_chatoldid=6697995#Items_vs._properties
OS: All
Status: NEW
  Keywords: shell
  Severity: normal
  Priority: Unprioritized
 Component: Wikidata
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: mybugs.m...@gmail.com
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Per
[[wikidata:Wikidata:Project_chat#Items_vs._properties]]
please add P as an alias for Property namespace.

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


[Bug 45071] Wikitable sortable has wrong order for Czech diacritics

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45071

--- Comment #2 from Jan Kucera (Kozuch) garba...@seznam.cz ---
Ok, but this should be solved globally, for all users by default without having
to do an extra setting (via common.js or whatever else).

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


[Bug 41484] User icon in Vector's personal portlet (personal tools) should be gender-neutral

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=41484

Pavel Selitskas p.selits...@gmail.com changed:

   What|Removed |Added

 CC|p.selits...@gmail.com   |

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


[Bug 38632] [Fatal error] Attempt to get the latitude of an invalid location

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38632

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

Version|unspecified |REL1_20 branch
   Target Milestone|--- |MW 1.21 version

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


[Bug 45080] New: Change redirection of http://it.wikidata.org

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45080

   Web browser: ---
Bug ID: 45080
   Summary: Change redirection of http://it.wikidata.org
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: Unprioritized
 Component: Wikidata
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: kikkocrist...@gmail.com
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

The address http://it.wikidata.org currently redirects anonymous users to
[[Wikidata:Main Page]] https://www.wikidata.org/wiki/Wikidata:Main_Page.
May you make it point to [[Wikidata:Pagina principale]]
https://www.wikidata.org/wiki/Wikidata:Pagina_principale (the main page in
Italian)?
See also:
https://www.wikidata.org/w/index.php?title=Wikidata:Project_chatoldid=6699368#Two_notes_about_domains

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


[Bug 43020] Auto-suggest in the search box should work on item labels

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43020

--- Comment #5 from Nemo federicol...@tiscali.it ---
Thank you. Still, at least Italian users don't use anything else, considering
the normal search completely useless, and that one far superior.
If the new search you're building is even better and will kill the useless
current one, it's fantastic!

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


[Bug 45081] New: Logged out users, non-admins can see deleted edits (but not content thereof) in RecentChanges

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45081

   Web browser: ---
Bug ID: 45081
   Summary: Logged out users, non-admins can see deleted edits
(but not content thereof) in RecentChanges
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Recent changes
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: pirsquare...@gmail.com
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

I can see edits (i.e., just the listing: timestamp, user, +/- diff, etc.) of at
least one deleted page in the RecentChanges on Meta-Wiki.
Here is the log. I have replaced the IP of the page's creator with 127.0.0.1,
but you can still see it in the RCs:

(Deletion log); 15:52 . . Thehelpfulone (talk | contribs) deleted page
Www.wikipedia.com template ‎(obsolete)
(diff | hist) . . Www.wikipedia.com template‎; 15:52 . . (-279)‎ . .
‎PiRSquared17 (talk | contribs)‎ (fix)
(diff | hist) . . Www.wikipedia.com template‎; 15:52 . . (+376)‎ . .
‎PiRSquared17 (talk | contribs)‎ (comment)
[... 2 unrelated edits here ...]
(diff | hist) . . N Www.wikipedia.com template‎; 15:49 . . (+46,539)‎ . .
‎127.0.0.1 (talk)‎ (Created page with !DOCTYPE html html lang=mul
dir=ltr head !-- Sysops: Please do not edit the main template directly;
update /temp and synchronise. -- meta charset=utf-8 title...)

Is this a known problem? I can't duplicate it on another page, but other users
confirm that these. Maybe the timestamps of my last edit to the page and the
deletion are the same? This is the page:
[https://meta.wikimedia.org/wiki/Www.wikipedia.com_template].

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


[Bug 45081] Deletion on metawiki incomplete, recentchanges rows still showing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45081

Alex Monk (Krenair) kren...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||kren...@gmail.com
Summary|Logged out users,   |Deletion on metawiki
   |non-admins can see deleted  |incomplete, recentchanges
   |edits (but not content  |rows still showing
   |thereof) in RecentChanges   |
 Ever confirmed|0   |1

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


[Bug 45081] Deletion on metawiki incomplete, recentchanges rows still showing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45081

--- Comment #1 from pirsquare...@gmail.com ---
Two other users have confirmed it. According to one of them, my edit was 1
second before the deletion on an RC feed.

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


[Bug 45081] Deletion on metawiki incomplete, recentchanges rows still showing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45081

--- Comment #2 from Alex Monk (Krenair) kren...@gmail.com ---
I see it as well:

(Deletion log); 15:52 . . Thehelpfulone (talk | contribs) deleted page
Www.wikipedia.com template ‎(obsolete)
(diff | hist) . . Www.wikipedia.com template‎; 15:52 . . (-279)‎ . .
‎PiRSquared17 (talk | contribs)‎ (fix)
(diff | hist) . . Www.wikipedia.com template‎; 15:52 . . (+376)‎ . .
‎PiRSquared17 (talk | contribs)‎ (comment)
(diff | hist) . . N Www.wikipedia.com template‎; 15:49 . . (+46,539)‎ . .
‎69.148.170.68 (talk)‎ (Created page with !DOCTYPE html html lang=mul
dir=ltr head !-- Sysops: Please do not edit the main template directly;
update /temp and synchronise. -- meta charset=utf-8 title...)

When you click the links for this page, you're given a This page doesn't
currently exist error with the deletion log. The links are shown as blue as if
the page still exists as well.

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


[Bug 44920] MediaWiki:Wikibase-propertyedittool-counter is not being parsed

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44920

Nischay Nahata nischay...@gmail.com changed:

   What|Removed |Added

   Keywords||i18n
 CC||nischay...@gmail.com

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


[Bug 45067] Amount of characters left not properly resolved

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45067

Nischay Nahata nischay...@gmail.com changed:

   What|Removed |Added

   Keywords||i18n

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


[Bug 45081] Deletion on metawiki incomplete, recentchanges rows still showing

2013-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45081

Jesús Martínez Novo (Ciencia Al Poder) martinezn...@gmail.com changed:

   What|Removed |Added

 CC||martinezn...@gmail.com

--- Comment #3 from Jesús Martínez Novo (Ciencia Al Poder) 
martinezn...@gmail.com ---
I'm seeing the same also.

The page appears with the following oldids in RecentChanges:

* 5247549
* 5247548
* 5247545

Of course, trying to access them gives the badtitle message.

Looks like the deletion failed to remove the related entries in RecentChanges.

Someone needs to review server logs to identify if an error occurred while
deleting the page, ask Thehelpfulone (who deleted the page) if he get any error
message when deleting, and maybe try to restore the page and delete it again to
see if the entries disappear from rc.

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


  1   2   3   >