script.js 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639
  1. var smf_formSubmitted = false;
  2. var lastKeepAliveCheck = new Date().getTime();
  3. var smf_editorArray = new Array();
  4. // Some very basic browser detection - from Mozilla's sniffer page.
  5. var ua = navigator.userAgent.toLowerCase();
  6. var is_opera = ua.indexOf('opera') != -1;
  7. var is_ff = (ua.indexOf('firefox') != -1 || ua.indexOf('iceweasel') != -1 || ua.indexOf('icecat') != -1 || ua.indexOf('shiretoko') != -1 || ua.indexOf('minefield') != -1) && !is_opera;
  8. var is_gecko = ua.indexOf('gecko') != -1 && !is_opera;
  9. var is_chrome = ua.indexOf('chrome') != -1;
  10. var is_safari = ua.indexOf('applewebkit') != -1 && !is_chrome;
  11. var is_webkit = ua.indexOf('applewebkit') != -1;
  12. var is_ie = ua.indexOf('msie') != -1 && !is_opera;
  13. var is_iphone = ua.indexOf('iphone') != -1 || ua.indexOf('ipod') != -1;
  14. var is_android = ua.indexOf('android') != -1;
  15. var ajax_indicator_ele = null;
  16. // Define XMLHttpRequest for IE
  17. if (!('XMLHttpRequest' in window) && 'ActiveXObject' in window)
  18. window.XMLHttpRequest = function () {
  19. return new ActiveXObject('MSXML2.XMLHTTP');
  20. };
  21. // Some older versions of Mozilla don't have this, for some reason.
  22. if (!('forms' in document))
  23. document.forms = document.getElementsByTagName('form');
  24. // Versions of ie < 9 do not have this built in
  25. if (!('getElementsByClassName' in document))
  26. {
  27. document.getElementsByClassName = function(className)
  28. {
  29. return $('".' + className + '"');
  30. }
  31. }
  32. // Load an XML document using XMLHttpRequest.
  33. function getXMLDocument(sUrl, funcCallback)
  34. {
  35. if (!window.XMLHttpRequest)
  36. return null;
  37. var oMyDoc = new XMLHttpRequest();
  38. var bAsync = typeof(funcCallback) != 'undefined';
  39. var oCaller = this;
  40. if (bAsync)
  41. {
  42. oMyDoc.onreadystatechange = function () {
  43. if (oMyDoc.readyState != 4)
  44. return;
  45. if (oMyDoc.responseXML != null && oMyDoc.status == 200)
  46. {
  47. if (funcCallback.call)
  48. {
  49. funcCallback.call(oCaller, oMyDoc.responseXML);
  50. }
  51. // A primitive substitute for the call method to support IE 5.0.
  52. else
  53. {
  54. oCaller.tmpMethod = funcCallback;
  55. oCaller.tmpMethod(oMyDoc.responseXML);
  56. delete oCaller.tmpMethod;
  57. }
  58. }
  59. };
  60. }
  61. oMyDoc.open('GET', sUrl, bAsync);
  62. oMyDoc.send(null);
  63. return oMyDoc;
  64. }
  65. // Send a post form to the server using XMLHttpRequest.
  66. function sendXMLDocument(sUrl, sContent, funcCallback)
  67. {
  68. if (!window.XMLHttpRequest)
  69. return false;
  70. var oSendDoc = new window.XMLHttpRequest();
  71. var oCaller = this;
  72. if (typeof(funcCallback) != 'undefined')
  73. {
  74. oSendDoc.onreadystatechange = function () {
  75. if (oSendDoc.readyState != 4)
  76. return;
  77. if (oSendDoc.responseXML != null && oSendDoc.status == 200)
  78. funcCallback.call(oCaller, oSendDoc.responseXML);
  79. else
  80. funcCallback.call(oCaller, false);
  81. };
  82. }
  83. oSendDoc.open('POST', sUrl, true);
  84. if ('setRequestHeader' in oSendDoc)
  85. oSendDoc.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  86. oSendDoc.send(sContent);
  87. return true;
  88. }
  89. // A property we'll be needing for php_to8bit.
  90. String.prototype.oCharsetConversion = {
  91. from: '',
  92. to: ''
  93. };
  94. // Convert a string to an 8 bit representation (like in PHP).
  95. String.prototype.php_to8bit = function ()
  96. {
  97. if (smf_charset == 'UTF-8')
  98. {
  99. var n, sReturn = '';
  100. for (var i = 0, iTextLen = this.length; i < iTextLen; i++)
  101. {
  102. n = this.charCodeAt(i);
  103. if (n < 128)
  104. sReturn += String.fromCharCode(n)
  105. else if (n < 2048)
  106. sReturn += String.fromCharCode(192 | n >> 6) + String.fromCharCode(128 | n & 63);
  107. else if (n < 65536)
  108. sReturn += String.fromCharCode(224 | n >> 12) + String.fromCharCode(128 | n >> 6 & 63) + String.fromCharCode(128 | n & 63);
  109. else
  110. sReturn += String.fromCharCode(240 | n >> 18) + String.fromCharCode(128 | n >> 12 & 63) + String.fromCharCode(128 | n >> 6 & 63) + String.fromCharCode(128 | n & 63);
  111. }
  112. return sReturn;
  113. }
  114. else if (this.oCharsetConversion.from.length == 0)
  115. {
  116. switch (smf_charset)
  117. {
  118. case 'ISO-8859-1':
  119. this.oCharsetConversion = {
  120. from: '\xa0-\xff',
  121. to: '\xa0-\xff'
  122. };
  123. break;
  124. case 'ISO-8859-2':
  125. this.oCharsetConversion = {
  126. from: '\xa0\u0104\u02d8\u0141\xa4\u013d\u015a\xa7\xa8\u0160\u015e\u0164\u0179\xad\u017d\u017b\xb0\u0105\u02db\u0142\xb4\u013e\u015b\u02c7\xb8\u0161\u015f\u0165\u017a\u02dd\u017e\u017c\u0154\xc1\xc2\u0102\xc4\u0139\u0106\xc7\u010c\xc9\u0118\xcb\u011a\xcd\xce\u010e\u0110\u0143\u0147\xd3\xd4\u0150\xd6\xd7\u0158\u016e\xda\u0170\xdc\xdd\u0162\xdf\u0155\xe1\xe2\u0103\xe4\u013a\u0107\xe7\u010d\xe9\u0119\xeb\u011b\xed\xee\u010f\u0111\u0144\u0148\xf3\xf4\u0151\xf6\xf7\u0159\u016f\xfa\u0171\xfc\xfd\u0163\u02d9',
  127. to: '\xa0-\xff'
  128. };
  129. break;
  130. case 'ISO-8859-5':
  131. this.oCharsetConversion = {
  132. from: '\xa0\u0401-\u040c\xad\u040e-\u044f\u2116\u0451-\u045c\xa7\u045e\u045f',
  133. to: '\xa0-\xff'
  134. };
  135. break;
  136. case 'ISO-8859-9':
  137. this.oCharsetConversion = {
  138. from: '\xa0-\xcf\u011e\xd1-\xdc\u0130\u015e\xdf-\xef\u011f\xf1-\xfc\u0131\u015f\xff',
  139. to: '\xa0-\xff'
  140. };
  141. break;
  142. case 'ISO-8859-15':
  143. this.oCharsetConversion = {
  144. from: '\xa0-\xa3\u20ac\xa5\u0160\xa7\u0161\xa9-\xb3\u017d\xb5-\xb7\u017e\xb9-\xbb\u0152\u0153\u0178\xbf-\xff',
  145. to: '\xa0-\xff'
  146. };
  147. break;
  148. case 'tis-620':
  149. this.oCharsetConversion = {
  150. from: '\u20ac\u2026\u2018\u2019\u201c\u201d\u2022\u2013\u2014\xa0\u0e01-\u0e3a\u0e3f-\u0e5b',
  151. to: '\x80\x85\x91-\x97\xa0-\xda\xdf-\xfb'
  152. };
  153. break;
  154. case 'windows-1251':
  155. this.oCharsetConversion = {
  156. from: '\u0402\u0403\u201a\u0453\u201e\u2026\u2020\u2021\u20ac\u2030\u0409\u2039\u040a\u040c\u040b\u040f\u0452\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u2122\u0459\u203a\u045a\u045c\u045b\u045f\xa0\u040e\u045e\u0408\xa4\u0490\xa6\xa7\u0401\xa9\u0404\xab-\xae\u0407\xb0\xb1\u0406\u0456\u0491\xb5-\xb7\u0451\u2116\u0454\xbb\u0458\u0405\u0455\u0457\u0410-\u044f',
  157. to: '\x80-\x97\x99-\xff'
  158. };
  159. break;
  160. case 'windows-1253':
  161. this.oCharsetConversion = {
  162. from: '\u20ac\u201a\u0192\u201e\u2026\u2020\u2021\u2030\u2039\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u2122\u203a\xa0\u0385\u0386\xa3-\xa9\xab-\xae\u2015\xb0-\xb3\u0384\xb5-\xb7\u0388-\u038a\xbb\u038c\xbd\u038e-\u03a1\u03a3-\u03ce',
  163. to: '\x80\x82-\x87\x89\x8b\x91-\x97\x99\x9b\xa0-\xa9\xab-\xd1\xd3-\xfe'
  164. };
  165. break;
  166. case 'windows-1255':
  167. this.oCharsetConversion = {
  168. from: '\u20ac\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u2039\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u203a\xa0-\xa3\u20aa\xa5-\xa9\xd7\xab-\xb9\xf7\xbb-\xbf\u05b0-\u05b9\u05bb-\u05c3\u05f0-\u05f4\u05d0-\u05ea\u200e\u200f',
  169. to: '\x80\x82-\x89\x8b\x91-\x99\x9b\xa0-\xc9\xcb-\xd8\xe0-\xfa\xfd\xfe'
  170. };
  171. break;
  172. case 'windows-1256':
  173. this.oCharsetConversion = {
  174. from: '\u20ac\u067e\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0679\u2039\u0152\u0686\u0698\u0688\u06af\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u06a9\u2122\u0691\u203a\u0153\u200c\u200d\u06ba\xa0\u060c\xa2-\xa9\u06be\xab-\xb9\u061b\xbb-\xbe\u061f\u06c1\u0621-\u0636\xd7\u0637-\u063a\u0640-\u0643\xe0\u0644\xe2\u0645-\u0648\xe7-\xeb\u0649\u064a\xee\xef\u064b-\u064e\xf4\u064f\u0650\xf7\u0651\xf9\u0652\xfb\xfc\u200e\u200f\u06d2',
  175. to: '\x80-\xff'
  176. };
  177. break;
  178. default:
  179. this.oCharsetConversion = {
  180. from: '',
  181. to: ''
  182. };
  183. break;
  184. }
  185. var funcExpandString = function (sSearch) {
  186. var sInsert = '';
  187. for (var i = sSearch.charCodeAt(0), n = sSearch.charCodeAt(2); i <= n; i++)
  188. sInsert += String.fromCharCode(i);
  189. return sInsert;
  190. };
  191. this.oCharsetConversion.from = this.oCharsetConversion.from.replace(/.\-./g, funcExpandString);
  192. this.oCharsetConversion.to = this.oCharsetConversion.to.replace(/.\-./g, funcExpandString);
  193. }
  194. var sReturn = '', iOffsetFrom = 0;
  195. for (var i = 0, n = this.length; i < n; i++)
  196. {
  197. iOffsetFrom = this.oCharsetConversion.from.indexOf(this.charAt(i));
  198. sReturn += iOffsetFrom > -1 ? this.oCharsetConversion.to.charAt(iOffsetFrom) : (this.charCodeAt(i) > 127 ? '&#' + this.charCodeAt(i) + ';' : this.charAt(i));
  199. }
  200. return sReturn
  201. }
  202. // Character-level replacement function.
  203. String.prototype.php_strtr = function (sFrom, sTo)
  204. {
  205. return this.replace(new RegExp('[' + sFrom + ']', 'g'), function (sMatch) {
  206. return sTo.charAt(sFrom.indexOf(sMatch));
  207. });
  208. }
  209. // Simulate PHP's strtolower (in SOME cases PHP uses ISO-8859-1 case folding).
  210. String.prototype.php_strtolower = function ()
  211. {
  212. return typeof(smf_iso_case_folding) == 'boolean' && smf_iso_case_folding == true ? this.php_strtr(
  213. 'ABCDEFGHIJKLMNOPQRSTUVWXYZ\x8a\x8c\x8e\x9f\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde',
  214. 'abcdefghijklmnopqrstuvwxyz\x9a\x9c\x9e\xff\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe'
  215. ) : this.php_strtr('ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz');
  216. }
  217. String.prototype.php_urlencode = function()
  218. {
  219. return escape(this).replace(/\+/g, '%2b').replace('*', '%2a').replace('/', '%2f').replace('@', '%40');
  220. }
  221. String.prototype.php_htmlspecialchars = function()
  222. {
  223. return this.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
  224. }
  225. String.prototype.php_unhtmlspecialchars = function()
  226. {
  227. return this.replace(/&quot;/g, '"').replace(/&gt;/g, '>').replace(/&lt;/g, '<').replace(/&amp;/g, '&');
  228. }
  229. String.prototype.php_addslashes = function()
  230. {
  231. return this.replace(/\\/g, '\\\\').replace(/'/g, '\\\'');
  232. }
  233. String.prototype._replaceEntities = function(sInput, sDummy, sNum)
  234. {
  235. return String.fromCharCode(parseInt(sNum));
  236. }
  237. String.prototype.removeEntities = function()
  238. {
  239. return this.replace(/&(amp;)?#(\d+);/g, this._replaceEntities);
  240. }
  241. String.prototype.easyReplace = function (oReplacements)
  242. {
  243. var sResult = this;
  244. for (var sSearch in oReplacements)
  245. sResult = sResult.replace(new RegExp('%' + sSearch + '%', 'g'), oReplacements[sSearch]);
  246. return sResult;
  247. }
  248. // Open a new window
  249. function reqWin(desktopURL, alternateWidth, alternateHeight, noScrollbars)
  250. {
  251. if ((alternateWidth && self.screen.availWidth * 0.8 < alternateWidth) || (alternateHeight && self.screen.availHeight * 0.8 < alternateHeight))
  252. {
  253. noScrollbars = false;
  254. alternateWidth = Math.min(alternateWidth, self.screen.availWidth * 0.8);
  255. alternateHeight = Math.min(alternateHeight, self.screen.availHeight * 0.8);
  256. }
  257. else
  258. noScrollbars = typeof(noScrollbars) == 'boolean' && noScrollbars == true;
  259. window.open(desktopURL, 'requested_popup', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=' + (noScrollbars ? 'no' : 'yes') + ',width=' + (alternateWidth ? alternateWidth : 480) + ',height=' + (alternateHeight ? alternateHeight : 220) + ',resizable=no');
  260. // Return false so the click won't follow the link ;).
  261. return false;
  262. }
  263. // Open a overlay div
  264. function reqOverlayDiv(desktopURL, sHeader, sIcon)
  265. {
  266. // Set up our div details
  267. var sAjax_indicator = '<div class="centertext"><img src="' + smf_images_url + '/loading.gif" ></div>';
  268. var sIcon = smf_images_url + '/' + (typeof(sIcon) == 'string' ? sIcon : 'helptopics.png');
  269. var sHeader = typeof(sHeader) == 'string' ? sHeader : help_popup_heading_text;
  270. // Create the div that we are going to load
  271. var oContainer = new smc_Popup({heading: sHeader, content: sAjax_indicator, icon: sIcon});
  272. var oPopup_body = $('#' + oContainer.popup_id).find('.popup_content');
  273. // Load the help page content (we just want the text to show)
  274. $.ajax({
  275. url: desktopURL,
  276. type: "GET",
  277. dataType: "html",
  278. beforeSend: function () {
  279. },
  280. success: function (data, textStatus, xhr) {
  281. var help_content = $('<div id="temp_help">').html(data).find('a[href$="self.close();"]').hide().prev('br').hide().parent().html();
  282. oPopup_body.html(help_content);
  283. },
  284. error: function (xhr, textStatus, errorThrown) {
  285. oPopup_body.html(textStatus);
  286. }
  287. });
  288. return false;
  289. }
  290. // *** smc_Popup class.
  291. function smc_Popup(oOptions)
  292. {
  293. this.opt = oOptions;
  294. this.popup_id = this.opt.custom_id ? this.opt.custom_id : 'smf_popup';
  295. this.show();
  296. }
  297. smc_Popup.prototype.show = function ()
  298. {
  299. popup_class = 'popup_window ' + (this.opt.custom_class ? this.opt.custom_class : 'description');
  300. icon = this.opt.icon ? '<img src="' + this.opt.icon + '" class="icon" alt="" /> ' : '';
  301. // Create the div that will be shown
  302. $('body').append('<div id="' + this.popup_id + '" class="popup_container"><div class="' + popup_class + '"><div class="catbg popup_heading"><a href="javascript:void(0);" class="hide_popup"></a>' + icon + this.opt.heading + '</div><div class="popup_content">' + this.opt.content + '</div></div></div>');
  303. // Show it
  304. this.popup_body = $('#' + this.popup_id).children('.popup_window');
  305. this.popup_body.css({top: '25%', left: '50%', margin: '-' + ($(this.popup_body).height() / 2) + 'px 0 0 -' + ($(this.popup_body).width() / 2) + 'px'}).parent().fadeIn(300);
  306. // Trigger hide on escape or mouse click
  307. var popup_instance = this;
  308. $(document).mouseup(function (e) {
  309. if ($('#' + popup_instance.popup_id).has(e.target).length === 0)
  310. popup_instance.hide();
  311. }).keyup(function(e){
  312. if(e.keyCode == 27)
  313. popup_instance.hide();
  314. });
  315. $('#' + this.popup_id).find('.hide_popup').click(function (){ return popup_instance.hide(); });
  316. return false;
  317. }
  318. smc_Popup.prototype.hide = function ()
  319. {
  320. $('#' + this.popup_id).fadeOut(300, function(){ $(this).remove(); });
  321. return false;
  322. }
  323. // Remember the current position.
  324. function storeCaret(oTextHandle)
  325. {
  326. // Only bother if it will be useful.
  327. if ('createTextRange' in oTextHandle)
  328. oTextHandle.caretPos = document.selection.createRange().duplicate();
  329. }
  330. // Replaces the currently selected text with the passed text.
  331. function replaceText(text, oTextHandle)
  332. {
  333. // Attempt to create a text range (IE).
  334. if ('caretPos' in oTextHandle && 'createTextRange' in oTextHandle)
  335. {
  336. var caretPos = oTextHandle.caretPos;
  337. caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
  338. caretPos.select();
  339. }
  340. // Mozilla text range replace.
  341. else if ('selectionStart' in oTextHandle)
  342. {
  343. var begin = oTextHandle.value.substr(0, oTextHandle.selectionStart);
  344. var end = oTextHandle.value.substr(oTextHandle.selectionEnd);
  345. var scrollPos = oTextHandle.scrollTop;
  346. oTextHandle.value = begin + text + end;
  347. if (oTextHandle.setSelectionRange)
  348. {
  349. oTextHandle.focus();
  350. var goForward = is_opera ? text.match(/\n/g).length : 0;
  351. oTextHandle.setSelectionRange(begin.length + text.length + goForward, begin.length + text.length + goForward);
  352. }
  353. oTextHandle.scrollTop = scrollPos;
  354. }
  355. // Just put it on the end.
  356. else
  357. {
  358. oTextHandle.value += text;
  359. oTextHandle.focus(oTextHandle.value.length - 1);
  360. }
  361. }
  362. // Surrounds the selected text with text1 and text2.
  363. function surroundText(text1, text2, oTextHandle)
  364. {
  365. // Can a text range be created?
  366. if ('caretPos' in oTextHandle && 'createTextRange' in oTextHandle)
  367. {
  368. var caretPos = oTextHandle.caretPos, temp_length = caretPos.text.length;
  369. caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text1 + caretPos.text + text2 + ' ' : text1 + caretPos.text + text2;
  370. if (temp_length == 0)
  371. {
  372. caretPos.moveStart('character', -text2.length);
  373. caretPos.moveEnd('character', -text2.length);
  374. caretPos.select();
  375. }
  376. else
  377. oTextHandle.focus(caretPos);
  378. }
  379. // Mozilla text range wrap.
  380. else if ('selectionStart' in oTextHandle)
  381. {
  382. var begin = oTextHandle.value.substr(0, oTextHandle.selectionStart);
  383. var selection = oTextHandle.value.substr(oTextHandle.selectionStart, oTextHandle.selectionEnd - oTextHandle.selectionStart);
  384. var end = oTextHandle.value.substr(oTextHandle.selectionEnd);
  385. var newCursorPos = oTextHandle.selectionStart;
  386. var scrollPos = oTextHandle.scrollTop;
  387. oTextHandle.value = begin + text1 + selection + text2 + end;
  388. if (oTextHandle.setSelectionRange)
  389. {
  390. var goForward = is_opera ? text1.match(/\n/g).length : 0, goForwardAll = is_opera ? (text1 + text2).match(/\n/g).length : 0;
  391. if (selection.length == 0)
  392. oTextHandle.setSelectionRange(newCursorPos + text1.length + goForward, newCursorPos + text1.length + goForward);
  393. else
  394. oTextHandle.setSelectionRange(newCursorPos, newCursorPos + text1.length + selection.length + text2.length + goForwardAll);
  395. oTextHandle.focus();
  396. }
  397. oTextHandle.scrollTop = scrollPos;
  398. }
  399. // Just put them on the end, then.
  400. else
  401. {
  402. oTextHandle.value += text1 + text2;
  403. oTextHandle.focus(oTextHandle.value.length - 1);
  404. }
  405. }
  406. // Checks if the passed input's value is nothing.
  407. function isEmptyText(theField)
  408. {
  409. // Copy the value so changes can be made..
  410. if (typeof(theField) == 'string')
  411. var theValue = theField;
  412. else
  413. var theValue = theField.value;
  414. // Strip whitespace off the left side.
  415. while (theValue.length > 0 && (theValue.charAt(0) == ' ' || theValue.charAt(0) == '\t'))
  416. theValue = theValue.substring(1, theValue.length);
  417. // Strip whitespace off the right side.
  418. while (theValue.length > 0 && (theValue.charAt(theValue.length - 1) == ' ' || theValue.charAt(theValue.length - 1) == '\t'))
  419. theValue = theValue.substring(0, theValue.length - 1);
  420. if (theValue == '')
  421. return true;
  422. else
  423. return false;
  424. }
  425. // Only allow form submission ONCE.
  426. function submitonce(theform)
  427. {
  428. smf_formSubmitted = true;
  429. // If there are any editors warn them submit is coming!
  430. for (var i = 0; i < smf_editorArray.length; i++)
  431. smf_editorArray[i].doSubmit();
  432. }
  433. function submitThisOnce(oControl)
  434. {
  435. // oControl might also be a form.
  436. var oForm = 'form' in oControl ? oControl.form : oControl;
  437. var aTextareas = oForm.getElementsByTagName('textarea');
  438. for (var i = 0, n = aTextareas.length; i < n; i++)
  439. aTextareas[i].readOnly = true;
  440. return !smf_formSubmitted;
  441. }
  442. // Deprecated, as innerHTML is supported everywhere.
  443. function setInnerHTML(oElement, sToValue)
  444. {
  445. oElement.innerHTML = sToValue;
  446. }
  447. function getInnerHTML(oElement)
  448. {
  449. return oElement.innerHTML;
  450. }
  451. // Set the "outer" HTML of an element.
  452. function setOuterHTML(oElement, sToValue)
  453. {
  454. if ('outerHTML' in oElement)
  455. oElement.outerHTML = sToValue;
  456. else
  457. {
  458. var range = document.createRange();
  459. range.setStartBefore(oElement);
  460. oElement.parentNode.replaceChild(range.createContextualFragment(sToValue), oElement);
  461. }
  462. }
  463. // Checks for variable in theArray.
  464. function in_array(variable, theArray)
  465. {
  466. for (var i in theArray)
  467. if (theArray[i] == variable)
  468. return true;
  469. return false;
  470. }
  471. // Checks for variable in theArray.
  472. function array_search(variable, theArray)
  473. {
  474. for (var i in theArray)
  475. if (theArray[i] == variable)
  476. return i;
  477. return null;
  478. }
  479. // Find a specific radio button in its group and select it.
  480. function selectRadioByName(oRadioGroup, sName)
  481. {
  482. if (!('length' in oRadioGroup))
  483. return oRadioGroup.checked = true;
  484. for (var i = 0, n = oRadioGroup.length; i < n; i++)
  485. if (oRadioGroup[i].value == sName)
  486. return oRadioGroup[i].checked = true;
  487. return false;
  488. }
  489. function selectAllRadio(oInvertCheckbox, oForm, sMask, sValue)
  490. {
  491. for (var i = 0; i < oForm.length; i++)
  492. if (oForm[i].name != undefined && oForm[i].name.substr(0, sMask.length) == sMask && oForm[i].value == sValue)
  493. oForm[i].checked = true;
  494. }
  495. // Invert all checkboxes at once by clicking a single checkbox.
  496. function invertAll(oInvertCheckbox, oForm, sMask, bIgnoreDisabled)
  497. {
  498. for (var i = 0; i < oForm.length; i++)
  499. {
  500. if (!('name' in oForm[i]) || (typeof(sMask) == 'string' && oForm[i].name.substr(0, sMask.length) != sMask && oForm[i].id.substr(0, sMask.length) != sMask))
  501. continue;
  502. if (!oForm[i].disabled || (typeof(bIgnoreDisabled) == 'boolean' && bIgnoreDisabled))
  503. oForm[i].checked = oInvertCheckbox.checked;
  504. }
  505. }
  506. // Keep the session alive - always!
  507. var lastKeepAliveCheck = new Date().getTime();
  508. function smf_sessionKeepAlive()
  509. {
  510. var curTime = new Date().getTime();
  511. // Prevent a Firefox bug from hammering the server.
  512. if (smf_scripturl && curTime - lastKeepAliveCheck > 900000)
  513. {
  514. var tempImage = new Image();
  515. tempImage.src = smf_prepareScriptUrl(smf_scripturl) + 'action=keepalive;time=' + curTime;
  516. lastKeepAliveCheck = curTime;
  517. }
  518. window.setTimeout('smf_sessionKeepAlive();', 1200000);
  519. }
  520. window.setTimeout('smf_sessionKeepAlive();', 1200000);
  521. // Set a theme option through javascript.
  522. function smf_setThemeOption(option, value, theme, cur_session_id, cur_session_var, additional_vars)
  523. {
  524. // Compatibility.
  525. if (cur_session_id == null)
  526. cur_session_id = smf_session_id;
  527. if (typeof(cur_session_var) == 'undefined')
  528. cur_session_var = 'sesc';
  529. if (additional_vars == null)
  530. additional_vars = '';
  531. var tempImage = new Image();
  532. tempImage.src = smf_prepareScriptUrl(smf_scripturl) + 'action=jsoption;var=' + option + ';val=' + value + ';' + cur_session_var + '=' + cur_session_id + additional_vars + (theme == null ? '' : '&th=' + theme) + ';time=' + (new Date().getTime());
  533. }
  534. function smf_avatarResize()
  535. {
  536. var possibleAvatars = document.getElementsByTagName('img');
  537. for (var i = 0; i < possibleAvatars.length; i++)
  538. {
  539. var tempAvatars = []; j = 0;
  540. if (possibleAvatars[i].className != 'avatar')
  541. continue;
  542. // Image.prototype.avatar = possibleAvatars[i];
  543. tempAvatars[j] = new Image();
  544. tempAvatars[j].avatar = possibleAvatars[i];
  545. tempAvatars[j].onload = function()
  546. {
  547. this.avatar.width = this.width;
  548. this.avatar.height = this.height;
  549. if (smf_avatarMaxWidth != 0 && this.width > smf_avatarMaxWidth)
  550. {
  551. this.avatar.height = (smf_avatarMaxWidth * this.height) / this.width;
  552. this.avatar.width = smf_avatarMaxWidth;
  553. }
  554. if (smf_avatarMaxHeight != 0 && this.avatar.height > smf_avatarMaxHeight)
  555. {
  556. this.avatar.width = (smf_avatarMaxHeight * this.avatar.width) / this.avatar.height;
  557. this.avatar.height = smf_avatarMaxHeight;
  558. }
  559. }
  560. tempAvatars[j].src = possibleAvatars[i].src;
  561. j++;
  562. }
  563. if (typeof(window_oldAvatarOnload) != 'undefined' && window_oldAvatarOnload)
  564. {
  565. window_oldAvatarOnload();
  566. window_oldAvatarOnload = null;
  567. }
  568. }
  569. function hashLoginPassword(doForm, cur_session_id, token)
  570. {
  571. // Compatibility.
  572. if (cur_session_id == null)
  573. cur_session_id = smf_session_id;
  574. if (typeof(hex_sha1) == 'undefined')
  575. return;
  576. // Are they using an email address?
  577. if (doForm.user.value.indexOf('@') != -1)
  578. return;
  579. // Unless the browser is Opera, the password will not save properly.
  580. if (!('opera' in window))
  581. doForm.passwrd.autocomplete = 'off';
  582. doForm.hash_passwrd.value = hex_sha1(hex_sha1(doForm.user.value.php_to8bit().php_strtolower() + doForm.passwrd.value.php_to8bit()) + cur_session_id + token);
  583. // It looks nicer to fill it with asterisks, but Firefox will try to save that.
  584. if (is_ff != -1)
  585. doForm.passwrd.value = '';
  586. else
  587. doForm.passwrd.value = doForm.passwrd.value.replace(/./g, '*');
  588. }
  589. function hashAdminPassword(doForm, username, cur_session_id, token)
  590. {
  591. // Compatibility.
  592. if (cur_session_id == null)
  593. cur_session_id = smf_session_id;
  594. if (typeof(hex_sha1) == 'undefined')
  595. return;
  596. doForm.admin_hash_pass.value = hex_sha1(hex_sha1(username.php_to8bit().php_strtolower() + doForm.admin_pass.value.php_to8bit()) + cur_session_id + token);
  597. doForm.admin_pass.value = doForm.admin_pass.value.replace(/./g, '*');
  598. }
  599. function hashModeratePassword(doForm, username, cur_session_id, token)
  600. {
  601. if (typeof(hex_sha1) == 'undefined')
  602. return;
  603. doForm.moderate_hash_pass.value = hex_sha1(hex_sha1(username.php_to8bit().php_strtolower() + doForm.moderate_pass.value.php_to8bit()) + cur_session_id + token);
  604. doForm.moderate_pass.value = doForm.moderate_pass.value.replace(/./g, '*');
  605. }
  606. // Shows the page numbers by clicking the dots (in compact view).
  607. function expandPages(spanNode, baseURL, firstPage, lastPage, perPage)
  608. {
  609. var replacement = '', i, oldLastPage = 0;
  610. var perPageLimit = 50;
  611. // Prevent too many pages to be loaded at once.
  612. if ((lastPage - firstPage) / perPage > perPageLimit)
  613. {
  614. oldLastPage = lastPage;
  615. lastPage = firstPage + perPageLimit * perPage;
  616. }
  617. // Calculate the new pages.
  618. for (i = firstPage; i < lastPage; i += perPage)
  619. replacement += '<a class="navPages" href="' + baseURL.replace(/%1\$d/, i).replace(/%%/g, '%') + '">' + (1 + i / perPage) + '</a> ';
  620. if (oldLastPage > 0)
  621. replacement += '<span class="expand_pages" onclick="expandPages(this, \'' + baseURL + '\', ' + lastPage + ', ' + oldLastPage + ', ' + perPage + ');"> ... </span>';
  622. // Replace the dots by the new page links.
  623. setOuterHTML(spanNode, replacement);
  624. }
  625. function smc_preCacheImage(sSrc)
  626. {
  627. if (!('smc_aCachedImages' in window))
  628. window.smc_aCachedImages = [];
  629. if (!in_array(sSrc, window.smc_aCachedImages))
  630. {
  631. var oImage = new Image();
  632. oImage.src = sSrc;
  633. }
  634. }
  635. // *** smc_Cookie class.
  636. function smc_Cookie(oOptions)
  637. {
  638. this.opt = oOptions;
  639. this.oCookies = {};
  640. this.init();
  641. }
  642. smc_Cookie.prototype.init = function()
  643. {
  644. if ('cookie' in document && document.cookie != '')
  645. {
  646. var aCookieList = document.cookie.split(';');
  647. for (var i = 0, n = aCookieList.length; i < n; i++)
  648. {
  649. var aNameValuePair = aCookieList[i].split('=');
  650. this.oCookies[aNameValuePair[0].replace(/^\s+|\s+$/g, '')] = decodeURIComponent(aNameValuePair[1]);
  651. }
  652. }
  653. }
  654. smc_Cookie.prototype.get = function(sKey)
  655. {
  656. return sKey in this.oCookies ? this.oCookies[sKey] : null;
  657. }
  658. smc_Cookie.prototype.set = function(sKey, sValue)
  659. {
  660. document.cookie = sKey + '=' + encodeURIComponent(sValue);
  661. }
  662. // *** smc_Toggle class.
  663. function smc_Toggle(oOptions)
  664. {
  665. this.opt = oOptions;
  666. this.bCollapsed = false;
  667. this.oCookie = null;
  668. this.init();
  669. }
  670. smc_Toggle.prototype.init = function ()
  671. {
  672. // The master switch can disable this toggle fully.
  673. if ('bToggleEnabled' in this.opt && !this.opt.bToggleEnabled)
  674. return;
  675. // If cookies are enabled and they were set, override the initial state.
  676. if ('oCookieOptions' in this.opt && this.opt.oCookieOptions.bUseCookie)
  677. {
  678. // Initialize the cookie handler.
  679. this.oCookie = new smc_Cookie({});
  680. // Check if the cookie is set.
  681. var cookieValue = this.oCookie.get(this.opt.oCookieOptions.sCookieName)
  682. if (cookieValue != null)
  683. this.opt.bCurrentlyCollapsed = cookieValue == '1';
  684. }
  685. // If the init state is set to be collapsed, collapse it.
  686. if (this.opt.bCurrentlyCollapsed)
  687. this.changeState(true, true);
  688. // Initialize the images to be clickable.
  689. if ('aSwapImages' in this.opt)
  690. {
  691. for (var i = 0, n = this.opt.aSwapImages.length; i < n; i++)
  692. {
  693. var oImage = document.getElementById(this.opt.aSwapImages[i].sId);
  694. if (typeof(oImage) == 'object' && oImage != null)
  695. {
  696. // Display the image in case it was hidden.
  697. if (oImage.style.display == 'none')
  698. oImage.style.display = '';
  699. oImage.instanceRef = this;
  700. oImage.onclick = function () {
  701. this.instanceRef.toggle();
  702. this.blur();
  703. }
  704. oImage.style.cursor = 'pointer';
  705. // Preload the collapsed image.
  706. smc_preCacheImage(this.opt.aSwapImages[i].srcCollapsed);
  707. }
  708. }
  709. }
  710. // Initialize links.
  711. if ('aSwapLinks' in this.opt)
  712. {
  713. for (var i = 0, n = this.opt.aSwapLinks.length; i < n; i++)
  714. {
  715. var oLink = document.getElementById(this.opt.aSwapLinks[i].sId);
  716. if (typeof(oLink) == 'object' && oLink != null)
  717. {
  718. // Display the link in case it was hidden.
  719. if (oLink.style.display == 'none')
  720. oLink.style.display = '';
  721. oLink.instanceRef = this;
  722. oLink.onclick = function () {
  723. this.instanceRef.toggle();
  724. this.blur();
  725. return false;
  726. }
  727. }
  728. }
  729. }
  730. }
  731. // Collapse or expand the section.
  732. smc_Toggle.prototype.changeState = function(bCollapse, bInit)
  733. {
  734. // Default bInit to false.
  735. bInit = typeof(bInit) == 'undefined' ? false : true;
  736. // Handle custom function hook before collapse.
  737. if (!bInit && bCollapse && 'funcOnBeforeCollapse' in this.opt)
  738. {
  739. this.tmpMethod = this.opt.funcOnBeforeCollapse;
  740. this.tmpMethod();
  741. delete this.tmpMethod;
  742. }
  743. // Handle custom function hook before expand.
  744. else if (!bInit && !bCollapse && 'funcOnBeforeExpand' in this.opt)
  745. {
  746. this.tmpMethod = this.opt.funcOnBeforeExpand;
  747. this.tmpMethod();
  748. delete this.tmpMethod;
  749. }
  750. // Loop through all the images that need to be toggled.
  751. if ('aSwapImages' in this.opt)
  752. {
  753. for (var i = 0, n = this.opt.aSwapImages.length; i < n; i++)
  754. {
  755. var oImage = document.getElementById(this.opt.aSwapImages[i].sId);
  756. if (typeof(oImage) == 'object' && oImage != null)
  757. {
  758. // Only (re)load the image if it's changed.
  759. var sTargetSource = bCollapse ? this.opt.aSwapImages[i].srcCollapsed : this.opt.aSwapImages[i].srcExpanded;
  760. if (oImage.src != sTargetSource)
  761. oImage.src = sTargetSource;
  762. oImage.alt = oImage.title = bCollapse ? this.opt.aSwapImages[i].altCollapsed : this.opt.aSwapImages[i].altExpanded;
  763. }
  764. }
  765. }
  766. // Loop through all the links that need to be toggled.
  767. if ('aSwapLinks' in this.opt)
  768. {
  769. for (var i = 0, n = this.opt.aSwapLinks.length; i < n; i++)
  770. {
  771. var oLink = document.getElementById(this.opt.aSwapLinks[i].sId);
  772. if (typeof(oLink) == 'object' && oLink != null)
  773. setInnerHTML(oLink, bCollapse ? this.opt.aSwapLinks[i].msgCollapsed : this.opt.aSwapLinks[i].msgExpanded);
  774. }
  775. }
  776. // Now go through all the sections to be collapsed.
  777. for (var i = 0, n = this.opt.aSwappableContainers.length; i < n; i++)
  778. {
  779. if (this.opt.aSwappableContainers[i] == null)
  780. continue;
  781. var oContainer = document.getElementById(this.opt.aSwappableContainers[i]);
  782. if (typeof(oContainer) == 'object' && oContainer != null)
  783. {
  784. if (bCollapse)
  785. $(oContainer).slideUp();
  786. else
  787. $(oContainer).slideDown();
  788. }
  789. }
  790. // Update the new state.
  791. this.bCollapsed = bCollapse;
  792. // Update the cookie, if desired.
  793. if ('oCookieOptions' in this.opt && this.opt.oCookieOptions.bUseCookie)
  794. this.oCookie.set(this.opt.oCookieOptions.sCookieName, this.bCollapsed ? '1' : '0');
  795. if (!bInit && 'oThemeOptions' in this.opt && this.opt.oThemeOptions.bUseThemeSettings)
  796. smf_setThemeOption(this.opt.oThemeOptions.sOptionName, this.bCollapsed ? '1' : '0', 'sThemeId' in this.opt.oThemeOptions ? this.opt.oThemeOptions.sThemeId : null, smf_session_id, smf_session_var, 'sAdditionalVars' in this.opt.oThemeOptions ? this.opt.oThemeOptions.sAdditionalVars : null);
  797. }
  798. smc_Toggle.prototype.toggle = function()
  799. {
  800. // Change the state by reversing the current state.
  801. this.changeState(!this.bCollapsed);
  802. }
  803. function ajax_indicator(turn_on)
  804. {
  805. if (ajax_indicator_ele == null)
  806. {
  807. ajax_indicator_ele = document.getElementById('ajax_in_progress');
  808. if (ajax_indicator_ele == null && typeof(ajax_notification_text) != null)
  809. {
  810. create_ajax_indicator_ele();
  811. }
  812. }
  813. if (ajax_indicator_ele != null)
  814. {
  815. ajax_indicator_ele.style.display = turn_on ? 'block' : 'none';
  816. }
  817. }
  818. function create_ajax_indicator_ele()
  819. {
  820. // Create the div for the indicator.
  821. ajax_indicator_ele = document.createElement('div');
  822. // Set the id so it'll load the style properly.
  823. ajax_indicator_ele.id = 'ajax_in_progress';
  824. // Add the image in and link to turn it off.
  825. var cancel_link = document.createElement('a');
  826. cancel_link.href = 'javascript:ajax_indicator(false)';
  827. var cancel_img = document.createElement('img');
  828. cancel_img.src = smf_images_url + '/icons/quick_remove.png';
  829. if (typeof(ajax_notification_cancel_text) != 'undefined')
  830. {
  831. cancel_img.alt = ajax_notification_cancel_text;
  832. cancel_img.title = ajax_notification_cancel_text;
  833. }
  834. // Add the cancel link and image to the indicator.
  835. cancel_link.appendChild(cancel_img);
  836. ajax_indicator_ele.appendChild(cancel_link);
  837. // Set the text. (Note: You MUST append here and not overwrite.)
  838. ajax_indicator_ele.innerHTML += ajax_notification_text;
  839. // Finally attach the element to the body.
  840. document.body.appendChild(ajax_indicator_ele);
  841. }
  842. function createEventListener(oTarget)
  843. {
  844. if (!('addEventListener' in oTarget))
  845. {
  846. if (oTarget.attachEvent)
  847. {
  848. oTarget.addEventListener = function (sEvent, funcHandler, bCapture) {
  849. oTarget.attachEvent('on' + sEvent, funcHandler);
  850. }
  851. oTarget.removeEventListener = function (sEvent, funcHandler, bCapture) {
  852. oTarget.detachEvent('on' + sEvent, funcHandler);
  853. }
  854. }
  855. else
  856. {
  857. oTarget.addEventListener = function (sEvent, funcHandler, bCapture) {
  858. oTarget['on' + sEvent] = funcHandler;
  859. }
  860. oTarget.removeEventListener = function (sEvent, funcHandler, bCapture) {
  861. oTarget['on' + sEvent] = null;
  862. }
  863. }
  864. }
  865. }
  866. // This function will retrieve the contents needed for the jump to boxes.
  867. function grabJumpToContent(elem)
  868. {
  869. var oXMLDoc = getXMLDocument(smf_prepareScriptUrl(smf_scripturl) + 'action=xmlhttp;sa=jumpto;xml');
  870. var aBoardsAndCategories = new Array();
  871. var bIE5x = !('implementation' in document);
  872. ajax_indicator(true);
  873. if (oXMLDoc.responseXML)
  874. {
  875. var items = oXMLDoc.responseXML.getElementsByTagName('smf')[0].getElementsByTagName('item');
  876. for (var i = 0, n = items.length; i < n; i++)
  877. {
  878. aBoardsAndCategories[aBoardsAndCategories.length] = {
  879. id: parseInt(items[i].getAttribute('id')),
  880. isCategory: items[i].getAttribute('type') == 'category',
  881. name: items[i].firstChild.nodeValue.removeEntities(),
  882. is_current: false,
  883. childLevel: parseInt(items[i].getAttribute('childlevel'))
  884. }
  885. }
  886. }
  887. ajax_indicator(false);
  888. for (var i = 0, n = aJumpTo.length; i < n; i++)
  889. aJumpTo[i].fillSelect(aBoardsAndCategories);
  890. if (bIE5x)
  891. elem.options[iIndexPointer].selected = true;
  892. // Internet Explorer needs this to keep the box dropped down.
  893. elem.style.width = 'auto';
  894. elem.focus();
  895. }
  896. // This'll contain all JumpTo objects on the page.
  897. var aJumpTo = new Array();
  898. // *** JumpTo class.
  899. function JumpTo(oJumpToOptions)
  900. {
  901. this.opt = oJumpToOptions;
  902. this.dropdownList = null;
  903. this.showSelect();
  904. }
  905. // Show the initial select box (onload). Method of the JumpTo class.
  906. JumpTo.prototype.showSelect = function ()
  907. {
  908. var sChildLevelPrefix = '';
  909. for (var i = this.opt.iCurBoardChildLevel; i > 0; i--)
  910. sChildLevelPrefix += this.opt.sBoardChildLevelIndicator;
  911. setInnerHTML(document.getElementById(this.opt.sContainerId), this.opt.sJumpToTemplate.replace(/%select_id%/, this.opt.sContainerId + '_select').replace(/%dropdown_list%/, '<select ' + (this.opt.bDisabled == true ? 'disabled="disabled" ' : '') + (this.opt.sClassName != undefined ? 'class="' + this.opt.sClassName + '" ' : '') + 'name="' + (this.opt.sCustomName != undefined ? this.opt.sCustomName : this.opt.sContainerId + '_select') + '" id="' + this.opt.sContainerId + '_select" ' + ('implementation' in document ? '' : 'onmouseover="grabJumpToContent(this);" ') + ('onbeforeactivate' in document ? 'onbeforeactivate' : 'onfocus') + '="grabJumpToContent(this);"><option value="' + (this.opt.bNoRedirect != undefined && this.opt.bNoRedirect == true ? this.opt.iCurBoardId : '?board=' + this.opt.iCurBoardId + '.0') + '">' + sChildLevelPrefix + this.opt.sBoardPrefix + this.opt.sCurBoardName.removeEntities() + '</option></select>&nbsp;' + (this.opt.sGoButtonLabel != undefined ? '<input type="button" class="button_submit" value="' + this.opt.sGoButtonLabel + '" onclick="window.location.href = \'' + smf_prepareScriptUrl(smf_scripturl) + 'board=' + this.opt.iCurBoardId + '.0\';" />' : '')));
  912. this.dropdownList = document.getElementById(this.opt.sContainerId + '_select');
  913. }
  914. // Fill the jump to box with entries. Method of the JumpTo class.
  915. JumpTo.prototype.fillSelect = function (aBoardsAndCategories)
  916. {
  917. var iIndexPointer = 0;
  918. // Create an option that'll be above and below the category.
  919. var oDashOption = document.createElement('option');
  920. oDashOption.appendChild(document.createTextNode(this.opt.sCatSeparator));
  921. oDashOption.disabled = 'disabled';
  922. oDashOption.value = '';
  923. if ('onbeforeactivate' in document)
  924. this.dropdownList.onbeforeactivate = null;
  925. else
  926. this.dropdownList.onfocus = null;
  927. if (this.opt.bNoRedirect)
  928. this.dropdownList.options[0].disabled = 'disabled';
  929. // Create a document fragment that'll allowing inserting big parts at once.
  930. var oListFragment = document.createDocumentFragment();
  931. // Loop through all items to be added.
  932. for (var i = 0, n = aBoardsAndCategories.length; i < n; i++)
  933. {
  934. var j, sChildLevelPrefix, oOption;
  935. // If we've reached the currently selected board add all items so far.
  936. if (!aBoardsAndCategories[i].isCategory && aBoardsAndCategories[i].id == this.opt.iCurBoardId)
  937. {
  938. this.dropdownList.insertBefore(oListFragment, this.dropdownList.options[0]);
  939. oListFragment = document.createDocumentFragment();
  940. continue;
  941. }
  942. if (aBoardsAndCategories[i].isCategory)
  943. oListFragment.appendChild(oDashOption.cloneNode(true));
  944. else
  945. for (j = aBoardsAndCategories[i].childLevel, sChildLevelPrefix = ''; j > 0; j--)
  946. sChildLevelPrefix += this.opt.sBoardChildLevelIndicator;
  947. oOption = document.createElement('option');
  948. oOption.appendChild(document.createTextNode((aBoardsAndCategories[i].isCategory ? this.opt.sCatPrefix : sChildLevelPrefix + this.opt.sBoardPrefix) + aBoardsAndCategories[i].name));
  949. if (!this.opt.bNoRedirect)
  950. oOption.value = aBoardsAndCategories[i].isCategory ? '#c' + aBoardsAndCategories[i].id : '?board=' + aBoardsAndCategories[i].id + '.0';
  951. else
  952. {
  953. if (aBoardsAndCategories[i].isCategory)
  954. oOption.disabled = 'disabled';
  955. else
  956. oOption.value = aBoardsAndCategories[i].id;
  957. }
  958. oListFragment.appendChild(oOption);
  959. if (aBoardsAndCategories[i].isCategory)
  960. oListFragment.appendChild(oDashOption.cloneNode(true));
  961. }
  962. // Add the remaining items after the currently selected item.
  963. this.dropdownList.appendChild(oListFragment);
  964. // Add an onchange action
  965. if (!this.opt.bNoRedirect)
  966. this.dropdownList.onchange = function() {
  967. if (this.selectedIndex > 0 && this.options[this.selectedIndex].value)
  968. window.location.href = smf_scripturl + this.options[this.selectedIndex].value.substr(smf_scripturl.indexOf('?') == -1 || this.options[this.selectedIndex].value.substr(0, 1) != '?' ? 0 : 1);
  969. }
  970. }
  971. // A global array containing all IconList objects.
  972. var aIconLists = new Array();
  973. // *** IconList object.
  974. function IconList(oOptions)
  975. {
  976. if (!window.XMLHttpRequest)
  977. return;
  978. this.opt = oOptions;
  979. this.bListLoaded = false;
  980. this.oContainerDiv = null;
  981. this.funcMousedownHandler = null;
  982. this.funcParent = this;
  983. this.iCurMessageId = 0;
  984. this.iCurTimeout = 0;
  985. // Add backwards compatibility with old themes.
  986. if (!('sSessionVar' in this.opt))
  987. this.opt.sSessionVar = 'sesc';
  988. this.initIcons();
  989. }
  990. // Replace all message icons by icons with hoverable and clickable div's.
  991. IconList.prototype.initIcons = function ()
  992. {
  993. for (var i = document.images.length - 1, iPrefixLength = this.opt.sIconIdPrefix.length; i >= 0; i--)
  994. if (document.images[i].id.substr(0, iPrefixLength) == this.opt.sIconIdPrefix)
  995. setOuterHTML(document.images[i], '<div title="' + this.opt.sLabelIconList + '" onclick="' + this.opt.sBackReference + '.openPopup(this, ' + document.images[i].id.substr(iPrefixLength) + ')" onmouseover="' + this.opt.sBackReference + '.onBoxHover(this, true)" onmouseout="' + this.opt.sBackReference + '.onBoxHover(this, false)" style="background: ' + this.opt.sBoxBackground + '; cursor: pointer; padding: 3px; text-align: center;"><img src="' + document.images[i].src + '" alt="' + document.images[i].alt + '" id="' + document.images[i].id + '" style="margin: 0px; padding: ' + (is_ie ? '3px' : '3px 0px 3px 0px') + ';" /></div>');
  996. }
  997. // Event for the mouse hovering over the original icon.
  998. IconList.prototype.onBoxHover = function (oDiv, bMouseOver)
  999. {
  1000. oDiv.style.border = bMouseOver ? this.opt.iBoxBorderWidthHover + 'px solid ' + this.opt.sBoxBorderColorHover : '';
  1001. oDiv.style.background = bMouseOver ? this.opt.sBoxBackgroundHover : this.opt.sBoxBackground;
  1002. oDiv.style.padding = bMouseOver ? (3 - this.opt.iBoxBorderWidthHover) + 'px' : '3px'
  1003. }
  1004. // Show the list of icons after the user clicked the original icon.
  1005. IconList.prototype.openPopup = function (oDiv, iMessageId)
  1006. {
  1007. this.iCurMessageId = iMessageId;
  1008. if (!this.bListLoaded && this.oContainerDiv == null)
  1009. {
  1010. // Create a container div.
  1011. this.oContainerDiv = document.createElement('div');
  1012. this.oContainerDiv.id = 'iconList';
  1013. this.oContainerDiv.style.display = 'none';
  1014. this.oContainerDiv.style.cursor = 'pointer';
  1015. this.oContainerDiv.style.position = 'absolute';
  1016. this.oContainerDiv.style.background = this.opt.sContainerBackground;
  1017. this.oContainerDiv.style.border = this.opt.sContainerBorder;
  1018. this.oContainerDiv.style.padding = '6px 0px';
  1019. document.body.appendChild(this.oContainerDiv);
  1020. // Start to fetch its contents.
  1021. ajax_indicator(true);
  1022. sendXMLDocument.call(this, smf_prepareScriptUrl(smf_scripturl) + 'action=xmlhttp;sa=messageicons;board=' + this.opt.iBoardId + ';xml', '', this.onIconsReceived);
  1023. createEventListener(document.body);
  1024. }
  1025. // Set the position of the container.
  1026. var aPos = smf_itemPos(oDiv);
  1027. this.oContainerDiv.style.top = (aPos[1] + oDiv.offsetHeight) + 'px';
  1028. this.oContainerDiv.style.left = (aPos[0] - 1) + 'px';
  1029. this.oClickedIcon = oDiv;
  1030. if (this.bListLoaded)
  1031. this.oContainerDiv.style.display = 'block';
  1032. document.body.addEventListener('mousedown', this.onWindowMouseDown, false);
  1033. }
  1034. // Setup the list of icons once it is received through xmlHTTP.
  1035. IconList.prototype.onIconsReceived = function (oXMLDoc)
  1036. {
  1037. var icons = oXMLDoc.getElementsByTagName('smf')[0].getElementsByTagName('icon');
  1038. var sItems = '';
  1039. for (var i = 0, n = icons.length; i < n; i++)
  1040. sItems += '<span onmouseover="' + this.opt.sBackReference + '.onItemHover(this, true)" onmouseout="' + this.opt.sBackReference + '.onItemHover(this, false);" onmousedown="' + this.opt.sBackReference + '.onItemMouseDown(this, \'' + icons[i].getAttribute('value') + '\');" style="padding: 2px 3px; line-height: 20px; border: ' + this.opt.sItemBorder + '; background: ' + this.opt.sItemBackground + '"><img src="' + icons[i].getAttribute('url') + '" alt="' + icons[i].getAttribute('name') + '" title="' + icons[i].firstChild.nodeValue + '" style="vertical-align: middle" /></span>';
  1041. setInnerHTML(this.oContainerDiv, sItems);
  1042. this.oContainerDiv.style.display = 'block';
  1043. this.bListLoaded = true;
  1044. if (is_ie)
  1045. this.oContainerDiv.style.width = this.oContainerDiv.clientWidth + 'px';
  1046. ajax_indicator(false);
  1047. }
  1048. // Event handler for hovering over the icons.
  1049. IconList.prototype.onItemHover = function (oDiv, bMouseOver)
  1050. {
  1051. oDiv.style.background = bMouseOver ? this.opt.sItemBackgroundHover : this.opt.sItemBackground;
  1052. oDiv.style.border = bMouseOver ? this.opt.sItemBorderHover : this.opt.sItemBorder;
  1053. if (this.iCurTimeout != 0)
  1054. window.clearTimeout(this.iCurTimeout);
  1055. if (bMouseOver)
  1056. this.onBoxHover(this.oClickedIcon, true);
  1057. else
  1058. this.iCurTimeout = window.setTimeout(this.opt.sBackReference + '.collapseList();', 500);
  1059. }
  1060. // Event handler for clicking on one of the icons.
  1061. IconList.prototype.onItemMouseDown = function (oDiv, sNewIcon)
  1062. {
  1063. if (this.iCurMessageId != 0)
  1064. {
  1065. ajax_indicator(true);
  1066. this.tmpMethod = getXMLDocument;
  1067. var oXMLDoc = this.tmpMethod(smf_prepareScriptUrl(smf_scripturl) + 'action=jsmodify;topic=' + this.opt.iTopicId + ';msg=' + this.iCurMessageId + ';' + smf_session_var + '=' + smf_session_id + ';icon=' + sNewIcon + ';xml');
  1068. delete this.tmpMethod;
  1069. ajax_indicator(false);
  1070. var oMessage = oXMLDoc.responseXML.getElementsByTagName('smf')[0].getElementsByTagName('message')[0];
  1071. if (oMessage.getElementsByTagName('error').length == 0)
  1072. {
  1073. if (this.opt.bShowModify && oMessage.getElementsByTagName('modified').length != 0)
  1074. setInnerHTML(document.getElementById('modified_' + this.iCurMessageId), oMessage.getElementsByTagName('modified')[0].childNodes[0].nodeValue);
  1075. this.oClickedIcon.getElementsByTagName('img')[0].src = oDiv.getElementsByTagName('img')[0].src;
  1076. }
  1077. }
  1078. }
  1079. // Event handler for clicking outside the list (will make the list disappear).
  1080. IconList.prototype.onWindowMouseDown = function ()
  1081. {
  1082. for (var i = aIconLists.length - 1; i >= 0; i--)
  1083. {
  1084. aIconLists[i].funcParent.tmpMethod = aIconLists[i].collapseList;
  1085. aIconLists[i].funcParent.tmpMethod();
  1086. delete aIconLists[i].funcParent.tmpMethod;
  1087. }
  1088. }
  1089. // Collapse the list of icons.
  1090. IconList.prototype.collapseList = function()
  1091. {
  1092. this.onBoxHover(this.oClickedIcon, false);
  1093. this.oContainerDiv.style.display = 'none';
  1094. this.iCurMessageId = 0;
  1095. document.body.removeEventListener('mousedown', this.onWindowMouseDown, false);
  1096. }
  1097. // Handy shortcuts for getting the mouse position on the screen - only used for IE at the moment.
  1098. function smf_mousePose(oEvent)
  1099. {
  1100. var x = 0;
  1101. var y = 0;
  1102. if (oEvent.pageX)
  1103. {
  1104. y = oEvent.pageY;
  1105. x = oEvent.pageX;
  1106. }
  1107. else if (oEvent.clientX)
  1108. {
  1109. x = oEvent.clientX + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);
  1110. y = oEvent.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
  1111. }
  1112. return [x, y];
  1113. }
  1114. // Short function for finding the actual position of an item.
  1115. function smf_itemPos(itemHandle)
  1116. {
  1117. var itemX = 0;
  1118. var itemY = 0;
  1119. if ('offsetParent' in itemHandle)
  1120. {
  1121. itemX = itemHandle.offsetLeft;
  1122. itemY = itemHandle.offsetTop;
  1123. while (itemHandle.offsetParent && typeof(itemHandle.offsetParent) == 'object')
  1124. {
  1125. itemHandle = itemHandle.offsetParent;
  1126. itemX += itemHandle.offsetLeft;
  1127. itemY += itemHandle.offsetTop;
  1128. }
  1129. }
  1130. else if ('x' in itemHandle)
  1131. {
  1132. itemX = itemHandle.x;
  1133. itemY = itemHandle.y;
  1134. }
  1135. return [itemX, itemY];
  1136. }
  1137. // This function takes the script URL and prepares it to allow the query string to be appended to it.
  1138. function smf_prepareScriptUrl(sUrl)
  1139. {
  1140. return sUrl.indexOf('?') == -1 ? sUrl + '?' : sUrl + (sUrl.charAt(sUrl.length - 1) == '?' || sUrl.charAt(sUrl.length - 1) == '&' || sUrl.charAt(sUrl.length - 1) == ';' ? '' : ';');
  1141. }
  1142. var aOnloadEvents = new Array();
  1143. function addLoadEvent(fNewOnload)
  1144. {
  1145. // If there's no event set, just set this one
  1146. if (typeof(fNewOnload) == 'function' && (!('onload' in window) || typeof(window.onload) != 'function'))
  1147. window.onload = fNewOnload;
  1148. // If there's just one event, setup the array.
  1149. else if (aOnloadEvents.length == 0)
  1150. {
  1151. aOnloadEvents[0] = window.onload;
  1152. aOnloadEvents[1] = fNewOnload;
  1153. window.onload = function() {
  1154. for (var i = 0, n = aOnloadEvents.length; i < n; i++)
  1155. {
  1156. if (typeof(aOnloadEvents[i]) == 'function')
  1157. aOnloadEvents[i]();
  1158. else if (typeof(aOnloadEvents[i]) == 'string')
  1159. eval(aOnloadEvents[i]);
  1160. }
  1161. }
  1162. }
  1163. // This isn't the first event function, add it to the list.
  1164. else
  1165. aOnloadEvents[aOnloadEvents.length] = fNewOnload;
  1166. }
  1167. function smfFooterHighlight(element, value)
  1168. {
  1169. element.src = smf_images_url + '/' + (value ? 'h_' : '') + element.id + '.png';
  1170. }
  1171. // Get the text in a code tag.
  1172. function smfSelectText(oCurElement, bActOnElement)
  1173. {
  1174. // The place we're looking for is one div up, and next door - if it's auto detect.
  1175. if (typeof(bActOnElement) == 'boolean' && bActOnElement)
  1176. var oCodeArea = document.getElementById(oCurElement);
  1177. else
  1178. var oCodeArea = oCurElement.parentNode.nextSibling;
  1179. if (typeof(oCodeArea) != 'object' || oCodeArea == null)
  1180. return false;
  1181. // Start off with my favourite, internet explorer.
  1182. if ('createTextRange' in document.body)
  1183. {
  1184. var oCurRange = document.body.createTextRange();
  1185. oCurRange.moveToElementText(oCodeArea);
  1186. oCurRange.select();
  1187. }
  1188. // Firefox at el.
  1189. else if (window.getSelection)
  1190. {
  1191. var oCurSelection = window.getSelection();
  1192. // Safari is special!
  1193. if (oCurSelection.setBaseAndExtent)
  1194. {
  1195. var oLastChild = oCodeArea.lastChild;
  1196. oCurSelection.setBaseAndExtent(oCodeArea, 0, oLastChild, 'innerText' in oLastChild ? oLastChild.innerText.length : oLastChild.textContent.length);
  1197. }
  1198. else
  1199. {
  1200. var curRange = document.createRange();
  1201. curRange.selectNodeContents(oCodeArea);
  1202. oCurSelection.removeAllRanges();
  1203. oCurSelection.addRange(curRange);
  1204. }
  1205. }
  1206. return false;
  1207. }
  1208. // A function needed to discern HTML entities from non-western characters.
  1209. function smc_saveEntities(sFormName, aElementNames, sMask)
  1210. {
  1211. if (typeof(sMask) == 'string')
  1212. {
  1213. for (var i = 0, n = document.forms[sFormName].elements.length; i < n; i++)
  1214. if (document.forms[sFormName].elements[i].id.substr(0, sMask.length) == sMask)
  1215. aElementNames[aElementNames.length] = document.forms[sFormName].elements[i].name;
  1216. }
  1217. for (var i = 0, n = aElementNames.length; i < n; i++)
  1218. {
  1219. if (aElementNames[i] in document.forms[sFormName])
  1220. document.forms[sFormName][aElementNames[i]].value = document.forms[sFormName][aElementNames[i]].value.replace(/&#/g, '&#38;#');
  1221. }
  1222. }
  1223. // A function used to clean the attachments on post page
  1224. function cleanFileInput(idElement)
  1225. {
  1226. // Simpler solutions work in Opera, IE, Safari and Chrome.
  1227. if (is_opera || is_ie || is_safari || is_chrome)
  1228. {
  1229. document.getElementById(idElement).outerHTML = document.getElementById(idElement).outerHTML;
  1230. }
  1231. // What else can we do? By the way, this doesn't work in Chrome and Mac's Safari.
  1232. else
  1233. {
  1234. document.getElementById(idElement).type = 'input';
  1235. document.getElementById(idElement).type = 'file';
  1236. }
  1237. }
  1238. function applyWindowClasses(oList)
  1239. {
  1240. var bAlternate = false;
  1241. oListItems = oList.getElementsByTagName("LI");
  1242. for (i = 0; i < oListItems.length; i++)
  1243. {
  1244. // Skip dummies.
  1245. if (oListItems[i].id == "")
  1246. continue;
  1247. oListItems[i].className = "windowbg" + (bAlternate ? "2" : "");
  1248. bAlternate = !bAlternate;
  1249. }
  1250. }
  1251. function reActivate()
  1252. {
  1253. document.forms.postmodify.message.readOnly = false;
  1254. }
  1255. // The actual message icon selector.
  1256. function showimage()
  1257. {
  1258. document.images.icons.src = icon_urls[document.forms.postmodify.icon.options[document.forms.postmodify.icon.selectedIndex].value];
  1259. }
  1260. function pollOptions()
  1261. {
  1262. var expire_time = document.getElementById('poll_expire');
  1263. if (isEmptyText(expire_time) || expire_time.value == 0)
  1264. {
  1265. document.forms.postmodify.poll_hide[2].disabled = true;
  1266. if (document.forms.postmodify.poll_hide[2].checked)
  1267. document.forms.postmodify.poll_hide[1].checked = true;
  1268. }
  1269. else
  1270. document.forms.postmodify.poll_hide[2].disabled = false;
  1271. }
  1272. function generateDays(offset)
  1273. {
  1274. // Work around JavaScript's lack of support for default values...
  1275. offset = typeof(offset) != 'undefined' ? offset : 0;
  1276. var days = 0, selected = 0;
  1277. var dayElement = document.getElementById("day" + offset), yearElement = document.getElementById("year" + offset), monthElement = document.getElementById("month" + offset);
  1278. monthLength[1] = 28;
  1279. if (yearElement.options[yearElement.selectedIndex].value % 4 == 0)
  1280. monthLength[1] = 29;
  1281. selected = dayElement.selectedIndex;
  1282. while (dayElement.options.length)
  1283. dayElement.options[0] = null;
  1284. days = monthLength[monthElement.value - 1];
  1285. for (i = 1; i <= days; i++)
  1286. dayElement.options[dayElement.length] = new Option(i, i);
  1287. if (selected < days)
  1288. dayElement.selectedIndex = selected;
  1289. }
  1290. function toggleLinked(form)
  1291. {
  1292. form.board.disabled = !form.link_to_board.checked;
  1293. }
  1294. function initSearch()
  1295. {
  1296. if (document.forms.searchform.search.value.indexOf("%u") != -1)
  1297. document.forms.searchform.search.value = unescape(document.forms.searchform.search.value);
  1298. }
  1299. function selectBoards(ids, aFormID)
  1300. {
  1301. var toggle = true;
  1302. var aForm = document.getElementById(aFormID);
  1303. for (i = 0; i < ids.length; i++)
  1304. toggle = toggle & aForm["brd" + ids[i]].checked;
  1305. for (i = 0; i < ids.length; i++)
  1306. aForm["brd" + ids[i]].checked = !toggle;
  1307. }
  1308. function expandCollapseBoards()
  1309. {
  1310. var current = document.getElementById("searchBoardsExpand").style.display != "none";
  1311. $("#searchBoardsExpand").slideToggle(300);
  1312. document.getElementById("expandBoardsIcon").src = smf_images_url + (current ? "/expand.png" : "/collapse.png");
  1313. }
  1314. function expandCollapseLabels()
  1315. {
  1316. var current = document.getElementById("searchLabelsExpand").style.display != "none";
  1317. $("#searchLabelsExpand").slideToggle();
  1318. document.getElementById("expandLabelsIcon").src = smf_images_url + (current ? "/expand.png" : "/collapse.png");
  1319. }
  1320. function updateRuleDef(optNum)
  1321. {
  1322. if (document.getElementById("ruletype" + optNum).value == "gid")
  1323. {
  1324. document.getElementById("defdiv" + optNum).style.display = "none";
  1325. document.getElementById("defseldiv" + optNum).style.display = "";
  1326. }
  1327. else if (document.getElementById("ruletype" + optNum).value == "bud" || document.getElementById("ruletype" + optNum).value == "")
  1328. {
  1329. document.getElementById("defdiv" + optNum).style.display = "none";
  1330. document.getElementById("defseldiv" + optNum).style.display = "none";
  1331. }
  1332. else
  1333. {
  1334. document.getElementById("defdiv" + optNum).style.display = "";
  1335. document.getElementById("defseldiv" + optNum).style.display = "none";
  1336. }
  1337. }
  1338. function updateActionDef(optNum)
  1339. {
  1340. if (document.getElementById("acttype" + optNum).value == "lab")
  1341. {
  1342. document.getElementById("labdiv" + optNum).style.display = "";
  1343. }
  1344. else
  1345. {
  1346. document.getElementById("labdiv" + optNum).style.display = "none";
  1347. }
  1348. }
  1349. function smfSetLatestPackages()
  1350. {
  1351. if (typeof(window.smfLatestPackages) != "undefined")
  1352. setInnerHTML(document.getElementById("packagesLatest"), window.smfLatestPackages);
  1353. if (tempOldOnload)
  1354. tempOldOnload();
  1355. }
  1356. function updateAuthMethod()
  1357. {
  1358. // What authentication method is being used?
  1359. if (!document.getElementById("auth_openid") || !document.getElementById("auth_openid").checked)
  1360. currentAuthMethod = "passwd";
  1361. else
  1362. currentAuthMethod = "openid";
  1363. // No openID?
  1364. if (!document.getElementById("auth_openid"))
  1365. return true;
  1366. document.forms.creator.openid_url.disabled = currentAuthMethod == "openid" ? false : true;
  1367. document.forms.creator.smf_autov_pwmain.disabled = currentAuthMethod == "passwd" ? false : true;
  1368. document.forms.creator.smf_autov_pwverify.disabled = currentAuthMethod == "passwd" ? false : true;
  1369. document.getElementById("smf_autov_pwmain_div").style.display = currentAuthMethod == "passwd" ? "" : "none";
  1370. document.getElementById("smf_autov_pwverify_div").style.display = currentAuthMethod == "passwd" ? "" : "none";
  1371. if (currentAuthMethod == "passwd")
  1372. {
  1373. verificationHandle.refreshMainPassword();
  1374. verificationHandle.refreshVerifyPassword();
  1375. document.forms.creator.openid_url.style.backgroundColor = "";
  1376. document.getElementById("auth_openid_div").style.display = "none";
  1377. document.getElementById("auth_pass_div").style.display = "";
  1378. }
  1379. else
  1380. {
  1381. document.forms.creator.smf_autov_pwmain.style.backgroundColor ="";
  1382. document.forms.creator.smf_autov_pwverify.style.backgroundColor = "";
  1383. document.forms.creator.openid_url.style.backgroundColor = "#FCE184";
  1384. document.getElementById("auth_openid_div").style.display = "";
  1385. document.getElementById("auth_pass_div").style.display = "none";
  1386. }
  1387. }