Форум >  Архив "О Клео" >  Сентябрь 2008 года >  Я в игноре, да?

Я в игноре, да?

До сих пор отвечать нормально не могу, формы ответа нету! А веб-мастера как в рот воды набрали. Уйду от вас, раз не хотите, чтоб отвечал вам, и сами мне не отвечаете.
окаянный © (30.09.2008 15:09)

Оцените автора материала.

1 Звезда 2 Звезды 3 Звезды 4 Звезды 5 Звезд 0.00 из 5.
Прямая ссылка


может глюк в браузере или настройки не те?
Эконом © (30.09.2008 15:09)
Прямая ссылка

прежде чем выдавать столь мудрые реплики, прочти вот эту темку http://www.kleo.ru/webboard/feedback/?60279.shtml и обрати внимание на дату ее подачи((((
окаянный © (30.09.2008 16:09)
Прямая ссылка

пока можешь отсылать через Опер - не уйдёшь!
Эконом © (30.09.2008 16:09)
Прямая ссылка

а вот насто@бет оперная тормознутость и уйду. Ей-богу!
окаянный © (30.09.2008 16:09)
Прямая ссылка

Потому что Окаянный...
Тортила © (30.09.2008 16:09)
Прямая ссылка

ваще-то я от клеовских веб-мастеров жду ответа. Но если и ты изъявишь намерение скрипт починить - я не против))))
окаянный © (30.09.2008 16:09)
Прямая ссылка

Могу только проронить в растерянности, вроде, мистика какая-то... Ужас!!!
Тортила © (30.09.2008 19:09)
Прямая ссылка

Попробуйте сделать CTRL+F5, т.е. принудительное обновление страницы и всех подключамых компонентов. Форма для ответа выводиться отдельным js-скриптом. Возможно, в результате какого-то сбоя у вас закешировалась некорректная версия скрипта.
Стас Nox © (30.09.2008 21:09)
Прямая ссылка

Сделал Ctrl-F5. Экран перезагрузился. Но, к сожалению, не помогло. Форма ответа по-прежнему отсутствует. Тогда я поискал в кэше упомянутый Вами скрипт и нашел его под именем msgtable210908[1].js Копирую здесь код вам для проверки его корректности. /* HTMLHttpRequest v1.0 beta3 (rev. 6, 07.02.2007) (c) 2001-2006 Angus Turnbull, TwinHelix Designs http://www.twinhelix.com */ if (typeof addEvent != 'function') { var addEvent = function(o, t, f, l) { var d = 'addEventListener', n = 'on' + t, rO = o, rT = t, rF = f, rL = l; if (o[d] && !l) return o[d](t, f, false); if (!o._evts) o._evts = {}; if (!o._evts[t]) { o._evts[t] = o[n] ? { b: o[n] } : {}; o[n] = new Function('e', 'var r = true, o = this, a = o._evts["' + t + '"], i; for (i in a) {' + 'o._f = a[i]; r = o._f(e||window.event) != false && r; o._f = null;' + '} return r'); if (t != 'unload') addEvent(window, 'unload', function() { removeEvent(rO, rT, rF, rL); }); } if (!f._i) f._i = addEvent._i++; o._evts[t][f._i] = f; }; addEvent._i = 1; var removeEvent = function(o, t, f, l) { var d = 'removeEventListener'; if (o[d] && !l) return o[d](t, f, false); if (o._evts && o._evts[t] && f._i) delete o._evts[t][f._i]; }; } function cancelEvent(e, c) { e.returnValue = false; if (e.preventDefault) e.preventDefault(); if (c) { e.cancelBubble = true; if (e.stopPropagation) e.stopPropagation(); } }; function HTMLHttpRequest(myName, callback, allowCache) { with (this) { this.myName = myName; this.callback = callback; this.xmlhttp = null; this.iframe = null; window._ifr_buf_count |= 0; this.iframeID = 'iframebuffer' + window._ifr_buf_count++; this.loadingURI = ''; this.allowCache = allowCache; if (window.ActiveXObject) { xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); if (!xmlhttp) xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); } if (window.XMLHttpRequest && !xmlhttp) xmlhttp = new XMLHttpRequest(); if (!xmlhttp) { if (document.createElement && document.documentElement && (window.opera || navigator.userAgent.indexOf('MSIE 5.0') == -1)) { var ifr = document.createElement('iframe'); ifr.setAttribute('id', iframeID); ifr.setAttribute('name', iframeID); ifr.style.visibility = 'hidden'; ifr.style.position = 'absolute'; ifr.style.width = ifr.style.height = ifr.borderWidth = '0px'; iframe = document.getElementsByTagName('body')[0].appendChild(ifr); } else if (document.body && document.body.insertAdjacentHTML) { document.body.insertAdjacentHTML('beforeEnd', ''); } if (window.frames && window.frames[iframeID]) iframe = window.frames[iframeID]; iframe.name = iframeID; } return this; }}; HTMLHttpRequest.prototype.parseForm = function(form) { with (this) { var str = '', gE = 'getElementsByTagName', inputs = [ (form[gE] ? form[gE]('input') : form.all ? form.all.tags('input') : []), (form[gE] ? form[gE]('select') : form.all ? form.all.tags('select') : []), (form[gE] ? form[gE]('textarea') : form.all ? form.all.tags('textarea') : []) ]; var plus = '++'.substring(0,1); // CodeTrim fix. for (var i = 0; i < inputs.length; i++) { for (var j = 0; j < inputs[i].length; j++) { var inp = inputs[i][j]; if (inp && inp.getAttribute('name')) { var type = inp.getAttribute('type'); if ((type != 'checkbox' && type != 'radio') || inp.checked) { str += escape(inp.getAttribute('name')).replace(plus, '%2B') + '=' + escape(inp.value).replace(plus, '%2B') + '&'; } } } } return str.substring(0, str.length - 1); }}; HTMLHttpRequest.prototype.xmlhttpSend = function(uri, formStr) { with (this) { xmlhttp.open(formStr ? 'POST' : 'GET', uri, true); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4) { if (callback) callback(xmlhttp.responseXML, xmlhttp.responseText, loadingURI); loadingURI = ''; } }; if ('setRequestHeader' in xmlhttp) { if (formStr) xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); if (!allowCache) { xmlhttp.setRequestHeader('Cache-Control', 'no-cache'); xmlhttp.setRequestHeader('Pragma', 'no-cache'); xmlhttp.setRequestHeader('If-Modified-Since', 'Sat, 1 Jan 1990 00:00:00 GMT'); } } if (xmlhttp.overrideMimeType) xmlhttp.overrideMimeType((/\.txt/i).test(uri) ? 'text/plain' : 'text/xml'); xmlhttp.send(formStr); loadingURI = uri; return true; }}; HTMLHttpRequest.prototype.iframeSend = function(uri, formRef) { with (this) { if (!document.readyState) return false; if (document.getElementById) var o = document.getElementById(iframeID).offsetWidth; if (formRef) formRef.setAttribute('target', iframeID); else { var ifrDoc = iframe.contentDocument || iframe.document; if (!window.opera && ifrDoc.location && ifrDoc.location.href != location.href) ifrDoc.location.replace(uri); else iframe.src = uri; } loadingURI = uri; setTimeout(myName + '.iframeCheck()', (window.opera ? 250 : 100)); return true; }}; HTMLHttpRequest.prototype.iframeCheck = function() { with (this) { doc = iframe.contentDocument || iframe.document; var il = iframe.location, dr = doc.readyState; if ((il && il.href ? il.href.match(loadingURI.replace("\?", "\\?")) : 1) && (dr == 'complete' || (!document.getElementById && dr == 'interactive'))) { var cbDoc = doc.documentElement || doc; if (callback) callback(cbDoc, (cbDoc.innerHTML || (cbDoc.body ? cbDoc.body.innerHTML : '')), loadingURI); loadingURI = ''; } else setTimeout(myName + '.iframeCheck()', 50); }}; HTMLHttpRequest.prototype.load = function(uri) { with (this) { if (!uri || (!xmlhttp && !iframe)) return false; if (xmlhttp) return xmlhttpSend(uri, ''); else if (iframe) return iframeSend(uri, null); else return false; }}; HTMLHttpRequest.prototype.submit = function(formRef, evt) { with (this) { evt = evt || window.event; if (!formRef || (!xmlhttp && !iframe)) return false; var method = formRef.getAttribute('method'), uri = formRef.getAttribute('action') || location.search || location.pathname; if (method && method.toLowerCase() == 'post') { if (xmlhttp) { cancelEvent(evt); return xmlhttpSend(uri, parseForm(formRef)) } else if (iframe) return iframeSend(uri, formRef); else return false; } else { cancelEvent(evt); return load(uri + (uri.indexOf('?') == -1 ? '?' : '&') + parseForm(formRef)); } }}; function RemoteFileLoader(myName) { this.myName = myName; this.threads = []; this.loadingIDs = {}; this.onload = null; this.allowCache = false; }; RemoteFileLoader.prototype.getThread = function(destId) { with (this) { var thr = -1; for (var id in loadingIDs) { if (id == destId) { thr = loadingIDs[id]; break; } } if (thr == -1) for (var t = 0; t < threads.length; t++) { if (!threads[t].loadingURI) { thr = t; break; } } if (thr == -1) { thr = threads.length; threads[thr] = new HTMLHttpRequest(myName + '.threads[' + thr + ']', null, allowCache); loadingIDs[destId] = thr; } threads[thr].callback = new Function('doc', 'text', 'uri', 'with (' + myName + ') { ' + 'copyContent(doc, text, "' + destId + '"); if (onload) onload(doc, uri, "' + destId + '") }'); return threads[thr]; }}; RemoteFileLoader.prototype.loadInto = function(uri, destId) { return this.getThread(destId).load(uri); }; RemoteFileLoader.prototype.submitInto = function(formRef, destId, event) { return this.getThread(destId).submit(formRef, event); }; RemoteFileLoader.prototype.copyContent = function(docDOM, docText, destId) { if (this.onCopyContent && this.onCopyContent(docDOM, docText, destId)) return; var src = null; try { if (docDOM) { if ('getElementsByTagName' in docDOM) { var list = docDOM.getElementsByTagName('body'); if (list && (0 in list)) src = list[0]; } if (!src && ('body' in docDOM)) src = docDOM.body; } } catch(err) { } var dest = document.getElementById ? document.getElementById(destId) : (document.all ? document.all[destId] : null); if (!dest || (!src && !docText)) return; if (src && src.innerHTML) dest.innerHTML = src.innerHTML; else if (src && document.importNode) { while (dest.firstChild) dest.removeChild(dest.firstChild); for (var i = 0; i < src.childNodes.length; i++) dest.appendChild(document.importNode(src.childNodes.item(i), true)); } else if (docText) { if (docText.match(/()(.*)(<\/body>)/i)) docText = RegExp.$2; dest.innerHTML = docText; } }; var docClickLoader = new RemoteFileLoader('docClickLoader'); function docLoader(destId, url){ var ok = docClickLoader.loadInto(url, destId); } var smile_num = new Array (24); for (i=0; i < 24; i++) {smile_num[i] = i+25} var smile_descr = new Array ( 'Улыбаюсь', 'Полный ржач!', 'Я в шоке!', 'Чмок-чмок!', 'Поздравляю!', 'Аплодисменты!', 'Хвастаюсь', 'Плачу', 'Сочувствую', 'Не поняла?', 'Выпьем!', 'Подмигиваю', 'Стесняюсь', 'Скукотищщща!', 'Учу жизни', 'Шепчу по секрету', 'Всё правильно говоришь', 'Вот так вот!', 'Бе-е-е, какая гадость!', 'Ругаюсь!', 'Думай, что говоришь!', 'Прошу совета', 'Всё пропало!', 'Пока!' ); function submitVote (v,e) { var durl = document.URL; var re = /\/(\w+)\/\d+\/(\d+)\.shtml$/ig; var a = re.exec( durl ); var newForm = document.createElement("form"); newForm.setAttribute('id','vote_comm'); newForm.setAttribute('name','vote_comm'); newForm.setAttribute('method','post'); newForm.setAttribute('action','/cgi-bin/club/comments_vote.fcgi'); var newInput1 = document.createElement("input"); newInput1.setAttribute('type','hidden'); newInput1.setAttribute('name','vote'); newInput1.setAttribute('value',v); var newInput2 = document.createElement("input"); newInput2.setAttribute('type','hidden'); newInput2.setAttribute('name','comm_id'); newInput2.setAttribute('value',a[2]); var newInput3 = document.createElement("input"); newInput3.setAttribute('type','hidden'); newInput3.setAttribute('name','type'); newInput3.setAttribute('value','post'); var newInput4 = document.createElement("input"); newInput4.setAttribute('type','hidden'); newInput4.setAttribute('name','forum_folder'); newInput4.setAttribute('value',a[1]); newForm.appendChild( newInput1 ); newForm.appendChild( newInput2 ); newForm.appendChild( newInput3 ); newForm.appendChild( newInput4 ); docClickLoader.submitInto(newForm, 'vote_comm_block', e); } function HideShow(id){ document.getElementById(id).style.display=(document.getElementById(id+'check').checked) ? 'block' : 'none'; } function hideSmiles(st){ document.getElementById('smiles').style.display= (st==1 ? 'none' : 'block'); document.cookie = 'hidesmiles=' + st + '; path=/webboard; expires=Fri, 28-Oct-16 07:48:29 GMT'; } function af (login,nick) { var durl = document.URL; var h=''; h+='
'; if (nick) { h+='оценить  '; } else { h+='оценить  '; } h+='версия для печати  '; if (nick) { h+='в закладки  '; } else { h+='в закладки  '; } h+='постоянная ссылка'; h+='
'; h+=''; h+='
Ответ (можно нажать Ctrl-Enter для отправки)показать смайлики
'; h+='
'; h+=''; if (nick) { h+='
Фото 
'; } if (nick) { h+='Автоподпись '+nick+'   '; } h+= (nick ? '|  ' : '')+'
Ник (обязательно)
Пароль (участникам)
E-mail (желательно)
'; h+='
'; h+=''; for (var i=0; i<24; i++){ h+=''; h+= (i+1) % 6 == 0 ? '' : ''; } h+='
скрыть смайлики
'; h+=''; h+=''; document.write(h); } function CtrlEnter(e,b) { switch(navigator.appName) { case "Microsoft Internet Explorer": e.onkeydown = GetKey; var Key = "event.ctrlKey && event.keyCode == 13"; break; case "Netscape": document.captureEvents(Event.KEYDOWN); e.onkeydown = GetKey; var Key = "(e.modifiers == 2 && e.which == 10) || (e.ctrlKey && e.which == 13)"; break; case "Opera": document.captureEvents(Event.KEYDOWN); e.onkeydown = GetKey; var Key = "(e.modifiers == 2 && e.which == 10) || (e.ctrlKey && e.which == 13)"; break; } function GetKey(e) { if(eval(Key)) b.click() } }
окаянный © (01.10.2008 11:10)
Прямая ссылка

А какой у вас браузер?
Стас Nox © (03.10.2008 01:10)
Прямая ссылка

ИЕ 5.00.2614.3500
окаянный © (06.10.2008 14:10)
Прямая ссылка

Х7ЯДир скде82ФскбВа9Ххфёд
perry © (03.01.2009 12:01)
Прямая ссылка

 

Что не так с этим комментарием ?

Оффтопик

Нецензурная брань или оскорбления

Спам или реклама

Ссылка на другой ресурс

Дубликат

Другое (укажите ниже)

OK
Информация о комментарии отправлена модератору