From 2c5583adc061c74aaa8bb0b6d520739aceaac32c Mon Sep 17 00:00:00 2001 From: safir Date: Fri, 15 Feb 2008 13:18:03 +0000 Subject: [PATCH] =?utf8?q?=D0=BD=D0=B0=D1=87=D0=B0=D0=BB=20=D0=BF=D0=B8?= =?utf8?q?=D1=81=D0=B0=D1=82=D1=8C=20=D1=81=D0=BA=D1=80=D0=B8=D0=BF=D1=82?= =?utf8?q?=20=D0=BF=D0=BE=20=D0=B7=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=BA?= =?utf8?q?=D0=B5=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D1=83=D1=80=D0=B0?= =?utf8?q?=D1=86=D0=B8=D0=B8=20=D1=84=D0=BE=D1=80=D1=83=D0=BC=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- templates/stilllife.js | 63 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 templates/stilllife.js diff --git a/templates/stilllife.js b/templates/stilllife.js new file mode 100644 index 0000000..8f93b02 --- /dev/null +++ b/templates/stilllife.js @@ -0,0 +1,63 @@ +/** +* Создаёт объект XMLHttpRequest, предварительно уничтожая существующий, +* если такой существует. +*/ +function createRequestObject() +{ + if (xmlhttp) + { + xmlhttp.onreadystatechange = function (){}; + xmlhttp.abort(); + xmlhttp = null; + } + + try { + xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); + } catch (e) { + try { + xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); + } catch (E) { + xmlhttp = false; + } + } + if (!xmlhttp && typeof XMLHttpRequest!='undefined') { + xmlhttp = new XMLHttpRequest(); + } + + return xmlhttp; +} + +/** +* Загружает конфигурационный файл для текущего подфорума в формате INI. +* Файл имеет фиксированное имя 'config.ini' +*/ +function loadConfig() +{ + xmlhttp.open("GET", config.ini, true); + xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); + xmlhttp.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT"); + xmlhttp.onreadystatechange = function() { + if (xmlhttp.readyState == 4) { + if(xmlhttp.status == 200) { + parsIni(xmlhttp.responseText); + } else { + alert("You have a phoblem: "); + } + }; + + xmlhttp.send(null); +} + +/** +* Разбирает загруженный INI-файл и устанавливает настройки движка. +*/ +function parsIni(config) +{ + var propertyLines=config.split(/[\n\r]+/); + var properties=[]; + for(var i=0;i