[Bug 22078] Chinese Wikipeida XML output format is missing

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22078


Reedy s...@reedyboy.net changed:

   What|Removed |Added

 CC||s...@reedyboy.net
 Status|NEW |RESOLVED
 Resolution||INVALID




--- Comment #2 from Reedy s...@reedyboy.net  2010-01-11 08:38:56 UTC ---
Also confirmed working in FF

Resolved/Invalid


-- 
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 22076] Install identi.ca plugin on wikitech blog

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22076


Reedy s...@reedyboy.net changed:

   What|Removed |Added

   Keywords||shell




-- 
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 19948] Special:UnusedProperties produces database error for PostgreSQL

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19948





--- Comment #8 from Aneta fan...@o2.pl  2010-01-11 08:52:27 UTC ---
1) The access rights of user for schemas (public and wiki) are correct. 
2) 
EXEC: CREATE TEMPORARY TABLE smw_tmp_unusedprops ( title text );
OK (La consulta se ejecutó con éxito sin resutado en 16 ms.)

EXEC: DELETE smw_tmp_unusedprops.* FROM smw_tmp_unusedprops, smw_rels2 INNER
JOIN
smw_ids ON p_id=smw_id WHERE title=smw_title AND smw_iw=''
ERROR:  error de sintaxis en o cerca de «smw_tmp_unusedprops»
LINE 1: DELETE smw_tmp_unusedprops.* FROM smw_tmp_unusedprops, smw_r...
   ^
** Error **
ERROR: error de sintaxis en o cerca de «smw_tmp_unusedprops»
Estado SQL:42601
Caracter: 8


3) I have modified the request.

EXEC: select * FROM smw_tmp_unusedprops where title in (select smw_title from
smw_tmp_unusedprops, smw_rels2 INNER JOIN
smw_ids ON p_id=smw_id WHERE title=smw_title AND smw_iw='')

OK (empty result - my smw_rels2 is empty but smw_ids is not)


-- 
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 19948] Special:UnusedProperties produces database error for PostgreSQL

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19948


OverlordQ overlo...@gmail.com changed:

   What|Removed |Added

 CC||overlo...@gmail.com




--- Comment #9 from OverlordQ overlo...@gmail.com  2010-01-11 08:58:03 UTC ---
In Postgres you cannot specify more then one table in a DELETE statement.


-- 
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 22079] New: api.php returns wrong list of used templates

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22079

   Summary: api.php returns wrong list of used templates
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: API
AssignedTo: roan.katt...@gmail.com
ReportedBy: r...@brainbot.com
CC: bryan.tongm...@gmail.com, vasi...@gmail.com,
soxre...@gmail.com


The following command
curl
'http://en.wikipedia.org/w/api.php?tllimit=500format=jsonaction=queryprop=revisions|templates|imagesimlimit=500rvprop=idsrevids=317439556'

returns:

{
query: {
pages: {
24520081: {
ns: 2,
pageid: 24520081,
revisions: [
{
parentid: 317439411,
revid: 317439556
}
],
title: User:Headbomb/Sandbox9
}
}
}
}

But http://en.wikipedia.org/w/index.php?oldid=317439556 uses the cite web
template, which is missing here. It looks like api.php returns the templates
used in the current version of an article even if asked for an older version.

(We need this to work for the collection extension. also see
http://code.pediapress.com/wiki/ticket/703)


-- 
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 22079] api.php returns wrong list of used templates

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22079





--- Comment #1 from Bryan Tong Minh bryan.tongm...@gmail.com  2010-01-11 
11:03:01 UTC ---
(In reply to comment #0)
 But http://en.wikipedia.org/w/index.php?oldid=317439556 uses the cite web
 template, which is missing here. It looks like api.php returns the templates
 used in the current version of an article even if asked for an older version.
 
That is true, we don't store old templatelinks data. The only way to get this
would be by reparsing the entire content. I'm not sure whether that is the
correct solution.


-- 
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 21676] Please close Simple English Wikiquote

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21676





--- Comment #1 from Pmlineditor pmlinedi...@live.com  2010-01-11 12:37:45 UTC 
---
Can this please be closed now. It's been 1.5 months and the wiki has become a
playground for vandals and trolls. Thanks. :)


-- 
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 22073] Update or purge of Commons image should update description pages on other wikis

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22073


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com
Summary|Caching issues with images  |Update or purge of Commons
   |and action=purge|image should update
   ||description pages on other
   ||wikis




-- 
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 22074] Give users option to add uselang=en to interlanguage links

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22074


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com




--- Comment #3 from Roan Kattouw roan.katt...@gmail.com  2010-01-11 12:55:58 
UTC ---
Yes, global preferences would presumably allow you to set English as your
interface language on all wikis so you won't need uselang= for that anymore.


-- 
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 22076] Install identi.ca plugin on wikitech blog

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22076


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com
 AssignedTo|wikibugs-   |rhals...@wikimedia.org
   |l...@lists.wikimedia.org   |




-- 
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 22079] api returns wrong list of used templates on old revisions

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22079


Reedy s...@reedyboy.net changed:

   What|Removed |Added

 CC||s...@reedyboy.net
Summary|api.php returns wrong list  |api returns wrong list of
   |of used templates   |used templates on old
   ||revisions




-- 
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 21346] Make deleted images searchable by hash

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21346





--- Comment #2 from Reedy s...@reedyboy.net  2010-01-11 13:05:45 UTC ---
Also needs to make sure rights are there...


-- 
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 21683] list=search doesn't provide offset for continuation if over the account group maximum

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21683





--- Comment #4 from Reedy s...@reedyboy.net  2010-01-11 13:08:04 UTC ---
Haven't the search limits been increased again...?


-- 
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 22079] api returns wrong list of used templates on old revisions

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22079


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com
 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Comment #2 from Roan Kattouw roan.katt...@gmail.com  2010-01-11 13:10:07 
UTC ---
(In reply to comment #1)
 (In reply to comment #0)
  But http://en.wikipedia.org/w/index.php?oldid=317439556 uses the cite web
  template, which is missing here. It looks like api.php returns the templates
  used in the current version of an article even if asked for an older 
  version.
  
 That is true, we don't store old templatelinks data.
Exactly. Moreover, the prop= modules (except for prop=revisions of course)
always return data about the latest version of a page rather than the requested
revids= . Closing as WONTFIX for this reason.


 The only way to get this
 would be by reparsing the entire content. I'm not sure whether that is the
 correct solution.
 
Correct or not, it's possible: you can feed a revid to action=parse and you'll
get all kinds of data about the parse result, including template and image
links. This'll have to do unless and until we start storing historic
information in the link tables, which I'm pretty sure will never happen. Also
note that parsing the old version of a page will not use any old versions of
the templates used in it, so it may produce the 'wrong' result if you're
looking for time machine-like functionality.


-- 
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 21683] list=search doesn't provide offset for continuation if over the account group maximum

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21683





--- Comment #5 from Roan Kattouw roan.katt...@gmail.com  2010-01-11 13:11:40 
UTC ---
(In reply to comment #4)
 Haven't the search limits been increased again...?
 

Yes, the backend limit has been increased again. Per Robert the API limit is
still at 50, which means that at least normal operation with srlimit  50
should work again. Setting srlimit equal to 500 is probably still broken
(please test this); if it is, I'll ask Robert to raise the limit to 501 as a
workaround.


-- 
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 21345] Make old images searchable by hash

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21345





--- Comment #5 from Reedy s...@reedyboy.net  2010-01-11 13:16:07 UTC ---
[13:13:57] RoanKattouw Currently prop=imageinfo returns information from both
image and oldimage, but its hash search only searches image. It could be made
to search oldimage as well but that'd probably produce weird results à la
using revids= with prop=templates (see bug 22079)
[13:14:25] RoanKattouw i.e. the search would hit an old version of the image
but you'd get imageinfo for the current version; that'd be weird and probably
needs to be addressed
[13:15:03] RoanKattouw Which may require quite a bit of redesign of the
imageinfo module, it's a bit of a mess right now


-- 
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 17781] list=logevents shows User:$blockid as a title for autoblock unblock entries

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17781


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com
 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Comment #3 from Roan Kattouw roan.katt...@gmail.com  2010-01-11 13:18:26 
UTC ---
This is how it's stored in the database; the fact that it uses NS_USER for
these things is quirky, but not the API's fault. Also, it's not a big deal at
all once you know about it.


-- 
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 21346] Make deleted images searchable by hash

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21346





--- Comment #3 from Reedy s...@reedyboy.net  2010-01-11 13:18:31 UTC ---
[13:15:37] RoanKattouw The filearchive thing is different altogether, and we
can get away with putting that in its own module, cf. list=deletedrevs
[13:16:17] RoanKattouw And then there's prop=duplicatefiles, we may want to
add a param for search old versions too there, not sure how to handle the
results though (per the old-version-matches-but-current-version-returned
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 18770] listing of none protected page with list=allpages

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18770





--- Comment #3 from Reedy s...@reedyboy.net  2010-01-11 13:24:04 UTC ---
[13:20:06] RoanKattouw OK so about the unprotected pages in list=allpages
thing
[13:20:19] RoanKattouw The LEFT JOIN approach you and Bryan came up with is
the right one
[13:21:00] RoanKattouw I'm not 100% sure about its efficiency and scalability
to Wikimedia levels, but I think it should be OK because protected pages are
scarce


-- 
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 22061] API: add prop=headitems to action=parse

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22061


Reedy s...@reedyboy.net changed:

   What|Removed |Added

 AssignedTo|roan.katt...@gmail.com  |s...@reedyboy.net




--- Comment #4 from Reedy s...@reedyboy.net  2010-01-11 13:26:16 UTC ---
Assigning to me as per Roan on IRC


-- 
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 21346] Make deleted images searchable by hash

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21346


Reedy s...@reedyboy.net changed:

   What|Removed |Added

 AssignedTo|roan.katt...@gmail.com  |s...@reedyboy.net




-- 
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 18770] listing of none protected page with list=allpages

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18770


Reedy s...@reedyboy.net changed:

   What|Removed |Added

 AssignedTo|roan.katt...@gmail.com  |s...@reedyboy.net




-- 
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 21966] Normalisation of namespace on User contribs is too lenient

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21966


Reedy s...@reedyboy.net changed:

   What|Removed |Added

 AssignedTo|roan.katt...@gmail.com  |s...@reedyboy.net




-- 
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 21345] Make old images searchable by hash

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21345


Reedy s...@reedyboy.net changed:

   What|Removed |Added

 AssignedTo|roan.katt...@gmail.com  |s...@reedyboy.net




-- 
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 22079] api returns wrong list of used templates on old revisions

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22079





--- Comment #3 from Ralf Schmitt r...@brainbot.com  2010-01-11 13:34:11 UTC 
---
Thanks for the clarification, that's what I expected. 
It probably will not matter that much in our use case.


-- 
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 18770] listing of none protected page with list=allpages

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18770





--- Comment #4 from Reedy s...@reedyboy.net  2010-01-11 14:15:12 UTC ---
[13:35:33] RoanKattouw domas: Are queries like these OK to run on the
cluster? http://pastebin.com/m72223c4b
[13:35:43] RoanKattouw EXPLAIN says using where but I think it's lying
[13:36:29] domas depends
[13:36:35] RoanKattouw Also the row count is huge but I don't believe it'll
really examine that much rows for a query with WHERE foo=const ORDER BY bar
LIMIT 51 when there's an index on (foo,bar)
[13:36:42] RoanKattouw *many
[13:36:48] domas if all pages have restrictions, this gets really expensive 
[13:36:49] domas :)
[13:36:53] Reedy heh
[13:37:01] RoanKattouw Yeah it was kinda based on the assumption that
protected pages are scarce
[13:37:29] RoanKattouw Of course the get pages with protection X variant
(which already runs on the cluster) joins the tables in reverse order
[13:37:56] RoanKattouw ... hopefully
[13:37:59] RoanKattouw checks
[13:41:15] RoanKattouw Hm the get pages with protection X query does indeed
join page_restrictions first at the cost of filesorting, but I guess that's the
lesser of two evils unless I totally rewrite this module to page by page ID


-- 
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 18770] listing of none protected page with list=allpages

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18770





--- Comment #5 from Reedy s...@reedyboy.net  2010-01-11 14:28:33 UTC ---
[14:18:32] RoanKattouw Reedy: Short summary: given that the existing appr*
queries are apparently OK, this one should not be a 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 20241] SMW_QP_JSONlink.php throwing errors and not creating valid JSON

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20241


Markus Krötzsch mar...@semantic-mediawiki.org changed:

   What|Removed |Added

  Component|SemanticResultFormats   |Semantic MediaWiki




-- 
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 22012] ImportFreeImages incompatible with 1.16

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22012





--- Comment #7 from DaSch dasch...@gmx.net  2010-01-11 15:59:41 UTC ---
anybody working on this or having the purpose to work on this?


-- 
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 20241] SMW_QP_JSONlink.php throwing errors and not creating valid JSON

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20241


Markus Krötzsch mar...@semantic-mediawiki.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #5 from Markus Krötzsch mar...@semantic-mediawiki.org  2010-01-11 
16:45:43 UTC ---
This change could now be applied, but the respective code has changed and the
patch no longer matches. It would be helpful if a patch for the current version
could be supplied.


-- 
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 22080] New: Vcards for organisations

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22080

   Summary: Vcards for organisations
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: SemanticResultFormats
AssignedTo: denny.vrande...@kit.edu
ReportedBy: dasch...@gmx.net
CC: wikibugs-l@lists.wikimedia.org


In my opinion when no name is given but a name of an organisation the vcard
should be threatet as beeing an organisation and not a person.

So the Name should be left empty and only ORG will be filled. For OSX-Users 
X-ABShowAs:COMPANY
could be added. 
As I know Outlook or Thunderbird ignore this. Outlook 2007 recognize missing
Name and makes it a company.


-- 
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 22081] New: Weird error: UNIQ2927e11699d1e08-categorytree-00000013-QINU

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22081

   Summary: Weird error:  UNIQ2927e11699d1e08-categorytree-0013-
QINU
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Softw
are
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: wincho...@googlemail.com


On WikiProject Software's main page, instead of the category list, the error 
UNIQ2927e11699d1e08-categorytree-0013-QINUappears.  However, on the page
it is trancluded from, the category list appear fine.


-- 
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 22081] Weird error: UNIQ2927e11699d1e08-categorytree-00000013-QINU

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22081


Thu Ya Win wincho...@googlemail.com changed:

   What|Removed |Added

   Severity|enhancement |normal




-- 
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 22081] Weird error: UNIQ2927e11699d1e08-categorytree-00000013-QINU

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22081


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com
  Component|General/Unknown |CategoryTree
Product|Wikimedia   |MediaWiki extensions
Version|unspecified |any




-- 
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 22081] Categorytree strip marker exposed on enwiki when viewing page but not when transcluding it

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22081


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

Summary|Weird error:|Categorytree strip marker
   |UNIQ2927e11699d1e08-|exposed on enwiki when
   |categorytree-0013-QINU  |viewing page but not when
   ||transcluding 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 20022] Random error when logging in to Wikipedia and on editing pages with Opera Mini

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20022


Thu Ya Win wincho...@googlemail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Comment #8 from Thu Ya Win wincho...@googlemail.com  2010-01-11 20:48:09 
UTC ---
seems like an Opera Mini problem


-- 
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 20022] Random error when logging in to Wikipedia and on editing pages with Opera Mini

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20022


Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com
 Status|RESOLVED|REOPENED
 Resolution|INVALID |




--- Comment #9 from Roan Kattouw roan.katt...@gmail.com  2010-01-11 20:50:15 
UTC ---
(In reply to comment #8)
 seems like an Opera Mini problem
 

I don't think so. From the language used, I think this is caused by the mobile
portal returning an HTTP 500 (Internal Server Error) status code.


-- 
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 22081] Categorytree strip marker exposed on enwiki when transcluding page but not when viewing it

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22081


Thu Ya Win wincho...@googlemail.com changed:

   What|Removed |Added

Summary|Categorytree strip marker   |Categorytree strip marker
   |exposed on enwiki when  |exposed on enwiki when
   |viewing page but not when   |transcluding page but not
   |transcluding it |when viewing it




--- Comment #1 from Thu Ya Win wincho...@googlemail.com  2010-01-11 20:50:18 
UTC ---
It's work OK on the orginal page but breaks when the page is transcuded.


-- 
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 22081] Categorytree strip marker exposed on enwiki when transcluding page but not when viewing it

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22081


Thu Ya Win wincho...@googlemail.com changed:

   What|Removed |Added

   Severity|normal  |major




-- 
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 22081] Categorytree strip marker exposed on enwiki when transcluding page but not when viewing it

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22081


P.Copp paul.copper...@googlemail.com changed:

   What|Removed |Added

   Severity|major   |normal
 Status|NEW |RESOLVED
 Resolution||DUPLICATE




--- Comment #2 from P.Copp paul.copper...@googlemail.com  2010-01-11 21:47:24 
UTC ---
This bug is triggered by transcluding a special page that somewhere tries to
parse a system message. In your case it's the transclusion of
{{Special:RecentChangesLinked/Wikipedia:Version 1.0 Editorial Team/Software
articles by quality log}}.
It shows the item 

(diff) (hist) . . Portable Document Format‎; 14:30:16 . . (-880) . . 
41.138.189.26 (talk) (→Subsets: ) (Tag: section blanking)

The (Tag: section blanking) is generated by the function
ChangeTags::tagDescription, which calls wfMsgExt with the option 'parseinline'.

Duping to bug16129, where several other instances of this bug are reported
already.

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


-- 
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 16129] Transcluded Special:Newpages and Special:Newimages expose strip markers and desanitize html when returning zero results or a tag

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16129


P.Copp paul.copper...@googlemail.com changed:

   What|Removed |Added

 CC||wincho...@googlemail.com




--- Comment #17 from P.Copp paul.copper...@googlemail.com  2010-01-11 
21:47:24 UTC ---
*** Bug 22081 has been marked as a duplicate of 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 16129] Transcluded special pages expose strip markers when they output parsed messages

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16129


P.Copp paul.copper...@googlemail.com changed:

   What|Removed |Added

Summary|Transcluded Special:Newpages|Transcluded special pages
   |and Special:Newimages expose|expose strip markers when
   |strip markers and desanitize|they output parsed messages
   |html when returning zero|
   |results or a tag|




-- 
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 22061] API: add prop=headitems to action=parse

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22061





--- Comment #5 from P.Copp paul.copper...@googlemail.com  2010-01-11 21:52:10 
UTC ---
(In reply to comment #3)
 I'm pretty sure that the cast is not necessary there (since the var is
 initialised as array() and then only added to), but if you feel uncomfortable
 with it, of course just skip the change.
 
FTR: The cast was added in r21055 (Apr 2007) to deal with old parsercache
entries. I think we can safely assume that they're all gone by now :)


-- 
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 22082] New: Database errors on several special pages

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22082

   Summary: Database errors on several special pages
   Product: MediaWiki extensions
   Version: any
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: Normal
 Component: SemanticForms
AssignedTo: yaro...@gmail.com
ReportedBy: d.r.new...@qub.ac.uk
CC: wikibugs-l@lists.wikimedia.org


When I click on the links to Semantic Forms special pages, I get the following
error for the pages
Special:CreateCategory, and Special:AddPage .

Database error
From MediaWiki
A database query syntax error has occurred. This may indicate a bug in the
software. The last attempted database query was:

SELECT page_title FROM `mw_page` WHERE page_namespace = SF_NS_FORM AND
page_is_redirect = 0 ORDER BY page_title

from within function . MySQL returned error 1054: Unknown column
'SF_NS_FORM' in 'where clause' (localhost).

When called from these pages, SF_NS_FORM is not being filled with the namespace
number, but is treated as a database column inside SF_Utils.inc .

This is with Mediawiki 1.15.1, SemanticMediaWiki 1.4.3 and SemanticForms 1.8.7
on PHP 5.3.1


-- 
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 21907] Internal bug in FCKEditor extension

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21907


David Newman d.r.new...@qub.ac.uk changed:

   What|Removed |Added

 CC||d.r.new...@qub.ac.uk




--- Comment #7 from David Newman d.r.new...@qub.ac.uk  2010-01-11 22:55:21 
UTC ---
I can confirm the same error with Mediawiki 1.15.1 and SMWHalo's version of
FCKEditor.

I also get the same error with SMWHalo when editing user preferences. That is
also a case
where a hook seems to return null and trigger the error reported above.


-- 
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 21907] Internal bug in FCKEditor extension

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21907





--- Comment #8 from David Newman d.r.new...@qub.ac.uk  2010-01-11 23:11:29 
UTC ---
I seem to have found a way of fixing the bug on my setup. It is probably not
the complete solution,
but it might help a better programmer find a better solution.

In FCKeditor.body.php the custom editor function is defined as:

  public function onCustomEditor($article, $user)


But in Wiki.php, there is a line that says:

  if( wfRunHooks( 'CustomEditor', array( $article, $user ) ) ) {

When I changed one of them to make either both calls pass by reference, or both
calls pass by value, the error went away, and the FCK editor popped up. 

I wonder if this mismatch has been caught by one of the backward
incompatibilities
of PHP 5.3 (http://uk3.php.net/manual/en/migration53.incompatible.php)?


-- 
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 3241] Transclusion should produce tree-like results in What links here

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3241


apoc2...@gmail.com changed:

   What|Removed |Added

 CC||apoc2...@gmail.com




--- Comment #4 from apoc2...@gmail.com  2010-01-12 00:20:29 UTC ---
More simple would be to have a way to hide all links that are not simple links
in the actual wikitext of the articles. That would also hide links from
templates such as {{cite news|...|authourlink=John Smith}}, but I think that is
acceptable. All those navigation boxes are really swamping What links here,
at least on English Wikipedia.


-- 
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 20640] Text Overlap

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20640


Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||DUPLICATE




--- Comment #5 from Derk-Jan Hartman hart...@videolan.org  2010-01-12 
00:20:36 UTC ---


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


-- 
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 5118] image overlaps text in firefox display

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=5118


Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||andromeda95s...@googlemail.c
   ||om




--- Comment #7 from Derk-Jan Hartman hart...@videolan.org  2010-01-12 
00:20:36 UTC ---
*** Bug 20640 has been marked as a duplicate of this bug. ***


-- 
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 22083] New: Show only the latest edit to an article, on a list of RecentChanges

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22083

   Summary: Show only the latest edit to an article, on a list of
RecentChanges
   Product: MediaWiki
   Version: unspecified
  Platform: Macintosh
   URL: http://en.wikipedia.org/wiki/Special:RecentChanges
OS/Version: Mac OS X 10.5
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Recent changes
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: jamie.w...@gmail.com


It would be helpful if we had a new feature at RecentChanges/Linked; it would
be an option (similar to hideliu) allowing you to show only edits that are
ONLY the most recent change to a particular page, among a list of recently
edited pages.

In other words, if a user edits Foo twice, only the most recent edit to
[[Foo]] will appear at RC (if this option is selected).

Currently, admins and rollbackers can see at-a-glance which edits are most
recent by looking for [rollback] buttons. Still, a show/hide type of feature
would greatly help patrolling work, such as with
[[Special:RecentChangesLinked/Category:Living people]].


-- 
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 21551] Allow configuring the Squid response chars limit on purges

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21551


Tim Starling tstarl...@wikimedia.org changed:

   What|Removed |Added

 CC||tstarl...@wikimedia.org
 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #2 from Tim Starling tstarl...@wikimedia.org  2010-01-12 02:14:06 
UTC ---
Reopening since I'm recommending reverting that revision. No compliant HTTP
server is going to treat a PURGE like GET, as the original code seems to be
implying, so I think that case can just be removed. If you want to detect an
error you should look at the response code.


-- 
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 18043] AbuseFilter log entries cannot be redacted/suppressed

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18043


Salem dy_...@yahoo.com changed:

   What|Removed |Added

 CC||dy_...@yahoo.com




--- Comment #15 from Salem dy_...@yahoo.com  2010-01-12 02:20:17 UTC ---
(In reply to comment #14)
 In the mean time, how about just obscuring viewing of all log entries older
 than say, 1 week, except to those with abusefilter, oversight and/or sysop
 permissions? It would reduce the scope for trouble with log entries without
 increasing the workload for those tasked with oversighting stuff.
 

What next? Obscuring user contributions from non-admins?


-- 
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 22010] SQL error while deleting on SQLite

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22010


Mark A. Hershberger m...@everybody.org changed:

   What|Removed |Added

 CC||m...@everybody.org
 Status|ASSIGNED|RESOLVED
 Resolution||WORKSFORME




--- Comment #1 from Mark A. Hershberger m...@everybody.org  2010-01-12 
04:03:33 UTC ---
not enough information to reproduce.


-- 
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 20257] SQLite support (tracking)

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20257


Bug 20257 depends on bug 22010, which changed state.

Bug 22010 Summary: SQL error while deleting on SQLite
https://bugzilla.wikimedia.org/show_bug.cgi?id=22010

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||WORKSFORME



-- 
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 20257] SQLite support (tracking)

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20257


Bug 20257 depends on bug 22010, which changed state.

Bug 22010 Summary: SQL error while deleting on SQLite
https://bugzilla.wikimedia.org/show_bug.cgi?id=22010

   What|Old Value   |New Value

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |



-- 
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 22010] SQL error while deleting on SQLite

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22010


Mark A. Hershberger m...@everybody.org changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |




--- Comment #2 from Mark A. Hershberger m...@everybody.org  2010-01-12 
04:19:47 UTC ---
As tstarling said, missed that the sqlite maintainer was the one who opened
this and gave it to himself.


-- 
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 21086] security issue: generateSitemap.php does use wfWikiID in sitemap filenames

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21086


Tim Starling tstarl...@wikimedia.org changed:

   What|Removed |Added

 CC||tstarl...@wikimedia.org
 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #4 from Tim Starling tstarl...@wikimedia.org  2010-01-12 05:22:22 
UTC ---
Reverted in r60960, commit message copied below:

wfWikiID() is used as a way to identify and connect to a given database in
LoadBalancer and various extensions, that's why it must contain the database
name and table prefix. Perhaps its use as a public identifier should be
optional, but in that case the public identifier needs to be customised, not
the return value of wfWikiID().


-- 
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 20388] ProfilerSimpleText's comments only valid when output is html

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20388


Tim Starling tstarl...@wikimedia.org changed:

   What|Removed |Added

 CC||tstarl...@wikimedia.org
 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #3 from Tim Starling tstarl...@wikimedia.org  2010-01-12 06:39:18 
UTC ---
Reopening since that only fixes half the problem, per CR.


-- 
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 22084] New: Update the installs on the wikitech wiki

2010-01-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22084

   Summary: Update the installs on the wikitech wiki
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://wikitech.wikimedia.org/view/Special:Version
OS/Version: All
Status: NEW
  Keywords: shell
  Severity: enhancement
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: p858sn...@yahoo.com.au


The vector skin on the wikitech wiki is displaying weirdly because apparently
it is running a outdated version so it should be updated.

Also the overall MW install seems to be a bit behind compared to what is
running live so that should probably be fixed as well (with the WF wiki being
1.16alpha-wmf (r55640) and en.wiki being 1.16alpha-wmf (r59858).


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