// BloglinesSecure
// version 0.1
// 2006/09/07
// Copyright (c) 2006, Kenneth Hunt
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "BloglinesSecure", and click Uninstall.
// Based on http://diveintogreasemonkey.org/download/gmailsecure.user.js
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          BloglinesSecure
// @namespace     http://kennethhunt.com
// @description   force Bloglines to use secure connection

// @include       http://*bloglines.com/*
// ==/UserScript==

(function() {
    window.location.href = window.location.href.replace(/^http:/, 'https:');
})();
