ilidio.martinsgmail.com / CES - URL fix Website

// ==UserScript==
// @name        CES - URL fix Website
// @namespace   webdevel2.onesource.pt/ilidio/ces
// @description Fixes url/links for devel and testing
// @include     http://webdevel2.onesource.pt/ilidio/ces/*
// @version     1
// @grant       none
// ==/UserScript==

$( "a" ).each(function( index ) {
    var str = $( this ).attr("href");
    if(str != undefined && str.substr(0, 4) != "http")
        $( this ).attr("href","http://webdevel2.onesource.pt/ilidio/ces/"+ $( this ).attr("href"));
});