Re: Bugs & Problems Reporting
Posted: 29 Apr 2015 15:45
1024x600
A dedicated forum founded by Mateusz Skutnik, creator of world famous Submachine and several acclaimed point-and-click flash games.
https://www.pastelland.net/forum/
Really? Because the actual content of the forum is set at width of 1025 px, which means you should be able to see at least all of the forum at that size.Sublevel 102 wrote:1024x600
Code: Select all
function jumpto()
{
var page = prompt('Enter the page number you wish to go to:', '5');
var per_page = '10';
var base_url = './viewtopic.php?f=9&t=502';
if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
{
if (base_url.indexOf('?') == -1)
{
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
}
else
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
}
}
Aside from jumping to April Fools thread, I need to know where did you find that string of code.Sublevel 102 wrote:I compared sources...
That's missingCode: Select all
function jumpto() { var page = prompt('Enter the page number you wish to go to:', '5'); var per_page = '10'; var base_url = './viewtopic.php?f=9&t=502'; if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0) { if (base_url.indexOf('?') == -1) { document.location.href = base_url + '?start=' + ((page - 1) * per_page); } else { document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page); } } }
from thread of old forum
Edit: It jumped to April Fools thread
you mean when did I get that source code?admin wrote:I need to know where did you find that string of code
Please :?
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-gb" xml:lang="en-gb">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-language" content="en-gb" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<title>Pastel Forum - View topic - April Fools</title>
<link rel="alternate" type="application/atom+xml" title="Feed - Pastel Forum" href="http://www.pastelportal.com/forum/feed.php" /><link rel="alternate" type="application/atom+xml" title="Feed - New Topics" href="http://www.pastelportal.com/forum/feed.php?mode=topics" /><link rel="alternate" type="application/atom+xml" title="Feed - Forum - general discussion" href="http://www.pastelportal.com/forum/feed.php?f=9" /><link rel="alternate" type="application/atom+xml" title="Feed - Topic - April Fools" href="http://www.pastelportal.com/forum/feed.php?f=9&t=502" />
<!--
phpBB style name: Serenity
Based on style: subsilver2
Original author: Tom Beddard ( http://www.subBlue.com/ )
Modified by: stsoftware ( http://www.stsoftware.biz/ )
-->
<link rel="stylesheet" href="./styles/serenity/theme/stylesheet.css" type="text/css" />
<script type="text/javascript">
// <![CDATA[
var onload_functions = new Array();
var onunload_functions = new Array();
var ca_main_width = '100%';
function popup(url, width, height, name)
{
if (!name)
{
name = '_popup';
}
window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes,width=' + width);
return false;
}
function jumpto()
{
var page = prompt('Enter the page number you wish to go to:', '5');
var per_page = '10';
var base_url = './viewtopic.php?f=9&t=502';
if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
{
if (base_url.indexOf('?') == -1)
{
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
}
else
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
}
}
I can't, because it's in my compDo you have the link to the archived pages of the old forum?
They did, in fact. The most recent archived intact forum I was able to go back and find was Aug 30, 2014. That was when the forum was using pastelportal.com domain name.Sublevel 102 wrote:I can't, because it's in my compDo you have the link to the archived pages of the old forum?
and it's just mht files of all threads
because I feared our forum will be lost forever, so I just CTRL+Sed all threads XD
I think Wayback machine has it...