[Bug 31732] Category count of file numbers is wrong on first page

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31732

--- Comment #4 from Bawolff  2011-11-03 04:32:48 UTC ---
Based on toolserver db, looks to be caused by inconsistencies in the commons
db.

File:Fresco with Trompe l'oeuil - Andrea Pozzo -Jesuit Church Vienna.jpg

has page_namespace of 6 (NS_FILE) and a page_id of 2602773, but several of its
categorylinks have a cl_type of "page" instead of "file":

mysql> select cl_to, cl_type from categorylinks where cl_from=2602773;
+---+-+
| cl_to | cl_type |
+---+-+
| Andrea_Pozzo  | page|
| CC-BY-2.5 | page|
| CC-BY-SA-3.0-migrated | page|
| GFDL  | page|
| Jesuit_Church,_Vienna | page|
| License_migration_redundant   | page|
| Media_with_locations  | file|
| Quality_images| page|
| Quality_images_of_Austria | page|
| Quality_images_of_churches_in_Austria | file|
| Self-published_work   | page|
| Trompe_l'oeil_in_Austria  | page|
+---+-+
12 rows in set (0.00 sec)


Thus, when mediawiki does the query, it gets this image as part of the query
for normal pages, but then sorts it in the image section since it uses
page_namespace for dividing between the same section. This results in image
section having more than 200 images. The is counts in category table consitant
code sees that number of images returned does not equal $wgCategoryPagingLimit
(The gist of the code seems to suggest < instead of != is the true condition
being looked for), but that there should be more images in total than the
paging limit, and no offset has been specified, so thinks that category counts
are wrong.

The code should possibly handle this situation better, but I'm not entirely
sure what the right way to handle it is.

-- 
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 31732] Category count of file numbers is wrong on first page

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31732

--- Comment #3 from Bawolff  2011-11-03 04:14:02 UTC ---
Ok, so what's happening:

For some reason we are returning 201 results for the image gallery section of
the category (instead of 200 like we should. We get 201 images so we know if to
make the continue link, but we normally shouldn't display image number 201).
This causes MediaWiki to detect an inconsistency in the category table (aka the
total counts) and not display the total number of images in that cat. Totals
are displayed on the next page, as having an offset disables much of the
consistency checks (since they don't make sense in that case)

The issue is not present in __NOGALLERY__ cats (Ex
[[commons:Category:Polish_pronunciation]] ).  At first glance does not seem to
be categorytree related (¬ree=true url parameter didn't affect it). I'm also
having trouble reproducing locally (even on my 1.18wmf1 checkout, but i am
using a much lower $wgCategoryPagingLimit on my local checkout)


Where this gets really weird is that issue is not present on enwikipedia -
[[Category:Diagram_images_that_should_be_in_SVG_format]] (only 200 images are
returned per page as expected. (but then again neither is
[[commons:category:Unidentified_sunset_locations]] affected, so beats me)

-- 
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 32168] wfExpandUrl should expand ".." path segments

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32168

Chad H.  changed:

   What|Removed |Added

 CC||innocentkil...@gmail.com

--- Comment #1 from Chad H.  2011-11-03 03:16:48 UTC 
---
There's already a @fixme on the function asking for just that :)

-- 
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 32131] #subpagelist: Incorrect HTML code.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32131

Jeroen De Dauw  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #7 from Jeroen De Dauw  2011-11-03 
03:02:04 UTC ---
Applied in r101783

-- 
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 31869] Android app should not forget that its just done a near by me search if the location hasn't changed

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31869

--- Comment #2 from Anis Kadri  2011-11-03 03:01:48 UTC ---
Oh and here is a link to test the Map stuff because you won't be able to see
the tiles if you build it

http://dl.dropbox.com/u/5741170/WikipediaActivity.apk

-- 
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 32154] Extension:CSS does not sanitize CSS from article pages

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32154

--- Comment #1 from Rusty Burchfield  2011-11-03 
02:59:21 UTC ---
I also need to turn the inline styles into a link tag to eliminate any
injection possibility there.

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

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



[Bug 32168] New: wfExpandUrl should expand ".." path segments

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32168

   Web browser: ---
 Bug #: 32168
   Summary: wfExpandUrl should expand ".." path segments
   Product: MediaWiki
   Version: 1.19-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: gicodewarr...@gmail.com
Classification: Unclassified


This section of the RFC explains how it is done.
http://tools.ietf.org/html/rfc3986#section-5.2.4

For example, "/a/b/c/./../../g" becomes "/a/g".

This is important for security reasons where you need to limit URLs to a
certain prefix.

-- 
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 31700] Android app jerks up erratically after page loads

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31700

Anis Kadri  changed:

   What|Removed |Added

 CC||a...@nitobi.com

--- Comment #3 from Anis Kadri  2011-11-03 02:57:18 UTC ---
https://github.com/nitobi/Wikipedia/commit/a0a7deeeb7933d522d0208cfdd029fb5a755b466

https://github.com/nitobi/Wikipedia/commit/79871cecb01ff18af78bc4d3db3cfc0575f1264c

This is _not_ active right now. We have to figure out what to cache and for how
long.

The implementation takes a URL and caches it with its images and associated
resources(stylesheets etc...). Resources are replaced on the fly (when the page
loads in the iframe).

Everything is stored in the apps private data directory (internal storage and
not SDCard).

I looked at the mockups and I didn't see any UI for managing saved articles.
Should we just reuse the bookmark UI ?

-- 
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 31869] Android app should not forget that its just done a near by me search if the location hasn't changed

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31869

--- Comment #1 from Anis Kadri  2011-11-03 02:50:16 UTC ---
https://github.com/nitobi/Wikipedia/commit/ce32f44a1d1a269b0ea7bc75d4211f74baae281d

note that search has to be manual the second time you launch the nearby item
using the "redo search in this area button"

-- 
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 31993] 1.18 regression: Monobook skin left bar has very large spacing in IE 7 (and IE 8 & IE 9's compatibility mode)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31993

David Hyland  changed:

   What|Removed |Added

 CC||david.hyl...@internode.on.n
   ||et

--- Comment #9 from David Hyland  2011-11-03 
02:46:18 UTC ---
*** Bug 32166 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 32166] Monobook Sidebar has spaces between boxes

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32166

David Hyland  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #1 from David Hyland  2011-11-03 
02:46:18 UTC ---
It seems this bug has already been reported (31993) and fixed. Apologies for
any inconvenience caused.

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

-- 
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 32165] Creation date special property.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32165

--- Comment #4 from Jeroen De Dauw  2011-11-03 
02:37:39 UTC ---
Like I said, your patch looks valid. IIRC Markus did not want to add any such
additional special properties though - Markus, can you comment on this?

That page was more of a personal wish/rant-list of Badon, disguised as a
manual. I deleted it now, sorry for the confusion.

-- 
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 32167] New: Allow to display only temporary protections in Special:ProtectedPages

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32167

   Web browser: ---
 Bug #: 32167
   Summary: Allow to display only temporary protections in
Special:ProtectedPages
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: Special pages
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: cryptocoryn...@gmail.com
Classification: Unclassified


Created attachment 9352
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=9352
patch

MediaWiki allows to display all or only infinites protections.

I've add option to display only temporary protections.

-- 
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 32166] Monobook Sidebar has spaces between boxes

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32166

david.hyl...@internode.on.net changed:

   What|Removed |Added

 CC||david.hyl...@internode.on.n
   ||et
Web browser|--- |Internet Explorer 7.x

-- 
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 32166] Monobook Sidebar has spaces between boxes

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32166

david.hyl...@internode.on.net changed:

   What|Removed |Added

   Platform|All |PC

-- 
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 32166] New: Monobook Sidebar has spaces between boxes

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32166

   Web browser: ---
 Bug #: 32166
   Summary: Monobook Sidebar has spaces between boxes
   Product: MediaWiki
   Version: 1.18
  Platform: All
OS/Version: Windows XP
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: david.hyl...@internode.on.net
Classification: Unclassified


Created attachment 9351
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=9351
Partial screendump showing the problem

There are big spaces between the various elements of the sidebar (navigation,
search, interaction, etc) when using the Monobook skin. Noted since the change
to 1.18. Noted in IE7, IE8 in "compatibility mode". Doesn't seem to occur in
Firefox or Chromium, or with other skins - just Monobook. See
http://en.wikipedia.org/wiki/Wikipedia:Village_pump_(technical)/Archive_94#Monobook_Sidebar_has_spaces_between_boxes

-- 
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 32165] Creation date special property.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32165

--- Comment #3 from Van de Bugger  2011-11-03 02:01:48 
UTC ---
Hmm... I want to get recently created pages, which also have to meet some other
conditions, so I created a query:

{{ #ask: ...conditions...
   | ?Creation time
   | sort  = Creation date
   | order = desc
}}

If there is no `Creation date' property, how to get recently created pages
then?

BTW, http://www.mediawiki.org/wiki/Extension:Semantic_MediaWiki/Manual says:

Needed semantic "meta" properties

 * Page name
 ...
 * Page modification date - already implemented
 * Page creation date

I just copied implementation of modification date. If you think it should be
implemented in another way, then show 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 31694] During installation, tabbing order (cursor focus) goes to logo instead of "continue"

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31694

Sumana Harihareswara  changed:

   What|Removed |Added

 CC||suma...@panix.com
Summary|Wrong TAB order during  |During installation,
   |instalation |tabbing order (cursor
   ||focus) goes to logo instead
   ||of "continue"

-- 
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 31694] Wrong TAB order during instalation

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31694

Mark A. Hershberger  changed:

   What|Removed |Added

   Keywords||easy
URL|http://localhost/mediawiki/ |http://localhost/mediawiki/
   |mw-config/index.php?page=La |mw-config/index.php?page=La
   |nguage  |nguage

-- 
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 20999] When exists one category with the char: "

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20999

MZMcBride  changed:

   What|Removed |Added

   Keywords|need-review |
 CC||b...@mzmcbride.com

--- Comment #2 from MZMcBride  2011-11-03 00:06:55 UTC ---
I'm removing the "need-review" keyword. Roan reviewed the "patch" in comment 1.
(I think the "patch" keyword is a bit silly here as well, but I'll leave it for
now.)

(In reply to comment #1)
> This is not a proper fix, you should use htmlspecialchars($title->getText())
> instead.

I thought there was a MediaWiki-specific escape function that people used
instead of htmlspecialchars. Maybe I'm thinking of something else?

-- 
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 31613] API UsageException when saving a collection to a page

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31613

--- Comment #19 from Mark A. Hershberger  2011-11-03 
01:30:11 UTC ---
Fixes like this one will probably be deployed in a few days time.
I'll try to ping someone tomorrow.

-- 
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 32147] is_ff2 in wikibits.js will break on Firefox 10 and later

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32147

--- Comment #1 from Daniel Friesen  
2011-11-03 01:22:35 UTC ---
(In reply to comment #0)
> Firefox version numbers are going up way faster since the new release
> schedule this year; 10 will be coming up in a few months.
> 
> This code ain't gonna cut it:
> 
>   // For accesskeys; note that FF3+ is included here!
>   window.is_ff2 = /firefox\/[2-9]|minefield\/3/.test( clientPC );
> 
> It's also pretty generally wrong and should probably not be being used by
> anything. :P

;) On the plus side, once Firefox hits version 20 that code will start working
again.

It's a shame browsers don't expose their accesskey prefixes in some api.

-- 
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 32165] Creation date special property.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32165

--- Comment #2 from Jeroen De Dauw  2011-11-03 
01:20:33 UTC ---
Patch looks valid at first glance. Not sure it's a good idea to add more
special props into SMW itself.

-- 
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 32165] Creation date special property.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32165

--- Comment #1 from Van de Bugger  2011-11-03 01:12:29 
UTC ---
Created attachment 9350
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=9350
Implementation of the `Creation date' property.

-- 
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 32165] New: Creation date special property.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32165

   Web browser: ---
 Bug #: 32165
   Summary: Creation date special property.
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: Semantic MediaWiki
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: van.de.bug...@gmail.com
CC: jeroen_ded...@yahoo.com, mar...@semantic-mediawiki.org
Classification: Unclassified


There is `Modification date' special property. I would like to have `Creation
date' special property.

-- 
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 31864] Make sure revision queries JOIN on page in most places

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31864

Sumana Harihareswara  changed:

   What|Removed |Added

 CC||suma...@panix.com

--- Comment #2 from Sumana Harihareswara  2011-11-03 
00:47:30 UTC ---
We still need to cover extensions.

-- 
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 32162] MobileFrontend double slash in URL for .../javascripts//application.js

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32162

Patrick Reilly  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 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 32162] MobileFrontend double slash in URL for .../javascripts//application.js

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32162

--- Comment #1 from Patrick Reilly  2011-11-03 00:38:48 
UTC ---
Fixed now in r101765.

-- 
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 31873] Missing back to instance list link when successfully configuring an instance

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31873

--- Comment #2 from Ryan Lane  2011-11-03 00:29:38 UTC ---
\o/

-- 
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 31873] Missing back to instance list link when successfully configuring an instance

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31873

John Du Hart  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||j...@compwhizii.net
 Resolution||FIXED

--- Comment #1 from John Du Hart  2011-11-03 00:28:15 UTC 
---
r101760

-- 
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 32160] MobileFrontend search suggestions formatting looks like it's full of XSS/HTML injection vectors

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32160

Patrick Reilly  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 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 32160] MobileFrontend search suggestions formatting looks like it's full of XSS/HTML injection vectors

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32160

--- Comment #1 from Patrick Reilly  2011-11-03 00:27:13 
UTC ---
Fix for this issue is in r101761.

-- 
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 31870] The check mark image and the cross mark image no longer appear

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31870

Brion Vibber  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Brion Vibber  2011-11-03 00:19:16 UTC 
---
Fixed on REL1_18 in r101758. Marking for merge to 1.18wmf1 for upcoming
deployment.

-- 
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 32164] New: Importance description link in Bugzilla is useless

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32164

   Web browser: ---
 Bug #: 32164
   Summary: Importance description link in Bugzilla is useless
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
AssignedTo: mhershber...@wikimedia.org
ReportedBy: b...@mzmcbride.com
CC: innocentkil...@gmail.com, s...@reedyboy.net
Classification: Unclassified


Clicking on "Importance" in a standard bug view leads to
. This page
doesn't describe importance levels at all and has no "importance" anchor. This
should be 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 31870] The check mark image and the cross mark image no longer appear

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31870

--- Comment #2 from Brion Vibber  2011-11-03 00:13:52 UTC 
---
Fixed on trunk in r101756. Needs a slightly different patch for 1.18 (pre
resourceloaderification of the ext)

-- 
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 20999] SelectCategoryTagCloud is not properly escaping tags

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20999

MZMcBride  changed:

   What|Removed |Added

Summary|When exists one category|SelectCategoryTagCloud is
   |with the char: "|not properly escaping tags
   Severity|blocker |major

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

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


[Bug 31870] The check mark image and the cross mark image no longer appear

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31870

Brion Vibber  changed:

   What|Removed |Added

   Keywords|need-regression-test|
 AssignedTo|wikibugs-l@lists.wikimedia. |br...@wikimedia.org
   |org |

--- Comment #1 from Brion Vibber  2011-11-03 00:09:43 UTC 
---
I'm removing needs-regression-test as it's not super easy to make a test for
that right now.


Main problem was r81905, which consolidated separate 'border-repeat' and
'border-position' specifications into a single 'border' rule. This
unfortunately creates an implied 'background-image: none', which overrides the
background-image: url(yes_check.png) etc.

Undoing that seems to help.

Additionally on trunk, the files didn't get moved along with the CSS so can't
be found.

-- 
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 20999] When exists one category with the char: "

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20999

Mark A. Hershberger  changed:

   What|Removed |Added

   Keywords||need-review, patch
 CC||m...@everybody.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 32163] Please list the fingerprint(s) of the server

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32163

--- Comment #3 from Ryan Lane  2011-11-03 00:00:31 UTC ---
http://www.php.net/manual/en/function.ssh2-fingerprint.php

^^ that would do perfectly.

-- 
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 32163] Please list the fingerprint(s) of the server

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32163

--- Comment #2 from Ryan Lane  2011-11-02 23:57:54 UTC ---
I'll try to think of some way of listing this info. There are definitely some
dirty, hackish ways of doing this. I may just put a cron on one system that
pulls the keys and adds them to the instance's wiki page.

I may also be able to do this via OpenStackManager, by adding a job to the job
queue that tries to ssh to the host, pulling the key and then updating the wiki
page with the fingerprint.

-- 
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 31924] Android app should have an option to not download the features article of the day

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31924

--- Comment #3 from Brion Vibber  2011-11-02 23:55:49 UTC 
---
I don't think this is spinner-related as such anymore; the spinner shows and
works during this time, as expected.

Problem originally was that there was a modal spinner which prevented you from
doing anything! This is no longer the case -- you can start search immediately,
without waiting for the page to finish loading.

My inclination would be to close this out as 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 32163] Please list the fingerprint(s) of the server

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32163

Platonides  changed:

   What|Removed |Added

 CC||platoni...@gmail.com

--- Comment #1 from Platonides  2011-11-02 23:39:39 UTC 
---
The fingerprints of the instances are dynamic (would change on each
recreation). 
Extension:OpenStackManager can show them in the 'get output', but you can't
view that page unless you are admin.

-- 
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 25430] Fundraising-related Special pages need header and footer messages

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25430

--- Comment #5 from Sumana Harihareswara  2011-11-02 
23:35:29 UTC ---
David, thanks for the patch!  I'm finding a reviewer to look at your work as
soon as possible.  In the meantime, please check out
https://www.mediawiki.org/wiki/Annoying_little_bugs and try to fix more!  :-)

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

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


[Bug 32131] #subpagelist: Incorrect HTML code.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32131

Jeroen De Dauw  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|wikibugs-l@lists.wikimedia. |jeroen_ded...@yahoo.com
   |org |

--- Comment #6 from Jeroen De Dauw  2011-11-02 
23:34:53 UTC ---
Oh.. So it's the parser messing it up - that explains why I did not see
anything wrong :)

Will apply your patch later today - thnx!

-- 
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 32163] Please list the fingerprint(s) of the server

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32163

T. Gries  changed:

   What|Removed |Added

   Priority|Unprioritized   |High

-- 
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 32163] New: Please list the fingerprint(s) of the server

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32163

   Web browser: ---
 Bug #: 32163
   Summary: Please list the fingerprint(s) of the server
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Labs
AssignedTo: rlan...@gmail.com
ReportedBy: m...@tgries.de
Classification: Unclassified


Please list the fingerprint(s) of the server.

cd /etc/ssh
ssh-keygen -lf ssh_host_rsa-key.pub

or the like.

See
http://article.gmane.org/gmane.science.linguistics.wikipedia.technical/56378

-- 
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 32106] #formlink: `title' parameter.

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32106

Van de Bugger  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #5 from Van de Bugger  2011-11-02 23:28:54 
UTC ---
Ok, now it works. 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 30513] Redirect tag is not resolved in XML dump file

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30513

--- Comment #9 from Sumana Harihareswara  2011-11-02 
23:24:49 UTC ---
Diederik, could you re-upload your updated patch and ensure it's in the right
format (and that it applies cleanly to trunk as is)?  Right now, attachment #
8973 is in a format such that Bugzilla won't show the diff automatically...

-- 
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 31686] Android app should show search suggestions

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31686

--- Comment #10 from Brion Vibber  2011-11-02 23:23:13 UTC 
---
Awesome, it's working a lot smoother now. A little tweaking on the click
behavior should pretty much do it for 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 32157] MobileFrontend search suggestions break on & character (no URL escaping)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32157

Patrick Reilly  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 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 32156] MobileFrontend doesn't update search box width at 180-degrees orientation

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32156

Patrick Reilly  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 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 32156] MobileFrontend doesn't update search box width at 180-degrees orientation

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32156

--- Comment #1 from Patrick Reilly  2011-11-02 23:16:28 
UTC ---
This should now be fixed in r101742.

-- 
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 32089] MobileFrontend beta menu with language selector, buttons has inverse folding state in Firefox

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32089

--- Comment #3 from Brion Vibber  2011-11-02 23:15:54 UTC 
---
Note this can be reproduced in desktop firefox, you don't need to mess around
with the Android version. :)

-- 
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 19542] Dump page titles for other namespaces

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19542

Platonides  changed:

   What|Removed |Added

 CC||platoni...@gmail.com

--- Comment #3 from Platonides  2011-11-02 23:12:29 UTC 
---
All titles are available at page.sql.gz if needed.

-- 
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 31686] Android app should show search suggestions

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31686

--- Comment #9 from herman wong  2011-11-02 23:12:07 
UTC ---
https://github.com/nitobi/Wikipedia/commit/3d429186f9881a6db767040adefb274eccc60d85

this should fix the following symptoms:

* sometimes all the results disappear from screen
* sometimes navigates to a page before you've completed the search; for
instance type "supreme" or "new york" and you may find yourself at those pages.

-- 
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 32161] MobileFrontend: clicking around triggers "event is not defined" JS error

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32161

--- Comment #2 from Brion Vibber  2011-11-02 23:12:02 UTC 
---
Confirmed fixed on my local install. thx!

-- 
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 26273] Database layer should automagically add GROUP BY columns on backends that need them (postgres)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26273

Sumana Harihareswara  changed:

   What|Removed |Added

 CC||dj.ba...@gmail.com,
   ||suma...@panix.com

--- Comment #4 from Sumana Harihareswara  2011-11-02 
23:11:19 UTC ---
We discussed this bug today in IRC and did not come to any particular
conclusions on how to design this.  This is a large project, one that
developers who want a substantial MediaWiki improvement task should take on.


 There is a related bug to 26273 but I don't know where it
is offhand. Tim and I made some hand-waving solutions for this.
 Basically, we need to have MW gather the list of columns
from the tables and create the GROUP BY on the fly.
 G_SabinoMullane: why not have a var that lists, per table, the
correct group by?
 blobaugh: Because schema changes (new columns) would
break it
 This bug (26273) used to rear its ugly head a lot. Not so much
any more. It was just one special page the last time I checked. Staying away
from GROUP BY 1,2,3, etc. and sticking to the more stringent rules enforced by
SQL SERVER (e.g., making sure to name the fields by name rather than by alias)
has helped a lot.
 G_SabinoMullane: could this be a global that gets updated on
schema changes manually?
<^demon> blobaugh: We can barely keep people updating all the proper places
when they do a schema change anyway...a global they'd have to keep in check too
would be impossible.
 ^demon: fair enough
 blobaugh: That seems like a lot of work compared to
simply reading the db cols directly
 G_SabinoMullane: maybe, but it would make the system much faster
than needing another db call
 djbauch: do you think it would be fairly easy to generate a list
of the places in MediaWiki that name fields by alias?
 Sumanah: Yes, there were only two places that caused a problem
that I found. One special page and one obscure place.
 is this a longterm project for some interested developer,
then?like, GSoC level?  or intractable? or what?
 not sure if it is worth full GSoC, but looks like non-trivial
amount of work indeed

-- 
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 32089] MobileFrontend beta menu with language selector, buttons has inverse folding state in Firefox

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32089

--- Comment #2 from Brion Vibber  2011-11-02 23:10:11 UTC 
---
In DeviceDetection.php, Firefox seems to trigger the "capable" profile, which
includes "default" CSS.

Either "capable" should load CSS that matches those capabilities (should it be
in "default.css"?), or a separate profile should be being used.

-- 
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 32089] MobileFrontend beta menu with language selector, buttons has inverse folding state in Firefox

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32089

--- Comment #1 from Brion Vibber  2011-11-02 23:06:50 UTC 
---
This seems to be because default.css is loaded instead of firefox.css.

default.css doesn't initially hide the navigation area, unlike firefox.css and
webkit.css.

-- 
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 32161] MobileFrontend: clicking around triggers "event is not defined" JS error

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32161

Patrick Reilly  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 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 32161] MobileFrontend: clicking around triggers "event is not defined" JS error

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32161

--- Comment #1 from Patrick Reilly  2011-11-02 23:00:18 
UTC ---
This should now be fixed in r101734.

-- 
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 31696] update.php fails with SQLite

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31696

Mark A. Hershberger  changed:

   What|Removed |Added

   Target Milestone|1.18 tarball release|---

--- Comment #14 from Mark A. Hershberger  2011-11-02 
22:53:48 UTC ---
I've tried several times to reproduce the problem tonight.  I don't think this
is a problem with 1.18 and I couldn't reproduce it with 1.17.

I tried the running update.php after each of the following scenarios:

1.16 -> 1.17
1.17 -> add LQT from 1.17 branch
-> add LQT from svn
-> 1.18 with LQT from svn

My config for each of these tests:

$ dpkg -l php5-sqlite php5-cli
...
ii  libapache2-mod-php55.3.8-1~dotdeb.2   server-side,
HTML-embedded scripting language (Apache 2 module)
ii  php5-cli   5.3.8-1~dotdeb.2   command-line
interpreter for the php5 scripting language
ii  php5-sqlite5.3.8-1~dotdeb.2   SQLite module
for php5

-- 
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 31700] Android app jerks up erratically after page loads

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31700

Joe Bowser  changed:

   What|Removed |Added

 CC||bows...@gmail.com
 AssignedTo|a...@nitobi.com |bows...@gmail.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 31447] Tracking bug for 1.0 release of Android App

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31447

Bug 31447 depends on bug 31707, which changed state.

Bug 31707 Summary: Android app only shows add bookmark and bookmarks on app load
https://bugzilla.wikimedia.org/show_bug.cgi?id=31707

   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 31707] Android app only shows add bookmark and bookmarks on app load

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31707

Joe Bowser  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bows...@gmail.com
 Resolution||WORKSFORME

--- Comment #3 from Joe Bowser  2011-11-02 22:52:28 UTC ---
Unable to reproduce on the latest version.  We replaced the plugin with the
plugin that I wrote which should address this in almost all cases.  Going to
mark it "Works for Me" for now.

-- 
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 32161] New: MobileFrontend: clicking around triggers "event is not defined" JS error

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32161

   Web browser: ---
 Bug #: 32161
   Summary: MobileFrontend: clicking around triggers "event is not
defined" JS error
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://en.m.wikipedia.org/
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: MobileFrontend
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: br...@wikimedia.org
CC: prei...@wikimedia.org, tf...@wikimedia.org
Classification: Unclassified


* open firefox
* load http://en.m.wikipedia.org/
* open web console or JS error console or firebug
* click anywhere
* see "event is not defined" error at:

document.body.onmousedown = function() {
whichElement(event);
}

-- 
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 31344] Erroneous records with duplicate properties

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31344

Jeroen De Dauw  changed:

   What|Removed |Added

 AssignedTo|jeroen_ded...@yahoo.com |wikibugs-l@lists.wikimedia.
   ||org

--- Comment #2 from Jeroen De Dauw  2011-11-02 
22:47:42 UTC ---
What version of SMW? 1.6.1? trunk?

Markus, seems like a bug for 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 32160] New: MobileFrontend search suggestions formatting looks like it's full of XSS/HTML injection vectors

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32160

   Web browser: ---
 Bug #: 32160
   Summary: MobileFrontend search suggestions formatting looks
like it's full of XSS/HTML injection vectors
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: MobileFrontend
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: br...@wikimedia.org
CC: prei...@wikimedia.org, tf...@wikimedia.org
Classification: Unclassified


This seems rather frightening...

html = html + "+" + section.label +
"";

There's no HTML escaping on strings being placed into HTML output, nor any
JavaScript escaping of strings being placed into JavaScript source code (which
itself is being placed in HTML output).

Page titles can contain ", ', and things like onclick="blah blah" so you really
need to be escaping your output before little bobby tables comes to play...

-- 
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 32157] MobileFrontend search suggestions break on & character (no URL escaping)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32157

--- Comment #1 from Patrick Reilly  2011-11-02 22:45:17 
UTC ---
This should now be fixed in r101728.

-- 
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 32159] New: some links seem to be in god mode

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32159

   Web browser: ---
 Bug #: 32159
   Summary: some links seem to be in god mode
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://meta.wikimedia.org/wiki/Talk:Spam_blacklist#Goo
gle_redirect_spam
OS/Version: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: Spam Blacklist
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: email_metawiki_...@wg-karlsruhe.de
Classification: Unclassified


Links like

http://www.google.com/url?sa=t&rct=j&q=public%20law%20105-298&source=web&cd=1&ved=0CB4QFjAA&url=http%3A%2F%2Fwww.redtube.com&ei=vmahTvikEoib-gadiZGuBQ&usg=AFQjCNH95AzJoEKz83KrtpLkLXENeJ3Njw&sig2=I_64kGBITluwmGNvw619Cg

that should be matched by the sbl (\bredtube\.com\b is blocked at meta) are not
blocked by the sbl. See
http://en.wikipedia.org/w/index.php?title=Wikipedia_talk:External_links&diff=prev&oldid=456671911
and see http://meta.wikimedia.org/wiki/Talk:Spam_blacklist#Google_redirect_spam

-- 
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 32158] New: All list views need pagination support

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32158

   Web browser: ---
 Bug #: 32158
   Summary: All list views need pagination support
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: OpenStackManager
AssignedTo: rlan...@gmail.com
ReportedBy: rlan...@gmail.com
Classification: Unclassified


Currently no list views have support for pagination. As we have more instances,
more addresses, and more projects, this will become important.

We should also change the views to allow selection of projects before the lists
are shown.

-- 
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 32157] New: MobileFrontend search suggestions break on & character (no URL escaping)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32157

   Web browser: ---
 Bug #: 32157
   Summary: MobileFrontend search suggestions break on & character
(no URL escaping)
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://en.m.wikipedia.org/
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: MobileFrontend
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: br...@wikimedia.org
CC: prei...@wikimedia.org, tf...@wikimedia.org
Classification: Unclassified


Search terms aren't URL-escaped when building the query in searchApi() -- so eg
searching for eg "AT&T" will turn up only prefix results for "AT".

Could also interfere with %.

-- 
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 32156] New: MobileFrontend doesn't update search box width at 180-degrees orientation

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32156

   Web browser: ---
 Bug #: 32156
   Summary: MobileFrontend doesn't update search box width at
180-degrees orientation
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://en.m.wikipedia.org/
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: MobileFrontend
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: br...@wikimedia.org
CC: prei...@wikimedia.org, tf...@wikimedia.org
Classification: Unclassified


While many phones don't actually go into a 180-degree orientation mode
(portrait, fully upside-down), tablets like the iPad do.

Steps to reproduce:
* load http://en.m.wikipedia.org/ on iPad fully right-side-up (menu button at
bottom)
* rotate 90 degrees -- watch it expand the search box to fit landscape
* rotate 90 degrees again in the same direction (menu button at top) -- watch
the search box be wider than the page, triggering horizontal scrolling

updateOrientationSearchWidth() only seems to check 0, 90, and -90 so it doesn't
trigger on 180.

-- 
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 28172] wfGetDB called when it shouldn't be

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28172

--- Comment #11 from Tim Starling  2011-11-02 22:25:31 
UTC ---
If someone can provide a reliable reproduction procedure on PostgreSQL or
SQLite, then we can take it from there.

-- 
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 28281] Differentiate between MySQL and MySQL forks (ie MariaDB)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28281

Sumana Harihareswara  changed:

   What|Removed |Added

 CC||suma...@panix.com

--- Comment #2 from Sumana Harihareswara  2011-11-02 
22:22:21 UTC ---
The issue here is that MediaWiki thinks that the database is MySQL "because
we're using mysql_* functions ...we assumed DatabaseMysql would only ever refer
to mysql  Presumably we'd like to have some way in php to differentiate the
two."

I'm reaching out to the MariaDB community to see whether they care about this
issue at all and would want to put any time into fixing it.

IRC conversation for context:

<^demon> I dunno what MariaDB would need to do.
 sumanah: that looks like an issue on the MariaDB side?
<^demon> Presumably we'd like to have some way in php to differentiate the
two.
 the only way to fix that is to contribute the patch to them
 blobaugh: I mean, MariaDB people would donate a bit of time to
fix it in MediaWiki.
<^demon> Again...
<^demon> I'm not sure what MariaDB needs to do?
<^demon> We assume it's mysql because we're using mysql_* functions
 ^demon: it looks like just change the link on the
Special:Version page
 getSoftwareLink() currently returns a static string
 (DatabaseMysql class)
<^demon> Platonides: Right. Because we assumed DatabaseMysql would only
ever refer to mysql.
 the work is to somewhow differenciate between the two
 so to fix it a new class would need to be made? DatabaseMariaDb?
<^demon> Platonides: But other than a software link, do we need to
differentiate at all? 
<^demon> ie: Would the subclass be anything other than overriding
getSoftwareLink()? 
 Not in the code, yet 
 make mysql family servers add a command 'SELECT
UPSTREAM_LINK();' :) 
 I don't think so 
 ^demon: afaik you are correct
 if we switched to it, perhaps we would begin optimizing some
edge cases
 I thought MariaDB was meant to be super transparent with
regards to working MySQL code?
 but it's similar enough to mysql that I don't think we would
make any change in the class

-- 
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 16172] # is always taken to begin a comment, even when escaped

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16172

seth  changed:

   What|Removed |Added

 CC||email_metawiki_138@wg-karls
   ||ruhe.de

--- Comment #4 from seth  2011-11-02 
22:15:23 UTC ---
You can use \x23 instead of #. So I guess this ticket is a wontfix candidate?

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

--- Comment #10 from Antoine "hashar" Musso  2011-11-02 
22:14:15 UTC ---
FYI, I have created the VipsScaler component in Bugzilla.

-- 
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 28512] SQLite installation via CLI fails to expand ~paths

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28512

Sumana Harihareswara  changed:

   What|Removed |Added

   Priority|Normal  |Low
 CC||suma...@panix.com

--- Comment #5 from Sumana Harihareswara  2011-11-02 
22:14:05 UTC ---
Decided today in IRC that this is low-priority.

For reference: From IRC discussion today:

Chad Horohoe: Rather than trying to jump through hoops to figure out where the
path is, why not just error out when a ~ path is given and say "give a full
path please"

Greg Sabino Mullane: That's some hacky code there. Why are we not just
disallowing ~ ?

Chad: Exactly. It's easier just to say "don't do that" than anything 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


[Bug 28172] wfGetDB called when it shouldn't be

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28172

Sumana Harihareswara  changed:

   What|Removed |Added

 CC||suma...@panix.com

--- Comment #10 from Sumana Harihareswara  2011-11-02 
22:07:33 UTC ---
Tim, can you offer some wisdom or guidance here?  This bug is hard to reproduce
-- Greg Sabino Mullane and OverlordQ can repro it, but Chad can't reproduce it
on MySQL or on SQLite -- and "it shouldn't differ by dbms, since that code is
shared."

DJ Bauch offered, "I see this  (Bug 28172)  happen when an install fails to
complete for some reason (on SQL Server in my case) and then tries to resume.
Restarting the install from scratch after fixing whatever caused the failure
works around the problem that the load balancer has been turned off and never
turned back on."

Selected IRC conversation:

 I think the key is here: #2
/var/www/thedarkcitadel.com/w/includes/User.php(2858): wfGetDB(-1)
<^demon> After the db has been initialized the LB is re-enabled.
<^demon> And then User can do its thing.
 ^demon: Why is the LB being disabled there?
 e.g. to prevent you from creating a user when you shouldn't :)
<^demon> The LB code automatically does things like connect to the database
and such.
 =when DB is not ready yet
<^demon> Right, it's to keep you from breaking things accidentally.

-- 
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 31447] Tracking bug for 1.0 release of Android App

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31447

Bug 31447 depends on bug 31484, which changed state.

Bug 31484 Summary: Android app doesn't allow text selection for cut-n-paste
https://bugzilla.wikimedia.org/show_bug.cgi?id=31484

   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 on the CC list for the bug.

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


[Bug 31484] Android app doesn't allow text selection for cut-n-paste

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31484

Brion Vibber  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

--- Comment #21 from Brion Vibber  2011-11-02 22:06:58 UTC 
---
this has been merged, all is well :D

-- 
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 31686] Android app should show search suggestions

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31686

--- Comment #8 from Brion Vibber  2011-11-02 22:02:24 UTC 
---
Tapping on a suggestion also often closes the list without showing any focus
behavior in the list, then focuses & shows a highlight ring on some UI element
that was on the page behind, such as a link, until the target page loads.

-- 
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 32118] test special pages SQL queries against all supported DB

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32118

Sumana Harihareswara  changed:

   What|Removed |Added

 CC||dj.ba...@gmail.com,
   ||suma...@panix.com

--- Comment #1 from Sumana Harihareswara  2011-11-02 
22:02:22 UTC ---
DJ Bauch and Ben Lobaugh are going to work on this, at least for
Microsoft-related databases.  It would be great if developers on other
databases also wrote some unit tests.

>From IRC discussion today:

 throw some test data at it, then call internally via the API?
 without having the test know how to access the db itself you
could do that. insert via api and retrieve via api, compare
 sumanah: i can work with djbauch to make sure the MSSQL driver
is fully tested
 Yeah, I can work with Ben on all the required MS SQL tests.
 sumanah: is there no specification for test for dbs right now?
 Nikerabbit: I don't think so.
 blobaugh, first, you have to get normal tests to work on your
backend
 Special pages are working OK for me now on SQL Server. Even the
GROUP BY stuff

Conclusion -- Ben & DJ to work on this - for MSSQL at least. if an abstract
method can be ported to each we will try to find it

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

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


[Bug 31447] Tracking bug for 1.0 release of Android App

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31447

Bug 31447 depends on bug 31686, which changed state.

Bug 31686 Summary: Android app should show search suggestions
https://bugzilla.wikimedia.org/show_bug.cgi?id=31686

   What|Old Value   |New Value

 Status|RESOLVED|REOPENED
 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 31686] Android app should show search suggestions

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31686

Brion Vibber  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #7 from Brion Vibber  2011-11-02 21:59:30 UTC 
---
Seems pretty buggy:
* sometimes comes back with seemingly wrong or early results: eg typing "thing"
and ending up with suggestions that fit with just the initial "t"
* sometimes all the results disappear from screen
* sometimes navigates to a page before you've completed the search; for
instance type "supreme" or "new york" and you may find yourself at those pages.

-- 
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 13569] Spam Blacklist sometimes allows adding blacklisted links

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13569

seth  changed:

   What|Removed |Added

 CC||email_metawiki_138@wg-karls
   ||ruhe.de

--- Comment #5 from seth  2011-11-02 
21:57:03 UTC ---
(In reply to comment #4)
> Another example:
> http://en.wikipedia.org/w/index.php?diff=278745650&oldid=278575240

I guess, this example is not valid for there was no _link_, just an url in the
source code.
Anyway, the other examples seem to be valid.

-- 
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 384] PostgreSQL/pgsql support (tracking)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=384

Bug 384 depends on bug 22579, which changed state.

Bug 22579 Summary: PostgreSQL Schema option ignored
https://bugzilla.wikimedia.org/show_bug.cgi?id=22579

   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 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 22579] PostgreSQL Schema option ignored

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22579

Sumana Harihareswara  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||suma...@panix.com
 Resolution||WORKSFORME

--- Comment #3 from Sumana Harihareswara  2011-11-02 
21:56:08 UTC ---
Nick, please let us know whether you've reproduced this with MediaWiki 1.17.0.

Also, we're wondering what specific steps you followed when this error
occurred.  We can't reproduce this, so I'm closing the bug with "could not
reproduce" as the resolution.  If you still have this problem with MediaWiki
1.17.0, please reopen it to let us know!

FYI, this sounds similar to bug 30787 -- if you still have trouble, please
check discussion of that bug, and check your LocalSettings.php and check what
Postgres user you're using, before reopening 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 31447] Tracking bug for 1.0 release of Android App

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31447

Bug 31447 depends on bug 31484, which changed state.

Bug 31484 Summary: Android app doesn't allow text selection for cut-n-paste
https://bugzilla.wikimedia.org/show_bug.cgi?id=31484

   What|Old Value   |New Value

 Status|RESOLVED|REOPENED
 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 31484] Android app doesn't allow text selection for cut-n-paste

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31484

Brion Vibber  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #20 from Brion Vibber  2011-11-02 21:55:25 UTC 
---
The app no longer builds, as the .classpath still refers to phonegap-1.1.0.jar
which no longer exists.

Fix in pull request: https://github.com/nitobi/Wikipedia/pull/52

With this it seems to work reasonably nice on my Nexus 1 / Android 2.3.6 --
tap-and-hold on text selects a word or a few, more as I expect. Yay!

-- 
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 31447] Tracking bug for 1.0 release of Android App

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31447

Bug 31447 depends on bug 31686, which changed state.

Bug 31686 Summary: Android app should show search suggestions
https://bugzilla.wikimedia.org/show_bug.cgi?id=31686

   What|Old Value   |New Value

 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 31686] Android app should show search suggestions

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31686

herman wong  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #6 from herman wong  2011-11-02 21:52:26 
UTC ---
https://github.com/nitobi/Wikipedia/commit/435256ffbc1ffc653364be13c7564cdbd1607697

search suggestions display as the user types

-- 
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 384] PostgreSQL/pgsql support (tracking)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=384

Bug 384 depends on bug 20475, which changed state.

Bug 20475 Summary: SpecialExport producing corrupt output (PostgreSQL errors)
https://bugzilla.wikimedia.org/show_bug.cgi?id=20475

   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 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 20475] SpecialExport producing corrupt output (PostgreSQL errors)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20475

Sumana Harihareswara  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||suma...@panix.com
 Resolution||WORKSFORME

--- Comment #4 from Sumana Harihareswara  2011-11-02 
21:50:41 UTC ---
Andy Lester tried to reproduce this on a similar system today and couldn't, so
I'm closing with the could-not-reproduce resolution.  If you can still
reproduce it, please reopen and let us know.

Relevant IRC conversation:

 I think OverlordQ summed it up well. Yet more fun with
the loadbalancer
 One of the unfortunate aspects of pg_query() is that it doesn't
require a first parameter of a connection if it's been called before. It lets
you call pg_query( $conn, $sql ) the first time , and then pg_query( $sql )
thereafter.  and I'm guessing that somewhere before 1.17.0 which I'm looking at
now, there were pg_query() calls that relied ont hat behavior incorrectly.
Anyway, I'm looking in DatabasePostgres.php and I don't see anywhere it's
calling pg_query() without a connection object.
 It's pg_connect() that's the issue, no?
 But I don't have the 1.16-svn source in front of me.
(to repro on MediaWiki 1.17.0):  it should be easy to test,
make some jobs and make sure they are run after call to Special:Export
 alester: you should also have non-zero jobqueue
 I've exported pages just fine before (but never tried to
specifically duplicate this bug)
 Nikerabbit, I have: Notice: unserialize() [function.unserialize]:
Error at offset 0 of 53 bytes in
D:\Projects\MediaWiki\includes\objectcache\SqlBagOStuff.php on line 381
 I just now ran an export on all the pages in
[[Category:Development]] on my company wiki and it ran fine w/o errors.
 I wouldn't be surprised if it is really fixed, it's been many
changes since 2009

-- 
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 31696] update.php fails with SQLite

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31696

Sumana Harihareswara  changed:

   What|Removed |Added

 CC||dj.ba...@gmail.com,
   ||suma...@panix.com

--- Comment #13 from Sumana Harihareswara  2011-11-02 
21:47:44 UTC ---
We discussed this bug in IRC today.  Max Semenik said, "I would love to see a
repro for this bug...looks like the connection is getting closed somewhere."

DJ Bauch, whom I am now cc'ing on the bug, said, "I may try to reproduce since
I probably face similar / same issues with MSSQL".  I'm asking him to reproduce
this sometime in the next few days, since we want it fixed before the official
MediaWiki 1.18.0 release.

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

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


[Bug 30985] Mobile header expanding and menu don't work until page loads

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30985

--- Comment #12 from Patrick Reilly  2011-11-02 21:46:56 
UTC ---
Partial fix for logo expansion in r101709.

-- 
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 31447] Tracking bug for 1.0 release of Android App

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31447

Bug 31447 depends on bug 31484, which changed state.

Bug 31484 Summary: Android app doesn't allow text selection for cut-n-paste
https://bugzilla.wikimedia.org/show_bug.cgi?id=31484

   What|Old Value   |New Value

 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 31484] Android app doesn't allow text selection for cut-n-paste

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31484

Joe Bowser  changed:

   What|Removed |Added

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

--- Comment #19 from Joe Bowser  2011-11-02 21:44:16 UTC ---
Upgraded PhoneGap by merging the menu code with the selection tweak code. 
These two commits have the upgrading of the JAR.

https://github.com/nitobi/Wikipedia/commit/b615af6b9f3a90c2a804da8abed482b2b272817a
https://github.com/nitobi/Wikipedia/commit/2c0f9294996672fa055984c360a46b0dba262b75

-- 
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 28425] Milestone: MediaWiki 1.18 tarball (tracking)

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28425

Bug 28425 depends on bug 30120, which changed state.

Bug 30120 Summary: Interwiki links error after upgrade
https://bugzilla.wikimedia.org/show_bug.cgi?id=30120

   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 30120] Interwiki links error after upgrade

2011-11-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30120

Mark A. Hershberger  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

--- Comment #25 from Mark A. Hershberger  2011-11-02 
21:43:06 UTC ---
Gonna close this since Reedy's fix fixes it and isn't meant to live beyond
mysql 5.1 as minimum.  Hopfully it gets back-ported or another fix created.

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