[Bug 22724] New: Localization of custom editintro messages

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22724

   Summary: Localization of custom editintro messages
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Page editing
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: lhrid...@gmail.com


Created an attachment (id=7180)
 -- (https://bugzilla.wikimedia.org/attachment.cgi?id=7180)
Change showCustomIntro() to allow for localization of custom editintro messages

Custom editintro messages can be implemented by passing an additional parameter
in the URL, editintro=.  Currently the value passed is the name of an article
page on the wiki.

This does not allow for the localization of custom editintro messages without
changing the url parameters for each and every language, an arduous task if
you're building a custom editintro message into an extension.

The editintro functionality, which is contained in EditPage::showCustomIntro()
can be easily modified to allow for an easier implementation of a localized
custom editintro message.  Then, such messages can be passed in an extension's
.i18n. file and will be displayed based on the user's selected language.

A proposed solution would be to make the following change to
EditPage::showCustomIntro() (patch is attached with this change)

/**
 * Attempt to show a custom editing introduction, if supplied
 *
 * Custom editing instructions can either be a message in the MediaWiki
namespace, or an article page on the wiki
 * This function tests first to see if a message exists with the key passed
as the editintro url parameter and
 * returns that message; if not, then it checks to see if an article exists
on the wiki and returns the article contents
 * If neither exist, then returns false.
 *
 * @return bool
 */
protected function showCustomIntro() {
global $wgOut;
if ( $this-editintro ) {
# checks to see if there is an existing message in the message
cache; if so, returns it.
if( !wfEmptyMsg( wfMsg($this-editintro), $this-editintro ) ) {
$wgOut-wrapWikiMsg( 'div
class=mw-newarticlecustomtext$1/div', $this-editintro );
return true;
}
$title = Title::newFromText( $this-editintro );
if ( $title instanceof Title  $title-exists() 
$title-userCanRead() ) {
$revision = Revision::newFromTitle( $title );
$wgOut-addWikiTextTitleTidy( $revision-getText(),
$this-mTitle );
return true;
}
} else {
return false;
}
}

-- 
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 22655] Personal toolbar shows New Messages (2); link shows no new messages

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22655

Lisa Ridley lhrid...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from Lisa Ridley lhrid...@gmail.com 2010-03-05 08:22:54 UTC ---
Somewhere along the way, some of the recent changes to LiquidThreads have
resolved this 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 21777] PLURAL needed in semanticmaps_paramdesc_width and semanticmaps_paramdesc_height

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21777

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

   What|Removed |Added

 AssignedTo|mar...@semantic-mediawiki.o |jeroen_ded...@yahoo.com
   |rg  |

--- Comment #1 from Markus Krötzsch mar...@semantic-mediawiki.org 2010-03-05 
09:00:52 UTC ---
Reassigning bug to extension maintainer (had been assigned to me by accident, I
guess)

-- 
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 22725] New: INSTALL should say that Validator is required

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22725

   Summary: INSTALL should say that Validator is required
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: minor
  Priority: Normal
 Component: Maps
AssignedTo: jeroen_ded...@yahoo.com
ReportedBy: mar...@semantic-mediawiki.org


The INSTALL file of Maps should specify that the Validator extension is
required to use Maps (and possibly also the required 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 22726] New: {{DEFAULTALT:}} tag

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22726

   Summary: {{DEFAULTALT:}} tag
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Page rendering
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: liang...@gmail.com


[[Wikipedia:Alternative text for images]] says that alt attributes of images
should be used to emphasize the their most important visual aspects. Since
there's no syntax to change image contents (eg. crop) in rendering, the same
image on every page looks the same, but we have to repeat the description of
how it looks on every page.

I suggest a {{DEFAULTALT:}} tag in image description pages. The content in it
will be used for the image as its alt attribute on every page, and can be
overridden by ...|alt=|... syntax.

-- 
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 22717] SF's 'Page has default form' and 'Creates pages with form' special properties don't work

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22717

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

   What|Removed |Added

 Status|REOPENED|ASSIGNED

-- 
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 22726] {{DEFAULTALT:}} tag

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22726

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

   What|Removed |Added

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

--- Comment #1 from Alexandre Emsenhuber [IAlex] alex.emsenhu...@bluewin.ch 
2010-03-05 10:45:28 UTC ---


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

-- 
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 19906] Provide a method to allow alternate text for images to be provided at the file description page

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19906

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

   What|Removed |Added

 CC||liang...@gmail.com

--- Comment #9 from Alexandre Emsenhuber [IAlex] alex.emsenhu...@bluewin.ch 
2010-03-05 10:45:28 UTC ---
*** Bug 22726 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 22717] SF's 'Page has default form' and 'Creates pages with form' special properties don't work

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22717

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

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #3 from Markus Krötzsch mar...@semantic-mediawiki.org 2010-03-05 
11:05:10 UTC ---
Fixed. The problem occurred because the properties use a special datatype
(stored separately in SMW for faster access) while the properties as such have
not been special. This requires SMW to do another DB lookup to find the
property name, where this lookup is not done by default since properties with
special datatypes typically are known to SMW already. It may actually be faster
to avoid this extra lookup and go for the normal table instead, using the type
'_wpf' instead of '__spf' for Form pages. Changing this of course will prevent
SMW from finding existing values which have been stored to the special table
earlier.

-- 
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 13747] Revamping of special pages UI, and creation of MW UI standards

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13747

--- Comment #4 from Chad H. innocentkil...@gmail.com 2010-03-05 12:03:27 UTC 
---
Getting the Mediawiki community to draft some standards for UI components would
help in clarifying the goal.

-- 
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 22727] New: Display edited text

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22727

   Summary: Display edited text
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Spam Blacklist
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: liang...@gmail.com


Can text which triggered the filter be displayed in the warning page like what
AbuseFilter does?

-- 
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 22728] New: create new user group on Greek Wiktionary

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22728

   Summary: create new user group on Greek 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: ar...@wikimedia.org


Hi, we voted for the creation of a user group that can edit mediawiki interface
messages (and js/css).  Well actually we voted for a user to be in that group
but this presupposes the creation of the group :-)  Here is the link to the
vote:

http://el.wiktionary.org/wiki/Βικιδημία:Ο_ιστοχώρος_της_κοινότητας#.CE.91.CE.AF.CF.84.CE.B7.CF.83.CE.B7_.CE.B3.CE.B9.CE.B1_.CE.B4.CE.B9.CE.BA.CE.B1.CE.B9.CF.8E.CE.BC.CE.B1.CF.84.CE.B1

Can you please enable this?  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 22728] create new user group on Greek Wiktionary

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22728

Raimond Spekking raimond.spekk...@gmail.com changed:

   What|Removed |Added

   Keywords||shell

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

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


[Bug 22728] create new user group on Greek Wiktionary

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22728

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

   What|Removed |Added

 CC||roan.katt...@gmail.com
 AssignedTo|wikibug...@lists.wikimedia. |rhals...@wikimedia.org
   |org |

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

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


[Bug 22683] WhatLinksHere contains incorrect hits for images that are included in galleries

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22683

--- Comment #2 from Brad Will (tmbw.net) tmbw@gmail.com 2010-03-05 
13:50:29 UTC ---
Oh you are exactly right, Bawolff. Thank you for taking the time to investigate
it in-depth like you did.  I've done some further testing on my end, and you
are correct that it's a problem with the {{msgnw}}.  

Interestingly, if i have two images on a page (one in a gallery / one not in a
gallery), it will show the one in the gallery as being linked.  However, the
image that isn't in the gallery does not show up in the whatlinkshere page
(and this is the proper behavior).

So, it looks like you're right that the nowikiness isn't being applied to the
gallery tag, but it needs to be.

Thanks again for digging.

-- 
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 20131] PHP Notice: Undfined index: page_latest in //includes/ChangesList.php on line 476

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20131

t...@timneumark.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||t...@timneumark.com
 Resolution|FIXED   |

--- Comment #5 from t...@timneumark.com 2010-03-05 14:38:06 UTC ---
I am on 1.15.1. I grabbed the fixed file (SpecialRecentchangeslinked.php), but
now I have a different error:

PHP Fatal error:  Call to undefined method DatabaseMysql::unionQueries() in
C:\inetpub\wwwroot\MediaWiki\includes\specials\SpecialRecentchangeslinked.php
on line 163

Is there another file to go with the patch?

-- 
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 22643] Dialogs: Internal/External Links : External link shows the Page not exist notification intimately

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22643

Adam Miller amil...@wikimedia.org changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

--- Comment #4 from Adam Miller amil...@wikimedia.org 2010-03-05 14:39:45 UTC 
---
Thanks for the clarification. The second example was much more clear. 

Fixed in r63271. Should be on prototype sometime in the next day.

-- 
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 21777] PLURAL needed in semanticmaps_paramdesc_width and semanticmaps_paramdesc_height

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21777

--- Comment #2 from Jeroen De Dauw jeroen_ded...@yahoo.com 2010-03-05 
16:12:48 UTC ---
(In reply to comment #0)
 MediaWiki:semanticmaps_paramdesc_width and
 MediaWiki:semanticmaps_paramdesc_height
 should support PLURAL on $1.

Why? Is there something that needs to be plural in some languages?

-- 
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 22684] API - The page parameter cannot be used together with the text and title parameters error

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22684

Brad Will (tmbw.net) tmbw@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |

--- Comment #3 from Brad Will (tmbw.net) tmbw@gmail.com 2010-03-05 
16:31:35 UTC ---
en.wikipedia.org is running version 1.16alpha-wmf.

Here's an example of how it doesn't work on my site (which runs 1.15.1):
http://tmbw.net/wiki/api.php?action=parsepage=Sandbox

Can you give me more information about what you mean re-writes?  Are you
talking about rewrites in .htaccess?  Can you explain how those would
potentially affect this?

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 20131] PHP Notice: Undfined index: page_latest in //includes/ChangesList.php on line 476

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20131

--- Comment #7 from t...@timneumark.com 2010-03-05 16:40:10 UTC ---
OK, sorry. I saw patch and assumed that was the entire fix. In my dev
environment, we consider a patch to consist of all fixes for an issue. It
seems there's a different definition here.

-- 
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 22684] API - The page parameter cannot be used together with the text and title parameters error

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22684

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

   What|Removed |Added

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

--- Comment #4 from Roan Kattouw roan.katt...@gmail.com 2010-03-05 16:40:21 
UTC ---
(In reply to comment #3)
 en.wikipedia.org is running version 1.16alpha-wmf.

Yes, it's possible the bug was fixed between 1.15 and the 1.16alpha version
Wikipedia runs. If that's the case we're still gonna do nothing: 1.16 will be
released soonish anyway.

 Here's an example of how it doesn't work on my site (which runs 1.15.1):
 http://tmbw.net/wiki/api.php?action=parsepage=Sandbox
 
 Can you give me more information about what you mean re-writes?  Are you
 talking about rewrites in .htaccess?
Yes.

 Can you explain how those would
 potentially affect this?
 
They could (wrongly) add a title= parameter to the rewritten URL. Some quick
research seems to confirm this: POSTing to
http://twbw.net/wiki/api.php?action=rollback throws an error about the user
param not being set, while the code checks for the title parameter first.

Re-closing as INVALID, the above is fairly strong evidence that this is not a
MediaWiki bug, but a problem with your rewrite rules.

-- 
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 20131] PHP Notice: Undfined index: page_latest in //includes/ChangesList.php on line 476

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20131

--- Comment #8 from Roan Kattouw roan.katt...@gmail.com 2010-03-05 16:54:36 
UTC ---
(In reply to comment #7)
 OK, sorry. I saw patch and assumed that was the entire fix. In my dev
 environment, we consider a patch to consist of all fixes for an issue. It
 seems there's a different definition here.

We use the same definition, but the difference between SpecialRecentchanges.php
in 1.15.1 and the same file in trunk consists of much more than just this one
patch, and some of these differences rely on changes in other files.

-- 
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 22730] New: Bangla Mobile Wikipedia Home Page

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22730

   Summary: Bangla Mobile Wikipedia Home Page
   Product: Wikipedia Mobile
   Version: .5
  Platform: All
   URL: http://bn.m.wikipedia.org
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: server
AssignedTo: hcat...@wikimedia.org
ReportedBy: bella...@gmail.com
CC: ragibha...@gmail.com, gerard.meijs...@gmail.com,
tf...@wikimedia.org, jayanta...@gmail.com


Wikipedia Page for Bangla (bn) Mobile Wikipedia home page,
http://bn.wikipedia.org/wiki/প্রবেশদ্বার:প্রধান_পাতা_(মোবাইল)


Please make the page as Home Page for Bangla (Bengali-bn) Mobile Wikipedia.


Thanks
Belayet

-- 
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 22730] Bangla Mobile Wikipedia Home Page

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22730

--- Comment #1 from Belayet Hossain bella...@gmail.com 2010-03-05 17:20:05 
UTC ---
Please include closing bracket also at the end of URL.

-- 
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 22731] New: Patch for setting node color based on category in 'graph' format

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22731

   Summary: Patch for setting node color based on category in
'graph' format
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: SemanticResultFormats
AssignedTo: denny.vrande...@kit.edu
ReportedBy: yaro...@gmail.com
CC: wikibugs-l@lists.wikimedia.org


Not my code - I just saw it on the 'talk' page:

http://www.mediawiki.org/wiki/Extension_talk:Semantic_Result_Formats#Feature_request:_node_background_color_from_category

-- 
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 22684] API - The page parameter cannot be used together with the text and title parameters error

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22684

--- Comment #5 from Brad Will (tmbw.net) tmbw@gmail.com 2010-03-05 
19:13:29 UTC ---
Ok, thanks everyone

-- 
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 22684] API - The page parameter cannot be used together with the text and title parameters error

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22684

--- Comment #6 from Brad Will (tmbw.net) tmbw@gmail.com 2010-03-05 
19:13:50 UTC ---
Ok, thanks everyone

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

Christian Neubauer seventow...@gmail.com changed:

   What|Removed |Added

 CC||seventow...@gmail.com

--- Comment #8 from Christian Neubauer seventow...@gmail.com 2010-03-05 
19:39:06 UTC ---
This bug is listed as fixed in the 1.16 release notes.  Should probably remove
it since this was reverted.

-- 
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 22732] New: Strange wgGroupPermissions problem. Works in 1.15, not in 1.15.1

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22732

   Summary: Strange wgGroupPermissions problem. Works in 1.15, not
in 1.15.1
   Product: MediaWiki
   Version: 1.15.1
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: Special pages
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: t...@timneumark.com


I have the following lines in LocalSettings.php:

# developer pages
$wgGroupPermissions[ 'Dev Team' ][ 'ns100_read' ] = true;
$wgGroupPermissions[ 'Dev Team' ][ 'ns100_edit' ] = true;
$wgGroupPermissions[ 'Dev Team' ][ 'ns100_create' ] = true;
$wgGroupPermissions[ 'Dev Team' ][ 'ns100_move' ] = true;

# developer talk
$wgGroupPermissions[ 'Dev Team' ][ 'ns101_read' ] = true;
$wgGroupPermissions[ 'Dev Team' ][ 'ns101_edit' ] = true;
$wgGroupPermissions[ 'Dev Team' ][ 'ns101_create' ] = true;

What I expect to occur is that members of the Dev Team can read, edit, create,
and move pages in the developer and dev talk namespaces. The functionality
works, but the Special:UserRights page won't let me configure this information
-- I can only configure it via direct database manipulation.

When I access that page, the following choices exist for a user:

Groups you can change:
* Bot
* Administrator
* Bureaurcrat
* Dev Team
* nsDevRW
* nsDevRO
* nsDev_talkRW
* nsDev_talkRO

First, this looks odd; why are all the ns items listed? This did not occur in
1.15. Secondly, the Dev Team setting won't save, requiring direct DB access
to give rights to users.

-- 
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 22732] Cannot set USER_GROUP in UI on Special:UserRights. Works in 1.15, not in 1.15.1

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22732

t...@timneumark.com changed:

   What|Removed |Added

Summary|Strange wgGroupPermissions  |Cannot set USER_GROUP in UI
   |problem. Works in 1.15, not |on Special:UserRights.
   |in 1.15.1   |Works in 1.15, not in
   ||1.15.1

-- 
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 22733] New: SRF Calendar does not work with halo 1.4.6 OntoSkin3

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22733

   Summary: SRF Calendar does not work with halo 1.4.6 OntoSkin3
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: critical
  Priority: Normal
 Component: SemanticResultFormats
AssignedTo: denny.vrande...@kit.edu
ReportedBy: mitchell_ne...@hotmail.com
CC: wikibugs-l@lists.wikimedia.org


I installed smw-srf-1.4.5-op alongside SMW Halo version 1.4.6, MW 1.15.1 
and SMW 1.4.3

Now when I do a calendar query I get the following crash:
*Fatal error*: Call to a member function getPrefixedDbKey() on a 
non-object in 
*/var/www/webapps/schoolgate/extensions/SemanticResultFormats/Calendar/SRF_Calendar.php*
 
on line *339

I think the problem is that OntoSkin3 does not show page titles. But if this is
going to be the default Halo skin then this is a major problem!

Thanks.
Neill.

-- 
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 22734] New: SRF Exhibit format does not cope with + character in page title

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22734

   Summary: SRF Exhibit format does not cope with + character in
page title
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: major
  Priority: Normal
 Component: SemanticResultFormats
AssignedTo: denny.vrande...@kit.edu
ReportedBy: mitchell_ne...@hotmail.com
CC: wikibugs-l@lists.wikimedia.org


I have the following query:
{{ #ask:
[[Category:Organisation]]
| ?Area
| ?Contact Person
| ?Telephone
| link=all
| offset=0
| limit=250
| height=200px
| format=exhibit
| facets=Area
}}

This returns a list of organisations. One of the organisations pages is called
One+ which show correctly in the result. However, if you click on it you get a
page not found. This is because the + character is not passed.

Thanks
Neill.

-- 
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 22735] New: SRF_Exhibit.css changes affect all SMW tables. Also not parsed by IE

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22735

   Summary: SRF_Exhibit.css changes affect all SMW tables. Also
not parsed by IE
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: major
  Priority: Normal
 Component: SemanticResultFormats
AssignedTo: denny.vrande...@kit.edu
ReportedBy: mitchell_ne...@hotmail.com
CC: wikibugs-l@lists.wikimedia.org


The table style set in SRF_Exhibit.css affects all SMW tables.

Also, the content of this file is ignored by IE7 and 8.

Better option is to put table css into exhibit-ui-protection th entry in
exhibit-bundle.css
This correctly only changes the exhibit table style and is also parsed by IE.

-- 
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 22736] New: You can only have one Exhibit query per page

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22736

   Summary: You can only have one Exhibit query per page
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: major
  Priority: Normal
 Component: SemanticResultFormats
AssignedTo: denny.vrande...@kit.edu
ReportedBy: mitchell_ne...@hotmail.com
CC: wikibugs-l@lists.wikimedia.org


You can only have one exhibit query per page. This prevents you from having
more than on exhibit result in a page using Headertabs.

This is not a specific issue with HeaderTabs though, because even a normal page
cannot have more than one exhibit query.

Thanks
Neill.

-- 
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 22702] remove scrollbars in fullwindow mode

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22702

Michael Dale d...@ucsc.edu changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Michael Dale d...@ucsc.edu 2010-03-05 20:06:32 UTC ---
fixed in r63285

-- 
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 22737] New: format=graph Graphviz attributes from Pages and Categories

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22737

   Summary: format=graph Graphviz attributes from Pages and
Categories
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: SemanticResultFormats
AssignedTo: denny.vrande...@kit.edu
ReportedBy: uncool...@gmail.com
CC: wikibugs-l@lists.wikimedia.org


I submitted a half-baked patch here to allow styling of graphviz nodes from
Page and Category properties ([[has graphviz node attribute::fillcolor=red]])

http://www.mediawiki.org/wiki/Extension_talk:Semantic_Result_Formats#Feature_request:_node_background_color_from_category

However, I did not do a proper job in at least 2 ways:

1. I did not create a special SMW property (I just look through all properties
until I find one with a suitable name)

2. I don't handle the Category hierarchy properly (at all, to be honest).  The
talk page has a suggestion of how best to handle Categories.

It was my first attempt at MW programming and I am not a native PHP speaker, as
you can probably tell.  It would be great if you could provide this
functionality robustly for the community.  It's low priority though, because I
have my patch working fine for our needs.

Thanks for the excellent extension.

cheers,
Bob.

-- 
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 8886] Install DynamicPageList extension for Vietnamese Wiktionary

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=8886

Bawolff bawolff...@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
  Component|DynamicPageList |Site requests
Version|any |unspecified
 AssignedTo|bawolff...@gmail.com|wikibug...@lists.wikimedia.
   ||org
Product|MediaWiki extensions|Wikimedia

--- Comment #3 from Bawolff bawolff...@gmail.com 2010-03-05 21:16:40 UTC ---
Added inline mode to intersection in r63291

Rechanging component back to site requests, as that was more the original bug.
Please note you need a link to community concensuss for the change before it
will happen.

-- 
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 22738] New: Allow filtering by action type on query=logevents

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22738

   Summary: Allow filtering by action type on query=logevents
   Product: MediaWiki
   Version: 1.16-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: API
AssignedTo: roan.katt...@gmail.com
ReportedBy: bawolff...@gmail.com
CC: bryan.tongm...@gmail.com, s...@reedyboy.net,
vasi...@gmail.com, soxre...@gmail.com


Allow filtering by action type in addition to log type for the logevents api
query module.

Basically i wanted to see the review log with only the manually sighted
entries.

-- 
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 22739] New: Conflict between Captcha and ForcePreview

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22739

   Summary: Conflict between Captcha and ForcePreview
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Normal
 Component: [other]
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: dan.ma...@gmail.com


When both extensions are installed is impossible to save a page. When click on
show preview the save page button is enabled, when click on save page the
CAPTCHA is enabled and the ForcePreview extension disable the save page
button again, creating a loop.

-- 
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 10183] Add personal Common.css Common.js

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=10183

Ilmari Karonen nos...@vyznev.net changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||nos...@vyznev.net
 Resolution||FIXED

--- Comment #23 from Ilmari Karonen nos...@vyznev.net 2010-03-05 22:43:28 UTC 
---
Done in r63300.

-- 
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 12788] CSS (tracking)

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=12788

Bug 12788 depends on bug 11610, which changed state.

Bug 11610 Summary: Allow a custom style-sheet for all logged-in users
https://bugzilla.wikimedia.org/show_bug.cgi?id=11610

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||FIXED
 Resolution|FIXED   |DUPLICATE

Bug 12788 depends on bug 10183, which changed state.

Bug 10183 Summary: Add personal Common.css  Common.js
https://bugzilla.wikimedia.org/show_bug.cgi?id=10183

   What|Old Value   |New Value

 Status|REOPENED|RESOLVED
 Resolution||FIXED

-- 
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 22738] Allow filtering by action type on query=logevents

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22738

Reedy s...@reedyboy.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Reedy s...@reedyboy.net 2010-03-05 23:21:59 UTC ---
Fixed in r63301

-- 
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 22657] Wikipedia Karachay-Balkar

2010-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22657

Rob Halsell rhals...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #2 from Rob Halsell rhals...@wikimedia.org 2010-03-05 23:49:02 
UTC ---
I have the localized language name is Къарачай-Малкъар.  However, I do NOT have
the sitename, logo, or any of the other information required.  I rather not set
this up with the defaults, as changing things later can lead to 'issues.' 
Please provide with the following:

wgSitename, 
wgMetaNamespace

If you need local uploads, please let me know, as well as any other settings
that differ from the default Wikipedia settings on the cluster.

As soon as I have this information, we will get this setup right away!

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