239 lines
7.7 KiB
JavaScript
239 lines
7.7 KiB
JavaScript
{% raw %}function get_cookie(cookie_name)
|
|
{
|
|
var results = document.cookie.match ( '(^|;) ?' + cookie_name + '=([^;]*)(;|$)');
|
|
if(results)
|
|
return (unescape(results[2]));
|
|
else
|
|
return null;
|
|
}
|
|
|
|
function highlightReply(id)
|
|
{
|
|
if(window.event !== undefined && event.which == 2) {
|
|
// don't highlight on middle click
|
|
return true;
|
|
}
|
|
|
|
var divs = document.getElementsByTagName('div');
|
|
for (var i = 0; i < divs.length; i++)
|
|
{
|
|
if (divs[i].className.indexOf('post') != -1)
|
|
divs[i].className = divs[i].className.replace(/highlighted/, '');
|
|
}
|
|
if (id) {
|
|
post = document.getElementById('reply_'+id);
|
|
if(post)
|
|
post.className += ' highlighted';
|
|
}
|
|
}
|
|
function focusId(id)
|
|
{
|
|
document.getElementById(id).focus();
|
|
init();
|
|
}
|
|
|
|
function generatePassword() {
|
|
pass = '';
|
|
chars = '{% endraw %}{{ config.genpassword_chars }}{% raw %}';
|
|
for(i=0;i<8;i++) {
|
|
rnd = Math.floor(Math.random() * chars.length);
|
|
pass += chars.substring(rnd,rnd + 1);
|
|
}
|
|
return pass;
|
|
}
|
|
|
|
function dopost(form) {
|
|
if(form.elements['name']) {
|
|
localStorage.name = form.elements['name'].value.replace(/ ##.+$/, '');
|
|
}
|
|
if(form.elements['email'] && form.elements['email'].value != 'sage') {
|
|
localStorage.email = form.elements['email'].value;
|
|
}
|
|
|
|
saved[document.location] = form.elements['body'].value;
|
|
sessionStorage.body = JSON.stringify(saved);
|
|
|
|
return form.elements['body'].value != "" || form.elements['file'].value != "";
|
|
}
|
|
function citeReply(id) {
|
|
body = document.getElementById('body');
|
|
|
|
if (document.selection) {
|
|
// IE
|
|
body.focus();
|
|
sel = document.selection.createRange();
|
|
sel.text = '>>' + id + '\n';
|
|
} else if (body.selectionStart || body.selectionStart == '0') {
|
|
// Mozilla
|
|
start = body.selectionStart;
|
|
end = body.selectionEnd;
|
|
body.value = body.value.substring(0, start) + '>>' + id + '\n' + body.value.substring(end, body.value.length);
|
|
} else {
|
|
// ???
|
|
body.value += '>>' + id + '\n';
|
|
}
|
|
}
|
|
|
|
var selectedstyle = '{% endraw %}{{ config.default_stylesheet.0 }}{% raw %}';
|
|
var styles = [
|
|
{% endraw %}{% for stylesheet in stylesheets %}{% raw %}['{% endraw %}{{ stylesheet.name }}{% raw %}', '{% endraw %}{{ stylesheet.uri }}{% raw %}']{% endraw %}{% if not loop.last %}{% raw %},
|
|
{% endraw %}{% endif %}{% endfor %}{% raw %}
|
|
];
|
|
var saved = {};
|
|
|
|
function changeStyle(x) {
|
|
localStorage.stylesheet = styles[x][1];
|
|
document.getElementById('stylesheet').href = styles[x][1];
|
|
selectedstyle = styles[x][0];
|
|
}
|
|
|
|
if(localStorage.stylesheet) {
|
|
for(x=0;x<styles.length;x++) {
|
|
if(styles[x][1] == localStorage.stylesheet) {
|
|
changeStyle(x);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
function rememberStuff() {
|
|
if(document.forms.post) {
|
|
if(document.forms.post.password) {
|
|
if(!localStorage.password)
|
|
localStorage.password = generatePassword();
|
|
document.forms.post.password.value = localStorage.password;
|
|
}
|
|
|
|
if(localStorage.name && document.forms.post.elements['name'])
|
|
document.forms.post.elements['name'].value = localStorage.name;
|
|
if(localStorage.email && document.forms.post.elements['email'])
|
|
document.forms.post.elements['email'].value = localStorage.email;
|
|
|
|
if (window.location.hash.indexOf('q') == 1)
|
|
citeReply(window.location.hash.substring(2));
|
|
|
|
if(sessionStorage.body) {
|
|
saved = JSON.parse(sessionStorage.body);
|
|
if(get_cookie('{% endraw %}{{ config.cookies.js }}{% raw %}')) {
|
|
// Remove successful posts
|
|
successful = JSON.parse(get_cookie('{% endraw %}{{ config.cookies.js }}{% raw %}'));
|
|
for (var url in successful) {
|
|
saved[url] = null;
|
|
}
|
|
sessionStorage.body = JSON.stringify(saved);
|
|
|
|
document.cookie = '{% endraw %}{{ config.cookies.js }}{% raw %}={};expires=0;path=/;';
|
|
}
|
|
if(saved[document.location]) {
|
|
document.forms.post.body.value = saved[document.location];
|
|
}
|
|
}
|
|
|
|
if(localStorage.body) {
|
|
document.forms.post.body.value = localStorage.body;
|
|
localStorage.body = '';
|
|
}
|
|
}
|
|
}
|
|
|
|
function init_expanding() {
|
|
link = document.getElementsByTagName('a');
|
|
for ( i in link ) {
|
|
if(typeof link[i] == "object" && link[i].childNodes[0].src && link[i].className != 'file') {
|
|
link[i].onclick = function(e) {
|
|
if(e.which == 2) {
|
|
return true;
|
|
}
|
|
if(!this.tag) {
|
|
this.tag = this.childNodes[0].src;
|
|
this.childNodes[0].src = this.href;
|
|
this.childNodes[0].style.width = 'auto';
|
|
this.childNodes[0].style.height = 'auto';
|
|
this.childNodes[0].style.opacity = '0.4';
|
|
this.childNodes[0].style.filter = 'alpha(opacity=40)';
|
|
this.childNodes[0].onload = function() {
|
|
this.style.opacity = '1';
|
|
this.style.filter = '';
|
|
}
|
|
} else {
|
|
this.childNodes[0].src = this.tag;
|
|
this.childNodes[0].style.width = 'auto';
|
|
this.childNodes[0].style.height = 'auto';
|
|
this.tag = '';
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
{% endraw %}
|
|
{% if config.javascript_local_time %}
|
|
{% raw %}
|
|
function init_localtime(){
|
|
var iso8601 = function iso8601(s) {
|
|
s = s.replace(/\.\d\d\d+/,""); // remove milliseconds
|
|
s = s.replace(/-/,"/").replace(/-/,"/");
|
|
s = s.replace(/T/," ").replace(/Z/," UTC");
|
|
s = s.replace(/([\+\-]\d\d)\:?(\d\d)/," $1$2"); // -04:00 -> -0400
|
|
return new Date(s);
|
|
};
|
|
var zeropad = function(num, count) {
|
|
return [Math.pow(10, count - num.toString().length), num].join('').substr(1);
|
|
};
|
|
|
|
var times = document.getElementsByTagName('time');
|
|
for (var i = 0; i < times.length ; i++) {
|
|
if(!times[i].textContent.match(/^\d+\/\d+\/\d+ \(\w+\) \d+:\d+:\d+$/)) {
|
|
continue;
|
|
}
|
|
|
|
var t = iso8601(times[i].getAttribute('datetime'));
|
|
|
|
times[i].textContent =
|
|
// date
|
|
zeropad(t.getMonth() + 1, 2) + "/" + zeropad(t.getDate(), 2) + "/" + t.getFullYear().toString().substring(2) +
|
|
" (" + ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][t.getDay()] + ") " +
|
|
// time
|
|
zeropad(t.getHours(), 2) + ":" + zeropad(t.getMinutes(), 2) + ":" + zeropad(t.getSeconds(), 2);
|
|
}
|
|
};
|
|
{% endraw %}
|
|
{% endif %}
|
|
{% raw %}
|
|
|
|
function init() {
|
|
newElement = document.createElement('div');
|
|
newElement.className = 'styles';
|
|
|
|
for(x=0;x<styles.length;x++) {
|
|
style = document.createElement('a');
|
|
style.innerHTML = '[' + styles[x][0] + ']';
|
|
style.href = 'javascript:changeStyle(' + x + ');';
|
|
if(selectedstyle == styles[x][0])
|
|
style.className = 'selected';
|
|
newElement.appendChild(style);
|
|
}
|
|
|
|
document.getElementsByTagName('body')[0].insertBefore(newElement, document.getElementsByTagName('body')[0].lastChild.nextSibling)
|
|
|
|
if(document.forms.postcontrols) {
|
|
document.forms.postcontrols.password.value = localStorage.password;
|
|
}
|
|
|
|
if(window.location.hash.indexOf('q') != 1 && window.location.hash.substring(1))
|
|
highlightReply(window.location.hash.substring(1));
|
|
|
|
{% endraw %}{% if config.inline_expanding %}{% raw %}init_expanding();{% endraw %}{% endif %}{% raw %}
|
|
}
|
|
|
|
var RecaptchaOptions = {
|
|
theme : 'clean'
|
|
};
|
|
|
|
window.onload = init;
|
|
{% endraw %}{% if config.google_analytics %}{% raw %}
|
|
|
|
var _gaq = _gaq || [];_gaq.push(['_setAccount', '{% endraw %}{{ config.google_analytics }}{% raw %}']);{% endraw %}{% if config.google_analytics_domain %}{% raw %}_gaq.push(['_setDomainName', '{% endraw %}{{ config.google_analytics_domain }}{% raw %}']){% endraw %}{% endif %}{% if not config.google_analytics_domain %}{% raw %}_gaq.push(['_setDomainName', 'none']){% endraw %}{% endif %}{% raw %};_gaq.push(['_trackPageview']);(function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();{% endraw %}{% endif %}
|