Adding file for new syntax highlighter

changing OTP url for QR code creation
master
Nathan Adams 2014-03-09 22:40:56 -05:00
parent 9ffb668e4e
commit 700889bedd
2 changed files with 4 additions and 3 deletions

View File

@ -101,6 +101,7 @@ class IDF_Template_MarkdownPrefilter extends Pluf_Text_HTML_Filter
'caption' => array('class', 'dir', 'id', 'style', 'title', 'caption' => array('class', 'dir', 'id', 'style', 'title',
'align'), // deprecated attribute), 'align'), // deprecated attribute),
'code' => array('class', 'dir', 'id', 'style', 'title'), 'code' => array('class', 'dir', 'id', 'style', 'title'),
'script' => array('type', 'class', 'dir', 'id', 'style', 'title'),
'dd' => array('class', 'dir', 'id', 'style', 'title'), 'dd' => array('class', 'dir', 'id', 'style', 'title'),
'del' => array('class', 'dir', 'id', 'style', 'title', 'del' => array('class', 'dir', 'id', 'style', 'title',
'cite', 'datetime'), 'cite', 'datetime'),

View File

@ -181,7 +181,7 @@ $(document).ready(function() {
{ {
if ($("#id_otpkey").val() != "") 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('<img src="' + url + '" />'); $("#QRcode").html('<img src="' + url + '" />');
} else { } else {
$("#QRcode").html(''); $("#QRcode").html('');
@ -194,13 +194,13 @@ $(document).ready(function() {
for(var i = 0; i < 32; i++) for(var i = 0; i < 32; i++)
key += chars[Math.floor(Math.random() * 32)]; key += chars[Math.floor(Math.random() * 32)];
$("#id_otpkey").val(key); $("#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('<img src="' + url + '" />') $("#QRcode").html('<img src="' + url + '" />')
return false; return false;
}); });
if ($("#id_otpkey").val() != "") 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('<img src="' + url + '" />') $("#QRcode").html('<img src="' + url + '" />')
} }
});{/literal} });{/literal}