You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: Jon O. <jon...@us...> - 2006-09-17 14:48:00
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv28791/modules/mx_simpledoc/simpledoc Modified Files: simpledoc_common.php Log Message: debug option Index: simpledoc_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/simpledoc_common.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** simpledoc_common.php 27 Aug 2006 18:13:39 -0000 1.4 --- simpledoc_common.php 17 Sep 2006 14:47:57 -0000 1.5 *************** *** 14,17 **** --- 14,19 ---- } + $simpledoc_debug = false; + // =================================================== // Include pafiledb data file |
|
From: Jon O. <jon...@us...> - 2006-09-17 14:39:28
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25469/modules/mx_simpledoc/simpledoc/includes/js Modified Files: init_main.js init_view.js management.js.php request.js.php Log Message: Ok, several annoying JS bugs and more are solved... Index: init_main.js =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js/init_main.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** init_main.js 23 Apr 2006 19:21:27 -0000 1.1 --- init_main.js 17 Sep 2006 14:39:23 -0000 1.2 *************** *** 9,16 **** window.onload = initialize; ! tree.textClickListener.add(function() { ! if (document.getElementById("tree-insert-form").style.display == "block") { ! treeInsert(); ! } }); --- 9,16 ---- window.onload = initialize; ! tree.textClickListener.add(function() { ! if (document.getElementById("tree-insert-form").style.display == "block") { ! treeInsert(); ! } }); *************** *** 31,36 **** } }); ! ! tree.textClickListener.add(function() { if (tree.getActiveNode().isDocument()) { if (getCookie('openEditContent')) editContent(); --- 31,36 ---- } }); ! ! tree.textClickListener.add(function() { if (tree.getActiveNode().isDocument()) { if (getCookie('openEditContent')) editContent(); *************** *** 51,61 **** dhtmlHistory.addListener(handleHistoryChange); ! if (dhtmlHistory.isFirstLoad()) { // determine our current location so we can initialize ourselves at startup var initialLocation = dhtmlHistory.getCurrentLocation(); // if no location specified, use the default ! if (initialLocation == '' || initialLocation == null) { if (tree.allNodes[0].childNodes) { for (var i = 0; i < tree.allNodes[0].childNodes.length; i++) { if (tree.allNodes[0].childNodes[i].isDocument()) { --- 51,65 ---- dhtmlHistory.addListener(handleHistoryChange); ! if (dhtmlHistory.isFirstLoad()) ! { // determine our current location so we can initialize ourselves at startup var initialLocation = dhtmlHistory.getCurrentLocation(); // if no location specified, use the default ! if ((initialLocation == '' || initialLocation == null) && tree.allNodes[0]) ! { if (tree.allNodes[0].childNodes) { + // First set default, then loop to find real document + queryPath = tree.allNodes[0].id; for (var i = 0; i < tree.allNodes[0].childNodes.length; i++) { if (tree.allNodes[0].childNodes[i].isDocument()) { *************** *** 63,67 **** break; } ! } } else --- 67,71 ---- break; } ! } } else *************** *** 69,77 **** queryPath = tree.allNodes[0].id; } initialLocation = queryPath.replace('tree-', ""); ! } ! // now initialize our starting UI ! updateUI(initialLocation, null); } } --- 73,85 ---- queryPath = tree.allNodes[0].id; } + initialLocation = queryPath.replace('tree-', ""); ! } ! // now initialize our starting UI ! if (tree.allNodes[0]) ! { ! updateUI(initialLocation, null); ! } } } *************** *** 82,86 **** function handleHistoryChange(newLocation, historyData) { // use the history data to update our UI ! updateUI(newLocation, historyData); } --- 90,94 ---- function handleHistoryChange(newLocation, historyData) { // use the history data to update our UI ! updateUI(newLocation, historyData); } *************** *** 124,128 **** function treeMoveUp() { ! if (tree.mayMoveUp() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveUp&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveUp(); } else { --- 132,136 ---- function treeMoveUp() { ! if (tree.mayMoveUp() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveUp&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveUp(); } else { *************** *** 131,135 **** } function treeMoveDown() { ! if (tree.mayMoveDown() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveDown&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveDown(); } else { --- 139,143 ---- } function treeMoveDown() { ! if (tree.mayMoveDown() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveDown&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveDown(); } else { *************** *** 138,142 **** } function treeMoveLeft() { ! if (tree.mayMoveLeft() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveLeft&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveLeft(); } else { --- 146,150 ---- } function treeMoveLeft() { ! if (tree.mayMoveLeft() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveLeft&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveLeft(); } else { *************** *** 145,149 **** } function treeMoveRight() { ! if (tree.mayMoveRight() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveRight&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveRight(); } else { --- 153,157 ---- } function treeMoveRight() { ! if (tree.mayMoveRight() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveRight&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveRight(); } else { *************** *** 182,186 **** name.value = name.value.substr(0, name.value.length-5); } ! var id = escape(name.value); if (type.value != "folder") { id = name.value + ".html"; --- 190,194 ---- name.value = name.value.substr(0, name.value.length-5); } ! var id = encodeURIComponent(name.value); if (type.value != "folder") { id = name.value + ".html"; *************** *** 189,209 **** switch (where.value) { case "before": ! alert("&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id); ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertBefore&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertBefore(id, name.value, type.value); } break; case "after": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertAfter&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertAfter(id, name.value, type.value); } break; case "inside_start": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtStart&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtStart(id, name.value, type.value); } break; case "inside_end": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtEnd&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtEnd(id, name.value, type.value); } --- 197,217 ---- switch (where.value) { case "before": ! //alert("&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id); ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertBefore&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertBefore(id, name.value, type.value); } break; case "after": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertAfter&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertAfter(id, name.value, type.value); } break; case "inside_start": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtStart&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtStart(id, name.value, type.value); } break; case "inside_end": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtEnd&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtEnd(id, name.value, type.value); } *************** *** 211,215 **** } } else { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insert&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insert(id, name.value, type.value); } --- 219,223 ---- } } else { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insert&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insert(id, name.value, type.value); } *************** *** 228,232 **** if (tree.mayRemove()) { if (confirm("Delete current node ?")) { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=remove&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.remove(); if (document.getElementById("tree-insert-form").style.display == "block") { --- 236,240 ---- if (tree.mayRemove()) { if (confirm("Delete current node ?")) { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=remove&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.remove(); if (document.getElementById("tree-insert-form").style.display == "block") { Index: request.js.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js/request.js.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** request.js.php 23 Apr 2006 19:21:27 -0000 1.1 --- request.js.php 17 Sep 2006 14:39:23 -0000 1.2 *************** *** 88,92 **** } if (req.responseText.length) { ! return req.responseText; } return true; --- 88,93 ---- } if (req.responseText.length) { ! alert(req.responseText); ! return false; } return true; Index: init_view.js =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js/init_view.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** init_view.js 23 Apr 2006 19:21:27 -0000 1.1 --- init_view.js 17 Sep 2006 14:39:23 -0000 1.2 *************** *** 14,18 **** documentView(); dhtmlHistory.add( treeGetId(), el(tree.active+"-text").innerHTML ); ! queryPath = tree.getActiveNode().id; tree.queryPath = queryPath.replace('tree-', ""); --- 14,18 ---- documentView(); dhtmlHistory.add( treeGetId(), el(tree.active+"-text").innerHTML ); ! queryPath = tree.getActiveNode().id; tree.queryPath = queryPath.replace('tree-', ""); *************** *** 25,29 **** { el('tabs-data').innerHTML = ""; ! } }); --- 25,29 ---- { el('tabs-data').innerHTML = ""; ! } }); *************** *** 31,44 **** tree.textClickListener.add(function() { if (!tree.getActiveNode().isDocument()) { ! generateParentTOC('view'); dhtmlHistory.add( treeGetId(), el(tree.active+"-text").innerHTML ); ! //queryPath = tree.getActiveNode().id; //tree.queryPath = queryPath.replace('tree-', ""); //tree.active = queryPath; //tree.loadState(); ! //tree.updateHtml(); ! //if (tree.getActiveNode().childNodes) { //for (var i = 0; i < tree.getActiveNode().childNodes.length; i++) { --- 31,44 ---- tree.textClickListener.add(function() { if (!tree.getActiveNode().isDocument()) { ! generateParentTOC('view'); dhtmlHistory.add( treeGetId(), el(tree.active+"-text").innerHTML ); ! //queryPath = tree.getActiveNode().id; //tree.queryPath = queryPath.replace('tree-', ""); //tree.active = queryPath; //tree.loadState(); ! //tree.updateHtml(); ! //if (tree.getActiveNode().childNodes) { //for (var i = 0; i < tree.getActiveNode().childNodes.length; i++) { *************** *** 59,73 **** // initialize RSH dhtmlHistory.initialize(); ! // add ourselves as a listener for history change events dhtmlHistory.addListener(handleHistoryChange); ! ! if (dhtmlHistory.isFirstLoad()) { // determine our current location so we can initialize ourselves at startup var initialLocation = dhtmlHistory.getCurrentLocation(); // if no location specified, use the default ! if (initialLocation == '' || initialLocation == null) { if (tree.allNodes[0].childNodes) { for (var i = 0; i < tree.allNodes[0].childNodes.length; i++) { if (tree.allNodes[0].childNodes[i].isDocument()) { --- 59,77 ---- // initialize RSH dhtmlHistory.initialize(); ! // add ourselves as a listener for history change events dhtmlHistory.addListener(handleHistoryChange); ! ! if (dhtmlHistory.isFirstLoad()) ! { // determine our current location so we can initialize ourselves at startup var initialLocation = dhtmlHistory.getCurrentLocation(); // if no location specified, use the default ! if ((initialLocation == '' || initialLocation == null) && tree.allNodes[0]) ! { if (tree.allNodes[0].childNodes) { + // First set default, then loop to find real document + queryPath = tree.allNodes[0].id; for (var i = 0; i < tree.allNodes[0].childNodes.length; i++) { if (tree.allNodes[0].childNodes[i].isDocument()) { *************** *** 75,79 **** break; } ! } } else --- 79,83 ---- break; } ! } } else *************** *** 82,89 **** } initialLocation = queryPath.replace('tree-', ""); ! } ! // now initialize our starting UI ! updateUI(initialLocation, null); } } --- 86,96 ---- } initialLocation = queryPath.replace('tree-', ""); ! } ! // now initialize our starting UI ! if (tree.allNodes[0]) ! { ! updateUI(initialLocation, null); ! } } } *************** *** 94,98 **** function handleHistoryChange(newLocation, historyData) { // use the history data to update our UI ! updateUI(newLocation, historyData); } --- 101,105 ---- function handleHistoryChange(newLocation, historyData) { // use the history data to update our UI ! updateUI(newLocation, historyData); } Index: management.js.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js/management.js.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** management.js.php 23 Apr 2006 19:21:27 -0000 1.1 --- management.js.php 17 Sep 2006 14:39:23 -0000 1.2 *************** *** 69,73 **** ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } --- 69,73 ---- ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } *************** *** 78,82 **** } checkContentSaved(); ! AjaxRequest.get( { --- 78,82 ---- } checkContentSaved(); ! AjaxRequest.get( { *************** *** 90,94 **** ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } --- 90,94 ---- ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } *************** *** 111,115 **** return; } ! AjaxRequest.get( { --- 111,115 ---- return; } ! AjaxRequest.get( { *************** *** 123,127 **** ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } --- 123,127 ---- ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } *************** *** 131,135 **** return; } ! AjaxRequest.get( { --- 131,135 ---- return; } ! AjaxRequest.get( { *************** *** 143,151 **** ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } function saveContent(theform) { ! tabsSavingOn(); el('save-document').disabled = true; --- 143,151 ---- ,'onTimeout':function(){ clearTabs(); tabsLoadingOff(); el('tabs-data').innerHTML = 'Timed out. Try again!'; } } ! ); } function saveContent(theform) { ! tabsSavingOn(); el('save-document').disabled = true; *************** *** 158,169 **** } ); ! el('save-document').disabled = false; ! el('body-tmp').value = el('body').value; tabsSavingOff(); //var data = {"body": el('body').value} //var save = httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__tab-save-content.php?id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id, data); ! if ((typeof status == "boolean" && !status) || typeof status == "string") { alert("Unknown error, cannot save document."); --- 158,169 ---- } ); ! el('save-document').disabled = false; ! el('body-tmp').value = el('body').value; tabsSavingOff(); //var data = {"body": el('body').value} //var save = httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__tab-save-content.php?id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id, data); ! if ((typeof status == "boolean" && !status) || typeof status == "string") { alert("Unknown error, cannot save document."); *************** *** 173,177 **** savedTimerID = setTimeout(function(){ el("saved").innerHTML = ""; }, 3000); } ! return status; } --- 173,177 ---- savedTimerID = setTimeout(function(){ el("saved").innerHTML = ""; }, 3000); } ! return status; } *************** *** 182,188 **** var contents = ""; var link = escape(treeGetId()); ! contents = '<div><a target="_blank" href="index.php?page='+mxBlock.page_id+'&mode='+mode+'#'+link+'">Permanent Link to this page</a></div>'; ! var all = document.getElementById("tabs-data").childNodes; var contents2 = ""; --- 182,188 ---- var contents = ""; var link = escape(treeGetId()); ! contents = '<div><a target="_blank" href="index.php?page='+mxBlock.page_id+'&mode='+mode+'#'+link+'">Permanent Link to this page</a></div>'; ! var all = document.getElementById("tabs-data").childNodes; var contents2 = ""; *************** *** 190,199 **** var found = false; var h3 = false; ! contents2 += '<b>Contents</b><ul>'; for (var i = 0; i < all.length; ++i) { if (all[i].nodeName == "H2" || all[i].nodeName == "H3") { ! if (all[i].nodeName == "H2") { if (h3) contents2 += '</ul>'; --- 190,199 ---- var found = false; var h3 = false; ! contents2 += '<b>Contents</b><ul>'; for (var i = 0; i < all.length; ++i) { if (all[i].nodeName == "H2" || all[i].nodeName == "H3") { ! if (all[i].nodeName == "H2") { if (h3) contents2 += '</ul>'; *************** *** 204,208 **** h3 = true; } ! found = true; text = all[i].innerHTML.replace(/<[^>]+>/g,""); --- 204,208 ---- h3 = true; } ! found = true; text = all[i].innerHTML.replace(/<[^>]+>/g,""); *************** *** 210,214 **** contents2 += '<li><a href="index.php?page='+mxBlock.page_id+'&mode='+mode+'#'+text+'">'+text+'</a></li>'; } ! } contents2 += '</ul>'; --- 210,214 ---- contents2 += '<li><a href="index.php?page='+mxBlock.page_id+'&mode='+mode+'#'+text+'">'+text+'</a></li>'; } ! } contents2 += '</ul>'; *************** *** 233,241 **** var title = "<h1>Section Contents</h1>"; var s = ''; ! if(!document.getElementById("sectioncontents")) { document.getElementById("tabs-data").innerHTML = addTocDiv(''); } ! var node = tree.getActiveNode(); while (node && node.parentNode) { --- 233,241 ---- var title = "<h1>Section Contents</h1>"; var s = ''; ! if(!document.getElementById("sectioncontents")) { document.getElementById("tabs-data").innerHTML = addTocDiv(''); } ! var node = tree.getActiveNode(); while (node && node.parentNode) { *************** *** 244,250 **** } loc = '<a href="index.php?page='+mxBlock.page_id+'&mode='+mode+'">Table of Contents</a> ' + loc; ! node = tree.getActiveNode(); ! if (node.childNodes) { for (var i = 0; i < node.childNodes.length; i++) { contents2 += node.childNodes[i].toToc(); --- 244,250 ---- } loc = '<a href="index.php?page='+mxBlock.page_id+'&mode='+mode+'">Table of Contents</a> ' + loc; ! node = tree.getActiveNode(); ! if (node.childNodes) { for (var i = 0; i < node.childNodes.length; i++) { contents2 += node.childNodes[i].toToc(); *************** *** 253,257 **** contents2 = contents2 != '' ? title + contents2 : ''; contents = loc + ' <hr align="left"> ' + contents2; ! if (contents) { document.getElementById("sectioncontents").className = "sectioncontents"; --- 253,257 ---- contents2 = contents2 != '' ? title + contents2 : ''; contents = loc + ' <hr align="left"> ' + contents2; ! if (contents) { document.getElementById("sectioncontents").className = "sectioncontents"; *************** *** 276,293 **** // Remove all SCRIPT tags //html = html.replace(/<\s*SCRIPT[^>]*>([^<]*)<\/\s*SCRIPT\s*>/i, "" ); ! // Remove all SPAN tags ! //html = html.replace(/<\/?\s*SPAN[^>]*>/gi, "" ); ! // Remove all STYLE tags //html = html.replace(/<\s*STYLE[^>]*>([^<]*)<\/\s*STYLE\s*>/i, "" ); // Remove Class attributes //html = html.replace(/<\s*(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "") ; // Remove Style attributes ! //html = html.replace(/<\s*(\w[^>]*) style="([^"]*)"([^>]*)/gi, "") ; ! ! html = html.replace(/<\s*br[^>]*>/gi,""); ! html = html.trim(); ! return html; } --- 276,293 ---- // Remove all SCRIPT tags //html = html.replace(/<\s*SCRIPT[^>]*>([^<]*)<\/\s*SCRIPT\s*>/i, "" ); ! // Remove all SPAN tags ! //html = html.replace(/<\/?\s*SPAN[^>]*>/gi, "" ); ! // Remove all STYLE tags //html = html.replace(/<\s*STYLE[^>]*>([^<]*)<\/\s*STYLE\s*>/i, "" ); // Remove Class attributes //html = html.replace(/<\s*(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "") ; // Remove Style attributes ! //html = html.replace(/<\s*(\w[^>]*) style="([^"]*)"([^>]*)/gi, "") ; ! ! //html = html.replace(/<\s*br[^>]*>/gi,""); ! html = html.trim(); ! return html; } |
|
From: Jon O. <jon...@us...> - 2006-09-17 14:39:27
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/modules In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25469/modules/mx_simpledoc/simpledoc/modules Modified Files: simpledoc__node.php simpledoc__tab-view-content.php simpledoc__tab-view-publish.php Log Message: Ok, several annoying JS bugs and more are solved... Index: simpledoc__tab-view-publish.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-view-publish.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simpledoc__tab-view-publish.php 2 May 2006 23:29:00 -0000 1.2 --- simpledoc__tab-view-publish.php 17 Sep 2006 14:39:24 -0000 1.3 *************** *** 134,139 **** ?> ! <?php echo '<div id="parentTOC"></div>' ?> ! <?php echo mx_decode($html,''); ?> ! ! --- 134,137 ---- ?> ! <?php echo '<div id="parentTOC"></div>' ?> ! <?php echo $html; ?> Index: simpledoc__node.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__node.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simpledoc__node.php 2 May 2006 23:29:00 -0000 1.2 --- simpledoc__node.php 17 Sep 2006 14:39:24 -0000 1.3 *************** *** 85,93 **** include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! set_error_handler('logError'); $LOGERROR = 'error.txt'; $do = get('do'); ! $id = get('id'); $name = get('name'); $is_folder = get('is_folder'); --- 85,117 ---- include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! // error handler function ! function myErrorHandler($errno, $errstr, $errfile, $errline) ! { ! switch ($errno) { ! case E_USER_ERROR: ! $Node->error = true; ! echo "<b>My ERROR</b> [$errno] $errstr<br />\n"; ! echo " Fatal error in line $errline of file $errfile"; ! echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")<br />\n"; ! echo "Aborting...<br />\n"; ! exit(1); ! break; ! case E_USER_WARNING: ! echo "<b>My WARNING</b> [$errno] $errstr<br />\n"; ! break; ! case E_USER_NOTICE: ! echo "<b>My NOTICE</b> [$errno] $errstr<br />\n"; ! break; ! default: ! // echo "Unknown error type: [$errno] $errstr<br />\n"; ! break; ! } ! } ! ! set_error_handler('myErrorHandler'); $LOGERROR = 'error.txt'; $do = get('do'); ! $id = urldecode(get('id')); // reverse the js encodeURIComponent $name = get('name'); $is_folder = get('is_folder'); Index: simpledoc__tab-view-content.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-view-content.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simpledoc__tab-view-content.php 2 May 2006 23:29:00 -0000 1.2 --- simpledoc__tab-view-content.php 17 Sep 2006 14:39:24 -0000 1.3 *************** *** 70,74 **** if ( !( ( $mx_block->auth_view && $mx_block->show_block ) || $mx_block->auth_mod ) ) { ! echo('sNot authorized - 4'); return; } --- 70,74 ---- if ( !( ( $mx_block->auth_view && $mx_block->show_block ) || $mx_block->auth_mod ) ) { ! echo('Not authorized - 4'); return; } *************** *** 110,115 **** ?> ! ! <?php echo mx_decode($html,''); ?> ! ! --- 110,112 ---- ?> ! <?php echo $html ?> |
|
From: Jon O. <jon...@us...> - 2006-09-17 14:39:27
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/shared/DynamicTree In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25469/modules/mx_simpledoc/simpledoc/shared/DynamicTree Modified Files: DynamicTree.js Log Message: Ok, several annoying JS bugs and more are solved... Index: DynamicTree.js =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/shared/DynamicTree/DynamicTree.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DynamicTree.js 23 Apr 2006 19:21:28 -0000 1.1 --- DynamicTree.js 17 Sep 2006 14:39:24 -0000 1.2 *************** *** 131,135 **** } }; ! // // Simulate the loadState cookie behaviour --- 131,135 ---- } }; ! // // Simulate the loadState cookie behaviour *************** *** 148,152 **** } }; ! this.saveState = function() { if (this.opened.length) { --- 148,152 ---- } }; ! this.saveState = function() { if (this.opened.length) { *************** *** 245,248 **** --- 245,249 ---- }; this.createNode = function(id, text, type) { + alert(id + ' ' + text); if (!id || findNode(id) || !text || (type != "doc" && type != "folder")) { throw this.id+'.createNode("'+id+'", "'+text+'", "'+type+'") failed, illegal action'; *************** *** 459,463 **** return s; }; ! this.toToc = function(parentNode) { var s = ''; --- 460,464 ---- return s; }; ! this.toToc = function(parentNode) { var s = ''; *************** *** 466,470 **** if (this.isFolder) { s += '<li><a href="javascript:void(0)"><span id="'+this.id+'-text" class="text'+(self.active == this.id ? '-active' : '')+'" '+(this.childNodes.length ? 'ondblclick="tree.nodeClick(\''+this.id+'\'); this.blur();"' : "")+' onclick="tree.textClick(\''+this.id+'\')">'+this.text+'</span></a></li>'; ! if (this.childNodes.length) { for (var i = 0; i < this.childNodes.length; i++) { --- 467,471 ---- if (this.isFolder) { s += '<li><a href="javascript:void(0)"><span id="'+this.id+'-text" class="text'+(self.active == this.id ? '-active' : '')+'" '+(this.childNodes.length ? 'ondblclick="tree.nodeClick(\''+this.id+'\'); this.blur();"' : "")+' onclick="tree.textClick(\''+this.id+'\')">'+this.text+'</span></a></li>'; ! if (this.childNodes.length) { for (var i = 0; i < this.childNodes.length; i++) { *************** *** 476,488 **** s += '<li><a href="javascript:void(0)"><span id="'+this.id+'-text" class="text'+(self.active == this.id ? '-active' : '')+'" onclick="tree.textClick(\''+this.id+'\')">'+this.text+'</span></a></li>'; } ! if (s != '') { } ! s += '</ul>'; return s; ! }; } ! function Listener() { this.funcs = []; --- 477,489 ---- s += '<li><a href="javascript:void(0)"><span id="'+this.id+'-text" class="text'+(self.active == this.id ? '-active' : '')+'" onclick="tree.textClick(\''+this.id+'\')">'+this.text+'</span></a></li>'; } ! if (s != '') { } ! s += '</ul>'; return s; ! }; } ! function Listener() { this.funcs = []; *************** *** 496,500 **** }; } ! function findNode(id) { for (var i = 0; i < self.allNodes.length; ++i) { --- 497,501 ---- }; } ! function findNode(id) { for (var i = 0; i < self.allNodes.length; ++i) { *************** *** 533,537 **** } }; ! // // Fix for initializing the active entry --- 534,538 ---- } }; ! // // Fix for initializing the active entry *************** *** 546,550 **** this.active = 'tree-' + this.queryPath; this.textClickListener.call(); ! }; var self = this; --- 547,551 ---- this.active = 'tree-' + this.queryPath; this.textClickListener.call(); ! }; var self = this; |
|
From: Jon O. <jon...@us...> - 2006-09-17 14:39:27
|
Update of /cvsroot/mxbb/mx_simpledoc/language/lang_english In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25469/modules/mx_simpledoc/language/lang_english Modified Files: lang_admin.php lang_main.php Log Message: Ok, several annoying JS bugs and more are solved... Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/language/lang_english/lang_main.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_main.php 14 Aug 2006 10:50:28 -0000 1.2 --- lang_main.php 17 Sep 2006 14:39:23 -0000 1.3 *************** *** 79,87 **** $lang['sd_p_Publish'] = 'Publish'; - // - // editCP parameters - // - $lang['project_name'] = 'The project title'; - $lang['project_folder'] = 'The project folder'; - $lang['project_folder_explain'] = 'This is the system path folder to the documents. Caution! If you change this, the document may be lost'; ?> \ No newline at end of file --- 79,81 ---- Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/language/lang_english/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 14 Aug 2006 10:50:28 -0000 1.2 --- lang_admin.php 17 Sep 2006 14:39:23 -0000 1.3 *************** *** 9,11 **** --- 9,18 ---- */ + // + // editCP parameters + // + $lang['project_name'] = 'The project title'; + $lang['project_folder'] = 'The project folder'; + $lang['project_folder_explain'] = 'This is the system path folder to the documents. Caution! If you change this, the document may be lost'; + ?> \ No newline at end of file |
|
From: Jon O. <jon...@us...> - 2006-09-17 14:39:27
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25469/modules/mx_simpledoc/simpledoc/includes Modified Files: functions_node.php Log Message: Ok, several annoying JS bugs and more are solved... Index: functions_node.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/functions_node.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions_node.php 17 Jun 2006 20:50:47 -0000 1.2 --- functions_node.php 17 Sep 2006 14:39:23 -0000 1.3 *************** *** 44,47 **** --- 44,49 ---- var $chmodDir = 777; + var $error = false; + function Node($id = '') { *************** *** 55,58 **** --- 57,62 ---- $this->path = $this->root.'/'.$this->id; $this->level = substr_count($this->id, '/'); + + //trigger_error("Info: '{$this->path}' ", E_USER_ERROR); if ($this->id) { if (IoFile::exists($this->path)) { *************** *** 74,77 **** --- 78,82 ---- function moveUp() { + trigger_error("Node.moveUp() failed, this action cannot be executed for the root element", E_USER_ERROR); if (!$this->id) { return trigger_error("Node.moveUp() failed, this action cannot be executed for the root element", E_USER_ERROR); } $nodes = $this->loadSort($this->currFolder); |
|
From: Jon O. <jon...@us...> - 2006-09-17 11:08:23
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17433 Modified Files: .htaccess common.php Log Message: register globals fixes Index: .htaccess =================================================================== RCS file: /cvsroot/mxbb/core/.htaccess,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** .htaccess 14 Sep 2006 18:01:15 -0000 1.5 --- .htaccess 17 Sep 2006 11:08:16 -0000 1.6 *************** *** 6,16 **** # Just in case, let's disable register globals. ! php_flag "register_globals" "0" # Disable the security module ! #SecFilterEngine off # Disable eaccelerator ! #php_flag eaccelerator.enable 0 # --- 6,16 ---- # Just in case, let's disable register globals. ! php_flag register_globals 0 # Disable the security module ! # SecFilterEngine off # Disable eaccelerator ! # php_flag eaccelerator.enable 0 # Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** common.php 6 Sep 2006 19:59:00 -0000 1.59 --- common.php 17 Sep 2006 11:08:16 -0000 1.60 *************** *** 68,75 **** { // PHP4+ path ! $not_unset = array('HTTP_GET_VARS', 'HTTP_POST_VARS', 'HTTP_COOKIE_VARS', 'HTTP_SERVER_VARS', 'HTTP_SESSION_VARS', 'HTTP_ENV_VARS', 'HTTP_POST_FILES', 'phpEx', 'phpbb_root_path'); ! //+MOD: Added by mxBB ! $not_unset[] = 'mx_root_path'; ! //-MOD: Added by mxBB // Not only will array_merge give a warning if a parameter --- 68,72 ---- { // PHP4+ path ! $not_unset = array('HTTP_GET_VARS', 'HTTP_POST_VARS', 'HTTP_COOKIE_VARS', 'HTTP_SERVER_VARS', 'HTTP_SESSION_VARS', 'HTTP_ENV_VARS', 'HTTP_POST_FILES', 'phpEx', 'phpbb_root_path', 'mx_root_path'); // Not only will array_merge give a warning if a parameter |
|
From: Jon O. <jon...@us...> - 2006-09-17 11:08:21
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17433/install Modified Files: mx_install.php Log Message: register globals fixes Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** mx_install.php 14 Sep 2006 20:08:15 -0000 1.72 --- mx_install.php 17 Sep 2006 11:08:17 -0000 1.73 *************** *** 73,76 **** --- 73,79 ---- include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.php'); // For nice error output + // ================================================================================ + // The following code is based on common.php from phpBB + // ================================================================================ set_magic_quotes_runtime(0); // Disable magic_quotes_runtime *************** *** 79,83 **** // PHP5 with register_long_arrays off? ! if (@phpversion() >= '5.0.0' && (!ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { $HTTP_POST_VARS = $_POST; --- 82,86 ---- // PHP5 with register_long_arrays off? ! if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { $HTTP_POST_VARS = $_POST; *************** *** 115,119 **** // is not an array, it will actually fail. So we check if // HTTP_SESSION_VARS has been initialised. ! if (!isset($HTTP_SESSION_VARS) || !is_array($HTTP_SESSION_VARS)) { $HTTP_SESSION_VARS = array(); --- 118,122 ---- // is not an array, it will actually fail. So we check if // HTTP_SESSION_VARS has been initialised. ! if (!isset($HTTP_SESSION_VARS) || !is_array($HTTP_SESSION_VARS)) { $HTTP_SESSION_VARS = array(); *************** *** 125,130 **** // Note! Since array_merge() destroys numerical keys - if the array is numerically indexed, the keys get reindexed in a continuous way - we use the + operator instead // ! //$input = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_COOKIE_VARS, $HTTP_SERVER_VARS, $HTTP_SESSION_VARS, $HTTP_ENV_VARS, $HTTP_POST_FILES); ! $input = $HTTP_GET_VARS + $HTTP_POST_VARS + $HTTP_COOKIE_VARS + $HTTP_SERVER_VARS + $HTTP_SESSION_VARS + $HTTP_ENV_VARS + $HTTP_POST_FILES; unset($input['input']); --- 128,133 ---- // Note! Since array_merge() destroys numerical keys - if the array is numerically indexed, the keys get reindexed in a continuous way - we use the + operator instead // ! $input = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_COOKIE_VARS, $HTTP_SERVER_VARS, $HTTP_SESSION_VARS, $HTTP_ENV_VARS, $HTTP_POST_FILES); ! //$input = $HTTP_GET_VARS + $HTTP_POST_VARS + $HTTP_COOKIE_VARS + $HTTP_SERVER_VARS + $HTTP_SESSION_VARS + $HTTP_ENV_VARS + $HTTP_POST_FILES; unset($input['input']); *************** *** 139,143 **** unset($$var); } - unset($input); } --- 142,145 ---- *************** *** 274,282 **** // ------------------------------ - // ================================================================================ // HERE BEGINS THE PARTY... // ================================================================================ - $phpEx = substr(strrchr(__FILE__, '.'), 1); --- 276,282 ---- *************** *** 289,293 **** $process_errors = 0; - // // Send file -------------------------------------------------- --- 289,292 ---- *************** *** 307,311 **** } - // // phpInfo -------------------------------------------------- --- 306,309 ---- *************** *** 364,368 **** include($mx_root_path . "language/lang_$language/lang_admin.$phpEx"); - // // Do install -------------------------------------------------- --- 362,365 ---- |
|
From: Jon O. <jon...@us...> - 2006-09-16 18:00:13
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv28692/install/schemas Modified Files: mysql_schema_upgrade_to_2.8_a2.sql mysql_schema_upgrade_to_2.8_b2.sql mysql_schema_upgrade_to_2.8_b3.sql Log Message: Fixes Index: mysql_schema_upgrade_to_2.8_a2.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_upgrade_to_2.8_a2.sql,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mysql_schema_upgrade_to_2.8_a2.sql 4 Sep 2006 16:48:43 -0000 1.1 --- mysql_schema_upgrade_to_2.8_a2.sql 16 Sep 2006 17:59:59 -0000 1.2 *************** *** 50,52 **** # New Fields in Table `mx_table_parameter` # ! ALTER TABLE mx_table_parameter ADD parameter_auth tinyint(2) NOT NULL default '0'; --- 50,52 ---- # New Fields in Table `mx_table_parameter` # ! ALTER TABLE mx_table_parameter ADD parameter_auth tinyint(2) NOT NULL default '0' AFTER parameter_function; Index: mysql_schema_upgrade_to_2.8_b3.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_upgrade_to_2.8_b3.sql,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mysql_schema_upgrade_to_2.8_b3.sql 3 May 2006 09:17:29 -0000 1.2 --- mysql_schema_upgrade_to_2.8_b3.sql 16 Sep 2006 17:59:59 -0000 1.3 *************** *** 81,84 **** --- 81,88 ---- # New Fields in Table `mx_page` ALTER TABLE mx_table_page ADD page_main_layout varchar(255) default '' AFTER page_header; + ALTER TABLE mx_table_page MODIFY page_header varchar(255) default ''; + ALTER TABLE mx_table_page MODIFY phpbb_stats tinyint(2) NOT NULL default '-1'; + # Whats the Field Drop syntax????????????????????????????? + #ALTER TABLE mx_table_page DELETE page_graph_border; # ------------------------------------------------------------ Index: mysql_schema_upgrade_to_2.8_b2.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_upgrade_to_2.8_b2.sql,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mysql_schema_upgrade_to_2.8_b2.sql 5 Apr 2006 21:58:37 -0000 1.2 --- mysql_schema_upgrade_to_2.8_b2.sql 16 Sep 2006 17:59:59 -0000 1.3 *************** *** 7,14 **** # ------------------------------------------------------------ # ! # Removed Fields from Table `mx_page` ! # Whats the Field Drop syntax????????????????????????????? ! #ALTER TABLE mx_table_page ADD ip_filter VARCHAR(255) NOT NULL DEFAULT ''; ! ALTER TABLE mx_table_page ADD navigation_block smallint(5) unsigned NOT NULL default '0'; # ------------------------------------------------------------ --- 7,12 ---- # ------------------------------------------------------------ # ! # Updated Fields from Table `mx_page` ! ALTER TABLE mx_table_page ADD navigation_block smallint(5) unsigned NOT NULL default '0' AFTER page_main_layout; # ------------------------------------------------------------ |
|
From: Jon O. <jon...@us...> - 2006-09-14 20:18:22
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv31278/install/schemas Modified Files: mysql_schema_install.sql Log Message: mistake Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** mysql_schema_install.sql 14 Sep 2006 20:08:16 -0000 1.25 --- mysql_schema_install.sql 14 Sep 2006 20:18:19 -0000 1.26 *************** *** 1,405 **** # ! # mxBB-Portal - MySQL Schema - version 2.7.5 ! # ! # $Id$ ! # - # -------------------------------------------------------- # ! # Table structure for table `mx_block` [...974 lines suppressed...] ! `word_common` tinyint(1) unsigned NOT NULL default '0', ! PRIMARY KEY (`word_text`), ! KEY `word_id` (`word_id`) ! ) TYPE=MyISAM; ! # ! # Table structure for table 'mx_table_wordmatch' # ! DROP TABLE IF EXISTS mx_table_wordmatch; ! CREATE TABLE `mx_table_wordmatch` ( ! `block_id` mediumint(8) unsigned NOT NULL default '0', ! `word_id` mediumint(8) unsigned NOT NULL default '0', ! `title_match` tinyint(1) NOT NULL default '0', ! KEY `block_id` (`block_id`), ! KEY `word_id` (`word_id`) ! ) TYPE=MyISAM; ! |
|
From: Jon O. <jon...@us...> - 2006-09-14 20:15:41
|
Update of /cvsroot/mxbb/mx_calsnails In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv30084/modules/mx_calsnails Modified Files: db_install.php db_upgrade.php Log Message: installation mysql fix Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/db_install.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** db_install.php 12 Sep 2006 19:27:25 -0000 1.23 --- db_install.php 14 Sep 2006 20:15:34 -0000 1.24 *************** *** 51,55 **** // Table: Calendar Lite Events "CREATE TABLE " . CALLITE_EVENTS_TABLE . " ( ! event_id int(11) DEFAULT '0' NOT NULL auto_increment, username varchar(255), stamp datetime, --- 51,55 ---- // Table: Calendar Lite Events "CREATE TABLE " . CALLITE_EVENTS_TABLE . " ( ! event_id int(11) NOT NULL auto_increment, username varchar(255), stamp datetime, *************** *** 93,96 **** echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; - ?> \ No newline at end of file --- 93,95 ---- Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/db_upgrade.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** db_upgrade.php 12 Sep 2006 19:27:26 -0000 1.16 --- db_upgrade.php 14 Sep 2006 20:15:34 -0000 1.17 *************** *** 103,106 **** echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; - ?> \ No newline at end of file --- 103,105 ---- |
|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:52
|
Update of /cvsroot/mxbb/mx_pafiledb/templates/subSilver In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27103/modules/mx_pafiledb/templates/subSilver Modified Files: pa_category_body.tpl Log Message: Is_new fix Index: pa_category_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/templates/subSilver/pa_category_body.tpl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** pa_category_body.tpl 1 Aug 2006 21:03:25 -0000 1.10 --- pa_category_body.tpl 14 Sep 2006 20:08:49 -0000 1.11 *************** *** 121,127 **** <td width="100%" class="{file_rows.COLOR}"> <a href="{file_rows.U_FILE}" class="topictitle">{file_rows.FILE_NAME}</a> ! <!-- BEGIN IS_NEW_FILE --> <img src="{file_rows.FILE_NEW_IMAGE}" border="0" alt="{L_NEW_FILE}"> ! <!-- END IS_NEW_FILE --> <br><span class="genmed">{file_rows.FILE_DESC}</span> </td> --- 121,127 ---- <td width="100%" class="{file_rows.COLOR}"> <a href="{file_rows.U_FILE}" class="topictitle">{file_rows.FILE_NAME}</a> ! <!-- IF file_rows.IS_NEW_FILE --> <img src="{file_rows.FILE_NEW_IMAGE}" border="0" alt="{L_NEW_FILE}"> ! <!-- ENDIF --> <br><span class="genmed">{file_rows.FILE_DESC}</span> </td> *************** *** 130,134 **** <td valign="top" align="left" class="{file_rows.COLOR}"> <span class="gensmall"> ! {L_UPDATE_TIME}: {file_rows.DATE} • {L_DOWNLOADS}: {file_rows.FILE_DLS} • {L_SUBMITED_BY} {file_rows.POSTER} <!-- IF SHOW_RATINGS --> • {file_rows.L_RATING}: {file_rows.RATING} ({file_rows.FILE_VOTES} {L_VOTES}) {file_rows.DO_RATE} --- 130,134 ---- <td valign="top" align="left" class="{file_rows.COLOR}"> <span class="gensmall"> ! {L_UPDATE_TIME}: {file_rows.UPDATED} • {L_DOWNLOADS}: {file_rows.FILE_DLS} • {L_SUBMITED_BY} {file_rows.POSTER} <!-- IF SHOW_RATINGS --> • {file_rows.L_RATING}: {file_rows.RATING} ({file_rows.FILE_VOTES} {L_VOTES}) {file_rows.DO_RATE} |
|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:52
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27103/modules/mx_pafiledb/pafiledb/includes Modified Files: functions_pafiledb.php Log Message: Is_new fix Index: functions_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_pafiledb.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** functions_pafiledb.php 24 Aug 2006 21:13:32 -0000 1.43 --- functions_pafiledb.php 14 Sep 2006 20:08:49 -0000 1.44 *************** *** 1075,1079 **** // =================================================== $is_new = false; ! if ( time() - ( $pafiledb_config['settings_newdays'] * 24 * 60 * 60 ) < $file_rowset[$i]['file_time'] ) { $is_new = true; --- 1075,1079 ---- // =================================================== $is_new = false; ! if ( (time() - ( $pafiledb_config['settings_newdays'] * 24 * 60 * 60 )) < $file_rowset[$i]['file_time'] ) { $is_new = true; |
|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:21
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27026/install/schemas Modified Files: mysql_schema_install.sql Log Message: A couple of install bugs... Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** mysql_schema_install.sql 5 Sep 2006 17:03:46 -0000 1.24 --- mysql_schema_install.sql 14 Sep 2006 20:08:16 -0000 1.25 *************** *** 1,586 **** - # MySQL-Front Dump 2.4 # ! # Host: localhost Database: mxBB ! #-------------------------------------------------------- ! # Server version 3.23.51-nt ! ! # ! # Table structure for table 'mx_table_block' # [...962 lines suppressed...] ! INSERT INTO mx_table_parameter_option VALUES (5, 21, 'center', 'center'); ! INSERT INTO mx_table_parameter_option VALUES (6, 20, '_blank', 'New Window'); ! INSERT INTO mx_table_parameter_option VALUES (7, 20, '_self', 'Current Window'); + # -------------------------------------------------------- # ! # Table structure for table `mx_portal` # ! DROP TABLE IF EXISTS mx_table_portal; ! CREATE TABLE mx_table_portal ( ! portal_id smallint(5) unsigned NOT NULL auto_increment, ! portal_name varchar(150) default NULL, ! portal_phpbb_url varchar(255) default 'http://www.phpbb.com/phpBB/', ! portal_url varchar(255) default NULL, ! portal_version varchar(255) default NULL, ! top_phpbb_links smallint(5) unsigned NOT NULL default '1', ! PRIMARY KEY (portal_id) ! ); |
|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:20
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27026/modules/mx_navmenu Modified Files: NavigationMenu.pak Log Message: A couple of install bugs... Index: NavigationMenu.pak =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/NavigationMenu.pak,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** NavigationMenu.pak 12 Sep 2006 20:27:32 -0000 1.10 --- NavigationMenu.pak 14 Sep 2006 20:08:16 -0000 1.11 *************** *** 4,8 **** parameter=+:11=+:378=+:menu_display_style=+:Radio_single_select=+:Standard=+:a:5:{i:0;s:8:"Standard";i:1;s:6:"Simple";i:2;s:8:"Advanced";i:3;s:12:"Advanced_app";i:4;s:18:"Overall_navigation";}=+:0=+:0 parameter=+:11=+:334=+:Nav menu=+:nav_menu=+:=+:=+:0=+:10 ! parameter=+:11=+:63=+:menu_display_mode=+:Radio_single_select=+:Vertical=+:a:2:{i:0;s:8:"vertical";i:1;s:10:"horizontal";}=+:0=+:20 parameter=+:11=+:64=+:menu_page_sync=+:Boolean=+:0=+:=+:0=+:30 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 --- 4,8 ---- parameter=+:11=+:378=+:menu_display_style=+:Radio_single_select=+:Standard=+:a:5:{i:0;s:8:"Standard";i:1;s:6:"Simple";i:2;s:8:"Advanced";i:3;s:12:"Advanced_app";i:4;s:18:"Overall_navigation";}=+:0=+:0 parameter=+:11=+:334=+:Nav menu=+:nav_menu=+:=+:=+:0=+:10 ! parameter=+:11=+:63=+:menu_display_mode=+:Radio_single_select=+:vertical=+:a:2:{i:0;s:8:"vertical";i:1;s:10:"horizontal";}=+:0=+:20 parameter=+:11=+:64=+:menu_page_sync=+:Boolean=+:0=+:=+:0=+:30 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 |
|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:20
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27026/install Modified Files: mx_install.php Log Message: A couple of install bugs... Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** mx_install.php 14 Sep 2006 18:01:15 -0000 1.71 --- mx_install.php 14 Sep 2006 20:08:15 -0000 1.72 *************** *** 133,140 **** while (list($var,) = @each($input)) { ! if (!in_array($var, $not_unset)) { ! unset($$var); } } --- 133,141 ---- while (list($var,) = @each($input)) { ! if (in_array($var, $not_unset)) { ! die('Hacking attempt!'); } + unset($$var); } |
|
From: Jon O. <jon...@us...> - 2006-09-14 18:01:24
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv6813/install Modified Files: mx_install.php Log Message: register global fix for installation script updated htaccess Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** mx_install.php 4 Sep 2006 16:48:43 -0000 1.70 --- mx_install.php 14 Sep 2006 18:01:15 -0000 1.71 *************** *** 39,43 **** // This is shown in the top right corner of the installation panels. // ! define('INSTALLER_VERSION', '2.8.0'); define('INSTALLER_NAME', 'mxBB-IWizard'); --- 39,43 ---- // This is shown in the top right corner of the installation panels. // ! define('INSTALLER_VERSION', '2.1.0'); define('INSTALLER_NAME', 'mxBB-IWizard'); *************** *** 71,74 **** --- 71,76 ---- // error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables + include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.php'); // For nice error output + set_magic_quotes_runtime(0); // Disable magic_quotes_runtime *************** *** 108,112 **** { // PHP4+ path ! $not_unset = array('HTTP_GET_VARS', 'HTTP_POST_VARS', 'HTTP_COOKIE_VARS', 'HTTP_SERVER_VARS', 'HTTP_SESSION_VARS', 'HTTP_ENV_VARS', 'HTTP_POST_FILES', 'phpEx', 'phpbb_root_path'); // Not only will array_merge give a warning if a parameter --- 110,114 ---- { // PHP4+ path ! $not_unset = array('HTTP_GET_VARS', 'HTTP_POST_VARS', 'HTTP_COOKIE_VARS', 'HTTP_SERVER_VARS', 'HTTP_SESSION_VARS', 'HTTP_ENV_VARS', 'HTTP_POST_FILES', 'phpEx'); // Not only will array_merge give a warning if a parameter *************** *** 120,124 **** // Merge all into one extremely huge array; unset // this later ! $input = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_COOKIE_VARS, $HTTP_SERVER_VARS, $HTTP_SESSION_VARS, $HTTP_ENV_VARS, $HTTP_POST_FILES); unset($input['input']); --- 122,130 ---- // Merge all into one extremely huge array; unset // this later ! // ! // Note! Since array_merge() destroys numerical keys - if the array is numerically indexed, the keys get reindexed in a continuous way - we use the + operator instead ! // ! //$input = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_COOKIE_VARS, $HTTP_SERVER_VARS, $HTTP_SESSION_VARS, $HTTP_ENV_VARS, $HTTP_POST_FILES); ! $input = $HTTP_GET_VARS + $HTTP_POST_VARS + $HTTP_COOKIE_VARS + $HTTP_SERVER_VARS + $HTTP_SESSION_VARS + $HTTP_ENV_VARS + $HTTP_POST_FILES; unset($input['input']); |
|
From: Jon O. <jon...@us...> - 2006-09-14 18:01:19
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv6813 Modified Files: .htaccess Log Message: register global fix for installation script updated htaccess Index: .htaccess =================================================================== RCS file: /cvsroot/mxbb/core/.htaccess,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** .htaccess 12 Sep 2006 19:26:28 -0000 1.4 --- .htaccess 14 Sep 2006 18:01:15 -0000 1.5 *************** *** 8,11 **** --- 8,17 ---- php_flag "register_globals" "0" + # Disable the security module + #SecFilterEngine off + + # Disable eaccelerator + #php_flag eaccelerator.enable 0 + # # Limit |
|
From: Jon O. <jon...@us...> - 2006-09-14 17:41:59
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv31075/includes Modified Files: mx_functions_core.php Log Message: MS-SQL compatibility Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** mx_functions_core.php 18 Aug 2006 16:22:03 -0000 1.35 --- mx_functions_core.php 14 Sep 2006 17:41:55 -0000 1.36 *************** *** 385,389 **** AND bct.column_id = col.column_id "; $sql .= $sql_page; ! $sql .= " ORDER BY col.page_id, column_id, column_order, block_order"; if ( !$result = $db->sql_query( $sql ) ) --- 385,389 ---- AND bct.column_id = col.column_id "; $sql .= $sql_page; ! $sql .= " ORDER BY col.page_id, col.column_id, column_order, block_order"; if ( !$result = $db->sql_query( $sql ) ) |
|
From: Jon O. <jon...@us...> - 2006-09-14 09:34:38
|
Update of /cvsroot/mxbb/mx_phpbb In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv22799/modules/mx_phpbb Modified Files: mx_phpbb.php Log Message: fix Index: mx_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/mx_phpbb.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** mx_phpbb.php 11 Sep 2006 17:27:19 -0000 1.10 --- mx_phpbb.php 14 Sep 2006 09:34:33 -0000 1.11 *************** *** 19,23 **** // // phpBB pages to hide (uncomment to activate): ! $private_phpbb_script = array('profile', 'memberlist', 'privmsg'); // // --- 19,23 ---- // // phpBB pages to hide (uncomment to activate): ! $private_phpbb_script = array('memberlist', 'privmsg'); // // |
|
From: Jon O. <jon...@us...> - 2006-09-12 21:40:16
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17644/includes Modified Files: mx_functions.php Log Message: version numbers etc Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** mx_functions.php 17 Jun 2006 20:09:06 -0000 1.68 --- mx_functions.php 12 Sep 2006 20:27:31 -0000 1.69 *************** *** 893,897 **** $mx_page->page_title = $lang['mx_about_title']; ! $sql = "SELECT * FROM " . MODULE_TABLE . " ORDER BY module_id"; if( !($result = $db->sql_query($sql)) ) { --- 893,897 ---- $mx_page->page_title = $lang['mx_about_title']; ! $sql = "SELECT * FROM " . MODULE_TABLE . " ORDER BY module_name"; if( !($result = $db->sql_query($sql)) ) { *************** *** 908,912 **** if( !empty($module[$i]['module_copy']) ) { ! $mx_module_copy .= '<br />' . '<h3>' . $module[$i]['module_name'] . (!empty($module[$i]['module_version']) ? ' v. ' . $module[$i]['module_version'] : ''). '</h3>' . $module[$i]['module_desc'] . '<br />' . $module[$i]['module_copy']; } } --- 908,912 ---- if( !empty($module[$i]['module_copy']) ) { ! $mx_module_copy .= '<br />' . '<h3>' . $module[$i]['module_name'] . '</h3>' . $module[$i]['module_desc'] . (!empty($module[$i]['module_version']) ? ($module[$i]['module_version'] != 'mxBB Core Module' ? ' v. ' : ' - ' ) . $module[$i]['module_version'] : '') . '<br />' . $module[$i]['module_copy']; } } |
|
From: Jon O. <jon...@us...> - 2006-09-12 21:40:16
|
Update of /cvsroot/mxbb/core/modules/mx_rebuild_search_tables In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17644/modules/mx_rebuild_search_tables Modified Files: Rebuild Search Tables.pak Log Message: version numbers etc Index: Rebuild Search Tables.pak =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/Rebuild Search Tables.pak,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Rebuild Search Tables.pak 14 Aug 2006 10:42:13 -0000 1.4 --- Rebuild Search Tables.pak 12 Sep 2006 20:27:33 -0000 1.5 *************** *** 1,2 **** ! module=+:58=+:Reguild Search Tables=+:modules/mx_rebuild_search_tables/=+:=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 --- 1,2 ---- ! module=+:54=+:Reguild Search Tables=+:modules/mx_rebuild_search_tables/=+:=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 |
|
From: Jon O. <jon...@us...> - 2006-09-12 21:40:11
|
Update of /cvsroot/mxbb/core/modules/mx_textblocks In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17644/modules/mx_textblocks Modified Files: TextBlocks.pak Log Message: version numbers etc Index: TextBlocks.pak =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_textblocks/TextBlocks.pak,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TextBlocks.pak 14 Aug 2006 10:42:13 -0000 1.14 --- TextBlocks.pak 12 Sep 2006 20:27:33 -0000 1.15 *************** *** 1,18 **** module=+:20=+:Textblocks=+:modules/mx_textblocks/=+:mxBB Portal Textblocks=+: New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:20=+:24=+:TextBlock (phpBB)=+:BBcodes, html and smilies - defined by phpBB config=+:mx_textblock_bbcode.php=+: ! parameter=+:24=+:15=+:Text=+:phpBBTextBlock=+:Insert your text here=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - TextBlock (phpBB)=+:Demo block=+:24=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:20=+:21=+:TextBlock (Blog)=+:UserBlog Textblock=+:mx_textblock_blog.php=+: ! parameter=+:21=+:81=+:Blog=+:BBText=+:Add your text here...=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - TextBlock (Blog)=+:Demo block=+:21=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:20=+:23=+:TextBlock (Html/wysiwyg)=+:Plain html textblock, or featuring a wysiwyg editor=+:mx_textblock_html.php=+: ! parameter=+:23=+:16=+:Html=+:WysiwygTextBlock=+:Entre your Html code here=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - TextBlock (Html/wysiwyg)=+:Demo block=+:23=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:20=+:22=+:TextBlock (Customized)=+:Textblock, featuring block defined settings=+:mx_textblock_multi.php=+: --- 1,18 ---- module=+:20=+:Textblocks=+:modules/mx_textblocks/=+:mxBB Portal Textblocks=+: New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:20=+:20=+:TextBlock (phpBB)=+:BBcodes, html and smilies - defined by phpBB config=+:mx_textblock_bbcode.php=+: ! parameter=+:20=+:15=+:Text=+:phpBBTextBlock=+:Insert your text here=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - TextBlock (phpBB)=+:Demo block=+:20=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:20=+:80=+:TextBlock (Blog)=+:UserBlog Textblock=+:mx_textblock_blog.php=+: ! parameter=+:80=+:163=+:Blog=+:BBText=+:Add your text here...=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - TextBlock (Blog)=+:Demo block=+:80=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:20=+:21=+:TextBlock (Html/wysiwyg)=+:Plain html textblock, or featuring a wysiwyg editor=+:mx_textblock_html.php=+: ! parameter=+:21=+:16=+:Html=+:WysiwygTextBlock=+:Entre your Html code here=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - TextBlock (Html/wysiwyg)=+:Demo block=+:21=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:20=+:22=+:TextBlock (Customized)=+:Textblock, featuring block defined settings=+:mx_textblock_multi.php=+: *************** *** 21,28 **** parameter=+:22=+:52=+:block_style=+:Boolean=+:TRUE=+:=+:0=+:0 parameter=+:22=+:53=+:title_style=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:22=+:57=+:allow_smilies=+:Boolean=+:TRUE=+:=+:1=+:0 ! parameter=+:22=+:54=+:allow_html=+:Boolean=+:TRUE=+:=+:1=+:0 ! parameter=+:22=+:56=+:allow_bbcode=+:Boolean=+:TRUE=+:=+:1=+:0 ! parameter=+:22=+:55=+:html_tags=+:Text=+:b,i,u=+:=+:1=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - TextBlock (Customized)=+:Demo block=+:22=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 --- 21,28 ---- parameter=+:22=+:52=+:block_style=+:Boolean=+:TRUE=+:=+:0=+:0 parameter=+:22=+:53=+:title_style=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:22=+:330=+:allow_bbcode=+:Boolean=+:TRUE=+:=+:1=+:0 ! parameter=+:22=+:331=+:allow_html=+:Boolean=+:TRUE=+:=+:1=+:0 ! parameter=+:22=+:332=+:allow_smilies=+:Boolean=+:TRUE=+:=+:1=+:0 ! parameter=+:22=+:333=+:html_tags=+:Text=+:b,i,u=+:=+:1=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - TextBlock (Customized)=+:Demo block=+:22=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 |
|
From: Jon O. <jon...@us...> - 2006-09-12 21:40:07
|
Update of /cvsroot/mxbb/mx_errordocs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18131/modules/mx_errordocs Modified Files: errordocs.pak Log Message: version numbers etc Index: errordocs.pak =================================================================== RCS file: /cvsroot/mxbb/mx_errordocs/errordocs.pak,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** errordocs.pak 17 Dec 2005 13:12:00 -0000 1.2 --- errordocs.pak 12 Sep 2006 20:29:00 -0000 1.3 *************** *** 1,9 **** ! module=+:55=+:ErrorDocs=+:modules/mx_errordocs/=+:mx_errordocs version 1.0.0=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:55=+:98=+:ErrorDocss=+:=+:errordocs.php=+: ! parameter=+:98=+:319=+:ErrorDocs_Enable_Log=+:Boolean=+:TRUE=+:=+:0 ! parameter=+:98=+:321=+:ErrorDocs_Exclude_Extensions=+:Text=+:ico=+:=+:0 ! parameter=+:98=+:320=+:ErrorDocs_Include_Codes=+:Text=+:=+:=+:0 ! parameter=+:98=+:322=+:ErrorDocs_Max_Records=+:Number=+:100=+:=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - ErrorDocss=+:Demo block=+:98=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 --- 1,9 ---- ! module=+:55=+:ErrorDocs=+:modules/mx_errordocs/=+:mx_errordocs version=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:55=+:98=+:ErrorDocss=+:=+:errordocs.php=+: ! parameter=+:98=+:319=+:ErrorDocs_Enable_Log=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:98=+:320=+:ErrorDocs_Include_Codes=+:Text=+:=+:=+:0=+:0 ! parameter=+:98=+:321=+:ErrorDocs_Exclude_Extensions=+:Text=+:ico=+:=+:0=+:0 ! parameter=+:98=+:322=+:ErrorDocs_Max_Records=+:Number=+:100=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - ErrorDocss=+:Demo block=+:98=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 |
|
From: Jon O. <jon...@us...> - 2006-09-12 21:40:07
|
Update of /cvsroot/mxbb/mx_gallery2 In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18523/modules/mx_gallery2 Modified Files: mx_gallery2.pak Log Message: version numbers etc Index: mx_gallery2.pak =================================================================== RCS file: /cvsroot/mxbb/mx_gallery2/mx_gallery2.pak,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mx_gallery2.pak 17 Dec 2005 13:12:18 -0000 1.4 --- mx_gallery2.pak 12 Sep 2006 20:29:23 -0000 1.5 *************** *** 1,19 **** ! module=+:58=+:mx_gallery2=+:modules/mx_gallery2/=+:Gallery Album Integration=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:58=+:101=+:GalleryBlock=+:This is a gallery embed object=+:gallery2.php=+: ! parameter=+:101=+:336=+:base_album=+:Text=+:=+:=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - GalleryBlock=+:Demo block=+:101=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:58=+:102=+:Toplist=+:Recent - random - block=+:gallery2_toplist.php=+: ! parameter=+:102=+:337=+:g2_albumFrame=+:Text=+:=+:=+:0 ! parameter=+:102=+:338=+:g2_blocks=+:Menu_single_select=+:randomImage=+:a:10:{i:0;s:11:"randomImage";i:1;s:11:"recentImage";i:2;s:11:"viewedImage";i:3;s:11:"randomAlbum";i:4;s:11:"recentAlbum";i:5;s:11:"viewedAlbum";i:6;s:10:"dailyImage";i:7;s:11:"weeklyImage";i:8;s:10:"dailyAlbum";i:9;s:11:"weeklyAlbum";}=+:0 ! parameter=+:102=+:339=+:g2_itemFrame=+:Text=+:=+:=+:0 ! parameter=+:102=+:340=+:g2_linkTarget=+:Radio_single_select=+:none=+:a:2:{i:0;s:4:"none";i:1;s:6:"_blank";}=+:0 ! parameter=+:102=+:341=+:g2_maxSize=+:Number=+:150=+:=+:0 ! parameter=+:102=+:342=+:g2_num_of_blocks=+:Number=+:3=+:=+:0 ! parameter=+:102=+:343=+:g2_show=+:Checkbox_multiple_select=+:=+:a:7:{i:0;s:4:"none";i:1;s:5:"title";i:2;s:4:"date";i:3;s:5:"views";i:4;s:5:"owner";i:5;s:7:"heading";i:6;s:8:"fullSize";}=+:0 ! parameter=+:102=+:344=+:g2_subtreeId=+:Number=+:=+:=+:0 ! parameter=+:102=+:345=+:target_block=+:Function=+:=+:get_list_formatted("block_list","{parameter_value}","{parameter_id}[]", "gallery2.php")=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - Toplist=+:Demo block=+:102=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 --- 1,19 ---- ! module=+:58=+:Gallery2=+:modules/mx_gallery2/=+:Gallery2 Embed Integration=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:58=+:101=+:GalleryBlock=+:This is a gallery embed object=+:gallery2.php=+: ! parameter=+:101=+:336=+:base_album=+:Text=+:=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - GalleryBlock=+:Demo block=+:101=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:58=+:102=+:Toplist=+:Recent - random - block=+:gallery2_toplist.php=+: ! parameter=+:102=+:337=+:g2_albumFrame=+:Text=+:=+:=+:0=+:0 ! parameter=+:102=+:338=+:g2_blocks=+:Menu_single_select=+:randomImage=+:a:10:{i:0;s:11:"randomImage";i:1;s:11:"recentImage";i:2;s:11:"viewedImage";i:3;s:11:"randomAlbum";i:4;s:11:"recentAlbum";i:5;s:11:"viewedAlbum";i:6;s:10:"dailyImage";i:7;s:11:"weeklyImage";i:8;s:10:"dailyAlbum";i:9;s:11:"weeklyAlbum";}=+:0=+:0 ! parameter=+:102=+:339=+:g2_itemFrame=+:Text=+:=+:=+:0=+:0 ! parameter=+:102=+:340=+:g2_linkTarget=+:Radio_single_select=+:none=+:a:2:{i:0;s:4:"none";i:1;s:6:"_blank";}=+:0=+:0 ! parameter=+:102=+:341=+:g2_maxSize=+:Number=+:150=+:=+:0=+:0 ! parameter=+:102=+:342=+:g2_num_of_blocks=+:Number=+:3=+:=+:0=+:0 ! parameter=+:102=+:343=+:g2_show=+:Checkbox_multiple_select=+:=+:a:7:{i:0;s:4:"none";i:1;s:5:"title";i:2;s:4:"date";i:3;s:5:"views";i:4;s:5:"owner";i:5;s:7:"heading";i:6;s:8:"fullSize";}=+:0=+:0 ! parameter=+:102=+:344=+:g2_subtreeId=+:Number=+:=+:=+:0=+:0 ! parameter=+:102=+:345=+:target_block=+:Function=+:=+:get_list_formatted("block_list","{parameter_value}","{parameter_id}[]", "gallery2.php")=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - Toplist=+:Demo block=+:102=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 |