[Bug 22613] Potential MySQL syntax error in function tableNamesWithUseIndexOrJOIN

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22613

--- Comment #2 from T. Gries  2010-02-22 07:18:45 UTC ---
*** CORRECTION ***

SELECT  *  FROM `recentchanges` FORCE INDEX (rc_timestamp),`page` LEFT JOIN
`tag_summary` ON ((ts_rc_id=rc_id))  WHERE (rc_timestamp >= '2010021100')
AND rc_bot = '0' AND (page_latest=rc_this_oldid)  ORDER BY rc_timestamp DESC
LIMIT 50 

This throws an error Unknown column 'rc_id' in 'on clause' (localhost) (MySQL
>= 5.0.12 due to new JOIN processing)

This ad-hoc modification works (parentheses added around the table names
outside the JOIN)

SELECT  *  FROM (`recentchanges` FORCE INDEX (rc_timestamp),`page`) LEFT JOIN
`tag_summary` ON ((ts_rc_id=rc_id))  WHERE (rc_timestamp >= '2010021100')
AND rc_bot = '0' AND (page_latest=rc_this_oldid)  ORDER BY rc_timestamp DESC
LIMIT 50

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

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


[Bug 22613] Potential MySQL syntax error in function tableNamesWithUseIndexOrJOIN

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22613

T. Gries  changed:

   What|Removed |Added

   Keywords||patch, testme
URL||http://dev.mysql.com/doc/re
   ||fman/5.0/en/join.html

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

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


[Bug 22613] Potential MySQL syntax error in function tableNamesWithUseIndexOrJOIN

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22613

--- Comment #1 from T. Gries  2010-02-22 07:13:41 UTC ---
Created an attachment (id=7157)
 --> (https://bugzilla.wikimedia.org/attachment.cgi?id=7157)
ad-hoc and hackish patch - experimental and for showing a solution for  a
specific query - not to be committed to SVN

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

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


[Bug 22613] New: Potential MySQL syntax error in function tableNamesWithUseIndexOrJOIN

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22613

   Summary: Potential MySQL syntax error in function
tableNamesWithUseIndexOrJOIN
   Product: MediaWiki
   Version: 1.16-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: Database
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: m...@tgries.de


During my work using the hook "SpecialRecentChangesQuery" (code and detailed
analysis see [1]) I found a reproducible problem which arise only under the
following conditions:

- if MySQL >= 5.0.12 AND
- if the hook function for SpecialRecentChangesQuery adds table(s) to $table[].

Analysis:

The code in [1] modifies the Recent Changes main SQL statement to this 

SELECT  *  FROM `recentchanges` FORCE INDEX (rc_timestamp),`page` LEFT JOIN
`tag_summary` ON ((ts_rc_id=rc_id))  WHERE (rc_timestamp >= '2010021100')
AND rc_bot = '0'  ORDER BY rc_timestamp DESC LIMIT 50  

This throws an error Unknown column 'rc_id' in 'on clause' (localhost) (MySQL
>= 5.0.12 due to new JOIN processing)

This ad-hoc modification works (parentheses added around the table names
outside the JOIN)

SELECT  *  FROM (`recentchanges` FORCE INDEX (rc_timestamp),`page`) LEFT JOIN
`tag_summary` ON ((ts_rc_id=rc_id))  WHERE (rc_timestamp >= '2010021100')
AND rc_bot = '0'  ORDER BY rc_timestamp DESC LIMIT 50  

I add an ad-hoc and very hacky - only experimental - patch, which corrects the
problem in a certain case for [1]. The patch is not mentioned for SVN
submisson.

Citing [2]: Beginning with MySQL 5.0.12, natural joins and joins with USING,
including outer join variants,  are processed according to the SQL:2003
standard. The goal was to align the syntax and semantics of MySQL with respect
to NATURAL JOIN and JOIN ... USING according to SQL:2003. However, these
changes in join processing can result in different output columns for some
joins. Also, some queries that appeared to work correctly in older versions
must be rewritten to comply with the standard.

Citing [3]:
SELECT * FROM t1, t2 JOIN t3 ON (t1.i1 = t3.i3);

Previously, the SELECT was legal due to the implicit grouping of t1,t2 as
(t1,t2). Now the JOIN takes precedence, so the operands for the ON clause are
t2 and t3. Because t1.i1 is not a column in either of the operands, the result
is an Unknown column 't1.i1' in 'on clause' error. To allow the join to be
processed, group the first two tables explicitly with parentheses so that the
operands for the ON clause are (t1,t2) and t3:

SELECT * FROM (t1, t2) JOIN t3 ON (t1.i1 = t3.i3);

Alternatively, avoid the use of the comma operator and use JOIN instead:
SELECT * FROM t1 JOIN t2 JOIN t3 ON (t1.i1 = t3.i3);


[1] http://www.mediawiki.org/wiki/Extension:OnlyRecentRecentChanges
[2] MySQL Manual Join Processing Changes in MySQL 5.0.12
http://dev.mysql.com/doc/refman/5.0/en/join.html
[3] Bug #19053 MySQL Unknown column in 'on clause'
http://bugs.mysql.com/bug.php?id=19053

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

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


[Bug 11125] Load "wiki does not exist" page from Meta

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11125

--- Comment #29 from This, that and the other  2010-02-22 
06:47:12 UTC ---
Now that Brion's gone, do we need a new assignee?

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

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


[Bug 22268] LocalSettings.php $wgHTTPProxy should take default value from environment variable $http_proxy if present

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22268

--- Comment #6 from Mark A. Hershberger  2010-02-22 
05:13:40 UTC ---
fixed in r62811

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

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


[Bug 22604] Enable Mobile Wiktionary and Mobile WikiSource for the Malayalam language

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22604

Shiju Alex  changed:

   What|Removed |Added

 CC||anoop@gmail.com,
   ||jacob.j...@gmail.com,
   ||junu...@gmail.com,
   ||jyothi...@gmail.com,
   ||me.prav...@gmail.com,
   ||sadik.kha...@gmail.com,
   ||shijua...@hotmail.com,
   ||vss...@gmail.com

--- Comment #2 from Shiju Alex  2010-02-22 02:34:06 UTC 
---
According to me this should have been enabled for Wiktionary before any other
projects.

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

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


[Bug 20325] Closure of many projects (nlwn, zawb, knwb, ngwp, kkwq, simplewb)

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20325

Casey Brown  changed:

   What|Removed |Added

 CC||cbrown1...@gmail.com
Summary|Close Dutch Wikinews|Closure of many projects
   ||(nlwn, zawb, knwb, ngwp,
   ||kkwq, simplewb)

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

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


[Bug 20325] Close Dutch Wikinews

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20325

Jessica Barrett  changed:

   What|Removed |Added

 CC||lile...@yahoo.ca

--- Comment #8 from Jessica Barrett  2010-02-22 02:10:28 UTC 
---
Per http://meta.wikimedia.org/wiki/Proposals_for_closing_projects

Additional projects to close:
Zhuang Wikibooks (za)
Kannada Wikibooks (kn)
Ndonga Wikipedia (ng)
Kazakh Wikiquote (kk)
Simple English Wikibooks

Thanks.

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

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


[Bug 19194] The search function on Wikipedia won't select (Modern + webkit browsers - Safari, Chrome)

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19194

Aryeh Gregor  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #14 from Aryeh Gregor  2010-02-22 
00:00:48 UTC ---
Lisa committed the workaround in r62794, but thedj reported problems with it,
and also with the simple display: block removal I suggested.  I committed
r62795, which removes display: block but also sets an explicit width to work
around line-wrapping issues.  Marking fixed.

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

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


[Bug 19194] The search function on Wikipedia won't select (Modern + webkit browsers - Safari, Chrome)

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19194

Aryeh Gregor  changed:

   What|Removed |Added

 CC||simetrical+wikib...@gmail.c
   ||om

--- Comment #13 from Aryeh Gregor  2010-02-21 
23:37:12 UTC ---
(In reply to comment #11)
> Thanks for the link to the bug report at WebKit.  That was filed back in 
> August
> of last year.  Since we have a work-around is there an objection to applying
> this to modern/main.css and closing this bug?

IMO, we should just remove the "display: block" from the #searchInput rule in
modern/main.css, unless anyone knows of a good reason for it.  Monobook doesn't
use that, and removing it is sufficient to get rid of the problem.

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

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


[Bug 19194] The search function on Wikipedia won't select (Modern + webkit browsers - Safari, Chrome)

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19194

--- Comment #12 from Derk-Jan Hartman  2010-02-21 
23:22:19 UTC ---
I consider it to be a hack, but why not. it's not if we can leave all those
webkit users out to dry, because the webkit bugzilla isn't used by actual
webkit developers

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

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


[Bug 19194] The search function on Wikipedia won't select (Modern + webkit browsers - Safari, Chrome)

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19194

--- Comment #11 from Lisa Ridley  2010-02-21 23:20:01 UTC 
---
Thanks for the link to the bug report at WebKit.  That was filed back in August
of last year.  Since we have a work-around is there an objection to applying
this to modern/main.css and closing this bug?

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

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


[Bug 19194] The search function on Wikipedia won't select (Modern + webkit browsers - Safari, Chrome)

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19194

--- Comment #10 from Derk-Jan Hartman  2010-02-21 
23:14:28 UTC ---
I provided the webkit folks with a reduced case of this problem.

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

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


[Bug 19194] The search function on Wikipedia won't select (Modern + webkit browsers - Safari, Chrome)

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19194

Lisa Ridley  changed:

   What|Removed |Added

 CC||lhrid...@gmail.com

--- Comment #9 from Lisa Ridley  2010-02-21 22:52:31 UTC ---
@media screen and (-webkit-min-device-pixel-ratio:0) {
/** safari and chrome specific hack **/
#searchInput {
display: inline;
}
}

The above can be added to modern/main.css and it will fix the issue for Chrome
and Safari browsers (and any other browser using WebKit) only.

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

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


[Bug 22603] Malformed response when no params provided

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

--- Comment #10 from Smallman  2010-02-21 22:36:45 
UTC ---
Well you are specifying which module.

If I do http://en.wikipedia.org/w/api.php?action=quey&format=xml
I do get an error response:




But if I do http://en.wikipedia.org/w/api.php?action=query&format=xml
I get 


It should throw an error that no parameter was specified, not give no
information.

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

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


[Bug 22612] Restore amethyst folder on skins-1.5

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22612

Chad H.  changed:

   What|Removed |Added

 CC||innocentkil...@gmail.com

--- Comment #1 from Chad H.  2010-02-21 21:56:46 UTC 
---
Suggest WONTFIX, the Amethyst skin shouldn't be coming back. Instead, the
gadget should pick new images.

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

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


[Bug 22612] New: Restore amethyst folder on skins-1.5

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22612

   Summary: Restore amethyst folder on skins-1.5
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: platoni...@gmail.com


skins-1.5 used to contain an amethyst folder, for a really old skin 

However, its images were used by a quite common gadget
http://es.wikipedia.org/wiki/Usuario:Axxgreazz/monobook-full.css

And thus many people have references to it on its CSS
http://es.wikipedia.org/w/index.php?search=amethyst+axxgreazz&fulltext=Search&ns2=1&ns9=1&ns12=1&ns100=1&title=Especial%3ABuscar&advanced=1&fulltext=Advanced+search

So please restore that folder.
Last version on svn seems to be
http://svn.wikimedia.org/viewvc/mediawiki/tags/REL1_5_RC1/phase3/skins/amethyst/

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

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


[Bug 22611] Special:External links lets you search 5000

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22611

Gurch  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||matthew.brit...@btinternet.
   ||com
 Resolution||WONTFIX

--- Comment #1 from Gurch  2010-02-21 21:47:30 
UTC ---
If a user has the right 'apihighlimits', API queries are limited to 5,000
items, otherwise they are limited to 500 items. UI queries are limited to 5,000
items regardless.

This is the case with most queries; for example, user contributions, page
history, backlinks. The main exception is category members, the UI for which
has a fixed size of 200 items (c.f. bug 11281).

The rationale for this is that the API allows multiple list modules to be
invoked in a single request, so the per-request limit is actually at least
17,000 without higher limits and 170,000 with them -- more if extensions are
installed (c.f. bug 16781).

Addressing this inconsistency would either mean restricting UI queries to 500
items (for users without 'apihighlimits') or limiting the sum of all API module
limits in a single query. Both of these constitute a loss of functionality and
break backwards compatibility, so unless a performance issue can be
demonstrated things will likely remain as they are.

I agree that this is a little odd -- if one requires 5000 items of some query
it is often quicker to scrape the UI than send 10 API requests.

I would suggest the best method of addressing this should one wish to do so
would be to ask for 'apihighlimits' to be assigned to all user accounts on
Wikimedia wikis. I don't know if the developers would be willing to do that,
but I can't imagine the performance implications would be that great. Very few
Wikimedia wiki users ever make custom API requests, and while 'apihighlimits'
is granted as part of the administrator group, any concerns about giving it to
non-privileged users are moot as the bot group also has it, and obtaining a bot
account is trivial.

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

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


[Bug 22247] Template is not included

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22247

DaSch  changed:

   What|Removed |Added

 CC||bryan.tongm...@gmail.com,
   ||tra...@wikihow.com

--- Comment #1 from DaSch  2010-02-21 21:03:55 UTC ---
the first fixes are great, but the Extension does not work like before
the main function of transfering license data, link to original and author is
not working

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

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


[Bug 21951] The update cronjob for the Romanian Planet has not been added

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21951

--- Comment #2 from crangasi2...@yahoo.com 2010-02-21 19:51:50 UTC ---
My knowledge is that updates are made at regular intervals by cronjobs, not
automatically made when a new post is available. See Brion's comment here:
https://bugzilla.wikimedia.org/show_bug.cgi?id=20133#c1

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

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


[Bug 21951] The update cronjob for the Romanian Planet has not been added

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21951

Abigor  changed:

   What|Removed |Added

 CC||abi...@forgotten-beauty.com

--- Comment #1 from Abigor  2010-02-21 19:45:45 
UTC ---
I believe the planet.wikimedia.org works with RSS and not Cronjobs, but I could
be mistaking...

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

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


[Bug 22360] Multi-value properties search doesn't work as expected.

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22360

Markus Krötzsch  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

--- Comment #1 from Markus Krötzsch  2010-02-21 
19:18:05 UTC ---
SMW queries ask for the existence of a value with a certain condition, and
having two parts in a query asks for the existence of two values that meet the
given conditions. There is no way to combine conditions on a single value
explicitly, but maybe hooks for extending the query conditions in such a way
will be added in some future. In any case, the above will remain the intendend
and correct behaviour for SMW.

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


[Bug 22603] Malformed response when no params provided

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

Alex Z.  changed:

   What|Removed |Added

 CC||mrzmanw...@gmail.com

--- Comment #9 from Alex Z.  2010-02-21 18:24:11 UTC ---
I tend to agree with Bryan. You're requesting no information, I don't see why
its wrong to return no information.

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

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


[Bug 22601] Turn on AssertEdit

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22601

m.p.ropp...@web.de changed:

   What|Removed |Added

   Priority|Normal  |Low
 Status|RESOLVED|REOPENED
 Resolution|INVALID |
   Severity|normal  |enhancement

--- Comment #4 from m.p.ropp...@web.de 2010-02-21 18:03:48 UTC ---
1. You were right: I forgot to use it with a modifying action. My fault.

2. As I play with it: Can the API return the assert *result* also as a
MediaWiki-API-Error in the HTML header lines, or generally as an *error*? Or
could this not be done due to the result/error implementation style? A failed
assertion is not harmless and almost always (assert=user) returns in a login,
doesn’t it?

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


[Bug 22611] New: Special:External links lets you search 5000

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22611

   Summary: Special:External links lets you search 5000
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: trivial
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: m8r-udf...@mailinator.com


Using Special:External links, you can set the limit to 5000 manually and it
will work. However, the API seems to enforce that users are allowed only 500
per query.

Is this a bug or a feature?

Example:Special:External links for youtube
https://secure.wikimedia.org/wikipedia/en/w/index.php?title=Special:LinkSearch&target=http%3A%2F%2Fyoutube.com&limit=5000&offset=0

Example:api
http://en.wikipedia.org/w/api.php?action=query&list=exturlusage&euquery=youtube.com&eulimit=5000

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

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


[Bug 15302] Support number ranges in Semantic MediaWiki

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=15302

DaSch  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WONTFIX |

--- Comment #3 from DaSch  2010-02-21 17:19:12 UTC ---
I reopen this, because I think that it's worth it to discuss possible solutions
for this problem

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

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


[Bug 15302] Support number ranges in Semantic MediaWiki

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=15302

--- Comment #2 from DaSch  2010-02-21 17:18:17 UTC ---
Well, when trying to add historical events I have a similar problem. When
entering more then one date, I have the number of entries in ask-outputs is
increasing nearly exponantial. See also
https://bugzilla.wikimedia.org/show_bug.cgi?id=22547

Maybe there could be a additional type range for non-decimal numbers and ony
type for date-ranges and one for temprature ranges

I could imagine many possible application areas

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

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


[Bug 22601] Turn on AssertEdit

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22601

--- Comment #3 from Reedy  2010-02-21 16:36:55 UTC ---
As an aside to this (ie it's not possible to tell if AssertEdit is installed
via the Api help), i'm making a api documentation module for it...

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

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


[Bug 11812] UTF8-DB-Collation does not work with SMW

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11812

--- Comment #6 from someone...@googlemail.com 2010-02-21 16:10:11 UTC ---
Created an attachment (id=7156)
 --> (https://bugzilla.wikimedia.org/attachment.cgi?id=7156)
Patch for SMW1.4.3 that fixes encoding and table type setting

The attached patch uses the mediawiki $wgTableOptions setting to enable SMW to
create its additional tables witch the same options (table type and encoding)
used in the Mediawiki configuration. Tested with Mediawiki 1.15.1 and SMW
1.4.3, using latin-bin and UTF-8-tables, wich are the recommended settings
during Mediawiki installation (MySQL only). see also:
http://www.mediawiki.org/wiki/Manual:$wgDBTableOptions

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

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


[Bug 22563] Call to undefined function DatabaseMysql::unionQueries() on Special:Properties

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22563

Markus Krötzsch  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #2 from Markus Krötzsch  2010-02-21 
16:08:11 UTC ---
Right, it was not intended to introduce such a dependency. I will fix this
before releasing SMW 1.5.0.

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


[Bug 22603] Malformed response when no params provided

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

--- Comment #8 from Smallman  2010-02-21 15:18:45 
UTC ---
You are right, it is valid xml, just not well formed.

Looking at http://en.wikipedia.org/w/api.php?action=query&format=xml, it
returns


I'd like for it to return an error code as no parameter/prop specified.

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

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


[Bug 22603] Malformed response when no params provided

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

--- Comment #7 from Bryan Tong Minh  2010-02-21 
14:34:38 UTC ---
If you don't specify something to return, it should not be unexpected that
nothing it result.

The response is valid XML anyway:
http://validator.w3.org/check?uri=http%3A%2F%2Fen.wikipedia.org%2Fw%2Fapi.php%3Faction%3Dquery%26meta%3Dsiteinfo%26siprop%26format%3Dxml&charset=%28detect+automatically%29&doctype=Inline&group=0

Recommending WONTFIX.

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

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


wikibugs-l@lists.wikimedia.org

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22609

Bryan Tong Minh  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX

--- Comment #4 from Bryan Tong Minh  2010-02-21 
14:31:00 UTC ---
Server should not have a slash, because it specifies the protocol and the host
name. The latter slash is part of the path.

The $1 is in wgArticlePath because presumably the article name does not have to
be the last part of the url.

Whether or not wgScriptPath should have a trailing slash can be discussed,
however we are not going to break backwards compatibility for something that
can be easily solved client side.

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

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


wikibugs-l@lists.wikimedia.org

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22609

Liangent  changed:

   What|Removed |Added

 CC||liang...@gmail.com

--- Comment #3 from Liangent  2010-02-21 14:20:36 UTC ---
In $wgArticlePath, $1 represents page title. See [[mw:Manual:$wgArticlePath]].

Why do you need that slash? Without it, we can concatenate them to make a URL
easilier.

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

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


[Bug 22603] Malformed response when no params provided

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

Smallman  changed:

   What|Removed |Added

Summary|Incomplete site info|Malformed response when no
   |request gives improperly|params provided
   |formatted return|

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

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


[Bug 22603] Incomplete site info request gives improperly formatted return

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

--- Comment #6 from Smallman  2010-02-21 14:14:24 
UTC ---
I've looked at
http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/api/ApiQuerySiteinfo.php
and the problem is that it assumes there are parameters.

What it should say is something like this

public function execute() {
$params = $this->extractRequestParams();
if(empty($params))
ApiBase :: dieDebug( __METHOD__, "No prop specified..." );
else
{
$done = array();
foreach ( $params['prop'] as $p )
{
  

It could give better error handling, but it would suffice for now...

It's probably best to add something into extractRequestParams() to make it
return an error code when no params are given, rather than go through and add
if(empty($params)) to all of the api php scripts...

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

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


[Bug 22603] Incomplete site info request gives improperly formatted return

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

Smallman  changed:

   What|Removed |Added

Version|1.3.0   |unspecified

--- Comment #5 from Smallman  2010-02-21 14:01:30 
UTC ---
I thought I hit unspecified...oops.

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

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


[Bug 22610] New: Internal Error

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22610

   Summary: Internal Error
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Normal
 Component: CentralAuth
AssignedTo: vasi...@gmail.com
ReportedBy: invicti...@live.co.uk
CC: agarr...@wikimedia.org


When I attempt to merge my account using Special:MergeAccount I get an error
saying:
no wiki for animeh_wiki

Backtrace:

#0 /home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php(406):
SpecialMergeAccount->foreignUserLink('animeh_wiki')
#1 /home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php(399):
SpecialMergeAccount->listWikiItem('animeh_wiki', 'primary')
#2 /home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php(386):
SpecialMergeAccount->formatList(Array, Array, Array)
#3 /home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php(377):
SpecialMergeAccount->listWikis(Array, Array, Array)
#4 /home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php(507):
SpecialMergeAccount->listAttached(Array, Array)
#5 /home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php(192):
SpecialMergeAccount->step3ActionForm(Array, Array)
#6 /home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php(62):
SpecialMergeAccount->doDryRunMerge('animeh_wiki', Array, Array)
#7 /home/animeh/wiki/includes/SpecialPage.php(559):
SpecialMergeAccount->execute()
#8 /home/animeh/wiki/includes/Wiki.php(229): SpecialPage::executePath(NULL)
#9 /home/animeh/wiki/includes/Wiki.php(59):
MediaWiki->initializeSpecialCases(Object(Title))
#10 /home/animeh/wiki/index.php(116): MediaWiki->initialize(Object(Title),
Object(OutputPage), Object(WebRequest))
#11 {main}

I'm running MediaWiki version 1.15.11
PHP version 5.2.11
and MySQL version 5.0.81

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

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


wikibugs-l@lists.wikimedia.org

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22609

--- Comment #2 from Smallman  2010-02-21 13:47:25 
UTC ---
(I meant "/" for the above one).

For server, should it also append an extra "/" so it'd give
"http://en.wikipedia.org/"; rather than "http://en.wikipedia.org";.

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

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


wikibugs-l@lists.wikimedia.org

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22609

--- Comment #1 from Smallman  2010-02-21 13:45:28 
UTC ---
Actually, scriptpath is also wrong, it should return "/w/". This is set by "   
$data['scriptpath'] = $GLOBALS['wgScriptPath'];", which is read from
LocalSettings.php . 

For scriptpath it should probably append a "/" to $GLOBALS['wgScriptPath'], so
itd be $GLOBALS['wgScriptPath']."\"

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

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


[Bug 22603] Incomplete site info request gives improperly formatted return

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22603

Reedy  changed:

   What|Removed |Added

   Priority|Low |Normal

--- Comment #4 from Reedy  2010-02-21 13:45:01 UTC ---
Do you really mean version 1.3?

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

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


wikibugs-l@lists.wikimedia.org

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22609

Smallman  changed:

   What|Removed |Added

Summary|Incorrect articlepath   |Incorrect articlepath and
   |returned for|scriptpath returned for
   |query&meta=siteinfo |query&meta=siteinfo

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

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


wikibugs-l@lists.wikimedia.org

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22609

Smallman  changed:

   What|Removed |Added

URL||http://en.wikipedia.org/w/a
   ||pi.php?action=query&meta=si
   ||teinfo

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

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


wikibugs-l@lists.wikimedia.org

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22609

   Summary: Incorrect articlepath returned for query&meta=siteinfo
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: minor
  Priority: Normal
 Component: API
AssignedTo: roan.katt...@gmail.com
ReportedBy: m8r-udf...@mailinator.com
CC: bryan.tongm...@gmail.com, s...@reedyboy.net,
vasi...@gmail.com, soxre...@gmail.com


When querying siteinfo at
http://en.wikipedia.org/w/api.php?action=query&meta=siteinfo,

It returns



  
http://en.wikipedia.org/wiki/Main_Page";
sitename="Wikipedia" generator="MediaWiki 1.16alpha-wmf"
phpversion="5.2.4-2ubuntu5.7wm1" phpsapi="apache2handler" dbtype="mysql"
dbversion="5.1.43-wm3193-log" rev="59858" case="first-letter" rights="Creative
Commons Attribution-Share Alike 3.0 Unported" lang="en"
fallback8bitEncoding="windows-1252" writeapi="" timezone="UTC" timeoffset="0"
articlepath="/wiki/$1" scriptpath="/w" script="/w/index.php"
variantarticlepath="" server="http://en.wikipedia.org"; wikiid="enwiki" />
  


Under articlepath, it returns "/wiki/$1" when it should return "/wiki/".

This is set by "$data['articlepath'] = $GLOBALS['wgArticlePath'];" in
ApiQuerySiteinfo.php, so this is probably a problem in globals.

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

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


[Bug 22607] I get a Fatal Error when attempting to merge users

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22607

Andrew Garrett  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

--- Comment #3 from Andrew Garrett  2010-02-21 13:15:27 
UTC ---
Then that's your problem. You're using the CentralAuth alpha with an older
version of MediaWiki. Download the 1.15 version of CentralAuth.

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

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


[Bug 22607] I get a Fatal Error when attempting to merge users

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22607

--- Comment #2 from Invisible  2010-02-21 13:14:30 UTC 
---
I use Mediawiki version 1.15.1
PHP is version 5.2.11
MySQL is version 5.0.81

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

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


[Bug 22608] New: AjaxLogin: Successful login does not update personal tools

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22608

   Summary: AjaxLogin: Successful login does not update personal
tools
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: innocentkil...@gmail.com


Gentlemen,

When using AjaxLogin (r62754) and I log in correctly, the personal tools in the
upper right corner do not update with my username/watchlist/preferences/etc.
This does not update until I load the next page. 

This is poor usability because it gives no indication to the user that they've
successfully logged in.

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

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


[Bug 22607] I get a Fatal Error when attempting to merge users

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22607

Abigor  changed:

   What|Removed |Added

 CC||abi...@forgotten-beauty.com

--- Comment #1 from Abigor  2010-02-21 13:09:51 
UTC ---
It could help when we know what version mediawiki, php and mysql you use and
maybe a link to the wiki self..

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

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


[Bug 22607] New: I get a Fatal Error when attempting to merge users

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22607

   Summary: I get a Fatal Error when attempting to merge users
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Normal
 Component: CentralAuth
AssignedTo: vasi...@gmail.com
ReportedBy: invicti...@live.co.uk
CC: agarr...@wikimedia.org


I get this fatal error when I attempt to merge users on the
Special:MergeAccount page:
Fatal error: Class 'WikiMap' not found in
/home/animeh/wiki/extensions/CentralAuth/SpecialMergeAccount.php on line 410

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

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


[Bug 22605] Invalid markup on image description pages

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22605

p858snake  changed:

   What|Removed |Added

 CC||p858sn...@yahoo.com.au

--- Comment #4 from p858snake  2010-02-21 11:26:31 UTC 
---
Tidy is enabled within the WMF cluster, although I do believe it doesn't run
over Mediawiki:* namespace due to caching or something (But don't quote me on
that)

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

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


[Bug 22605] Invalid markup on image description pages

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22605

--- Comment #3 from Liangent  2010-02-21 11:23:58 UTC ---
Tidy can be turned off ([[mw:Manual:$wgUseTidy]]) and I don't know its status
on Wikimedia.

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

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


[Bug 22605] Invalid markup on image description pages

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22605

--- Comment #2 from Tisza Gergő  2010-02-21 11:16:36 UTC ---
Ah, thanks! But shouldn't content errors be fixed automatically by Tidy?

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


[Bug 22604] Enable Mobile Wiktionary and Mobile WikiSource for the Malayalam language

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22604

Derk-Jan Hartman  changed:

   What|Removed |Added

 CC||hart...@videolan.org

--- Comment #1 from Derk-Jan Hartman  2010-02-21 10:58:18 
UTC ---
MediaWiki projects other than wikipedia are not yet supported.

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

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


[Bug 22605] Invalid markup on image description pages

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22605

Liangent  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||liang...@gmail.com
 Resolution||INVALID

--- Comment #1 from Liangent  2010-02-21 10:22:51 UTC ---
The message 'sharedupload' ([[hu:MediaWiki:Sharedupload]]) has syntax error.

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

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


[Bug 22606] New: New message for confirm mails for changing email addresses of old users

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22606

   Summary: New message for confirm mails for changing email
addresses of old users
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Internationalization
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: liang...@gmail.com


See http://translatewiki.net/wiki/Thread:Support/MediaWiki:Confirmemail_body .

A new message is needed.

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

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


[Bug 22605] New: Invalid markup on image description pages

2010-02-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22605

   Summary: Invalid markup on image description pages
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: minor
  Priority: Normal
 Component: Page rendering
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: gti...@gmail.com


See for example
http://validator.w3.org/check?uri=http://hu.wikipedia.org/w/index.php?title=F%C3%A1jl:Type_A_USB_connector.jpg&filetimestamp=20050425002005
- apparently there is a mismatched div tag somewhere.

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

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