[Bug 27193] Allow namespace filter for list=deletedrevsdruser

2014-11-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27193

--- Comment #4 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 168646 merged by jenkins-bot:
API: Split list=deletedrevs into prop=deletedrevisions and
list=alldeletedrevisions

https://gerrit.wikimedia.org/r/168646

-- 
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 27193] Allow namespace filter for list=deletedrevsdruser

2014-11-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27193

Brad Jorsch bjor...@wikimedia.org changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 CC||bjor...@wikimedia.org
 Resolution|--- |FIXED

-- 
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 27193] Allow namespace filter for list=deletedrevsdruser

2014-10-24 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27193

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 168646 had a related patch set uploaded by Anomie:
API: Split list=deletedrevs into prop=deletedrevisions and
list=alldeletedrevisions

https://gerrit.wikimedia.org/r/168646

-- 
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 27193] Allow namespace filter for list=deletedrevsdruser

2014-10-24 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27193

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 27193] Allow namespace filter for list=deletedrevsdruser

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

Aaron Schulz schulzaaro...@yahoo.de changed:

   What|Removed |Added

 CC||schulzaaro...@yahoo.de

--- Comment #3 from Aaron Schulz schulzaaro...@yahoo.de 2011-12-06 01:28:48 
UTC ---
Fixed in r54567.

Please update and add explained comment.

-- 
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 27193] Allow namespace filter for list=deletedrevsdruser

2011-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27193

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

   What|Removed |Added

 AssignedTo|roan.katt...@gmail.com  |wikibugs-l@lists.wikimedia.
   ||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 27193] Allow namespace filter for list=deletedrevsdruser

2011-04-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27193

--- Comment #1 from Reedy s...@reedyboy.net 2011-04-10 22:27:11 UTC ---
This seems to be disabled purposely due to the way that the sorts and such are
added on by the API, a sane query can be built (ie no filesort)

It's providing a lot more functionality than DeletedContributions does to begin
with

We probably need to create a mode 4

CREATE INDEX /*i*/name_title_timestamp ON /*_*/archive
(ar_namespace,ar_title,ar_timestamp);
CREATE INDEX /*i*/ar_usertext_timestamp ON /*_*/archive
(ar_user_text,ar_timestamp);
CREATE INDEX /*i*/ar_revid ON /*_*/archive (ar_rev_id);


  1) List deleted revisions for the given title(s), sorted by timestamp
  2) List deleted contributions for the given user, sorted by timestamp (no
titles specified)
  3) List all deleted revisions in the given namespace, sorted by title and
timestamp (no titles specified, druser not set)

List deleted contributions for the given user, in the given namespace, sorted
by timestamp




SELECT /* IndexPager::reallyDoQuery (DeletedContribsPager) Reedy */ 
ar_rev_id,ar_namespace,ar_title,ar_timestamp,ar_comment,ar_minor_edit,ar_user,ar_user_text,ar_deleted
 FROM `mw_archive` FORCE INDEX (usertext_timestamp) WHERE ar_user_text =
'Reedy' AND ar_namespace = '0' AND ((ar_deleted  12) != 12)  ORDER BY
ar_timestamp DESC LIMIT 51

-- 
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 27193] Allow namespace filter for list=deletedrevsdruser

2011-04-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27193

--- Comment #2 from Reedy s...@reedyboy.net 2011-04-10 22:42:19 UTC ---
Starting to do this, then hit a snag. By default NS is set to 0... So we can't
just do a NS/User filter, and know whether we want to hit 2 or 4..

So people could then unknowingly be filtering by NS 0, which they may or may
not want...

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