User talk:R3m0t/Reports

Latest comment: 17 years ago by VegaDark in topic Update

Quick reality check edit

Are there no circumstances in which we want to keep the talk page for an article name, even in the absence of the article? I'm thinking in particular of some articles which have been though VfD and reappeared ... whilst I appreciate that the discussion might not be relevant if the new article was radically different, but equally the talk might cover the subject area, or would relate to the article should the same article be reposted. Just a thought. I think I have Mike Church's wretched game in mind, though I've forgotten its title. --Tagishsimon (talk)

Err... surely people have changed a little since those pages were voted upon. It would do no harm to vote on them again in the unlikely case that any will reappear. Am I missing something? r3m0t talk July 5, 2005 07:04 (UTC)
Erm... You just deleted a talk page of an article coincidentally on the same day that I came to create it. The talk page contained categorisation instructions to any editor who created the article. I've used this approach in the past and it's never failed to work. I'm all in favour of deleting crap orphan talk pages that are akin to vandalism (or are plain nonsense) but I'd suggest you actually read the page before deleting it. It doesn't matter in this case as I'm an admin now and can access deleted pages, and I knew the instructions anyway :), but the point remains. Checking incoming links for the article in question wouldn't be a bad idea either. --kingboyk 16:28, 8 April 2006 (UTC)Reply
It is definately important to read the page before you delete it. I just undeleted a discussion on image sizes that belonged in the Wikipedia talk:Image use policy archive. I really don't like the idea of losing archival talk pages. ~MDD4696 22:47, 27 April 2006 (UTC)Reply

False positives (archived delete debates) edit

What should I do when I find a false positive (like Talk:Annie Chapman/delete or Talk:Annotated Lyrics to The Vicar of Bray/Delete)? Both are misplaced VfD pages (the VfD page is a redirect to them), suggesting they are old archived delete debates (from before the current VfD structure). Should I edit the list and remove them? --cesarb 5 July 2005 22:34 (UTC)

project page placeholders edit

In User:R3m0t/Reports/1 0 it looks to me that pages like Talk:1940 Pulitzer Prize and Talk:1979_NHL_Entry_Draft are placeholders for their respective projects, and the article page has just not been written yet.

Should we leave these alone? --ssd 11:45, 22 July 2005 (UTC)Reply

Details edit

The query: (slightly refined form the one I just used for this dump)

CREATE TABLE `nstalk` (
  `main` tinyint(3) unsigned NOT NULL,
  `talk` tinyint(3) unsigned NOT NULL
);

INSERT INTO `nstalk` (`main`, `talk`) VALUES (0, 1),
(4, 5),
(6, 7),
(8, 9),
(10, 11),
(12, 13),
(14, 15);

SELECT p1.page_namespace, p1.page_title
FROM nstalk LEFT JOIN page p1 ON p1.page_namespace = nstalk.talk
            LEFT JOIN page p2 ON p2.page_namespace = nstalk.main
                             AND p2.page_title = p1.page_title
wHERE p2.page_namespace IS NULL
AND p1.page_title NOT LIKE '%/Archive%' AND p1.page_title NOT LIKE '%/to_do' AND p1.page_title NOT LIKE '%/archive%';

Notice the user and user_talk namespaces (2 and 3) are omitted.

You can then pipe that query into mysql, using the -s option. Pipe the output to output.txt. Then:

sed -e 's/^/#[[{{ns:/g' -e 's/\t/}}:/g' -e 's/$/]]/g' output.txt > output2.txt
wc -l output2.txt
split -l 1000 output2.txt

(If you don't have commands such as sed and split, try out Linux, or at least get Cygwin).

The last command creates files named xaa, xab, etc. These contain 1,000 rows of links each. They are like the ones I have uploaded.

Just open these files in your favourite tabbed text editor and paste them into edit boxes on Wikipedia.

An easy way to add sections every 50 lines or so would be much appreciated. And of course, the sed can probably be changed into a simple script file. r3m0t talk 22:00, 5 April 2006 (UTC)Reply

#!/usr/bin/perl -w
while(<>) {
	print "==" . ($. - 1) / 50 . "==\n\n" if ($. - 1) % 50 == 0;
	print;
}
Will do
==0==
51 lines...
==1==
etc
Kotepho 21:36, 28 June 2006 (UTC)Reply

Archived Talk pages edit

I hope these are carefully considered and excluded from these deletions. -- Centrx 01:15, 7 June 2006 (UTC)Reply

Update edit

Any chance of an update? This is far too out of date to be helpful anymore. VegaDark 21:39, 28 September 2006 (UTC)Reply

There's a bot which now cleans these pages on an ongoing basis by putting them in Category:Talk pages with no main page, a subcategory of CAT:CSD. r3m0t talk 22:48, 28 September 2006 (UTC)Reply
Yep, I was the one who proposed that bot. But there are some that claim this is a better way of doing this so I was wondering if it was going to be updated so their position has some merit. VegaDark 00:10, 29 September 2006 (UTC)Reply
I am dubious about the benefit of deleting talk pages other than through the normal processes. Patent nonsense, spam etc. fine, but wr already have processes for that. Anything pertaining to a deleted article could be useful. Rich Farmbrough, 10:09 14 December 2006 (GMT).