[Bug 22137] New: mwdumper dies with not a name start character: U+26 error

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

   Summary: mwdumper dies with not a name start character: U+26
error
   Product: mwdumper
   Version: unspecified
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: critical
  Priority: Normal
 Component: general
AssignedTo: br...@pobox.com
ReportedBy: emman...@engelhart.org


$mwdumper --format=sql:1.5 itwiki-20100108-pages-articles.xml.bz2 | lzma -c 
itwiki-20100108-pages-articles.sql.lzma
1000 pages (88,755/sec), 1000 revs (88,755/sec)
2000 pages (65,935/sec), 2000 revs (65,935/sec)
3000 pages (67,621/sec), 3000 revs (67,621/sec)
4000 pages (80,336/sec), 4000 revs (80,336/sec)
5000 pages (80,457/sec), 5000 revs (80,457/sec)
Exception in thread main java.io.IOException: not a name start character:
U+26
   at org.mediawiki.importer.XmlDumpReader.readDump(mwdumper)
   at org.mediawiki.dumper.Dumper.main(mwdumper)
Caused by: org.xml.sax.SAXParseException: not a name start character: U+26
   at gnu.xml.stream.SAXParser.parse(libgcj.so.81)
   at javax.xml.parsers.SAXParser.parse(libgcj.so.81)
   at javax.xml.parsers.SAXParser.parse(libgcj.so.81)
   at org.mediawiki.importer.XmlDumpReader.readDump(mwdumper)
   ...1 more
Caused by: javax.xml.stream.XMLStreamException: not a name start character:
U+26
   at gnu.xml.stream.XMLParser.error(libgcj.so.81)
   at gnu.xml.stream.XMLParser.readNmtoken(libgcj.so.81)
   at gnu.xml.stream.XMLParser.readNmtoken(libgcj.so.81)
   at gnu.xml.stream.XMLParser.readCharData(libgcj.so.81)
   at gnu.xml.stream.XMLParser.next(libgcj.so.81)
   at gnu.xml.stream.XMLParser.hasNext(libgcj.so.81)
   at gnu.xml.stream.SAXParser.parse(libgcj.so.81)
   ...4 more


-- 
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 22130] German iTunes store won't download Wikipedia Mobile

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


Michael malr...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |major




--- Comment #3 from Michael malr...@gmail.com  2010-01-18 09:12:48 UTC ---
Scratch that - *any* iTunes store seems to have difficulty downloading the
mobile app.

Is this an iTunes 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 22127] Enable AbuseFilter on Russian Wikisource

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


Innv irm...@gmail.com changed:

   What|Removed |Added

 CC||irm...@gmail.com




--- Comment #1 from Innv irm...@gmail.com  2010-01-18 09:51:50 UTC ---
In additional: Flags abusefilter-editor and flood can grant and revoke
sysops (administrators).


-- 
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 22127] Enable AbuseFilter on Russian Wikisource

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





--- Comment #2 from Innv irm...@gmail.com  2010-01-18 10:05:53 UTC ---
http://ru.wikisource.org/wiki/Викитека:Форум#.D0.9F.D1.80.D0.B5.D0.B4.D0.BB.D0.BE.D0.B6.D0.B5.D0.BD.D0.B8.D0.B5
- local discussion about enable of AbuseFilter.


-- 
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 22137] mwdumper dies with not a name start character: U+26 error

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





--- Comment #1 from Kelson [Emmanuel Engelhart] emman...@engelhart.org  
2010-01-18 10:59:50 UTC ---
Hier is a diff adding column and line information to the exception
informations:

===
--- src/org/mediawiki/importer/XmlDumpReader.java   (révision 61197)
+++ src/org/mediawiki/importer/XmlDumpReader.java   (copie de travail)
@@ -36,6 +36,7 @@
 import javax.xml.parsers.ParserConfigurationException;
 import javax.xml.parsers.SAXParser;
 import javax.xml.parsers.SAXParserFactory;
+import org.xml.sax.SAXParseException;

 import org.xml.sax.Attributes;
 import org.xml.sax.SAXException;
@@ -82,15 +83,17 @@
 */
public void readDump() throws IOException {
try {
-   SAXParserFactory factory =
SAXParserFactory.newInstance();
-   SAXParser parser = factory.newSAXParser();
+   SAXParserFactory factory = SAXParserFactory.newInstance();
+   SAXParser parser = factory.newSAXParser();

parser.parse(input, this);
} catch (ParserConfigurationException e) {
throw (IOException)new
IOException(e.getMessage()).initCause(e);
+   } catch (SAXParseException e) {
+   throw (IOException)new IOException(e.getMessage() + 
(line:  + e.getLineNumber() +  column:  + e.getColumnNumber() +
)).initCause(e);
} catch (SAXException e) {
-   throw (IOException)new
IOException(e.getMessage()).initCause(e);
-   }
+   throw (IOException)new
IOException(e.getMessage()).initCause(e);
+   }
writer.close();
}


-- 
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 22137] mwdumper dies with not a name start character: U+26 error

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





--- Comment #2 from Kelson [Emmanuel Engelhart] emman...@engelhart.org  
2010-01-18 11:37:36 UTC ---
Created an attachment (id=6965)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=6965)
Problematic part of the XML dump

I have extract the problematic part of the dump, see attachment.

$ mwdumper --format=sql:1.5 sample.xml.bz2 | lzma -c -d  sample.sql.lzma
Exception in thread main java.io.IOException: not a name start character:
U+26 (line: 82 column: 1)
   at org.mediawiki.importer.XmlDumpReader.readDump(mwdumper)
   at org.mediawiki.dumper.Dumper.main(mwdumper)
Caused by: org.xml.sax.SAXParseException: not a name start character: U+26
   at gnu.xml.stream.SAXParser.parse(libgcj.so.81)
   at javax.xml.parsers.SAXParser.parse(libgcj.so.81)
   at javax.xml.parsers.SAXParser.parse(libgcj.so.81)
   at org.mediawiki.importer.XmlDumpReader.readDump(mwdumper)
   ...1 more
Caused by: javax.xml.stream.XMLStreamException: not a name start character:
U+26
   at gnu.xml.stream.XMLParser.error(libgcj.so.81)
   at gnu.xml.stream.XMLParser.readNmtoken(libgcj.so.81)
   at gnu.xml.stream.XMLParser.readNmtoken(libgcj.so.81)
   at gnu.xml.stream.XMLParser.readCharData(libgcj.so.81)
   at gnu.xml.stream.XMLParser.next(libgcj.so.81)
   at gnu.xml.stream.XMLParser.hasNext(libgcj.so.81)
   at gnu.xml.stream.SAXParser.parse(libgcj.so.81)
   ...4 more


-- 
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 15245] Form kills Dates

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


DaSch dasch...@gmx.net changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #8 from DaSch dasch...@gmx.net  2010-01-18 12:26:06 UTC ---
seams to work properly


-- 
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 22096] Remove support for MSIE 6

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





--- Comment #3 from Chad H. innocentkil...@gmail.com  2010-01-18 12:47:41 UTC 
---
See r61083, r61085, r61128: Dropping IE 5.0 and 5.5 fixes.


-- 
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 22138] New: Bots should leave any status of revisions unchanged, not only sighted

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

   Summary: Bots should leave any status of revisions unchanged, not
only sighted
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: FlaggedRevs
AssignedTo: jschulz_4...@msn.com
ReportedBy: pbir...@gmail.com


Reviewed versions are being actively used on de.wikiquote. There, they complain
that bot edits change the status of revisions flagged as reviewed down to
sighted. 

I think it would in general be a good idea that a botedit just carries over the
last flag to the newly created version, not only for sighted edits as it is
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 22139] New: Install Labeled Section Transclusion on wikt:cs:

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

   Summary: Install Labeled Section Transclusion on wikt:cs:
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Keywords: shell
  Severity: enhancement
  Priority: Normal
 Component: Site requests
AssignedTo: rhals...@wikimedia.org
ReportedBy: dann...@email.cz


Please install Labeled Section Transclusion on wikt:cs:. 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 22140] New: New Format: Rank

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

   Summary: New Format: Rank
   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


Would be nice to have the possibility to ask for the rank of a page.
This would be the number that the pages has when beeing printed with format=ul


-- 
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 21936] Provide a link back to the article which has been patrolled

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


Alexandre Emsenhuber [IAlex] alex.emsenhu...@bluewin.ch changed:

   What|Removed |Added

 CC||alex.emsenhu...@bluewin.ch
 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Alexandre Emsenhuber [IAlex] alex.emsenhu...@bluewin.ch  
2010-01-18 19:06:16 UTC ---
Done in r61209.


-- 
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 22130] German iTunes store won't download Wikipedia Mobile

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


Casey Brown cbrown1...@gmail.com changed:

   What|Removed |Added

 CC||cbrown1...@gmail.com




--- Comment #4 from Casey Brown cbrown1...@gmail.com  2010-01-18 20:01:49 UTC 
---
(In reply to comment #1)
 You always need an account to download from iTunes...?
 

I think what Michael is saying is that someone e-mailed someone else and *they*
said that they can't download Wikipedia Mobile from the German app store... but
*Michael* doesn't have an account, so he can't verify the issue.


-- 
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-18 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21907





--- Comment #9 from Yayayoute ape...@free.fr  2010-01-18 21:04:47 UTC ---
Hi support guys,

Well, nice idea from David ; but is this the fix to the 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 22141] New: Separate out 'tboverride' right for account creation

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

   Summary: Separate out 'tboverride' right for account creation
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: TitleBlacklist
AssignedTo: vasi...@gmail.com
ReportedBy: j...@jakewartenberg.com


Right now, there is a single 'tboverride' right given to the 'accountcreator'
group on enwiki.  This allows those users who work on the account creation team
to bypass the title blacklist when creating accounts, but it also lets them
edit pages that only sysops are supposed to be able to edit.  Creating a
'tboverride-acc' right that only allows the user to bypass the TBL for account
creation would remedy this, if it was assigned to that group instead.


-- 
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 22142] New: side by side preview for non logged in users

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

   Summary: side by side preview for non logged in users
   Product: Wikimedia
   Version: unspecified
  Platform: Macintosh
   URL: http://prototype.wikimedia.org/en.wikipedia.org/Main_Pag
e
OS/Version: Mac OS X 10.6
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: General/Unknown
AssignedTo: roan.katt...@gmail.com
ReportedBy: pv...@wikimedia.org
CC: tpars...@wikimedia.org


when using the side by side preview without being logged in:  made changes in
the editor and hit preview and was bounced to a page without side by side
preview with a recaptcha.  after ending the captca, my only option was to hit
the old style show preview at the bottom of the page.  usability


-- 
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 22142] side by side preview for non logged in users

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


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

   What|Removed |Added

 CC||roan.katt...@gmail.com
   Severity|enhancement |normal
  Component|General/Unknown |UsabilityInitiative
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 on the CC list for the bug.

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


[Bug 22143] New: Extension:WikiArticleFeeds 1) non-article pages have wrong auto-discovery links in page header; 2) missing rss feed icons in toolbar

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

   Summary: Extension:WikiArticleFeeds 1) non-article pages have
wrong auto-discovery links in page header; 2) missing
rss feed icons in toolbar
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://www.mediawiki.org/wiki/Extension:WikiArticleFeeds
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: [other]
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: m...@tgries.de


The current
http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/WikiArticleFeeds/WikiArticleFeeds.php?view=markuppathrev=60868
does not support the correct generation of auto-discovery links (in the page
header) for non-article namespace pages (such as User: pages or subpages to
them).

This function needs to be modified
/**
 * Adds the Wiki feed link headers.
 * Usage: $wgHooks['OutputPageBeforeHTML'][] = 'wfAddWikiFeedHeaders';
 * @param $out Handle to an OutputPage object (presumably $wgOut).
 * @param $text Article/Output text.
 */
function wfAddWikiFeedHeaders( $out, $text )

Also missing are the small feed icon images next to rss atom in the
navigation / toolbar.

If community requests, I can submit a working patch for (attention) MediaWiki
version 1.15.1 . Otherwise. I'll wait until 1.16 release.


-- 
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 22138] Bots should leave any status of revisions unchanged, not only sighted

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


Aaron Schulz jschulz_4...@msn.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Aaron Schulz jschulz_4...@msn.com  2010-01-19 03:56:03 
UTC ---
Done in r61235 (in spite of summary).


-- 
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 22068] Create Portal namespace on trwiktionary

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


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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #5 from Roan Kattouw roan.katt...@gmail.com  2010-01-19 04:28:36 
UTC ---
Done


-- 
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 22049] change br.wikimedia language

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


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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Roan Kattouw roan.katt...@gmail.com  2010-01-19 04:34:10 
UTC ---
Done. When reading anonymously, you may still see pages in European Portugese
because they were cached in Squid that way; purge those pages to fix that
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 22104] Enable WT: and WS: namespace aliases

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


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

   What|Removed |Added

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




--- Comment #1 from Roan Kattouw roan.katt...@gmail.com  2010-01-19 04:49:00 
UTC ---
I've created the WS: alias. There was a page at [[WS:sheer]] that couldn't be
moved to [[Wikisaurus:sheer]] because the latter already existed; it was moved
to [[Wikisaurus:sheer/BROKEN]] instead, and it's probably a redirect that can
safely be removed.

I can't create the WT: alias because there's already a WT: namespace; after
you've moved any pages and redirects in there to the Wiktionary: namespace
(remember that WT:Foo and Wiktionary:Foo will be equivalent after I add the
alias) and deleted the WT: pages, I can add the alias.

A list of WT: pages is at http://en.wiktionary.org/wiki/Special:AllPages/WT: .
Note that there's also a handful of talk pages:
http://en.wiktionary.org/wiki/Special:AllPages/WT_talk:


-- 
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 22104] Enable WT: and WS: namespace aliases

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


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

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #2 from Roan Kattouw roan.katt...@gmail.com  2010-01-19 04:49:49 
UTC ---
Bug isn't completely fixed, closed the bug by accident.


-- 
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 22127] Enable AbuseFilter on Russian Wikisource

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


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

   What|Removed |Added

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




--- Comment #3 from Roan Kattouw roan.katt...@gmail.com  2010-01-19 05:06:40 
UTC ---
(In reply to comment #0)
 Sysops have rights abusefilter-log-detail, abusefilter-modify,
 abusefilter-private, abusefilter-revert and
 abusefilter-modify-restricted.
 
The abusefilter-private right is not currently being given to sysops because it
leaks IP addresses according to Werdna, says Tim.

 Please create groups Abusefilter-editors with rights abusefilter-modify and
 abusefilter-log-detail.
 
 Also please create flood flag with rights bot and noratelimit. 
 
All done.


-- 
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 22104] Enable WT: and WS: namespace aliases

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


Yair Rand yyairr...@gmail.com changed:

   What|Removed |Added

 CC||yyairr...@gmail.com




--- Comment #3 from Yair Rand yyairr...@gmail.com  2010-01-19 06:40:20 UTC ---
All pages in the WT namespace have either been moved to the Wiktionary:
namespace or deleted. 


-- 
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 22144] New: Add-Media-Wizard : Firefox3.0 : Duplicate images are inserted

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

   Summary: Add-Media-Wizard : Firefox3.0 : Duplicate images are
inserted
   Product: MediaWiki extensions
   Version: any
  Platform: PC
OS/Version: All
Status: NEW
  Keywords: Citron
  Severity: major
  Priority: Normal
 Component: UsabilityInitiative
AssignedTo: tpars...@wikimedia.org
ReportedBy: wikib...@calcey.com
CC: wikibugs-l@lists.wikimedia.org, nkom...@wikimedia.org


Created an attachment (id=6966)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=6966)
 Wiki_r61147_2010-01-19_duplicateimage

Reporting against Citron Release : r61147


Steps to Reproduce ::

1) Select a random page and click on edit
2) Click on 'Add media wizard' icon
3) Select an image and try to 'preview insert'
4) Click on 'Do insert' to add image to article
5) Click on 'Show preview' and preview article 
image has duplicated 


Expected Outcome::
Only one image shall be inserted and displayed


Test Environment::
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.16) Gecko/2009120208
Firefox/3.0.16 (.NET CLR 3.5.30729)


-- 
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 22145] New: Add-Media-Wizard : Firefox 3.0 : Image editing options are not available sometimes

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

   Summary: Add-Media-Wizard : Firefox 3.0 : Image editing options
are not available sometimes
   Product: MediaWiki extensions
   Version: any
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Keywords: Citron
  Severity: enhancement
  Priority: Normal
 Component: UsabilityInitiative
AssignedTo: tpars...@wikimedia.org
ReportedBy: wikib...@calcey.com
CC: wikibugs-l@lists.wikimedia.org, nkom...@wikimedia.org


Created an attachment (id=6967)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=6967)
Wiki_r61147_2010-01-19_noimageoptions

Reporting against Citron Release : r61147

Steps to Reproduce ::
1)Select a random page and click on edit
2)Click on 'Add media wizard' icon and select an image
Image will show without any options to edit or insert
Only the 'cancel' button is shown

Expected Outcome::
Selected image shall be loaded with all the image options (crop image,
alignment, insert image etc..)


Test Environment::
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.16) Gecko/2009120208
Firefox/3.0.16 (.NET CLR 3.5.30729)


-- 
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 22145] Add-Media-Wizard : Firefox 3.0 : Image editing options are not available sometimes

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


Calcey QA wikib...@calcey.com changed:

   What|Removed |Added

   Severity|enhancement |major




-- 
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 22104] Enable WT: and WS: namespace aliases

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


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

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #4 from Roan Kattouw roan.katt...@gmail.com  2010-01-19 07:13:42 
UTC ---
Cool, that was fast. I've removed the WT namespace and replaced it with an
alias.


-- 
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 22146] New: Add-Media-Wizard : Opera : Tool bar not display

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

   Summary: Add-Media-Wizard : Opera : Tool bar not display
   Product: MediaWiki extensions
   Version: any
  Platform: PC
OS/Version: All
Status: NEW
  Keywords: Citron
  Severity: critical
  Priority: Normal
 Component: UsabilityInitiative
AssignedTo: tpars...@wikimedia.org
ReportedBy: wikib...@calcey.com
CC: wikibugs-l@lists.wikimedia.org, nkom...@wikimedia.org


Created an attachment (id=6968)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=6968)
 Wiki_r61147_2010-01-19_ToolbarNotDisplay

Reporting against Citron Release : r61147

Steps to Reproduce ::

1) Login to edit the page
2) Edit page
Page load without tool bar


Expected Outcome::
Tool bar should be display


Test Environment::

Browser (User-Agent):   Opera/9.63 (Windows NT 6.0; U; en) Presto/2.1.1

Browser (User-Agent): Opera/9.80 (X11; Linux i686; U; en) Presto/2.2.15
Version/10.00

Browser (User-Agent):   Mozilla/4.0 (compatible;MSIE 6.0;Mac_PowerPC Mac OS X;
en) Opera 8.01

Browser (User-Agent): Opera/9.80 (Macintosh; Intel Mac OS X; U; en)
Presto/2.2.15 Version/10.10


-- 
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 22147] New: Detected bug in an extension! Hook efContributorsAddonSetup failed to return a value

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

   Summary: Detected bug in an extension! Hook
efContributorsAddonSetup failed to return a value
   Product: MediaWiki
   Version: 1.16-svn
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: blocker
  Priority: Normal
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: bertrand.gron...@aliceadsl.fr


Created an attachment (id=6969)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=6969)
screenshot of mediawiki interface

Impossible to access to any page. I read the following messages :

In the header of the page : 

Warning: Parameter 2 to efContributorsAddonSetup() expected to be a reference,
value given in /var/www/wiki/includes/Hooks.php on line 133


In the page : 

Detected bug in an extension! Hook efContributorsAddonSetup failed to return a
value; should return true to continue hook processing or false to abort.

Backtrace:

#0 /var/www/wiki/includes/OutputPage.php(632): wfRunHooks('OutputPageParse...',
Array)
#1 /var/www/wiki/includes/OutputPage.php(640):
OutputPage-addParserOutputNoText(Object(ParserOutput))
#2 /var/www/wiki/includes/Article.php(3979):
OutputPage-addParserOutput(Object(ParserOutput))
#3 /var/www/wiki/includes/Article.php(1321): Article-outputWikiText('div
style=fon...', false, Object(ParserOptions))
#4 [internal function]: Article-doViewParse()
#5 /var/www/wiki/includes/PoolCounter.php(59): call_user_func(Array)
#6 /var/www/wiki/includes/Article.php(908):
PoolCounter_Stub-executeProtected(Array, false)
#7 /var/www/wiki/includes/Wiki.php(493): Article-view()
#8 /var/www/wiki/includes/Wiki.php(70):
MediaWiki-performAction(Object(OutputPage), Object(Article), Object(Title),
Object(User), Object(WebRequest))
#9 /var/www/wiki/index.php(117):
MediaWiki-performRequestForTitle(Object(Title), Object(Article),
Object(OutputPage), Object(User), Object(WebRequest))
#10 {main}


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