[Bug 32851] New: New link for 'Learn how to edit' in AFTv5 'Edit this page' CTA

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32851

   Web browser: ---
 Bug #: 32851
   Summary: New link for 'Learn how to edit' in AFTv5 'Edit this
page' CTA
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fflo...@wikimedia.org
Classification: Unclassified


In AFTv5 'Edit this page' CTA, 'Learn how to edit' links should take you to the
Wikipedia tutorial: http://en.wikipedia.org/wiki/Wikipedia:Tutorial

See feature requirements page:
http://www.mediawiki.org/wiki/Article_feedback/Version_5/Feature_Requirements#Edit_this_page

-- 
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 32851] New link for 'Learn how to edit' in AFTv5 'Edit this page' CTA

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32851

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Keywords||aftv5-1.0
URL||http://prototype.wikimedia.
   ||org/release-en/Golden-crown
   ||ed_Sparrow?bucket=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 32852] New: Subtitle wraps around in 'Edit this page' CTA on Firefox

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32852

   Web browser: ---
 Bug #: 32852
   Summary: Subtitle wraps around in 'Edit this page' CTA on
Firefox
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fflo...@wikimedia.org
Classification: Unclassified


On Firefox, the subtitle ('Did you know that you can edit this page?') wraps
around to an extra line in 'Edit this page' CTA. Please extend the length of
this field to avoid 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 32852] Subtitle wraps around in 'Edit this page' CTA on Firefox

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32852

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Keywords||aftv5-1.0
URL||http://prototype.wikimedia.
   ||org/release-en/Golden-crown
   ||ed_Sparrow?bucket=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 32853] New: DBA backend is broken in MW 1.18 ($dir is an array)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32853

   Web browser: ---
 Bug #: 32853
   Summary: DBA backend is broken in MW 1.18 ($dir is an array)
   Product: MediaWiki
   Version: 1.18.0
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: szots...@gmail.com
Classification: Unclassified


In MediaWiki 1.18, when you set DBA as the main caching mechanism
($wgMainCacheType = CACHE_DB) you'll run into an error.

In includes/objectcache/DBABagOStuff.php on line 17 you check if $dir === false
or not. In my case it isn't, so you assign its value to $this-mFile =
$dir/mw-cache- . wfWikiID();.

The problem is that from v1.18 on the $dir is an array.

I got the following when I print_r'd the $dir variable in the first line of the
__construct function: Array ( [class] = DBABagOStuff ).

Of course in this case the $this-mFile = $dir/mw-cache- . wfWikiID(); line
will be broken also and that's why later MW cannot open the DBA cache.

For an ugly workaround I forced the $wgTempDirectory to be assigned to the $dir
variable:

if ( $dir === false || is_array($dir) ) {
global $wgTmpDirectory;
$dir = $wgTmpDirectory;
}

-- 
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 32853] DBA caching backend is broken in MW 1.18 ($dir is an array)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32853

p858snake p858sn...@gmail.com changed:

   What|Removed |Added

 CC||p858sn...@gmail.com
Summary|DBA backend is broken in MW |DBA caching backend is
   |1.18 ($dir is an array) |broken in MW 1.18 ($dir is
   ||an array)

-- 
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 32854] New: Add vertical feedback button on the right of the article page (AFTv5 Link option C)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32854

   Web browser: ---
 Bug #: 32854
   Summary: Add vertical feedback button on the right of the
article page (AFTv5 Link option C)
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fflo...@wikimedia.org
Classification: Unclassified


Add vertical feedback button on the right of the article page (AFTv5 feedback
link option C), as specified below. 

This vertical feedback button will be similar to the 'Feedback' link used in
popular sites like getsatisfaction.com, but the label would say: 

Help improve this page 

(or just Improve this page if we need to keep it shorter).

The background color of this vertical feedback button will be the same blue as
the other buttons, with white lettering of the same size and style as 'Post
your feedback.' However, we want the background to be flat (gradients would
look strange in this aspect ratio).

Note that this feedback link is for testing purposes only, on a small subset of
articles.

Check out the earlier mockup for this Option C:
http://commons.wikimedia.org/wiki/File:AFT-v5_Feedback-Button-Option-C-Mockup-11-08.png

And read more about placement options in our feature requirements page:
http://www.mediawiki.org/wiki/Article_feedback/Version_5/Feature_Requirements#Feedback_links_on_article_pages

-- 
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 32854] Add vertical feedback button on the right of the article page (AFTv5 Link option C)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32854

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Keywords||aftv5-1.0

-- 
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 32855] New: Can't close Help tool tip in overlay mode

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32855

   Web browser: ---
 Bug #: 32855
   Summary: Can't close Help tool tip in overlay mode
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fflo...@wikimedia.org
Classification: Unclassified


When I click on the Help (?) question mark icon wile the call to action is in
overlay mode, I cannot click on the 'X' close box or the 'Learn to edit' links.
They should both work in that mode as well.

-- 
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 32855] Can't close Help tool tip in overlay mode

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32855

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Keywords||aftv5-1.0
URL||http://prototype.wikimedia.
   ||org/release-en/Golden-crown
   ||ed_Sparrow?bucket=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 32840] Position the feedback label before the geo-tags

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32840

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Keywords||aftv5-1.0

-- 
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 32856] New: Change the label of feedback link to 'Help improve this article ' (Option B)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32856

   Web browser: ---
 Bug #: 32856
   Summary: Change the label of feedback link to 'Help improve
this article '  (Option B)
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fflo...@wikimedia.org
Classification: Unclassified


For the feedback link (Option B, at the top right), we would like to replace
the word 'Feedback' with 'Help improve this article ', to make it more
visible and consistent. The current feedback label is not very noticeable
(particularly when the fundraiser is going on.) It also doesn't match what we
are saying at the top of the form ('Help improve this page')

For more info about this, check our feature requirements page for feedback
links:
http://www.mediawiki.org/wiki/Article_feedback/Version_5/Feature_Requirements#Placement

Here is an earlier mockup for how this feedback link might appear on a typical
page (using the old 'Feedback' label):
http://commons.wikimedia.org/wiki/File:AFT-v5_Feedback-Button-Option-B-Mockup-11-08.png

-- 
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 32856] Change the label of feedback link to 'Help improve this article ' (Option B)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32856

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Keywords||aftv5-1.0
URL||http://prototype.wikimedia.
   ||org/release-en/Golden-crown
   ||ed_Sparrow?bucket=1
 Depends on||32840

--- Comment #1 from Fabrice Florin fflo...@wikimedia.org 2011-12-07 09:51:13 
UTC ---
Note that there are possible complications with this feedback link (Option B),
as it conflicts with the geo-tags that also aim to appear in the same top right
corner. 

See separate bug 32840 to learn more:
https://bugzilla.wikimedia.org/show_bug.cgi?id=32840

As a result, we may launch phase 1.0 without this feedback link. 

One possible alternative might be Option C, as proposed on bug 32854:
https://bugzilla.wikimedia.org/show_bug.cgi?id=32854

-- 
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 32840] Position the feedback label before the geo-tags

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32840

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

 Blocks||32856

-- 
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 32840] Position the feedback label before the geo-tags

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32840

--- Comment #3 from Fabrice Florin fflo...@wikimedia.org 2011-12-07 09:53:34 
UTC ---
Here is an earlier mockup for how this feedback link might appear on a typical
page:
http://commons.wikimedia.org/wiki/File:AFT-v5_Feedback-Button-Option-B-Mockup-11-08.png

See also this related bug bug 32856:
https://bugzilla.wikimedia.org/show_bug.cgi?id=32856


P.S.: Thanks, Brion, for spotting the duplicate bug, much appreciated!

-- 
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 31494] adding apply button to edit view

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31494

--- Comment #2 from reza1615 reza.ene...@gmail.com 2011-12-07 09:55:44 UTC ---
Show Preview button doesn't show Templates effects. in many cases changing
some variables needs try and error process.

-- 
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 32857] New: Only show AFTv5 on articles in special AFT5 category

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32857

   Web browser: ---
 Bug #: 32857
   Summary: Only show AFTv5 on articles in special AFT5 category
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fflo...@wikimedia.org
Classification: Unclassified


Dario will create a special 'hidden category' (AFT5) of articles that he will
select for testing in phase 1.0 and 1.5.

The AFT v5 extension will only appear on articles that belong in that special
AFT5 category.

-- 
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 32857] Only show AFTv5 on articles in special AFT5 category

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32857

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Keywords||aftv5-1.0
URL||http://prototype.wikimedia.
   ||org/release-en/Golden-crown
   ||ed_Sparrow?bucket=1
   Severity|normal  |blocker

--- Comment #1 from Fabrice Florin fflo...@wikimedia.org 2011-12-07 10:05:38 
UTC ---
Here is Dario's current plan for this article sampling (assuming no
geo-cordinates to work with feedback link option B):

1) we generate a list of articles with no geocoordinates and no redirects from
the entire enwiki
2) we sample ~106K articles from this list *
3) we add these articles to a newly created Category:AFT5 via a bot
4) we use this category to activate the widget on eligible articles (after
processing the AFT blacklist)
5) we end up with a final sample of approximately 100K eligible articles with
no geocoordinates that we will use to collect data

This plan may change, but I wanted to post it here, as an FYI.

-- 
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 28135] Review and deploy VipsScaler extension

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28135

--- Comment #17 from Derk-Jan Hartman hart...@videolan.org 2011-12-07 
10:47:27 UTC ---
Which m(In reply to comment #16)
 (In reply to comment #15)
  question, what does vips do with metadata ?
 
 Nothing.

Does that mean it will strip any existing metadata ? or will it preserve ? I
see it does apparently support the comment field, which we use to reference
from thumb to the original image page ?

-- 
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 28135] Review and deploy VipsScaler extension

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28135

--- Comment #18 from Bryan Tong Minh bryan.tongm...@gmail.com 2011-12-07 
10:56:09 UTC ---
(In reply to comment #17)
 Which m(In reply to comment #16)
  (In reply to comment #15)
   question, what does vips do with metadata ?
  
  Nothing.
 
 Does that mean it will strip any existing metadata ? or will it preserve ? I
 see it does apparently support the comment field, which we use to reference
 from thumb to the original image page ?

It is purely a scaler, all the metadata stuff will still be handled by
BitmapHandler.

-- 
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 32853] DBA caching backend is broken in MW 1.18 ($dir is an array)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32853

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 CC||has...@free.fr
   Target Milestone|--- |1.18.x release
   Severity|normal  |major

--- Comment #1 from Antoine hashar Musso has...@free.fr 2011-12-07 11:08:00 
UTC ---
We did some refactoring for the object cache refactoring. I did send a patch as
r105419 which might apply to 1.18 as is.

Once patch is applied, you will be able to configure the CACHE_DBA backend
using:

 $wgObjectCaches[CACHE_DBA]['dir'] = '/some/directory/'


Keeping bug open until revision is reviewed in trunk, will then back port it to
1.18 and mark this bug 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 32760] wfprofilein Errors on upgrading to 1.18

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32760

--- Comment #4 from Gordon Joly gordon.j...@pobox.com 2011-12-07 11:08:18 UTC 
---
Yes,  wfDeprecated('includes/ProfilerStub.php' ); is good.

But this issue remains - should the upgrade (from 1.x to 1.x+1) method be to
unpack the tar image in place, or to move all files away (except
LocalSettings.php and /images/ and /extensions/ etc) and copy in new versions
into a blank directory?

-- 
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 32844] $wgEnableSorbs = true on the Thai Wikipedia (th.wikipedia.org)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32844

Reedy s...@reedyboy.net changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 31068] Add Wikibooks namespace to Azerbaijani Wikibooks

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31068

Reedy s...@reedyboy.net changed:

   What|Removed |Added

   Keywords||shell
   Severity|normal  |enhancement

--- Comment #4 from Reedy s...@reedyboy.net 2011-12-07 11:36:20 UTC ---
(In reply to comment #3)
 Hi Vugar,
 Thanks! Would it be possible to add an English translation as well?

(In reply to comment #0)
 Hi. Please create Wikibooks namespaces for Azerbaijani Wikbooks.
 http://az.wikibooks.org/
 
 Wikibooks: - Vikikitab:
 
 Wikibooks talk: - Vikikitab müzakirəsi:
 
 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 31067] Add Wikijunior namespace to Azerbaijani Wikibooks

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31067

Reedy s...@reedyboy.net changed:

   What|Removed |Added

   Severity|normal  |enhancement

--- Comment #4 from Reedy s...@reedyboy.net 2011-12-07 11:36:36 UTC ---
(In reply to comment #3)
 Hi Vugar,
 Thanks! Would it be possible to add an English translation as well?

(In reply to comment #0)
 Hi. Please create Wikijunior namespaces for Azerbaijani Wikbooks.
 http://az.wikibooks.org/
 
 Wikijunior: - Vikiuşaq:
 
 Wikijunior talk: - Vikiuşaq müzakirəsi:
 
 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 32858] New: Do not parse .js/.css pages and save their parsed content in database tables

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32858

   Web browser: ---
 Bug #: 32858
   Summary: Do not parse .js/.css pages and save their parsed
content in database tables
   Product: MediaWiki
   Version: 1.18
  Platform: All
OS/Version: All
Status: NEW
  Keywords: need-parsertest, parser
  Severity: normal
  Priority: Unprioritized
 Component: Database
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: dann...@email.cz
Blocks: 16660
Classification: Unclassified


Do not parse .js/.css pages and save their parsed content in database tables.

It creates entries in following tables:
* categorylinks
* externallinks
* imagelinks
* iwlinks
* pagelinks
* templatelinks
(maybe some others as well)

There is no reason to parse .js/.css pages and therefore create false records
in database which then influence the results of various queries such as Wanted*
etc.

Databse cleanup will be needed after then, so adding this as a blocker to bug
16660 as well.

-- 
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 16660] Database table cleanup (tracking)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16660

Danny B. dann...@email.cz changed:

   What|Removed |Added

 Depends on||32858

-- 
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 32823] Undefined index notices when $wgServer is empty string (introduced with 1.18)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32823

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 CC||has...@free.fr

--- Comment #3 from Antoine hashar Musso has...@free.fr 2011-12-07 11:45:17 
UTC ---
Whenever the request comes from localhost (i.e. it comes from SSH), you could
set wgServer to auto detect, that should detect the 8000 port.
Leave wgServer hardcoded in other cases (i.e. to 'http://myproxydomain.de/ ).

-- 
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 23514] give warning when page is deleted while editing and user cannot recreate

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23514

Iswariya ichu.ram...@gmail.com changed:

   What|Removed |Added

 CC||ichu.ram...@gmail.com,
   ||jayara...@gmail.com
 AssignedTo|wikibugs-l@lists.wikimedia. |ichu.ram...@gmail.com
   |org |

--- Comment #1 from Iswariya ichu.ram...@gmail.com 2011-12-07 11:50:09 UTC ---
Reply to :

 Umherirrender
-
How can a non-admin user delete an existing page ? I tried reproducing your
above steps but I'm not able to delete a page when I login as an non-admin
user.

-- 
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 32823] Undefined index notices when $wgServer is empty string (introduced with 1.18)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32823

--- Comment #4 from use...@arcor.de 2011-12-07 11:53:47 UTC ---
(In reply to comment #3)
Yes, of course. But I need to support both scenarios at the same time. Or can
$wgServer be set dynamically dependent on which interface the request comes in?

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

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


[Bug 23513] give warning when page is protected while editing

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23513

Iswariya ichu.ram...@gmail.com changed:

   What|Removed |Added

 CC||ichu.ram...@gmail.com

--- Comment #1 from Iswariya ichu.ram...@gmail.com 2011-12-07 12:11:13 UTC ---
Reply to :

 Umherirrender
-
How can a non-admin user protect an existing page ? I tried reproducing your
above steps but I'm not able to protect a page when I logged in as an non-admin
user.

-- 
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 23513] give warning when page is protected while editing

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23513

Iswariya ichu.ram...@gmail.com changed:

   What|Removed |Added

 CC||jayara...@gmail.com
 AssignedTo|wikibugs-l@lists.wikimedia. |ichu.ram...@gmail.com
   |org |

--- Comment #2 from Iswariya ichu.ram...@gmail.com 2011-12-07 12:12:23 UTC ---
Reply to :

 Umherirrender
-
How can a non-admin user protect an existing page ? I tried reproducing your
above steps but I'm not able to protect a page when I logged in as an non-admin
user.

-- 
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 32823] Undefined index notices when $wgServer is empty string (introduced with 1.18)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32823

--- Comment #5 from Antoine hashar Musso has...@free.fr 2011-12-07 13:54:40 
UTC ---
You can look at the remote client address with $_SERVER['REMOTE_ADDR'] ,
something like:

if( preg_match( $_SERVER['REMOTE_ADDR'], '^192\.168\.0\.' ) {
 // local LAN clients

} else if ( $_SERVER['REMOTE_ADDR'] === '127.0.0.1' ) {
 // localhost!

} else {
  // external access?

}

-- 
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 31068] Add Wikibooks namespace to Azerbaijani Wikibooks

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31068

--- Comment #5 from Vugar 1981 vugar...@mail.ru 2011-12-07 14:04:12 UTC ---
I dont understand.

-- 
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 32823] Undefined index notices when $wgServer is empty string (introduced with 1.18)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32823

--- Comment #6 from use...@arcor.de 2011-12-07 14:08:52 UTC ---
(In reply to comment #5)
 You can look at the remote client address with $_SERVER['REMOTE_ADDR'] ,
 something like:
 
 if( preg_match( $_SERVER['REMOTE_ADDR'], '^192\.168\.0\.' ) {
  // local LAN clients
 
 } else if ( $_SERVER['REMOTE_ADDR'] === '127.0.0.1' ) {
  // localhost!
 
 } else {
   // external access?
 
 }

Ok. Good idea. Then I would need to put that kind of code to LocalSettings.php
and set $wgServer for each case differently. I'll give that a try. 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 31067] Add Wikijunior namespace to Azerbaijani Wikibooks

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31067

--- Comment #5 from Vugar 1981 vugar...@mail.ru 2011-12-07 14:09:17 UTC ---
I dont understand

-- 
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 32473] [[Special:PasswordReset]] can not be used on private wiki

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32473

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

  Component|Site requests   |User login
Version|unspecified |1.18.0
Product|Wikimedia   |MediaWiki
   Target Milestone|--- |1.18.x release
Summary|whitelist   |[[Special:PasswordReset]]
   |[[Special:PasswordReset]]   |can not be used on private
   |for some or all private |wiki
   |wikis   |

--- Comment #4 from Antoine hashar Musso has...@free.fr 2011-12-07 14:11:54 
UTC ---
This bug is in MediaWiki 1.18 at least. Need to allow someone to reset their
password.. To reproduce the issue:

 log out of your test wiki
 set $wgGroupPermissions['*']['read'] = false;
 click the login link to access the login page
 next to the login button ask for a new password (Forgotten your login
details?)

You get a login required error.

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

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


[Bug 31068] Add Wikibooks namespace to Azerbaijani Wikibooks

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31068

--- Comment #6 from Diederik van Liere dvanli...@gmail.com 2011-12-07 
14:14:38 UTC ---
I meant an English translation of the community consensus.

-- 
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 31067] Add Wikijunior namespace to Azerbaijani Wikibooks

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31067

--- Comment #6 from Diederik van Liere dvanli...@gmail.com 2011-12-07 
14:14:54 UTC ---
I meant an English translation of the community consensus.

-- 
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 32850] Remove the title in AFTv5 'Edit this page' CTA

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32850

Reha Sterbin r...@omniti.com changed:

   What|Removed |Added

 CC||r...@omniti.com

--- Comment #1 from Reha Sterbin r...@omniti.com 2011-12-07 14:22:42 UTC ---
FYI - The time investment to remove the title is much more significant than it
would be to just delete some markup.   The title is the handle for dragging the
overlay, so the confirmation message must be put into the overlay as a title
and the titlebar re-styled to accomodate it.

Could you please enter the CTA direct link as a separate task?

-- 
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 32473] [[Special:PasswordReset]] can not be used on private wiki

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32473

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|wikibugs-l@lists.wikimedia. |has...@free.fr
   |org |

--- Comment #5 from Antoine hashar Musso has...@free.fr 2011-12-07 14:26:15 
UTC ---
r105428 whitelist Special:PasswordReset . Would need a backport in REL1_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 32680] MW needs a sane way to disable SpecialPages

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32680

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||has...@free.fr
 Resolution||WORKSFORME

--- Comment #4 from Antoine hashar Musso has...@free.fr 2011-12-07 14:46:23 
UTC ---
Add the following at the bottom of your LocalSettings.php :

$wgSpecialPages['RecentChanges'] = null;

-- 
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 32679] ContributionReporting extension (Special:FundraiserStatistics) has been disabled

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32679

Bug 32679 depends on bug 32680, which changed state.

Bug 32680 Summary: MW needs a sane way to disable SpecialPages
https://bugzilla.wikimedia.org/show_bug.cgi?id=32680

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

-- 
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 32680] MW needs a sane way to disable SpecialPages

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32680

--- Comment #5 from Reedy s...@reedyboy.net 2011-12-07 14:48:50 UTC ---
What error message does this give?

Is it documented?

-- 
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 32798] de.planet stuck

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32798

Daniel Zahn dz...@wikimedia.org changed:

   What|Removed |Added

 AssignedTo|muta...@s23.org |dz...@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 24702] Upload wizard: User preference for preferred license

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24702

Jeroen De Dauw jeroen_ded...@yahoo.com changed:

   What|Removed |Added

 Status|REOPENED|ASSIGNED

--- Comment #5 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-12-07 
15:12:54 UTC ---
 the other option disappears

Right, this was what we wanted for WLM but does not here - I guess I'll have to
introduce a new option then.

I agree with both other points as well and will try to take car of them today.

-- 
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 31341] multiple file selection doesn't respect maxUpload config

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31341

Jeroen De Dauw jeroen_ded...@yahoo.com changed:

   What|Removed |Added

 Status|REOPENED|ASSIGNED

--- Comment #9 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-12-07 
15:17:25 UTC ---
1) Ok, did not notice this myself during testing :/

2) So the only thing you want me to do is add in total to the message? I
could also go for something like You tried to upload 5 files while already
having 3, so 3 of those have been removed. if that's clearer.

-- 
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 32829] Method to quote characters with special meaning before sending them to PPFrame-expand()

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32829

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

   What|Removed |Added

   Priority|Unprioritized   |Normal
 CC||br...@wikimedia.org,
   ||m...@everybody.org
   Severity|normal  |enhancement

--- Comment #1 from Mark A. Hershberger m...@everybody.org 2011-12-07 
15:43:54 UTC ---
pinging Brion about 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 32760] wfprofilein Errors on upgrading to 1.18

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32760

--- Comment #5 from Daniel Friesen mediawiki-b...@nadir-seen-fire.com 
2011-12-07 15:46:07 UTC ---
(In reply to comment #4)
 Yes,  wfDeprecated('includes/ProfilerStub.php' ); is good.
 
 But this issue remains - should the upgrade (from 1.x to 1.x+1) method be to
 unpack the tar image in place, or to move all files away (except
 LocalSettings.php and /images/ and /extensions/ etc) and copy in new versions
 into a blank directory?

I don't think there's any debate over that by anyone but people who treat our
badly written manual as a set of rules and don't actually read what it says.

Upgrades should be done by extracting to a new folder. This issue actually
wouldn't have been fixed by doing that (though it would have been easier to
figure out what was wrong) but extracting over top of your install is just plan
bad planning. If something goes wrong it's not going to be easy to undo what
you did and return to your backup. And you can inadvertently erase any
modifications you've made.

-- 
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 32853] DBA caching backend is broken in MW 1.18 ($dir is an array)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32853

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

   What|Removed |Added

   Priority|Unprioritized   |Normal
 CC||m...@everybody.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 32858] Do not parse .js/.css pages and save their parsed content in database tables

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32858

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

   What|Removed |Added

   Priority|Unprioritized   |Normal
 CC||m...@everybody.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 32853] DBA caching backend is broken in MW 1.18 ($dir is an array)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32853

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |has...@free.fr
   |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 32853] DBA caching backend is broken in MW 1.18 ($dir is an array)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32853

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |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 32823] Undefined index notices when $wgServer is empty string (introduced with 1.18)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32823

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX

--- Comment #7 from Mark A. Hershberger m...@everybody.org 2011-12-07 
16:07:46 UTC ---
WONTFIXING this, but please do not let that stop any additional questions you
have.

-- 
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 31341] multiple file selection doesn't respect maxUpload config

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31341

--- Comment #10 from Neil Kandalgaonkar ne...@wikimedia.org 2011-12-07 
16:30:17 UTC ---
(In reply to comment #9)

 2) So the only thing you want me to do is add in total to the message? 

No, I also changed add to upload. 

I just think that You tried to add 8 files seems wrong, as it implies that I
*just* tried to add 8 files.

-- 
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 32859] New: Block log snippet (extract) is wrong at Special:Contributions when dir=prev is specified

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32859

   Web browser: ---
 Bug #: 32859
   Summary: Block log snippet (extract) is wrong at
Special:Contributions when dir=prev is specified
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: b...@mzmcbride.com
Classification: Unclassified


Typically a block log snippet is shown at Special:Contributions if the user is
currently blocked. For example, at
https://en.wikipedia.org/w/index.php?title=Special:Contributionsdir=nexttarget=JarlaxleArtemis:

---
This account is currently blocked. The latest block log entry is provided below
for reference:

20:16, 17 September 2006 Cyde (talk | contribs) blocked JarlaxleArtemis
(talk | contribs) with an expiry time of indefinite ‎ (Re-instating the
community ban.)

View full log
---

If dir=prev is specified in the URL (by clicking earliest for example), then
the block log snippet becomes wrong. For example, at
https://en.wikipedia.org/w/index.php?title=Special:Contributionsdir=prevtarget=JarlaxleArtemis:

---
This account is currently blocked. The latest block log entry is provided below
for reference:

20:55, 20 June 2005 Linuxbeak (talk | contribs) blocked JarlaxleArtemis
(talk | contribs) with an expiry time of 24 hours ‎ (Disruption of Wikipedia
despite warnings)

View full log
---

This is the first block entry, not the latest block entry, as the user
interface currently incorrectly suggests.

-- 
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 24702] Upload wizard: User preference for preferred license

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24702

Jeroen De Dauw jeroen_ded...@yahoo.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #6 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-12-07 
16:40:56 UTC ---
r105436 ought to do the trick :)

-- 
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 32858] Do not parse .js/.css pages and save their parsed content in database tables

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32858

Phillip Patriakeas dragonlordofxant...@gmail.com changed:

   What|Removed |Added

 CC||dragonlordofxanther@gmail.c
   ||om

--- Comment #1 from Phillip Patriakeas dragonlordofxant...@gmail.com 
2011-12-07 16:46:29 UTC ---
Just to point out, many script authors use the fact that links on script pages
get parsed to track usage of their script - e.g. in the instructions on using
the script, many authors show something like the following:

// FooBar script by [[User:Example]] ([[User:Example/foobar.js]])
importScript( 'User:Example/foobar.js' );

Personally, I agree that parsing .css/.js pages in this way is wasted effort,
but it would be nice having some built-in way to track script usage in place of
abusing the current behavior.

-- 
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 32860] New: Legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

   Web browser: ---
 Bug #: 32860
   Summary: Legal code links
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UploadWizard
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: jeroen_ded...@yahoo.com
CC: asha...@wikimedia.org, ne...@wikimedia.org
Classification: Unclassified


Someone added legal code links to the license messages. Example:

Creative Commons Attribution ShareAlike 3.0 ([$2 legal code])

I just update the user preferences and upload campaigns code to actually pass
the needed url argument and noticed that only some licenses actually have such
an argument, while there are a whole bunch more messages that have the ([$2
legal code]) thing, which is now obviously not rendered. You can easily see
this on the edit page of an upload campaign.

-- 
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 31341] multiple file selection doesn't respect maxUpload config

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31341

Jeroen De Dauw jeroen_ded...@yahoo.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #11 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-12-07 
17:03:39 UTC ---
Should be fixed by r105441

-- 
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 32850] Remove the title in AFTv5 'Edit this page' CTA

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32850

--- Comment #2 from Fabrice Florin fflo...@wikimedia.org 2011-12-07 17:22:12 
UTC ---
Hi Reha, do whatever you think is most practical in markups, so that this title
will not show on this CTA. It doesn't make much sense there.

Please ignore the second line about no direct link for this CTA. This sentence
is intended for testers, so they know how to get to that screen, since we do
not have a direct link to the CTA. 

I believe that Yoni already entered that request for a link in your internal
tracking system at OmniTI, so there is no need to add it here for now. And it's
a post-1.0 task anyway.

-- 
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 32842] Issues with tabs on AFT v5 Feedback Form Option 2

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32842

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |y...@omniti.com
   |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 32680] MW needs a sane way to disable SpecialPages

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32680

Arthur Richards aricha...@wikimedia.org changed:

   What|Removed |Added

 CC||aricha...@wikimedia.org

--- Comment #6 from Arthur Richards aricha...@wikimedia.org 2011-12-07 
18:22:22 UTC ---
Kaldari implemented this for the ContributionReporting extension in r104478 to
temporarily disable it on the cluster with a friendly message. Perhaps this
could be replicated elsewhere/moved into its own extension/etc.

-- 
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 32850] Remove the title in AFTv5 'Edit this page' CTA

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32850

Fabrice Florin fflo...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 AssignedTo|wikibugs-l@lists.wikimedia. |r...@omniti.com
   |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 32860] Legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

Neil Kandalgaonkar ne...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High

--- Comment #1 from Neil Kandalgaonkar ne...@wikimedia.org 2011-12-07 
18:53:27 UTC ---
I don't quite understand this bug. Erik added the legal code thing to the
messages, and also added a url: property in the config for the links to the
licenses. The problem is he didn't add it everywhere that we show the licenses,
including

- User Prefs
- Upload Campaign config

So... is this bug just saying that we need to add the link argument in those
places?

-- 
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 32860] UploadWizard, UploadCampaigns, Upload preferences legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

Neil Kandalgaonkar ne...@wikimedia.org changed:

   What|Removed |Added

Summary|UploadWizard legal code |UploadWizard,
   |links   |UploadCampaigns, Upload
   ||preferences legal code
   ||links

-- 
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 28700] Make upload.wikimedia.org Cross Origin compatible (CORS)

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28700

Asher Feldman afeld...@wikimedia.org changed:

   What|Removed |Added

 CC||afeld...@wikimedia.org

--- Comment #18 from Asher Feldman afeld...@wikimedia.org 2011-12-07 19:25:21 
UTC ---
It doesn't seem that an ops request was ever made for this - I just opened RT
2107 for the apache/squid change.

-- 
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 32680] MW needs a sane way to disable SpecialPages

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32680

--- Comment #7 from Reedy s...@reedyboy.net 2011-12-07 19:30:25 UTC ---
(In reply to comment #6)
 Kaldari implemented this for the ContributionReporting extension in r104478 to
 temporarily disable it on the cluster with a friendly message. Perhaps this
 could be replicated elsewhere/moved into its own extension/etc.

Pushing it into core should be fine

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

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


[Bug 32830] Undoing reset doesn't work

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32830

Robin Pepermans (SPQRobin) robinp.1...@gmail.com changed:

   What|Removed |Added

   Priority|High|Normal

--- Comment #3 from Robin Pepermans (SPQRobin) robinp.1...@gmail.com 
2011-12-07 19:40:53 UTC ---
Ah, now I tested it with e.g. Tamil as user language, I see that it gives
various fonts as options.
So the bug is only present when you are using a user language (like English)
which doesn't have fonts in WebFonts. Then there aren't any font names, so you
only have reset as a select option. I can click on reset, which disables
WebFonts on that page view. I cannot unselect it to enable WebFonts again.

Try it on e.g. https://translatewiki.net/wiki/WebFonts_assessment?uselang=en
where the content has various fonts, no matter which interface language you are
using.

-- 
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 32860] UploadWizard legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

Neil Kandalgaonkar ne...@wikimedia.org changed:

   What|Removed |Added

Summary|Legal code links|UploadWizard legal code
   ||links

-- 
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 32680] MW needs a sane way to disable SpecialPages

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32680

Reedy s...@reedyboy.net changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |

--- Comment #8 from Reedy s...@reedyboy.net 2011-12-07 19:45:59 UTC ---
The result of setting it to null is:

No such special page
You have requested an invalid special page.
A list of valid special pages can be found at Special pages.
Return to Main Page.


It doesn't give any more information. Kaldaris work which Arthur linked to is
definately a step in the right direction, even if it doesn't take care of the
problem 100% - Per Ariel, it might be nicer to be able to give a reason per
page to keep it easily customisable

-- 
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 32679] ContributionReporting extension (Special:FundraiserStatistics) has been disabled

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32679

Bug 32679 depends on bug 32680, which changed state.

Bug 32680 Summary: MW needs a sane way to disable SpecialPages
https://bugzilla.wikimedia.org/show_bug.cgi?id=32680

   What|Old Value   |New Value

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |

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

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


[Bug 32860] UploadWizard, UploadCampaigns, Upload preferences legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

--- Comment #2 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-12-07 
20:10:07 UTC ---
 is this bug just saying that we need to add the link argument in those
places?

No, I already did this

The issue is that there are a bunch of licences that have the legal code thing
in their message but do not have a legal code url in their definition in the
config file, thus resulting in [$2 legal code] showing up as-is in the UI for
these licenses.

-- 
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 23514] give warning when page is deleted while editing and user cannot recreate

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23514

--- Comment #2 from Umherirrender umherirrender_de...@web.de 2011-12-07 
20:29:16 UTC ---
Deleting is only depending on the delete user right, which group this right is
assigned is not necessary, but in the most installation this is the sysop
group. UserB of my example can be a User in the sysop group.

-- 
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 23513] give warning when page is protected while editing

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23513

--- Comment #3 from Umherirrender umherirrender_de...@web.de 2011-12-07 
20:29:31 UTC ---
Protecting is only depending on the protect user right, which group this right
is assigned is not necessary, but in the most installation this is the sysop
group. UserB of my example can be a User in the sysop group.

-- 
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 28766] Enable the FlaggedRevs extension on Greek Wikinews

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28766

--- Comment #8 from glavkos glav...@gmail.com 2011-12-07 21:01:59 UTC ---
Still we do not have on the el.wikinews wiki in the ListGroupRights the
Reviewers group. 

http://en.wikinews.org/w/index.php?title=Special:ListUsersgroup=editor

-- 
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 17108] Make Hide Cookies notice independent

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17108

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

 CC||krinklem...@gmail.com

--- Comment #5 from Krinkle krinklem...@gmail.com 2011-12-07 21:10:48 UTC ---
So for the future we'd want:
* default to let cooking-hiding hide all banners within the current compaign
* option to let hide only hide the current banner within the compaign
and also cool:
* let the banner controller that chooses the banners skip ones hidden by
cookie, so that others get more exposure (by removing chances of user getting a
banner that is then directly hidden).

-- 
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 24950] Make CentralNotice option checkboxes sortable

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24950

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

 CC||krinklem...@gmail.com

--- Comment #2 from Krinkle krinklem...@gmail.com 2011-12-07 21:23:02 UTC ---
Use data-sort-value on the table cell.

-- 
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 24950] Make CentralNotice option checkboxes sortable

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24950

Jeremy Baron bugzilla+org.wikime...@tuxmachine.com changed:

   What|Removed |Added

 CC||bugzilla+org.wikimedia@tuxm
   ||achine.com
 AssignedTo|rkald...@wikimedia.org  |bugzilla+org.wikimedia@tuxm
   ||achine.com

-- 
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 22187] Reformatting of Portals

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22187

--- Comment #3 from Brion Vibber br...@wikimedia.org 2011-12-07 21:29:05 UTC 
---
Proper thing to do is to fix the portals themselves to have better styles --
they have the same problems in desktop browsers if the window is narrow.

I'm not sure how easily we can detect this sort of case automatically: the
table layouts quite legitimately fit within the screen area, they just look
terrible because the content within them doesn't fit those small sizes well.

Adding a min-width: to the CSS could force them to scroll as recommended in bug
32123, but this is still sub-ideal. Better would be either smart use of floats
to let them collapse on narrow screens, or using @media sections to check
when the window width is relatively small and switch to a different layout.

-- 
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 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #1 from Brion Vibber br...@wikimedia.org 2011-12-07 21:30:20 UTC 
---
Any particular examples?

The [[Portal:Literature]] page noted on bug 22187 seems to actually fit on
screen, it just... shouldn't. ;) The same problem occurs on desktop browsers if
the window is narrow.

Proper fix is to fix the styles; there's no magic universal style for
'portals', they're all made individually and some format better than others.

-- 
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 32534] SemanticForms: Autocompletion does not work if canonical namespace is specified.

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32534

--- Comment #1 from Yaron Koren yaro...@gmail.com 2011-12-07 21:42:32 UTC ---
Thanks for diagnosing the problem - this is now fixed in SVN.

-- 
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 32534] SemanticForms: Autocompletion does not work if canonical namespace is specified.

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32534

Yaron Koren yaro...@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 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #2 from Brion Vibber br...@wikimedia.org 2011-12-07 21:45:05 UTC 
---
The problem is hardcoded stuff like this:


div style=float:left; width:60%; !-- This width add to the margin below to
equal 99%--

{{Random portal component|max=22|header=''Selected article''|subpage=Featured
article|seed=53}}

{{Random portal component|max=20|header=''Selected picture''|subpage=Featured
picture|seed=83}}

/div

div style=float:right; width:39% !-- This margin should be right of the
above --


These need to, well, not assume that the window is big enough that 60% and 39%
of it will be suitable widths for content.

Probably setting up some global styles for two-column content that
automatically devolves to single-column on narrow screens would be a good
help...

-- 
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 32860] UploadWizard, UploadCampaigns, Upload preferences legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

--- Comment #3 from Neil Kandalgaonkar ne...@wikimedia.org 2011-12-07 
21:47:06 UTC ---
Could you give me an example of a license that doesn't have a URL? I'm looking
at the config and they all seem to have a URL if the message string demands it.

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

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


[Bug 24702] Upload wizard: User preference for preferred license

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24702

--- Comment #7 from Neil Kandalgaonkar ne...@wikimedia.org 2011-12-07 
21:50:53 UTC ---
Seems to work now

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

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


[Bug 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #3 from Brion Vibber br...@wikimedia.org 2011-12-07 21:52:24 UTC 
---
This seems to work nicely...

https://en.wikipedia.org/wiki/User:Brion_VIBBER/vector.css

^ added some test styles:

/* On wide screens, show these as two columns */

.portal-column-left {
  float: left;
  width: 60%;
}

.portal-column-right {
  float: right;
  width: 37%;
}

@media only screen and (max-width: 720px) {
  /* Decouple the columns on narrow screens */
  .portal-column-left, .portal-column-right {
float: inherit;
width: inherit;
  }
}


and used those instead of hardcoded left/right/width on
http://en.wikipedia.org/wiki/Portal:Literature/Mobile_redesign_attempt

With the styles active, on a regular browser this shows up with the double
columns, until you make the browser window narrower than 720px at which point
it switched to single-column. The mobile view doesn't get the styles at all so
shows the single column, but should do the same if it gets the styles, at least
on decent browsers.

-- 
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 31341] multiple file selection doesn't respect maxUpload config

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31341

--- Comment #12 from Neil Kandalgaonkar ne...@wikimedia.org 2011-12-07 
21:52:57 UTC ---
Looks good. Thanks for the quick fix.

-- 
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 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #4 from Brion Vibber br...@wikimedia.org 2011-12-07 21:53:24 UTC 
---
Note that I don't think we can use CSS3 media queries on inline style elements,
so these'd have to be added to a global stylesheet on the site.

Note that the section near the bottom of the page with a lot of icons still
needs adjustment, as it's a big table -- it should probably be a bunch of
floats or inline-block elements that can rearrange themselves to fit.

-- 
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 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #5 from Brion Vibber br...@wikimedia.org 2011-12-07 21:55:18 UTC 
---
Created attachment 9632
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=9632
Screenshot of enwiki Portal:Literature on current mobile view

Some sections are too big for the tiny columns they've been placed into.

-- 
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 32860] UploadWizard, UploadCampaigns, Upload preferences legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

--- Comment #4 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-12-07 
21:57:12 UTC ---
Created attachment 9633
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=9633
Screenshot

-- 
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 32860] UploadWizard, UploadCampaigns, Upload preferences legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

--- Comment #5 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-12-07 
21:57:38 UTC ---
See attachment

-- 
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 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #6 from Brion Vibber br...@wikimedia.org 2011-12-07 21:58:02 UTC 
---
Created attachment 9634
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=9634
Same section without columns

Same section on
http://en.m.wikipedia.org/wiki/Portal:Literature/Mobile_redesign_attempt with
the columns disabled

-- 
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 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #7 from Brion Vibber br...@wikimedia.org 2011-12-07 22:10:56 UTC 
---
Stuck a quick request for comments or objections on:

https://en.wikipedia.org/wiki/MediaWiki_talk:Common.css#Portal_column_width_vs_narrow_and_mobile_screens

If no objection, will add the styles to the Common.css on enwiki and slip them
into some of the portal pages to try them out.


Note that wide tables and images do seem to trigger horizontal scrolling (such
as the icon table at the end of that literature portal)

-- 
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 32861] New: php rebuildrecentchanges.php postgres

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32861

   Web browser: ---
 Bug #: 32861
   Summary: php rebuildrecentchanges.php postgres
   Product: MediaWiki
   Version: 1.18
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Database
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: m...@simmyd.net
Classification: Unclassified


Imported a backup from another 1.18 install then run the
rebuildrecentchanges.php.

getting a error to do with the NULL value.



[root@networkmanager maintenance]# php importDump.php /fullbackup.dmp 
Done!
You might want to run rebuildrecentchanges.php to regenerate RecentChanges
[root@networkmanager maintenance]# php rebuildrecentchanges.php 
Loading from page and revision tables...
$wgRCMaxAge=7862400 (91 days)
Updating links and size differences...
PHP Warning:  pg_query(): Query failed: ERROR:  invalid input syntax for
integer: NULL
LINE 1: ...did = '0',rc_new = '1',rc_type = '1',rc_old_len = 'NULL',rc_...
 ^ in
/var/www/wiki/includes/db/DatabasePostgres.php on line 253

Warning: pg_query(): Query failed: ERROR:  invalid input syntax for integer:
NULL
LINE 1: ...did = '0',rc_new = '1',rc_type = '1',rc_old_len = 'NULL',rc_...
 ^ in
/var/www/wiki/includes/db/DatabasePostgres.php on line 253
A database error has occurred.  Did you forget to run maintenance/update.php
after upgrading?  See:
http://www.mediawiki.org/wiki/Manual:Upgrading#Run_the_update_script
Query: UPDATE  recentchanges SET rc_last_oldid = '0',rc_new = '1',rc_type =
'1',rc_old_len = 'NULL',rc_new_len = '423' WHERE rc_cur_id = '1' AND
rc_this_oldid = '15'
Function: RebuildRecentchanges::rebuildRecentChangesTablePass2
Error: 1 ERROR:  invalid input syntax for integer: NULL
LINE 1: ...did = '0',rc_new = '1',rc_type = '1',rc_old_len = 'NULL',rc_...

-- 
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 32633] Special:ExtensionDistributor for REL1_18 version does not include svn:externals

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32633

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

   What|Removed |Added

 CC||tstarl...@wikimedia.org

--- Comment #5 from Tim Starling tstarl...@wikimedia.org 2011-12-07 22:19:17 
UTC ---
All the files are there in the working copy. The tar file in question was
generated a month ago, maybe the files weren't there at the time. I'll delete
all the cached tarballs.

-- 
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 32861] php rebuildrecentchanges.php postgres

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32861

--- Comment #1 from Simon Dwyer m...@simmyd.net 2011-12-07 22:20:10 UTC ---
Created attachment 9635
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=9635
Rebuild

-- 
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 32860] UploadWizard, UploadCampaigns, Upload preferences legal code links

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32860

--- Comment #6 from Neil Kandalgaonkar ne...@wikimedia.org 2011-12-07 
22:27:13 UTC ---
Yeah, but right in UploadWizard.config.php you have stanzas which contain the
URL. And that's where the frontend is getting the URL. So why is that different
here?

For instance, this is CC-BY-SA-3.0 Austria:

'cc-by-sa-3.0-at' = array(
'msg' = 'mwe-upwiz-license-cc-by-sa-3.0-at',
'templates' = array( 'cc-by-sa-3.0-at' ),
'icons' = array( 'cc-by', 'cc-sa' ),
'url' =
'http://creativecommons.org/licenses/by-sa/3.0/at/legalcode'
),

-- 
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 32123] Horizontal scrolling when content exceeds screen width

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32123

--- Comment #8 from Brion Vibber br...@wikimedia.org 2011-12-07 22:29:24 UTC 
---
Also dropping a note on
https://en.wikipedia.org/wiki/Wikipedia_talk:WikiProject_Portals#Style_tweaks_for_small_and_mobile_screens

-- 
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 32633] Special:ExtensionDistributor for REL1_18 version does not include svn:externals

2011-12-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32633

--- Comment #6 from Mark A. Hershberger m...@everybody.org 2011-12-07 
22:35:56 UTC ---
Just tried to download again and got the same problem... or was I supposed to
wait for something else?

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