2011-10-05 00:22:53 -04:00
|
|
|
{% raw %}function get_cookie(cookie_name)
|
2011-04-06 04:31:26 -04:00
|
|
|
{
|
|
|
|
var results = document.cookie.match ( '(^|;) ?' + cookie_name + '=([^;]*)(;|$)');
|
|
|
|
if(results)
|
|
|
|
return (unescape(results[2]));
|
|
|
|
else
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2011-03-26 11:36:32 -04:00
|
|
|
function highlightReply(id)
|
|
|
|
{
|
2011-06-23 09:08:34 -04:00
|
|
|
if(window.event !== undefined && event.which == 2) {
|
|
|
|
// don't highlight on middle click
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-03-26 11:36:32 -04:00
|
|
|
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 = '';
|
2011-10-05 00:22:53 -04:00
|
|
|
chars = '{% endraw %}{{ config.genpassword_chars }}{% raw %}';
|
2011-03-26 11:36:32 -04:00
|
|
|
for(i=0;i<8;i++) {
|
|
|
|
rnd = Math.floor(Math.random() * chars.length);
|
|
|
|
pass += chars.substring(rnd,rnd + 1);
|
|
|
|
}
|
|
|
|
return pass;
|
|
|
|
}
|
|
|
|
|
|
|
|
function dopost(form) {
|
|
|
|
localStorage.name = form.name.value.replace(/ ##.+$/, '');
|
|
|
|
if(form.email.value != 'sage')
|
|
|
|
localStorage.email = form.email.value;
|
|
|
|
|
2011-04-06 04:31:26 -04:00
|
|
|
saved[document.location] = form.body.value;
|
|
|
|
sessionStorage.body = JSON.stringify(saved);
|
|
|
|
|
2011-09-15 06:32:49 -04:00
|
|
|
return form.body.value != "" || form.file.value != "";
|
2011-03-26 11:36:32 -04:00
|
|
|
}
|
|
|
|
function citeReply(id) {
|
2011-07-30 06:11:33 -04:00
|
|
|
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';
|
|
|
|
}
|
2011-03-26 11:36:32 -04:00
|
|
|
}
|
|
|
|
|
2011-10-05 00:22:53 -04:00
|
|
|
var selectedstyle = '{% endraw %}{{ config.default_stylesheet.0 }}{% raw %}';
|
2011-03-26 11:36:32 -04:00
|
|
|
var styles = [
|
2011-10-05 00:22:53 -04:00
|
|
|
{% endraw %}{% for stylesheet in stylesheets %}{% raw %}['{% endraw %}{{ stylesheet.name }}{% raw %}', '{% endraw %}{{ stylesheet.uri }}{% raw %}']{% endraw %}{% if not loop.last %}{% raw %},
|
|
|
|
{% endraw %}{% endif %}{% endfor %}{% raw %}
|
2011-03-26 11:36:32 -04:00
|
|
|
];
|
2011-04-06 04:31:26 -04:00
|
|
|
var saved = {};
|
2011-03-26 11:36:32 -04:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-22 04:16:12 -04:00
|
|
|
function rememberStuff() {
|
|
|
|
if(document.forms.post) {
|
|
|
|
if(!localStorage.password)
|
|
|
|
localStorage.password = generatePassword();
|
|
|
|
document.forms.post.password.value = localStorage.password;
|
|
|
|
|
|
|
|
if(localStorage.name)
|
|
|
|
document.forms.post.name.value = localStorage.name;
|
|
|
|
if(localStorage.email)
|
|
|
|
document.forms.post.email.value = localStorage.email;
|
2011-07-30 07:28:52 -04:00
|
|
|
|
|
|
|
if (window.location.hash.indexOf('q') == 1)
|
|
|
|
citeReply(window.location.hash.substring(2));
|
|
|
|
|
2011-04-22 04:16:12 -04:00
|
|
|
if(sessionStorage.body) {
|
|
|
|
saved = JSON.parse(sessionStorage.body);
|
2011-10-05 00:22:53 -04:00
|
|
|
if(get_cookie('{% endraw %}{{ config.cookies.js }}{% raw %}')) {
|
2011-04-22 04:16:12 -04:00
|
|
|
// Remove successful posts
|
2011-10-05 00:22:53 -04:00
|
|
|
successful = JSON.parse(get_cookie('{% endraw %}{{ config.cookies.js }}{% raw %}'));
|
2011-04-22 04:16:12 -04:00
|
|
|
for (var url in successful) {
|
|
|
|
saved[url] = null;
|
|
|
|
}
|
|
|
|
sessionStorage.body = JSON.stringify(saved);
|
|
|
|
|
2011-10-05 00:22:53 -04:00
|
|
|
document.cookie = '{% endraw %}{{ config.cookies.js }}{% raw %}={};expires=0;path=/;';
|
2011-04-22 04:16:12 -04:00
|
|
|
}
|
|
|
|
if(saved[document.location]) {
|
2011-04-22 04:17:48 -04:00
|
|
|
document.forms.post.body.value = saved[document.location];
|
2011-04-22 04:16:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(localStorage.body) {
|
2011-04-22 04:17:48 -04:00
|
|
|
document.forms.post.body.value = localStorage.body;
|
2011-04-22 04:16:12 -04:00
|
|
|
localStorage.body = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-07 09:07:38 -04:00
|
|
|
function init_expanding() {
|
2011-03-26 11:36:32 -04:00
|
|
|
link = document.getElementsByTagName('a');
|
|
|
|
for ( i in link ) {
|
2011-10-01 07:43:23 -04:00
|
|
|
if(typeof link[i] == "object" && link[i].childNodes[0].src && link[i].className != 'file') {
|
2011-06-23 08:54:27 -04:00
|
|
|
link[i].onclick = function(e) {
|
|
|
|
if(e.which == 2) {
|
|
|
|
return true;
|
|
|
|
}
|
2011-03-26 11:36:32 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-07 09:07:38 -04:00
|
|
|
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)
|
|
|
|
|
|
|
|
if(document.forms.postcontrols) {
|
|
|
|
document.forms.postcontrols.password.value = localStorage.password;
|
|
|
|
}
|
|
|
|
|
2011-07-30 07:28:52 -04:00
|
|
|
if(window.location.hash.indexOf('q') != 1 && window.location.hash.substring(1))
|
2011-07-07 09:07:38 -04:00
|
|
|
highlightReply(window.location.hash.substring(1));
|
|
|
|
|
2011-10-05 00:22:53 -04:00
|
|
|
{% endraw %}{% if config.inline_expanding %}{% raw %}init_expanding();{% endraw %}{% endif %}{% raw %}
|
2011-07-07 09:07:38 -04:00
|
|
|
}
|
|
|
|
|
2011-06-15 14:59:16 -04:00
|
|
|
var RecaptchaOptions = {
|
|
|
|
theme : 'clean'
|
|
|
|
};
|
|
|
|
|
2011-04-06 04:31:26 -04:00
|
|
|
window.onload = init;
|
2011-10-05 00:22:53 -04:00
|
|
|
{% endraw %}{% if config.google_analytics %}{% raw %}
|
2011-04-06 04:31:26 -04:00
|
|
|
|
2011-10-05 00:22:53 -04:00
|
|
|
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 %}
|