Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a23d2a258d5fa151

Jump to content

Wikipedia:WikiProject User scripts/Scripts/VBS/Savewatchlisttofile

From Wikipedia, the free encyclopedia
'Author: Smallman12q (http://en.wikipedia.org/wiki/User:Smallman12q)
'Date: Feb 21, 2012
'Desc: Sample VBscript for logging into English wiki, saving watchlist to file, logging out, and closing IE
'Usability: This is a sample, tutorial script. It does not include error handling.
'URL: http://en.wikipedia.org/wiki/User:Smallman12q/VBS/Savewatchlist

Option Explicit

''''''''''''''''''''''''''User Set Variables'''''These can be changed
Dim user,userpass,watchlistfilename
user = "user"
userpass = "userpass"
watchlistfilename = "Watchlist.txt" 'Will save to Desktop, Will overwrite file if it exists
''''''''''''''''''''''''''''''''''''''''''

''''''''''''''''''''''''''''''
'Login
Dim oIE
Set oIE = CreateObject("InternetExplorer.application")
With oIE
    .Visible = True
    .Navigate ("https://en.wikipedia.org/w/index.php?title=Special:UserLogin")
End With
Do Until oIE.ReadyState = 4  'readystate 4 = done loading
    wscript.sleep 200
Loop
With oIE.Document.forms("userlogin")
                .wpName.Value = user
                .wpPassword.Value = userpass
                .submit
End With

'Wait 2 seconds to show user we've logged in
WScript.Sleep 1000

'Go to raw watchlist
oIE.Navigate ("https://en.wikipedia.org/wiki/Special:EditWatchlist/raw")
Do Until oIE.ReadyState = 4  'readystate 4 = done loading
    wscript.sleep 200
Loop

'Get Watchlist data
Dim itm
Set itm = oIE.document.getElementById("mw-input-wpTitles")

'Write data to file on desktop
if NOT (itm is nothing) Then
	Dim oFSO, WriteData, desktop
	
	Dim WSHShell
 	Set WSHShell = WScript.CreateObject("WScript.Shell")
	Desktop= WSHShell.SpecialFolders("Desktop")
	Set oFSO = CreateObject("Scripting.FileSystemObject")
	Set WriteData = oFSO.CreateTextFile(desktop & "\" & watchlistfilename, true, true) 'Overwrite in Unicode
	WriteData.WriteLine(itm.Value)
	WriteData.Close
	
	'To do: Clear out variables
End If

'Ask if to logout
If msgbox ("The Watchlist has been saved. Do you want to log out?", vbYesNo, "Logout Prompt") Then

	'Logout
	oIE.Navigate ("https://en.wikipedia.org/w/index.php?title=Special:UserLogout")
	Do Until oIE.ReadyState = 4  'readystate 4 = done loading
	    wscript.sleep 200
	Loop

	'Ask if to close window
	If msgbox ("You have been logged out. Would you like to close IE?", vbYesNo, "Close IE Prompt") Then
		oIE.Quit
	End if	
End if