Secure Wiki

By banzoo Last update Apr 30, 2009 — Installed 6,473 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 4 posts, 4 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
Daniel Gonzá... Scriptwright

This other script changes the links on webpages to secure Wikipedia: http://userscripts.org/scripts/show/26924

 
ahoier User

very cool script :) I for one didn't realize Wikipedia had an HTTPS login page, that's GREAT to know for those users who edit Wikipedia (or other Wikimedia wikis) on the TOR network, or even from "public terminals" in which neighbors on the public network could be packet sniffing.

If only Wikimedia would use HTTPS login by default...

 
Netjeff Scriptwright

You can reduce clutter in history/back by replacing line 69:

location.href=fixlink(location.href);

with this line:

location.replace( fixlink(location.href) );

With the current way, the history/back button will go back to the unsecured version of the wiki on initial navigation into the wiki. But use location.replace() will replace the URL rather than adding to the history last.