[Bug 25025] Add pre commit hook to prevent blank commit summaries

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25025

JeLuF je...@gmx.de changed:

   What|Removed |Added

 CC||je...@gmx.de

--- Comment #1 from JeLuF je...@gmx.de 2010-09-08 05:59:58 UTC ---
On which wiki?
Has the community discussed and approved this?

-- 
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 25025] Add pre commit hook to prevent blank commit summaries

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25025

p858snake p858sn...@gmail.com changed:

   What|Removed |Added

 CC||p858sn...@gmail.com

--- Comment #2 from p858snake p858sn...@gmail.com 2010-09-08 06:01:03 UTC ---
(In reply to comment #1)
 On which wiki?
 Has the community discussed and approved this?
On SVN not wiki, silly!.

-- 
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 24394] Install AbuseFilter on Hindi Wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24394

mayurkumar mayur...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #10 from mayurkumar mayur...@gmail.com 2010-09-08 07:24:39 UTC ---
hi ,thanks for enavling this group but we asked for bureucretat to add/remove
this group not admins as par Bug 24900

-- 
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 25082] Grant abusefilter-log-detail to only sysop and abusefilter group on jawiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25082

aokomoriuta aokomori...@enmps.net changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #2 from aokomoriuta aokomori...@enmps.net 2010-09-08 08:13:15 UTC 
---
Thanks, but
+   $wgGroupPermissions['sysop']['abusefilter-log-detail'] = false;
+   $wgGroupPermissions['abusefilter']['abusefilter-log-detail'] = false;
I think they should be true.

-- 
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 25082] Grant abusefilter-log-detail to only sysop and abusefilter group on jawiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25082

--- Comment #3 from aokomoriuta aokomori...@enmps.net 2010-09-08 08:22:55 UTC 
---
And we would be grateful if you could resolve Bug 24852 at the same time.

Because we'll begin to create and enable filters after this is resolved
but there's some proposed filters which uses the new namespace.

-- 
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 25094] New: Fatal error: Call to a member function getNamespace() on a non-object inmediawiki/extensions/SemanticForms/includes/SF_LinkUtils.php on line 169

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25094

   Summary: Fatal error: Call to a member function getNamespace()
on a non-object
inmediawiki/extensions/SemanticForms/includes/SF_LinkU
tils.php on line 169
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: SemanticForms
AssignedTo: yaro...@gmail.com
ReportedBy: ma...@abv.bg
CC: wikibugs-l@lists.wikimedia.org, g.m.haged...@gmail.com


When using script/command line tools from mediawiki/maintenance/
the global $wgTitle seems not exists and scripts fails at
$wgTitle-getNamespace()  
(includes/SF_LinkUtils.php:169)

so I make small patch to skip this case (file is attached):

--- includes/SF_LinkUtils.php   (revision 72575)
+++ includes/SF_LinkUtils.php   (working copy)
@@ -166,7 +166,7 @@
   // links, even if they've since been recreated. The same might
   // hold true for other special pages.
   global $wgTitle;
-   if ( $wgTitle-getNamespace() == NS_SPECIAL )
+   if ( !$wgTitle || $wgTitle-getNamespace() == NS_SPECIAL )
   return false;

   $store = smwfGetStore();

-- 
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 25094] Fatal error: Call to a member function getNamespace() on a non-object inmediawiki/extensions/SemanticForms/includes/SF_LinkUtils.php on line 169

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25094

--- Comment #1 from ma...@abv.bg 2010-09-08 08:42:19 UTC ---
Created attachment 7678
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=7678
patch

-- 
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 25025] Add pre commit hook to prevent blank commit summaries

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25025

--- Comment #3 from Chad H. innocentkil...@gmail.com 2010-09-08 10:36:27 UTC 
---
I support this!

http://www.powertrip.co.za/blog/archives/pre-commit

Could work, tweaking the  10 to be some value we'd like to set as minimum :)

-- 
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 25087] Categories with subcats show a fatal error when displayed

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25087

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||innocentkil...@gmail.com
 Resolution||FIXED

--- Comment #1 from Chad H. innocentkil...@gmail.com 2010-09-08 10:41:28 UTC 
---
Fixed in r72576.

-- 
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 25069] Wikipedia logo for sidebar column

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25069

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

  Component|Watchlist   |Site logos
 AssignedTo|wikibug...@lists.wikimedia. |cb...@wikimedia.org
   |org |
Product|MediaWiki   |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 25095] New: Special:Categories doesn't show first relevant item when from is filled

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25095

   Summary: Special:Categories doesn't show first relevant item
when from is filled
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Keywords: code-update-regression
  Severity: minor
  Priority: Normal
 Component: Special pages
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: dann...@email.cz


Special:Categories/Foo should show:

Category:Foo
Category:Foo bar
Category:Foo baz
Category:Qux

but shows:

Category:Foo bar
Category:Foo baz
Category:Qux

while the Category:Foo is the last item of previous page.


--

(adding code-update-regression keyword, because I'm pretty sure it used to
work correctly before)

-- 
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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

Casey Brown b...@caseybrown.org changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||b...@caseybrown.org
 Resolution|INVALID |

--- Comment #2 from Casey Brown b...@caseybrown.org 2010-09-08 11:07:55 UTC 
---
Actually, for the v2 logo rollout, we've just been linking to the Commons file.
 (See InitialiseSettings to confirm that.)  Sometime in the future, they'll be
uploaded to the local wikis, but until then, we've been linking to the Commons
version.

-- 
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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

--- Comment #3 from p858snake p858sn...@gmail.com 2010-09-08 11:15:47 UTC ---
(In reply to comment #2)
 Actually, for the v2 logo rollout, we've just been linking to the Commons 
 file.
  (See InitialiseSettings to confirm that.)  Sometime in the future, they'll be
 uploaded to the local wikis, but until then, we've been linking to the Commons
 version.

it's already pointing locally... It seems kinda pointless to change it then
change it back at a later date, It takes a lot less time to upload the newer
version on the local site.

-- 
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 25096] New: Notice: Undefined index: fallback in \includes\LocalisationCache.php on line 211

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25096

   Summary: Notice: Undefined index: fallback in
\includes\LocalisationCache.php on line 211
   Product: MediaWiki
   Version: 1.17-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: raimond.spekk...@gmail.com


Running trunk (r72584) I get since today: 

Notice: Undefined index: fallback in \includes\LocalisationCache.php on line
211

This line/function was added with r52503.

-- 
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 25096] Notice: Undefined index: fallback in \includes\LocalisationCache.php on line 211

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25096

Platonides platoni...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||platoni...@gmail.com
 Resolution||DUPLICATE

--- Comment #1 from Platonides platoni...@gmail.com 2010-09-08 12:56:28 UTC 
---


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

-- 
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 24995] fallback key missing from localization cache

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24995

Platonides platoni...@gmail.com changed:

   What|Removed |Added

 CC||raimond.spekk...@gmail.com

--- Comment #4 from Platonides platoni...@gmail.com 2010-09-08 12:56:28 UTC 
---
*** Bug 25096 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 25097] New: Monobook: Footer is below the sidebar.

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25097

   Summary: Monobook: Footer is below the sidebar.
   Product: MediaWiki
   Version: 1.17-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: Resource Loader
AssignedTo: tpars...@wikimedia.org
ReportedBy: raimond.spekk...@gmail.com
CC: roan.katt...@gmail.com


Created attachment 7679
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=7679
Screenshot

See attached screenshot:

Running trunk 72584 with Monobook as user preference:

1. The footer is below the sidebar

2. Maybe related: Some other styles are missing.

-- 
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 25098] New: Update special pages in id.wp

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25098

   Summary: Update special pages in id.wp
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://id.wikipedia.org
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: bknl...@yahoo.com


Hi, please update these following 5 special pages because they're almost one
year out of date:

http://id.wikipedia.org/wiki/Istimewa:Halaman_yang_diinginkan (wanted pages)
http://id.wikipedia.org/wiki/Istimewa:Halaman_buntu (deadend pages)
http://id.wikipedia.org/wiki/Istimewa:Perubahan_tersedikit (fewest revisions)
http://id.wikipedia.org/wiki/Istimewa:Artikel_lama (old pages)
http://id.wikipedia.org/wiki/Istimewa:Pranala_antar_ruang_nama (crossnamespace
links)

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 25051] Localize namespaces on newiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25051

--- Comment #5 from Platonides platoni...@gmail.com 2010-09-08 13:28:15 UTC 
---
I'm surprised it didn't fail with a Parse error (unexpected
T_CONSTANT_ENCAPSED_STRING).

-- 
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 25051] Localize namespaces on newiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25051

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

   What|Removed |Added

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

--- Comment #6 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 13:29:54 
UTC ---
(In reply to comment #1)
 Wikipedia is already localised.
 Shell access required to change Wikipedia_talk from विकिपीडिया_talk to
 विकिपीडिया वार्ता.
No it's not, you can change this in TranslateWiki too.

-- 
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 24803] Not working by default

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24803

--- Comment #1 from Krinkle krinklem...@gmail.com 2010-09-08 14:13:40 UTC ---
Also I'd like to point out that doesn't have to exist. it can be inexistant or
empty, no matter.
As long as $wgMetadataWhitelist is set to some pagename, atleast the extension
will work.

-- 
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 24803] Default configuration for Metadata editor does not work

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24803

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

Summary|Not working by default  |Default configuration for
   ||Metadata editor does not
   ||work

-- 
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 25099] New: Hide revisions by bots

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25099

   Summary: Hide revisions by bots
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: bknl...@yahoo.com


In smaller Wikipedias, in my case Indonesian Wikipedia, stubs are usually
translated from en.wp. Once it is translated usually there's a long period
until the article is edited again. During that time, bots edited the articles a
lot and in most cases took the whole history page. If possible I want to
request a feature to hide the edits made by bots.

-- 
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 25099] Hide revisions by bots

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25099

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||innocentkil...@gmail.com
 Resolution||DUPLICATE

--- Comment #1 from Chad H. innocentkil...@gmail.com 2010-09-08 15:13:30 UTC 
---


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

-- 
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 16228] filter history of edits on bots (hidebots=1)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16228

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||bknl...@yahoo.com

--- Comment #19 from Chad H. innocentkil...@gmail.com 2010-09-08 15:13:30 UTC 
---
*** Bug 25099 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 20266] Browse history by user type

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20266

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||innocentkil...@gmail.com
 Resolution||DUPLICATE

--- Comment #3 from Chad H. innocentkil...@gmail.com 2010-09-08 15:17:03 UTC 
---


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

-- 
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 16619] Add filters to history page

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16619

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||dy_...@yahoo.com

--- Comment #2 from Chad H. innocentkil...@gmail.com 2010-09-08 15:17:03 UTC 
---
*** Bug 20266 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 2667] allow to filter / identify own contributions in action=history e.g. by bolding unseen revisions

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=2667

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Blocks||16619

-- 
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 3640] Mark edits that were reverted (in the history and contribs pages)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3640

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Blocks||16619

-- 
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 16228] filter history of edits on bots (hidebots=1)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16228

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Blocks||16619

-- 
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 16619] Add filters to history page

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16619

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||innocentkil...@gmail.com
 Depends on||3640, 16228, 2667

-- 
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 25066] Interpretation of multiple brackets

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25066

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||innocentkil...@gmail.com
 Resolution||DUPLICATE

--- Comment #1 from Chad H. innocentkil...@gmail.com 2010-09-08 15:25:11 UTC 
---


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

-- 
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 11239] Image captions ending with external links display inconsistently

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11239

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||wpedz...@wp.pl

--- Comment #4 from Chad H. innocentkil...@gmail.com 2010-09-08 15:25:11 UTC 
---
*** Bug 25066 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 25080] categorylinks table is not updated during upgrade (postgresql)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25080

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||innocentkil...@gmail.com,
   ||overlo...@gmail.com

--- Comment #1 from Chad H. innocentkil...@gmail.com 2010-09-08 15:32:52 UTC 
---
The patch file seems to exist
(/phase3/maintenance/postgres/archives/patch-categorylinks-better-collation.sql).

Can't seem to find the entry in the updaters list though.

-- 
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 25061] Table of contents problem on right to left languages

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25061

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

Summary|Term of content problem on  |Table of contents problem
   |right to left languages |on right to left languages

--- Comment #9 from Chad H. innocentkil...@gmail.com 2010-09-08 15:33:46 UTC 
---
Summary tweak.

-- 
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 25061] Table of contents problem on right to left languages

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25061

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

Summary|Term of content problem on  |Table of contents problem
   |right to left languages |on right to left languages
Summary|Term of content problem on  |Table of contents problem
   |right to left languages |on right to left languages

--- Comment #9 from Chad H. innocentkil...@gmail.com 2010-09-08 15:33:46 UTC 
---
Summary tweak.

--- Comment #10 from Chad H. innocentkil...@gmail.com 2010-09-08 15:33:46 UTC 
---
Summary tweak.

-- 
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 25080] categorylinks table is not updated during upgrade (postgresql)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25080

--- Comment #2 from OverlordQ overlo...@gmail.com 2010-09-08 16:13:29 UTC ---
It was added when the categorylinks collation was still experimental so it
wasn't added to the automagic updates list since the design wasn't stable yet. 
Every time the schema changed having a way to updated from each old version to
the current would be messy.

-- 
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 25100] New: Minutes field not registering on initial campaign setup

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25100

   Summary: Minutes field not registering on initial campaign
setup
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: CentralNotice
AssignedTo: tf...@wikimedia.org
ReportedBy: jameso...@gmail.com


When setting up a new campaign on the main Special:CentralNotice page the
minutes field is getting ignored when the campaign is created.

Example:
New Campaign title:Test
Start date 9/8/2010
Start time: 21:55

When pressing submit the new campaign will be created as 21:00. Tested it with
multiple different settings in the minute field but still resets it to :00. You
CAN then go into the edit campaign field to add banners and change the minute
field 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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

--- Comment #4 from Cary Bass cb...@wikimedia.org 2010-09-08 17:01:19 UTC ---
The issue is that the Vector changeover was supposed to point project logos to
the updated logos on commons, in order that we have a central unified control
over logos.  I'm not certain about the exact reasoning, but given that there
were a large number of logos that had not yet been created in the 2.0 format. 
This doesn't simply affect the Latin Wikipedia project but numerous others, and
a coordinated effort must be made to either upload the remaining logos locally
(which is where they'll eventually reside) or re-point the sitelogo to the
commons pages.  I imagine it will be easier to do local uploads, which will
require the assistance of at least one steward and/or staff member.

-- 
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 12261] Render category links as an HTML list

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=12261

--- Comment #11 from Aryeh Gregor simetrical+wikib...@gmail.com 2010-09-08 
17:20:48 UTC ---
Browsers do not generally treat generated content as selectable, so that's not
a problem (or are there browsers that disagree?).  Using borders would be fine,
but IE6 doesn't support :first-child, so some hack would be needed unless we
think this is minor enough that IE6 users can suffer.

-- 
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 5066] Parser HTML compliance tests

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=5066

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 CC||innocentkil...@gmail.com
 Resolution||FIXED

--- Comment #3 from Chad H. innocentkil...@gmail.com 2010-09-08 17:40:21 UTC 
---
Most of these have probably been fixed (marking as such). If any of these can
be individually reproducible, please feel free to open bugs for them.

-- 
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 25080] categorylinks table is not updated during upgrade (postgresql)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25080

--- Comment #3 from Chad H. innocentkil...@gmail.com 2010-09-08 17:48:52 UTC 
---
(In reply to comment #2)
 It was added when the categorylinks collation was still experimental so it
 wasn't added to the automagic updates list since the design wasn't stable 
 yet. 
 Every time the schema changed having a way to updated from each old version to
 the current would be messy.

That's what people get for running trunk, the schema can change ;-)

In general, this would be one of the (many many) reasons I want a sane schema
generator/updater/thingie.

-- 
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 25101] New: Trim comments before saving

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25101

   Summary: Trim comments before saving
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://www.mediawiki.org/wiki/Special:Code/MediaWiki/7
2186
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: CodeReview
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: innocentkil...@gmail.com
CC: innocentkil...@gmail.com


See URL. Comments aren't getting trimmed after posting, so whitespace-only
comments are being saved.

Should fix 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 25102] New: Image.php throws E_STRICT error

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25102

   Summary: Image.php throws E_STRICT error
   Product: MediaWiki
   Version: 1.16.0
  Platform: All
OS/Version: All
Status: NEW
  Severity: trivial
  Priority: Normal
 Component: Images and files
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: seventow...@gmail.com
CC: gpaum...@wikimedia.org, bryan.tongm...@gmail.com


The declaration of newFromTitle in Image.php doesn't match the declaration in
LocalFile.php which causes this E_STRICT error:

Strict standards: Declaration of Image::newFromTitle() should be compatible
with that of LocalFile::newFromTitle() in
/opt/cruisecontrol-bin-2.8.3/projects/wiki4di/build/wiki/includes/filerepo/Image.php
on line 74

-- 
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 25103] New: Create Pielikums namespace on lv.wiktionary

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25103

   Summary: Create Pielikums namespace on lv.wiktionary
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: emopun...@inbox.lv


Hi! It would be nice to have a namespace Pielikums in the Latvian Wiktionary
(it means Appendix).
The discussion name should be Pielikuma diskusija.
Thank you :)

-- 
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 24792] API help caching doesn't vary on $wgUser-isAnon(), causes staleness

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24792

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

   What|Removed |Added

 CC||roan.katt...@gmail.com
Summary|API purge module|API help caching doesn't
   |discrepancy between |vary on $wgUser-isAnon(),
   |commons.wikimedia.org and   |causes staleness
   |en.wiktionary.org   |

--- Comment #5 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 18:30:55 
UTC ---
A nice and clean solution for this could be to allow modules to add to the
cache key by overriding a base method.

-- 
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 25103] Create Pielikums namespace on lv.wiktionary

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25103

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

   What|Removed |Added

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

--- Comment #1 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 18:31:53 
UTC ---
Please provide a link to community consensus for this change.

-- 
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 24796] Devanagari check mark button

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24796

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-09-08 18:34:06 
UTC ---
The automatic transliteration on the edit form is done with local JavaScript.
It should be easy to modify that to also apply to the search box.

Such local issues are outside Bugzilla's scope, though.

-- 
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 24774] rvexpandtemplates=true does not expand templates in ref tags

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24774

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

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||DUPLICATE

--- Comment #5 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 18:41:35 
UTC ---
This is a duplicate of bug 2257 because both are caused by the same underlying
issue, which is that template calls inside ref tags are not expanded in the
template expansion (preprocessor) phase, which happens before the ref
expansion (parser) phase. rvexpandtemplates=true runs wikitext through the
preprocessor but not through the parser.

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

-- 
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 2257] Template parameters unavailable to XML-style parser tags

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=2257

--- Comment #89 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 18:41:35 
UTC ---
*** Bug 24774 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 24792] API help caching doesn't vary on $wgUser-isAnon(), causes staleness

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24792

--- Comment #6 from MZMcBride b...@mzmcbride.com 2010-09-08 18:47:01 UTC ---
It seems that the purge module is exceptional (it's probably the only module
that makes a distinction between POST behavior based on logged-in status).
Modifying the purge module to output a generic message in the documentation is
probably the simplest solution, something like If you're not logged in, you
must POST this request.

-- 
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 25104] New: timestamp of revision inside review log is in UTC

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25104

   Summary: timestamp of revision inside review log is in UTC
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: FlaggedRevs
AssignedTo: jschulz_4...@msn.com
ReportedBy: umherirrender_de...@web.de
CC: innocentkil...@gmail.com


The review log have a link to the revision with timestamp ($2 of
review-logentry-id). That timestamp is in UTC not in user time. Please use the
user time. 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 24710] Problem with tabs display on Serbian Wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24710

--- Comment #17 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 18:51:57 
UTC ---
(In reply to comment #16)
 So, basically, div with the p-variants ID should have the properties of
 vectorTabs class (and everything that goes with it), not vectorMenu.
 
 I don't think there's an easy and slick way of achieving that without changing
 MediaWiki, or whatever generates this code. Since CSS doesn't have
 non-inheritance, even if it's possible to do this in CSS, it would be long,
 dirty and ugly.
You can use JS to change the class of the variants div and unwrap the
contents of the h5.

-- 
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 25023] show the protect-log, when the user have no permission to create the page

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25023

--- Comment #2 from Umherirrender umherirrender_de...@web.de 2010-09-08 
18:52:01 UTC ---
(In reply to comment #1)
 If it's protected against creation, the edit tab doesn't show. Going to the
 edit url shows:
 You do not have permission to edit this page, for the following reasons:
 * This page has been protected to prevent editing.
 * This title has been protected from creation by WikiSysop. The reason
 given is Foo.

That is right, but a newbie does not know the way.

-- 
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 25098] Update special pages in id.wp

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25098

duplicate...@googlemail.com changed:

   What|Removed |Added

   Keywords||shell
 CC||duplicate...@googlemail.com

-- 
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 25093] Local time for Belarusian (Taraškievica) Wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25093

duplicate...@googlemail.com changed:

   What|Removed |Added

   Keywords||shell
 CC||duplicate...@googlemail.com

-- 
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 24859] Redirect to mobile gateway should be handled on the server-side rather than the client-side

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24859

--- Comment #5 from Tomasz Finc tf...@wikimedia.org 2010-09-08 18:57:32 UTC 
---
(In reply to comment #2)
 Issue has been raised with the ops team. Waiting to hear back to determine
 action plan.

RT ticket open about this issue:
http://rt.wikimedia.org/Ticket/Display.html?id=196 . 

In the meantime we might be able to do the redirect within the resource loader
to make the experience a bit faster.

-- 
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 24818] Changing skin in userOptions.php fails.

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24818

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

   What|Removed |Added

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

--- Comment #2 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 18:58:43 
UTC ---
Have you tried setting $wgDefaultSkin = 'vector'; yet?

-- 
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 24859] Redirect to mobile gateway should be handled on the server-side rather than the client-side

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24859

--- Comment #6 from Ryan Kaldari rkald...@wikimedia.org 2010-09-08 19:09:50 
UTC ---
According to Trevor the Resource Loader won't be deployed until mid-November or
so. (I'm guessing December.)

-- 
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 24845] Using down key skips every second item in search suggestions in Chrome

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24845

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

   What|Removed |Added

 AssignedTo|tpars...@wikimedia.org  |amil...@wikimedia.org
Summary|Using down key skips every  |Using down key skips every
   |second item in search   |second item in search
   |suggestions |suggestions in Chrome

-- 
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 24248] Vector skin search Go button uses fulltext search button tooltip

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24248

Lejonel lejo...@telia.com changed:

   What|Removed |Added

   Severity|enhancement |normal

--- Comment #1 from Lejonel lejo...@telia.com 2010-09-08 19:13:31 UTC ---
Changing from enhancement to normal bug. Since the tooltip says it searches for
page text, even though the button only search for text if there is no page
title match.

-- 
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 189] Add a music wikimodule

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=189

--- Comment #106 from joergens.mi joergens@googlemail.com 2010-09-08 
19:15:43 UTC ---
Could this be a solution/compromiss.   MusixTex
http://en.wikipedia.org/wiki/MusiXTeX. It seems to be completely Tex-based.
Because we have tex already installed it may fit.


link to the homepage
http://icking-music-archive.org/software/indexmt6.html

-- 
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.
You are the assignee for the bug.

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


[Bug 24869] trusted-xff incorrectly synced

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24869

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

   What|Removed |Added

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

--- Comment #1 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 19:19:40 
UTC ---
This is now synced from
http://svn.wikimedia.org/viewvc/mediawiki/branches/wmf/1.16wmf4/extensions/TrustedXFF/trusted-hosts.txt?view=co
, although it still seems to be out of sync.

-- 
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 24884] Search box doesn't work in IE6 in Hebrew Wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24884

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

   What|Removed |Added

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

--- Comment #1 from Roan Kattouw roan.katt...@gmail.com 2010-09-08 19:26:45 
UTC ---
If something's broken on Hebrew Wikipedia but works on all other wikis (check
Arabic or another RTL language in particular), it's likely to be a local script
issue.

-- 
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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

--- Comment #5 from nick-...@ya.ru 2010-09-08 19:55:47 UTC ---
The main problem is that local community not see need to replace a logo. They
like v1. But all wikipedias logos shall look the same.

-- 
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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||INVALID

--- Comment #6 from JeLuF je...@gmx.de 2010-09-08 19:57:53 UTC ---
(In reply to comment #2)
 Actually, for the v2 logo rollout, we've just been linking to the Commons 
 file.
  (See InitialiseSettings to confirm that.)  Sometime in the future, they'll be
 uploaded to the local wikis, but until then, we've been linking to the Commons
 version.

Can't confirm that. The logo in use comes from [[la:Image:Wiki.png]], according
to the URL of the logo that's being shown on the Latin wiki.

-- 
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 25080] categorylinks table is not updated during upgrade (postgresql)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25080

Greg Sabino Mullane g...@turnstep.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||g...@turnstep.com
 Resolution||FIXED

--- Comment #4 from Greg Sabino Mullane g...@turnstep.com 2010-09-08 20:11:32 
UTC ---
Fixed in r72593

-- 
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 25080] categorylinks table is not updated during upgrade (postgresql)

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25080

--- Comment #5 from zbys...@in.waw.pl 2010-09-08 20:14:19 UTC ---
(In reply to comment #4)
 Fixed in r72593

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 24818] Changing skin in userOptions.php fails.

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24818

--- Comment #3 from Alex Kozak ako...@creativecommons.org 2010-09-08 20:24:59 
UTC ---
We'd set the $wgDefaultSkin = 'vector', but are unable to replicate the
original bug (the vector skin is enabled just fine according to our users).
It's possible there was an unrelated issue (maybe a syntax error in
LocalSettings when we first set the new default skin).

Is there somewhere in the documentation I or someone can make a note that php
userOptions.php skin --usage will not display the skin preference if it's set
to the default, since that's somewhat unintuitive behavior? Maybe it isn't that
big of an issue.

Thanks for the help!

-- 
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 25023] show the protect-log, when the user have no permission to create the page

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25023

--- Comment #3 from Platonides platoni...@gmail.com 2010-09-08 20:35:15 UTC 
---
There is a message There is currently no text in this page. You can search for
this page title in other pages, or search the related logs.  where search the
related logs leads you to the proper log.

Is that message what you want changed?
(noarticletext-nopermission)

-- 
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 25105] New: Add all public lists to Gmane: provide .mbox lists archives

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25105

   Summary: Add all public lists to Gmane: provide .mbox lists
archives
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Mailing lists
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: federicol...@tiscali.it
CC: cb...@wikimedia.org, b...@caseybrown.org


A number of our public mailing lists are not on Gmane
([[m:Mailing_lists/Overview/Gmane]]). Gmane is very useful to search archives,
thread visualization etc.; nobody among our list admins should have anything
against it if posting from Gmane itself is not allowed and email addresses are
encripted. If they have problems (very unlikely) they can request removal of
the list from Gmane.
I would need the ok of someone from the WMF (Cary?) or a sysadmin so that Gmane
owner can add them (I've asked him and he's ok with it).

To import archives we need the .mbox archive, which is located at
lists.wikimedia.org/mailman/private/listname.mbox/listname.mbox and is
usually non private (try foundation-l – warning, 128 MB or such), but is
private for all those lists.
If you don't want to make them non-private, please put them in some temporary
place where Gmane owner can download them and mail me the list of URLs (I'll
make the requests with the web form).

-- 
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 25093] Local time for Belarusian (Tara??kievica) Wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25093

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED
Summary|Local time for Belarusian   |Local time for Belarusian
   |(Taraškievica) Wikipedia|(Tara??kievica) Wikipedia

--- Comment #1 from JeLuF je...@gmx.de 2010-09-08 21:06:34 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1104)
+++ InitialiseSettings.php(working copy)
@@ -138,6 +138,7 @@
 'alswiktionary' = 'Europe/Berlin',
 'barwiki' = 'Europe/Berlin',
 'bat_smgwiki' = 'Europe/Vilnius', 
+'be_x_oldwiki' = 'Europe/Minsk',
 'bswiki' = 'Europe/Berlin',
 'cawiki' = 'Europe/Berlin',
 'cawiktionary' = 'Europe/Berlin',

-- 
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 25082] Grant abusefilter-log-detail to only sysop and abusefilter group on jawiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25082

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

--- Comment #4 from JeLuF je...@gmx.de 2010-09-08 21:12:05 UTC ---
Oops, silly cut-and-paste mistake, please excuse!

} elseif ($wgDBname == 'jawiki') {
$wgGroupPermissions['sysop']['abusefilter-modify'] = false;
$wgGroupPermissions['abusefilter']['abusefilter-modify'] = true;
$wgGroupPermissions['*']['abusefilter-log-detail'] = false;
$wgGroupPermissions['sysop']['abusefilter-log-detail'] = true;
$wgGroupPermissions['abusefilter']['abusefilter-log-detail'] = true;

-- 
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 25025] Add pre commit hook to prevent blank commit summaries

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25025

--- Comment #4 from Reedy s...@reedyboy.net 2010-09-08 21:13:41 UTC ---
Certainly seems to make some sense.

I'm sure there are very few use cases that a summary would be  10 chars.

Unless we all become avar... Then it'll be many times greater than this ;)

-- 
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 24852] New namespace for WikiProject on jawiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24852

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from JeLuF je...@gmx.de 2010-09-08 21:19:00 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1106)
+++ InitialiseSettings.php(working copy)
@@ -2079,6 +2079,7 @@
 ポータル‐ノート = 101,
 'Portal‐ノート' = 101,
 'Portal・トーク' = 101,
+'プロジェクト・トーク' = 103,
 ),
 'jawikinews' = array(
 ポータル‐ノート = 101,
@@ -3724,7 +3725,9 @@
 NS_CATEGORY = Category,
 NS_CATEGORY_TALK = Category‐ノート,
 100 = 'Portal',
-101 = 'Portal‐ノート'
+101 = 'Portal‐ノート',
+102 = 'プロジェクト',
+103 = 'ノート‐プロジェクト',
 ),
 'kawiki' = array(
 100 = 'პორტალი',

-- 
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 25103] Create Pielikums namespace on lv.wiktionary

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25103

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from JeLuF je...@gmx.de 2010-09-08 21:22:55 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1107)
+++ InitialiseSettings.php(working copy)
@@ -3773,6 +3773,10 @@
 102 = 'Vikiprojekts',
 103 = 'Vikiprojekta_diskusija',
 ),
+'lvwiktionary' = array(
+100 = 'Pielikums',
+101 = 'Pielikuma_diskusija',
+),
 'mlwiki' = array( 100 = 'കവാടം', 101 = 'കവാടത്തിന്റെ_സംവാദം'),
 'mrwiki' = array(
 100 = 'दालन',

-- 
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 24394] Install AbuseFilter on Hindi Wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24394

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

--- Comment #11 from JeLuF je...@gmx.de 2010-09-08 21:29:43 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1108)
+++ InitialiseSettings.php(working copy)
@@ -5903,8 +5903,8 @@
 'sysop' = array( 'patroller', 'autopatrolled' ),
 ),
 '+hiwiki' = array(
-'bureaucrat' = array( 'interface_editor', 'flood', ),
-'sysop' = array( 'confirmed', 'rollbacker', 'autopatrolled',
'editprotected', 'abusefilter', 'patroller', ),
+'bureaucrat' = array( 'interface_editor', 'flood', 'abusefilter', ),
+'sysop' = array( 'confirmed', 'rollbacker', 'autopatrolled',
'editprotected', 'patroller', ),
 ),
 '+hrwiki' = array(
 'bureaucrat' = array( 'sysop', 'bureaucrat', 'bot', 'patroller',
'autopatrolled' ),
@@ -6164,8 +6164,8 @@
 'sysop' = array( 'patroller', 'autopatrolled' ),
 ),
 '+hiwiki' = array(
-'bureaucrat' = array( 'sysop', 'interface_editor', 'flood', ),
-'sysop' = array( 'confirmed', 'rollbacker', 'autopatrolled',
'editprotected', 'abusefilter', 'patroller', ),
+'bureaucrat' = array( 'sysop', 'interface_editor', 'flood',
'abusefilter'),
+'sysop' = array( 'confirmed', 'rollbacker', 'autopatrolled',
'editprotected', 'patroller', ),
 ),
 '+hrwiki' = array(
 'bureaucrat' = array( 'bot', 'patroller', 'autopatrolled' ),

-- 
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 24576] New namespaces for ml.wikisource

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24576

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from JeLuF je...@gmx.de 2010-09-08 21:40:28 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1109)
+++ InitialiseSettings.php(working copy)
@@ -2150,6 +2150,16 @@
 'സ' = NS_HELP,
 'സസം' = NS_HELP_TALK,
 ),
+'mlwikisource' = array(
+'Author' = 100,
+'Author_talk'= 101,
+'Portal'= 102,
+'Portal_talk'= 103,
+'Index'= 104,
+'Index_talk'= 105,
+'Page'= 106,
+'Page_talk'= 107,
+),
 'mlwiktionary' = array(
 'Wiktionary' = NS_PROJECT,
 'വിക്കി‌‌_നിഘണ്ടു' = NS_PROJECT,
@@ -3778,6 +3788,16 @@
 101 = 'Pielikuma_diskusija',
 ),
 'mlwiki' = array( 100 = 'കവാടം', 101 = 'കവാടത്തിന്റെ_സംവാദം'),
+'mlwikisource' = array(
+100 = 'രചയിതാവ്',
+101 = 'രചയിതാവിന്റെ_സംവാദം',
+102 = 'കവാടം',
+103 = 'കവാടത്തിന്റെ_സംവാദം',
+104 = 'സൂചിക',
+105 = 'സൂചികയുടെ_സംവാദം',
+106 = 'താൾ',
+107 = 'താളിന്റെ_സംവാദം',
+),
 'mrwiki' = array(
 100 = 'दालन',
 101 = 'दालन_चर्चा',

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

--- Comment #19 from James jcuze...@lyraphase.com 2010-09-08 21:40:47 UTC ---
Created attachment 7680
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=7680
Full patch based off of upstream SVN r5861

Created new patch based off of SVN r5861.  This one includes my last fix to the
constructor function parameter.

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

--- Comment #20 from James jcuze...@lyraphase.com 2010-09-08 21:45:22 UTC ---
I reported this upstream at: http://dev.ckeditor.com/ticket/5602

I also opened a ticket regarding the forked project, and a plan to re-merge it:
http://dev.ckeditor.com/ticket/6273

Is there any reason to keep this fork if the bugs fixed in it are fixed
upstream?

-- 
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 25069] Wikipedia logo for sidebar column

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25069

Platonides platoni...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||platoni...@gmail.com
 Resolution||DUPLICATE

--- Comment #1 from Platonides platoni...@gmail.com 2010-09-08 21:45:25 UTC 
---


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

-- 
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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

Platonides platoni...@gmail.com changed:

   What|Removed |Added

 CC||wiki.pe...@ntlworld.com

--- Comment #7 from Platonides platoni...@gmail.com 2010-09-08 21:45:25 UTC 
---
*** Bug 25069 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 24825] Create Livro: namespace in pt.wiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24825

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from JeLuF je...@gmx.de 2010-09-08 21:45:45 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1110)
+++ InitialiseSettings.php(working copy)
@@ -3853,6 +3853,8 @@
   101 = 'Portal_Discussão',
   102 = 'Anexo',
   103 = 'Anexo_Discussão',
+  104 = 'Livro',
+  105 = 'Livro_Discussão',
 ),
 'rowiki' = array( 
 100 = 'Portal',

-- 
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 24929] Make Author namespace for srwikisource

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24929

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from JeLuF je...@gmx.de 2010-09-08 21:49:11 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision )
+++ InitialiseSettings.php(working copy)
@@ -4158,6 +4158,10 @@
 104 = 'Kazalo',
 105 = 'Pogovor_o_kazalu',
 ),
+'srwikisource' = array(
+100 = 'Аутор',
+101 = 'Разговор_о_аутору',
+),
 'strategywiki' = array(
 106 = Proposal,
 107 = Proposal_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 24936] Localizing Portal namespace in si.wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24936

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from JeLuF je...@gmx.de 2010-09-08 21:53:30 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1112)
+++ InitialiseSettings.php(working copy)
@@ -2286,6 +2286,8 @@
 'siwiki' = array(
 'Wikipedia' = NS_PROJECT,
 'Wikipedia_talk' = NS_PROJECT_TALK,
+'Portal'= 100,
+'Portal_talk'= 101,
 ),
 'siwikibooks' = array(
 'Wikibooks' = NS_PROJECT,
@@ -3869,7 +3871,7 @@
 102 = 'Pruggettu',
 103 = 'Discussioni_pruggettu', 
 ),
-'siwiki' = array( 100 = 'Portal', 101 = 'Portal_talk' ), # bug 6435
+'siwiki' = array( 100 = 'ද්වාරය', 101 = 'ද්වාරය_සාකච්ඡාව' ), # bug
6435, 24936
 'skwiki' = array( 100 = 'Portál', 101 = 'Diskusia_k_portálu'),
 'slwiki' = array( 100 = 'Portal', 101 = 'Pogovor_o_portalu' ),
 'sqwiki' = array( 100 = 'Portal', 101 = 'Portal_diskutim' ),

-- 
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 24936] Localizing Portal namespace in si.wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24936

JeLuF je...@gmx.de changed:

   What|Removed |Added

 CC||je...@gmx.de

--- Comment #2 from JeLuF je...@gmx.de 2010-09-08 21:55:48 UTC ---
The following pages could not be moved to their new location automatically.
Please fix them manually:

... 18277 (0,ද්වාරය:ආගම) - (100,ආගම) [[ද්වාරය:ආගම]]
...  *** cannot resolve automatically; page exists with ID 7006 ***
...  *** old title ආගම
...  *** new title ආගම--DUP
...  *** using suffixed form [[ද්වාරය:ආගම--DUP]] ***
... resolving on page... ok.
... 11225 (0,ද්වාරය:ඉතිහාසය) - (100,ඉතිහාසය) [[ද්වාරය:ඉතිහාසය]]
...  *** cannot resolve automatically; page exists with ID 2318 ***
...  *** old title ඉතිහාසය
...  *** new title ඉතිහාසය--DUP
...  *** using suffixed form [[ද්වාරය:ඉතිහාසය--DUP]] ***
... resolving on page... ok.
... 11229 (0,ද්වාරය:කලා) - (100,කලා) [[ද්වාරය:කලා]]
...  *** cannot resolve automatically; page exists with ID 2342 ***
...  *** old title කලා
...  *** new title කලා--DUP
...  *** using suffixed form [[ද්වාරය:කලා--DUP]] ***
... resolving on page... ok.
... 3393 (0,ද්වාරය:ගණිතය) - (100,ගණිතය) [[ද්වාරය:ගණිතය]]
...  *** cannot resolve automatically; page exists with ID 2322 ***
...  *** old title ගණිතය
...  *** new title ගණිතය--DUP
...  *** using suffixed form [[ද්වාරය:ගණිතය--DUP]] ***
... resolving on page... ok.
... 18273 (0,ද්වාරය:චරිතාපදාන) - (100,චරිතාපදාන) [[ද්වාරය:චරිතාපදාන]]
...  *** cannot resolve automatically; page exists with ID 2368 ***
...  *** old title චරිතාපදාන
...  *** new title චරිතාපදාන--DUP
...  *** using suffixed form [[ද්වාරය:චරිතාපදාන--DUP]] ***
... resolving on page... ok.
... 18272 (0,ද්වාරය:තාක්ෂණය) - (100,තාක්ෂණය) [[ද්වාරය:තාක්ෂණය]]
...  *** cannot resolve automatically; page exists with ID 2341 ***
...  *** old title තාක්ෂණය
...  *** new title තාක්ෂණය--DUP
...  *** using suffixed form [[ද්වාරය:තාක්ෂණය--DUP]] ***
... resolving on page... ok.
... 11227 (0,ද්වාරය:පටුන) - (100,පටුන) [[ද්වාරය:පටුන]]
...  *** cannot resolve automatically; page exists with ID 24294 ***
...  *** old title පටුන
...  *** new title පටුන--DUP
...  *** using suffixed form [[ද්වාරය:පටුන--DUP]] ***
... resolving on page... ok.
... 11228 (0,ද්වාරය:බස) - (100,බස) [[ද්වාරය:බස]]
...  *** cannot resolve automatically; page exists with ID 9568 ***
...  *** old title බස
...  *** new title බස--DUP
...  *** using suffixed form [[ද්වාරය:බස--DUP]] ***
... resolving on page... ok.
... 11246 (0,ද්වාරය:බුදු_දහම) - (100,බුදු_දහම) [[ද්වාරය:බුදු දහම]]
...  *** cannot resolve automatically; page exists with ID 1959 ***
...  *** old title බුදු_දහම
...  *** new title බුදු_දහම--DUP
...  *** using suffixed form [[ද්වාරය:බුදු දහම--DUP]] ***
... resolving on page... ok.
... 18274 (0,ද්වාරය:භූගෝල_විද්‍යාව) - (100,භූගෝල_විද්‍යාව) [[ද්වාරය:භූගෝල
විද්‍යාව]]
...  *** cannot resolve automatically; page exists with ID 8590 ***
...  *** old title භූගෝල_විද්‍යාව
...  *** new title භූගෝල_විද්‍යාව--DUP
...  *** using suffixed form [[ද්වාරය:භූගෝල විද්‍යාව--DUP]] ***
... resolving on page... ok.
... 18278 (0,ද්වාරය:වාස්තු_විද්‍යාව) - (100,වාස්තු_විද්‍යාව)
[[ද්වාරය:වාස්තු විද්‍යාව]]
...  *** cannot resolve automatically; page exists with ID 18213 ***
...  *** old title වාස්තු_විද්‍යාව
...  *** new title වාස්තු_විද්‍යාව--DUP
...  *** using suffixed form [[ද්වාරය:වාස්තු විද්‍යාව--DUP]] ***
... resolving on page... ok.
... 11230 (0,ද්වාරය:විද්‍යාව) - (100,විද්‍යාව) [[ද්වාරය:විද්‍යාව]]
...  *** cannot resolve automatically; page exists with ID 2188 ***
...  *** old title විද්‍යාව
...  *** new title විද්‍යාව--DUP
...  *** using suffixed form [[ද්වාරය:විද්‍යාව--DUP]] ***
... resolving on page... ok.
... 11226 (0,ද්වාරය:ශ්‍රී_ලංකා‌ව) - (100,ශ්‍රී_ලංකා‌ව) [[ද්වාරය:ශ්‍රී
ලංකා‌ව]]
...  *** cannot resolve automatically; page exists with ID 5688 ***
...  *** old title ශ්‍රී_ලංකා‌ව
...  *** new title ශ්‍රී_ලංකා‌ව--DUP
...  *** using suffixed form [[ද්වාරය:ශ්‍රී ලංකා‌ව--DUP]] ***
... resolving on page... ok.
... 18271 (0,ද්වාරය:සමාජය) - (100,සමාජය) [[ද්වාරය:සමාජය]]
...  *** cannot resolve automatically; page exists with ID 2365 ***
...  *** old title සමාජය
...  *** new title සමාජය--DUP
...  *** using suffixed form [[ද්වාරය:සමාජය--DUP]] ***
... resolving on page... ok.

-- 
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 24849] Enable the Collection extension for creating books on the Finnish Wikipedia [fiwiki]

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24849

JeLuF je...@gmx.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from JeLuF je...@gmx.de 2010-09-08 21:58:34 UTC ---
Done.
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1113)
+++ InitialiseSettings.php(working copy)
@@ -7564,6 +7564,7 @@
 'enwikiversity' = true, 
 'eowiki' = true, # 23434
 'eswiki' = true, # 2009-02-18
+'fiwiki' = true,
 'frwiki' = true, # 2009-02-18
 'frwikiversity' = true, #Bug 16178
 'foundationwiki' = true,

-- 
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 25093] Local time for Belarusian (Taraškievica) Wikipedia

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25093

Casey Brown b...@caseybrown.org changed:

   What|Removed |Added

 CC||b...@caseybrown.org
Summary|Local time for Belarusian   |Local time for Belarusian
   |(Tara??kievica) Wikipedia   |(Taraškievica) 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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

Casey Brown b...@caseybrown.org changed:

   What|Removed |Added

 Resolution|INVALID |WONTFIX

--- Comment #8 from Casey Brown b...@caseybrown.org 2010-09-08 22:09:11 UTC 
---
(In reply to comment #6)
 (In reply to comment #2)
  Actually, for the v2 logo rollout, we've just been linking to the Commons 
  file.
   (See InitialiseSettings to confirm that.)  Sometime in the future, they'll 
  be
  uploaded to the local wikis, but until then, we've been linking to the 
  Commons
  version.
 
 Can't confirm that. The logo in use comes from [[la:Image:Wiki.png]], 
 according
 to the URL of the logo that's being shown on the Latin wiki.

Sorry for the confusion, what I meant is that you can confirm that we've *been*
linking to the Commons version for the wikis with v2 logos.

For example, this is enwiki's $wgLogo entry:

'enwiki'=
'http://upload.wikimedia.org/wikipedia/commons/d/d6/Wikipedia-logo-v2-en.png',
// Change this back to $stdlogo when the great logo switch is done

The bug isn't invalid, it should just be marked as LATER.  We should make one
big bug with all of the v2 logos that we need to roll-out instead of doing
small ones like this.

-- 
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 25067] Latin Wikipedia still uses old logo

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25067

Casey Brown b...@caseybrown.org changed:

   What|Removed |Added

 Resolution|WONTFIX |LATER

-- 
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 25025] Add pre commit hook to prevent blank commit summaries

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25025

--- Comment #5 from Chad H. innocentkil...@gmail.com 2010-09-08 22:32:18 UTC 
---
eol-style and typofix are both less than 10, and both common commit
summaries. I've also seen people do things like b-a to indicate a 1-letter
change. I'd say as long as it's at least 3 characters or so we'd be fine. The
main thing to rule out is empty commit summaries. 

(Of course this does nothing to help people make their commit summaries
*descriptive* of their changes, but that's a social 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 25100] Minutes field not registering on initial campaign setup

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25100

Tomasz Finc tf...@wikimedia.org changed:

   What|Removed |Added

 AssignedTo|tf...@wikimedia.org |rkald...@wikimedia.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


[Bug 25100] Minutes field not registering on initial campaign setup

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25100

Ryan Kaldari rkald...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Ryan Kaldari rkald...@wikimedia.org 2010-09-08 23:52:53 
UTC ---
This was fixed in r72318 and r72327. Should get rolled out to meta next week.

-- 
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 25025] Add pre commit hook to prevent blank commit summaries

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25025

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||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 25025] Add pre commit hook to prevent blank commit summaries

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25025

--- Comment #6 from Chad H. innocentkil...@gmail.com 2010-09-09 00:47:08 UTC 
---
Empty commit summaries are blocked now. Just used the example from
pre-commit.tmpl :)

-- 
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 25102] Image.php throws E_STRICT error

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25102

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||innocentkil...@gmail.com
 Resolution||FIXED

--- Comment #1 from Chad H. innocentkil...@gmail.com 2010-09-09 00:54:54 UTC 
---
Fixed in r72622.

Note that Image.php is ancient. I'm curious what extensions(s) you might be
running that are still calling this old code. 

I've also marked it for complete removal in 1.18

-- 
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 25082] Grant abusefilter-log-detail to only sysop and abusefilter group on jawiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25082

--- Comment #5 from aokomoriuta aokomori...@enmps.net 2010-09-09 01:56:27 UTC 
---
Thank you much!

-- 
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 24852] New namespace for WikiProject on jawiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24852

--- Comment #3 from aokomoriuta aokomori...@enmps.net 2010-09-09 01:56:41 UTC 
---
Thanks a lot!

-- 
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 24852] New namespace for WikiProject on jawiki

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24852

aokomoriuta aokomori...@enmps.net changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #4 from aokomoriuta aokomori...@enmps.net 2010-09-09 02:17:30 UTC 
---
Sorry...
I've requested you a wrong name.

The 103 namespace name should be 'プロジェクト‐ノート',
not 'ノート‐プロジェクト'.

Could you modify?

-- 
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 25099] Hide revisions by bots

2010-09-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25099

--- Comment #2 from bennylin bknl...@yahoo.com 2010-09-09 02:31:34 UTC ---
Thanks for the link.

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


  1   2   >