Right now, I'm much closer to trunk.
So. Here's a little GreaseMonkey script I wrote to ensure that I'm looking at the right docs even if I forget to switch the little drop-down thingy, and that I don't go insane trying to track down non-existant bugs.
// ==UserScript==
// @description Changes the default django search version
// @name django-docs-trunk
// @include http://docs.djangoproject.com/*
// @namespace http://www.blinkylights.org/gmscipts
// ==/UserScript==
sb = document.getElementById("id_sidebar_search_release");
sb.selectedIndex = 3;
0 comments:
Post a Comment