2011-04-06 04:31:26 -04:00
|
|
|
function get_cookie(cookie_name)
|
|
|
|
{
|
|
|
|
var results = document.cookie.match ( '(^|;) ?' + cookie_name + '=([^;]*)(;|$)');
|
|
|
|
if(results)
|
|
|
|
return (unescape(results[2]));
|
|
|
|
else
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2010-11-02 06:57:33 -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;
|
|
|
|
}
|
|
|
|
|
2010-11-02 06:57:33 -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/, '');
|
|
|
|
}
|
2011-02-11 07:02:30 -05:00
|
|
|
if (id) {
|
|
|
|
post = document.getElementById('reply_'+id);
|
|
|
|
if(post)
|
|
|
|
post.className += ' highlighted';
|
|
|
|
}
|
2010-11-02 06:57:33 -04:00
|
|
|
}
|
|
|
|
function focusId(id)
|
|
|
|
{
|
|
|
|
document.getElementById(id).focus();
|
|
|
|
init();
|
|
|
|
}
|
2011-01-20 21:14:55 -05:00
|
|
|
|
|
|
|
function generatePassword() {
|
|
|
|
pass = '';
|
|
|
|
chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+';
|
|
|
|
for(i=0;i<8;i++) {
|
|
|
|
rnd = Math.floor(Math.random() * chars.length);
|
|
|
|
pass += chars.substring(rnd,rnd + 1);
|
|
|
|
}
|
|
|
|
return pass;
|
|
|
|
}
|
|
|
|
|
2010-11-02 06:57:33 -04:00
|
|
|
function dopost(form) {
|
2011-01-20 21:14:55 -05:00
|
|
|
localStorage.name = form.name.value.replace(/ ##.+$/, '');
|
|
|
|
if(form.email.value != 'sage')
|
|
|
|
localStorage.email = form.email.value;
|
2010-11-02 06:57:33 -04:00
|
|
|
|
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 != "";
|
2010-11-02 06:57:33 -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';
|
|
|
|
}
|
2010-11-02 06:57:33 -04:00
|
|
|
}
|
|
|
|
|
2011-04-22 04:16:12 -04:00
|
|
|
var selectedstyle = 'Yotsuba B';
|
2011-01-20 03:35:41 -05:00
|
|
|
var styles = [
|
2011-07-07 09:07:38 -04:00
|
|
|
['Yotsuba B', '/Tinyboard/stylesheets/default.css'],
|
|
|
|
['Yotsuba', '/Tinyboard/stylesheets/yotsuba.css']
|
2011-01-20 03:35:41 -05:00
|
|
|
];
|
2011-04-06 04:31:26 -04:00
|
|
|
var saved = {};
|
2011-01-20 03:35:41 -05: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);
|
|
|
|
if(get_cookie('serv')) {
|
|
|
|
// Remove successful posts
|
|
|
|
successful = JSON.parse(get_cookie('serv'));
|
|
|
|
for (var url in successful) {
|
|
|
|
saved[url] = null;
|
|
|
|
}
|
|
|
|
sessionStorage.body = JSON.stringify(saved);
|
|
|
|
|
|
|
|
document.cookie = 'serv={};expires=0;path=/;';
|
|
|
|
}
|
|
|
|
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() {
|
2010-11-02 06:57:33 -04:00
|
|
|
link = document.getElementsByTagName('a');
|
|
|
|
for ( i in link ) {
|
|
|
|
if(typeof link[i] == "object" && link[i].childNodes[0].src) {
|
2011-06-23 08:54:27 -04:00
|
|
|
link[i].onclick = function(e) {
|
|
|
|
if(e.which == 2) {
|
|
|
|
return true;
|
|
|
|
}
|
2010-11-02 06:57:33 -04:00
|
|
|
if(!this.tag) {
|
|
|
|
this.tag = this.childNodes[0].src;
|
|
|
|
this.childNodes[0].src = this.href;
|
|
|
|
this.childNodes[0].style.width = 'auto';
|
2010-11-03 08:53:31 -04:00
|
|
|
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 = '';
|
|
|
|
}
|
2010-11-02 06:57:33 -04:00
|
|
|
} else {
|
|
|
|
this.childNodes[0].src = this.tag;
|
|
|
|
this.childNodes[0].style.width = 'auto';
|
2010-11-03 08:53:31 -04:00
|
|
|
this.childNodes[0].style.height = 'auto';
|
2010-11-02 06:57:33 -04:00
|
|
|
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));
|
|
|
|
|
|
|
|
init_expanding();
|
|
|
|
}
|
|
|
|
|
2011-06-15 14:59:16 -04:00
|
|
|
var RecaptchaOptions = {
|
|
|
|
theme : 'clean'
|
|
|
|
};
|
|
|
|
|
2011-04-06 04:31:26 -04:00
|
|
|
window.onload = init;
|
2011-06-23 08:54:27 -04:00
|
|
|
|