diff -r 91cebee6b04d077b0923fe3d3c886749f431d1a5 -r 2edaca00bc7964dffb33dce184c81e143172523c indefero/src/IDF/Template/MarkdownPrefilter.php --- a/indefero/src/IDF/Template/MarkdownPrefilter.php Sun Mar 09 22:37:07 2014 -0500 +++ b/indefero/src/IDF/Template/MarkdownPrefilter.php Sun Mar 09 22:40:56 2014 -0500 @@ -101,6 +101,7 @@ 'caption' => array('class', 'dir', 'id', 'style', 'title', 'align'), // deprecated attribute), 'code' => array('class', 'dir', 'id', 'style', 'title'), + 'script' => array('type', 'class', 'dir', 'id', 'style', 'title'), 'dd' => array('class', 'dir', 'id', 'style', 'title'), 'del' => array('class', 'dir', 'id', 'style', 'title', 'cite', 'datetime'), diff -r 91cebee6b04d077b0923fe3d3c886749f431d1a5 -r 2edaca00bc7964dffb33dce184c81e143172523c indefero/src/IDF/templates/idf/user/myaccount.html --- a/indefero/src/IDF/templates/idf/user/myaccount.html Sun Mar 09 22:37:07 2014 -0500 +++ b/indefero/src/IDF/templates/idf/user/myaccount.html Sun Mar 09 22:40:56 2014 -0500 @@ -181,7 +181,7 @@ { if ($("#id_otpkey").val() != "") { - var url = "https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=otpauth%3A%2F%2Ftotp%2F" + user + "?secret=" + $("#id_otpkey").val() + "%26issuer=srchub&choe=UTF-8"; + var url = "https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=otpauth%3A%2F%2Ftotp%2Fsrchub:" + user + "?secret=" + $("#id_otpkey").val() + "%26issuer=srchub&choe=UTF-8"; $("#QRcode").html(''); } else { $("#QRcode").html(''); @@ -194,13 +194,13 @@ for(var i = 0; i < 32; i++) key += chars[Math.floor(Math.random() * 32)]; $("#id_otpkey").val(key); - var url = "https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=otpauth%3A%2F%2Ftotp%2F" + user + "?secret=" + $("#id_otpkey").val().toUpperCase() + "%26issuer=srchub&choe=UTF-8"; + var url = "https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=otpauth%3A%2F%2Ftotp%srchub:" + user + "?secret=" + $("#id_otpkey").val().toUpperCase() + "%26issuer=srchub&choe=UTF-8"; $("#QRcode").html('') return false; }); if ($("#id_otpkey").val() != "") { - var url = "https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=otpauth%3A%2F%2Ftotp%2F" + user + "?secret=" + $("#id_otpkey").val().toUpperCase() + "%26issuer=srchub&choe=UTF-8"; + var url = "https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=otpauth%3A%2F%2Ftotp%2Fsrchub:" + user + "?secret=" + $("#id_otpkey").val().toUpperCase() + "%26issuer=srchub&choe=UTF-8"; $("#QRcode").html('') } });{/literal}