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: FlorinCB <ory...@us...> - 2009-06-18 14:59:23
|
Update of /cvsroot/mxbb/mx_pageblock/templates/_core/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25715 Added Files: mx_module_parameters.tpl Log Message: default template file for page block module --- NEW FILE: mx_module_parameters.tpl --- <!-- BEGIN switch_bbcodes --> <script language="JavaScript" type="text/javascript"> <!-- // bbCode control by // subBlue design // www.subBlue.com // Startup variables var imageTag = false; var theSelection = false; // Check for Browser & Platform for PC & IE specific bits // More details from: http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html var clientPC = navigator.userAgent.toLowerCase(); // Get client info var clientVer = parseInt(navigator.appVersion); // Get browser version var is_ie = ((clientPC.indexOf("msie") != -1) && (clientPC.indexOf("opera") == -1)); var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')==-1) && (clientPC.indexOf('compatible') == -1) && (clientPC.indexOf('opera')==-1) && (clientPC.indexOf('webtv')==-1) && (clientPC.indexOf('hotjava')==-1)); var is_moz = 0; var is_win = ((clientPC.indexOf("win")!=-1) || (clientPC.indexOf("16bit") != -1)); var is_mac = (clientPC.indexOf("mac")!=-1); // Helpline messages b_help = "{L_BBCODE_B_HELP}"; i_help = "{L_BBCODE_I_HELP}"; u_help = "{L_BBCODE_U_HELP}"; q_help = "{L_BBCODE_Q_HELP}"; c_help = "{L_BBCODE_C_HELP}"; l_help = "{L_BBCODE_L_HELP}"; o_help = "{L_BBCODE_O_HELP}"; p_help = "{L_BBCODE_P_HELP}"; w_help = "{L_BBCODE_W_HELP}"; a_help = "{L_BBCODE_A_HELP}"; s_help = "{L_BBCODE_S_HELP}"; f_help = "{L_BBCODE_F_HELP}"; // Define the bbCode tags bbcode = new Array(); bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]'); imageTag = false; // Shows the help messages in the helpline window function helpline(help) { document.post.helpbox.value = eval(help + "_help"); } // Replacement for arrayname.length property function getarraysize(thearray) { for (i = 0; i < thearray.length; i++) { if ((thearray[i] == "undefined") || (thearray[i] == "") || (thearray[i] == null)) return i; } return thearray.length; } // Replacement for arrayname.push(value) not implemented in IE until version 5.5 // Appends element to the array function arraypush(thearray,value) { thearray[ getarraysize(thearray) ] = value; } // Replacement for arrayname.pop() not implemented in IE until version 5.5 // Removes and returns the last element of an array function arraypop(thearray) { thearraysize = getarraysize(thearray); retval = thearray[thearraysize - 1]; delete thearray[thearraysize - 1]; return retval; } function checkForm() { formErrors = false; if (document.post.{SELECT_NAME}.value.length < 2) { formErrors = "{L_EMPTY_MESSAGE}"; } if (formErrors) { alert(formErrors); return false; } else { bbstyle(-1); //formObj.preview.disabled = true; //formObj.submit.disabled = true; return true; } } function emoticon(text) { var txtarea = document.post.{SELECT_NAME}; text = ' ' + text + ' '; if (txtarea.createTextRange && txtarea.caretPos) { var caretPos = txtarea.caretPos; caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text; txtarea.focus(); } else { txtarea.value += text; txtarea.focus(); } } function bbfontstyle(bbopen, bbclose) { var txtarea = document.post.{SELECT_NAME}; if ((clientVer >= 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; if (!theSelection) { txtarea.value += bbopen + bbclose; txtarea.focus(); return; } document.selection.createRange().text = bbopen + theSelection + bbclose; txtarea.focus(); return; } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozWrap(txtarea, bbopen, bbclose); return; } else { txtarea.value += bbopen + bbclose; txtarea.focus(); } storeCaret(txtarea); } function bbstyle(bbnumber) { var txtarea = document.post.{SELECT_NAME}; txtarea.focus(); donotinsert = false; theSelection = false; bblast = 0; if (bbnumber == -1) { // Close all open tags & default button names while (bbcode[0]) { butnumber = arraypop(bbcode) - 1; txtarea.value += bbtags[butnumber + 1]; buttext = eval('document.post.addbbcode' + butnumber + '.value'); eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"'); } imageTag = false; // All tags are closed including image tags :D txtarea.focus(); return; } if ((clientVer >= 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; // Get text selection if (theSelection) { // Add tags around selection document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1]; txtarea.focus(); theSelection = ''; return; } } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozWrap(txtarea, bbtags[bbnumber], bbtags[bbnumber+1]); return; } // Find last occurance of an open tag the same as the one just clicked for (i = 0; i < bbcode.length; i++) { if (bbcode[i] == bbnumber+1) { bblast = i; donotinsert = true; } } if (donotinsert) { // Close all open tags up to the one just clicked & default button names while (bbcode[bblast]) { butnumber = arraypop(bbcode) - 1; txtarea.value += bbtags[butnumber + 1]; buttext = eval('document.post.addbbcode' + butnumber + '.value'); eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"'); imageTag = false; } txtarea.focus(); return; } else { // Open tags if (imageTag && (bbnumber != 14)) { // Close image tag before adding another txtarea.value += bbtags[15]; lastValue = arraypop(bbcode) - 1; // Remove the close image tag from the list document.post.addbbcode14.value = "Img"; // Return button back to normal state imageTag = false; } // Open tag txtarea.value += bbtags[bbnumber]; if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag arraypush(bbcode,bbnumber+1); eval('document.post.addbbcode'+bbnumber+'.value += "*"'); txtarea.focus(); return; } storeCaret(txtarea); } // From http://www.massless.org/mozedit/ function mozWrap(txtarea, open, close) { var selLength = txtarea.textLength; var selStart = txtarea.selectionStart; var selEnd = txtarea.selectionEnd; if (selEnd == 1 || selEnd == 2) selEnd = selLength; var s1 = (txtarea.value).substring(0,selStart); var s2 = (txtarea.value).substring(selStart, selEnd) var s3 = (txtarea.value).substring(selEnd, selLength); txtarea.value = s1 + open + s2 + close + s3; return; } // Insert at Claret position. Code from // http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130 function storeCaret(textEl) { if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate(); } //--> </script> <!-- END switch_bbcodes --> <!-- BEGIN tinyMCE --> <script language="javascript" type="text/javascript" src="{tinyMCE.PATH}modules/tinymce/jscripts/tiny_mce/tiny_mce.js"></script> <script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "advanced", theme_advanced_toolbar_location : "top", plugins : "table", theme_advanced_buttons3_add_before : "tablecontrols, separator" }); </script> <!-- END tinyMCE --> <!-- Module Block Parameter --> <tr> <td class="row1" valign="top" width="25%"> <table width="100%" border="0" cellspacing="0" cellpadding="1"> <tr> <td><span class="gen"><b>{L_BLOCK_INFO}</b></span> </td> </tr> <tr> <td valign="middle" align="center"> <br /> <table width="100" border="0" cellspacing="0" cellpadding="5"> <tr align="center"> <td colspan="{S_SMILIES_COLSPAN}" class="gensmall"> <!-- BEGIN switch_smilies --> <b>{L_EMOTICONS}</b> <!-- END switch_smilies --> </td> </tr> <!-- BEGIN smilies_row --> <tr align="center" valign="middle"> <!-- BEGIN smilies_col --> <td><a href="javascript:emoticon('{smilies_row.smilies_col.SMILEY_CODE}')"><img src="{smilies_row.smilies_col.SMILEY_IMG}" border="0" alt="{smilies_row.smilies_col.SMILEY_DESC}" title="{smilies_row.smilies_col.SMILEY_DESC}" /></a></td> <!-- END smilies_col --> </tr> <!-- END smilies_row --> <!-- BEGIN switch_smilies_extra --> <tr align="center"> <td colspan="{S_SMILIES_COLSPAN}"><span class="nav"><a href="{U_MORE_SMILIES}" onclick="window.open('{U_MORE_SMILIES}', '_phpbbsmilies', 'HEIGHT=300,resizable=yes,scrollbars=yes,WIDTH=250');return false;" target="_phpbbsmilies" class="nav">{L_MORE_SMILIES}</a></span></td> </tr> <!-- END switch_smilies_extra --> </table> </td> </tr> <tr> <td class="row1" valign="top" align="center"><span class="gen"><b>{L_OPTIONS}</b></span><br /><span class="gensmall">{L_PAGEBLOCK_SETTINGS}<br />{L_CAT_PAGEURL}</span></td> </tr> <tr> <td class="row1" valign="top" align="center"> </td> </tr> </table> </td> <td class="row2" valign="top"><span class="gen"> <table width="450" border="0" cellspacing="0" cellpadding="2"> <!-- BEGIN switch_bbcodes --> <tr align="center" valign="middle"> <td><span class="genmed"> <input type="button" class="button" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onClick="bbstyle(0)" onMouseOver="helpline('b')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onClick="bbstyle(2)" onMouseOver="helpline('i')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onClick="bbstyle(4)" onMouseOver="helpline('u')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onClick="bbstyle(6)" onMouseOver="helpline('q')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onClick="bbstyle(8)" onMouseOver="helpline('c')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onClick="bbstyle(10)" onMouseOver="helpline('l')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onClick="bbstyle(12)" onMouseOver="helpline('o')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onClick="bbstyle(14)" onMouseOver="helpline('p')" /> </span></td> <td><span class="genmed"> <input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" /> </span></td> </tr> <tr> <td colspan="9"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><span class="genmed"> {L_FONT_COLOR}: <select name="addbbcode18" onChange="bbfontstyle('[color=' + this.form.addbbcode18.options[this.form.addbbcode18.selectedIndex].value + ']', '[/color]')" onMouseOver="helpline('s')"> <option style="color:black; background-color: {T_TD_COLOR1}" value="{T_FONTCOLOR1}" class="genmed">{L_COLOR_DEFAULT}</option> <option style="color:darkred; background-color: {T_TD_COLOR1}" value="darkred" class="genmed">{L_COLOR_DARK_RED}</option> <option style="color:red; background-color: {T_TD_COLOR1}" value="red" class="genmed">{L_COLOR_RED}</option> <option style="color:orange; background-color: {T_TD_COLOR1}" value="orange" class="genmed">{L_COLOR_ORANGE}</option> <option style="color:brown; background-color: {T_TD_COLOR1}" value="brown" class="genmed">{L_COLOR_BROWN}</option> <option style="color:yellow; background-color: {T_TD_COLOR1}" value="yellow" class="genmed">{L_COLOR_YELLOW}</option> <option style="color:green; background-color: {T_TD_COLOR1}" value="green" class="genmed">{L_COLOR_GREEN}</option> <option style="color:olive; background-color: {T_TD_COLOR1}" value="olive" class="genmed">{L_COLOR_OLIVE}</option> <option style="color:cyan; background-color: {T_TD_COLOR1}" value="cyan" class="genmed">{L_COLOR_CYAN}</option> <option style="color:blue; background-color: {T_TD_COLOR1}" value="blue" class="genmed">{L_COLOR_BLUE}</option> <option style="color:darkblue; background-color: {T_TD_COLOR1}" value="darkblue" class="genmed">{L_COLOR_DARK_BLUE}</option> <option style="color:indigo; background-color: {T_TD_COLOR1}" value="indigo" class="genmed">{L_COLOR_INDIGO}</option> <option style="color:violet; background-color: {T_TD_COLOR1}" value="violet" class="genmed">{L_COLOR_VIOLET}</option> <option style="color:white; background-color: {T_TD_COLOR1}" value="white" class="genmed">{L_COLOR_WHITE}</option> <option style="color:black; background-color: {T_TD_COLOR1}" value="black" class="genmed">{L_COLOR_BLACK}</option> </select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')"> <option value="7" class="genmed">{L_FONT_TINY}</option> <option value="9" class="genmed">{L_FONT_SMALL}</option> <option value="12" selected class="genmed">{L_FONT_NORMAL}</option> <option value="18" class="genmed">{L_FONT_LARGE}</option> <option value="24" class="genmed">{L_FONT_HUGE}</option> </select> </span> </td> <td nowrap="nowrap" align="right"><span class="gensmall"><a href="javascript:bbstyle(-1)" class="genmed" onMouseOver="helpline('a')">{L_BBCODE_CLOSE_TAGS}</a></span></td> </tr> </table> </td> </tr> <tr> <td colspan="9"> <span class="gensmall"> <input type="text" name="helpbox" size="45" maxlength="100" style="width:550px; font-size:10px" class="helpline" value="{L_STYLES_TIP}" /> </span> </td> </tr> <!-- END switch_bbcodes --> <!-- BEGIN textblock --> <tr> <td colspan="9" align="left"> <span class="cattitle"> {textblock.PARAMETER_TITLE}<hr> </span> <span class="genmed"> {textblock.PARAMETER_TYPE} </span> <span class="gensmall"> {textblock.PARAMETER_TYPE_EXPLAIN} </span> </td> </tr> <tr> <td colspan="9" align="left"> <span class="gen"> <textarea name="{SELECT_NAME}" rows="1" cols="35" wrap="virtual" style="width:90%" tabindex="3" class="post" {TEXTAREA_BBCODES_XTRA}>{textblock.TEXT}</textarea> </span> </td> </tr> <!-- END textblock --> </table> </td> </tr> |
|
From: FlorinCB <ory...@us...> - 2009-06-18 14:57:29
|
Update of /cvsroot/mxbb/mx_pageblock/templates/_core/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25549/admin Log Message: Directory /cvsroot/mxbb/mx_pageblock/templates/_core/admin added to the repository |
|
From: FlorinCB <ory...@us...> - 2009-06-18 14:56:36
|
Update of /cvsroot/mxbb/mx_pageblock/templates/_core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25507/_core Log Message: Directory /cvsroot/mxbb/mx_pageblock/templates/_core added to the repository |
|
From: FlorinCB <ory...@us...> - 2009-06-18 14:14:41
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb3blocks In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21013 Modified Files: phpbb3blocks.pak Log Message: fix Index: phpbb3blocks.pak =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb3blocks/phpbb3blocks.pak,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** phpbb3blocks.pak 4 Oct 2008 07:04:38 -0000 1.6 --- phpbb3blocks.pak 18 Jun 2009 14:14:17 -0000 1.7 *************** *** 1,46 **** ! module=+:53=+:phpBB3 Blocks=+:modules/mx_phpbb3blocks/=+:MX-Publisher phpBB3 blocks=+: New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:53=+:2=+:phpBB Announcements=+:phpBB Announcements Block=+:mx_announce.php=+: ! parameter=+:2=+:1=+:announce_nbr_display=+:Number=+:1=+:=+:0=+:0 ! parameter=+:2=+:10=+:announce_img_global=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:2=+:6=+:announce_display_global=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:2=+:9=+:announce_img_normal=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:2=+:8=+:announce_img_sticky=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:2=+:7=+:announce_img=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:2=+:5=+:announce_display_normal=+:Boolean=+:FALSE=+:=+:0=+:0 ! parameter=+:2=+:4=+:announce_display_sticky=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:2=+:3=+:announce_display=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:2=+:2=+:announce_nbr_days=+:Number=+:14=+:=+:0=+:0 ! parameter=+:2=+:11=+:announce_forum=+:Function=+:=+:get_list_multiple("{parameter_id}[]", FORUMS_TABLE, 'forum_id', 'forum_name', "{parameter_value}", TRUE)=+:0=+:0 ! parameter=+:2=+:12=+:announce_truncate=+:Number=+:16777215=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - phpBB Announcements=+:Demo block=+:2=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:53=+:51=+:Last Posts=+:phpBB Last Posts Function=+:mx_last_msg.php=+: ! parameter=+:51=+:17=+:Last_Msg_Number_Title=+:Number=+:15=+:=+:0=+:0 ! parameter=+:51=+:40=+:Last_Msg_Display_Icon_View=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:51=+:39=+:Last_Msg_Display_Author=+:Boolean=+:FALSE=+:=+:0=+:0 ! parameter=+:51=+:38=+:Last_Msg_Display_Last_Author=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:51=+:37=+:Last_Msg_forum=+:Function=+:=+:get_list_multiple("{parameter_id}[]", FORUMS_TABLE, 'forum_id', 'forum_name', "{parameter_value}", TRUE)=+:0=+:0 ! parameter=+:51=+:22=+:Last_Msg_Display_Forum=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:51=+:21=+:Last_Msg_Align=+:Values=+:left=+:=+:0=+:0 ! parameter=+:51=+:20=+:Last_Msg_Target=+:Values=+:_blank=+:=+:0=+:0 ! parameter=+:51=+:19=+:Last_Msg_Title_Length=+:Number=+:30=+:=+:0=+:0 ! parameter=+:51=+:18=+:Last_Msg_Display_Date=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:51=+:41=+:Last_Msg_Auth_Read=+:Boolean=+:FALSE=+:=+:0=+:0 ! parameter=+:51=+:95=+:msg_filter_date=+:Function=+:5=+:get_list_static("{parameter_id}[]",array("no limit", "1 day", "2 days", "3 days", "1 week", "2 weeks", "3 weeks", "1 month", "2 months", "3 months", "6 months", "1 year"),"{parameter_value}")=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Last Posts=+:Demo block=+:51=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:53=+:52=+:phpBB Index=+:phpBB Index Block=+:mx_forum.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:phpBB Index=+:Demo block=+:52=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:53=+:41=+:Statistics=+:Site Statistics Function=+:mx_statistics.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - Statistics=+:Demo block=+:41=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:53=+:42=+:Activity Stats=+:Activity Stats Block=+:mx_activity_stats.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Demo - Activity Stats=+:Demo block=+:42=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 \ No newline at end of file --- 1,45 ---- ! module=+:106=+:phpBB3 Blocks=+:modules/mx_phpbb3blocks/=+:MXP phpBB3 blocks=+: New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:106=+:132=+:Last Posts=+:phpBB Last Posts Function=+:mx_last_msg.php=+: ! parameter=+:132=+:306=+:msg_filter_date=+:Function=+:5=+:get_list_static("{parameter_id}[]",array("no limit", "1 day", "2 days", "3 days", "1 week", "2 weeks", "3 weeks", "1 month", "2 months", "3 months", "6 months", "1 year"),"{parameter_value}")=+:0=+:0 ! parameter=+:132=+:305=+:Last_Msg_Auth_Read=+:Boolean=+:FALSE=+:=+:0=+:0 ! parameter=+:132=+:304=+:Last_Msg_Display_Date=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:132=+:301=+:Last_Msg_Align=+:Values=+:left=+:=+:0=+:0 ! parameter=+:132=+:302=+:Last_Msg_Target=+:Values=+:_blank=+:=+:0=+:0 ! parameter=+:132=+:303=+:Last_Msg_Title_Length=+:Number=+:30=+:=+:0=+:0 ! parameter=+:132=+:300=+:Last_Msg_Display_Forum=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:132=+:299=+:Last_Msg_forum=+:Function=+:1=+:get_list_multiple("{parameter_id}[]", FORUMS_TABLE, 'forum_id', 'forum_name', "{parameter_value}", TRUE)=+:0=+:0 ! parameter=+:132=+:295=+:Last_Msg_Number_Title=+:Number=+:15=+:=+:0=+:0 ! parameter=+:132=+:296=+:Last_Msg_Display_Icon_View=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:132=+:297=+:Last_Msg_Display_Author=+:Boolean=+:FALSE=+:=+:0=+:0 ! parameter=+:132=+:298=+:Last_Msg_Display_Last_Author=+:Boolean=+:TRUE=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Last Posts=+:Demo block=+:132=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:106=+:133=+:phpBB3 Announcements=+:phpBB3 Announcements=+:mx_announce.php=+: ! parameter=+:133=+:307=+:announce_nbr_display=+:Number=+:1=+:=+:0=+:0 ! parameter=+:133=+:308=+:announce_nbr_days=+:Number=+:31=+:=+:0=+:0 ! parameter=+:133=+:309=+:announce_display=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:133=+:310=+:announce_display_sticky=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:133=+:311=+:announce_display_normal=+:Boolean=+:FALSE=+:=+:0=+:0 ! parameter=+:133=+:312=+:announce_display_global=+:Boolean=+:TRUE=+:=+:0=+:0 ! parameter=+:133=+:313=+:announce_img=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:133=+:314=+:announce_img_sticky=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:133=+:315=+:announce_img_normal=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:133=+:316=+:announce_img_global=+:Text=+:thumb_globe.gif=+:=+:0=+:0 ! parameter=+:133=+:317=+:announce_forum=+:Function=+:1=+:get_list_multiple("{parameter_id}[]", FORUMS_TABLE, 'forum_id', 'forum_name', "{parameter_value}", TRUE)=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:phpBB3 Announcements=+:Demo block=+:133=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:106=+:134=+:phpBB3 Index=+:phpBB Index Block=+:mx_forum.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:phpBB3 Index=+:Demo block=+:134=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:106=+:135=+:Statistics=+:Website Statistics Function=+:mx_statistics.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Statistics=+:Demo block=+:135=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:106=+:136=+:Website Activity=+:Activity Stats Block=+:mx_activity_stats.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Website Activity=+:Demo block=+:136=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 \ No newline at end of file |
|
From: FlorinCB <ory...@us...> - 2009-06-11 08:16:00
|
Update of /cvsroot/mxbb/mx_radiocast/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17130/includes Modified Files: radiocast_cat.php radiocast_comment.php radiocast_comment_edit.php radiocast_list.php radiocast_modcp.php radiocast_player.php radiocast_rate.php Log Message: some fixes for permissions. Index: radiocast_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_comment.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** radiocast_comment.php 22 Jan 2009 08:29:51 -0000 1.4 --- radiocast_comment.php 11 Jun 2009 08:15:55 -0000 1.5 *************** *** 316,320 **** $edit_info = ($commentrow[$i]['comment_edit_count'] == 1) ? $lang['Edited_time_total'] : $lang['Edited_times_total']; ! $edit_info = '<br /><br />» '. sprintf($edit_info, $lastedit_row['username'], create_date($board_config['default_dateformat'], $commentrow[$i]['comment_edit_time'], $board_config['board_timezone']), $commentrow[$i]['comment_edit_count']) .'<br />'; } else --- 316,320 ---- $edit_info = ($commentrow[$i]['comment_edit_count'] == 1) ? $lang['Edited_time_total'] : $lang['Edited_times_total']; ! $edit_info = '<br /><br />» '. sprintf($edit_info, $lastedit_row['username'], phpBB2::create_date($board_config['default_dateformat'], $commentrow[$i]['comment_edit_time'], $board_config['board_timezone']), $commentrow[$i]['comment_edit_count']) .'<br />'; } else *************** *** 326,330 **** 'ID' => $commentrow[$i]['comment_id'], 'POSTER' => $poster, ! 'TIME' => create_date($board_config['default_dateformat'], $commentrow[$i]['comment_time'], $board_config['board_timezone']), 'IP' => ($userdata['user_level'] == ADMIN) ? '-----------------------------------<br />' . $lang['IP_Address'] . ': <a href="http://www.nic.com/cgi-bin/whois.cgi?query=' . decode_ip($commentrow[$i]['comment_user_ip']) . '" target="_blank">' . decode_ip($commentrow[$i]['comment_user_ip']) .'</a><br />' : '', --- 326,330 ---- 'ID' => $commentrow[$i]['comment_id'], 'POSTER' => $poster, ! 'TIME' => phpBB2::create_date($board_config['default_dateformat'], $commentrow[$i]['comment_time'], $board_config['board_timezone']), 'IP' => ($userdata['user_level'] == ADMIN) ? '-----------------------------------<br />' . $lang['IP_Address'] . ': <a href="http://www.nic.com/cgi-bin/whois.cgi?query=' . decode_ip($commentrow[$i]['comment_user_ip']) . '" target="_blank">' . decode_ip($commentrow[$i]['comment_user_ip']) .'</a><br />' : '', *************** *** 395,399 **** 'POSTER' => $poster, ! 'STATION_TIME' => create_date($board_config['default_dateformat'], $thisstation['station_time'], $board_config['board_timezone']), 'STATION_VIEW' => $thisstation['station_view_count'], 'STATION_COMMENTS' => $total_comments, --- 395,399 ---- 'POSTER' => $poster, ! 'STATION_TIME' => phpBB2::create_date($board_config['default_dateformat'], $thisstation['station_time'], $board_config['board_timezone']), 'STATION_VIEW' => $thisstation['station_view_count'], 'STATION_COMMENTS' => $total_comments, Index: radiocast_player.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_player.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** radiocast_player.php 21 Mar 2008 08:51:07 -0000 1.4 --- radiocast_player.php 11 Jun 2009 08:15:55 -0000 1.5 *************** *** 261,265 **** // ------------------------------------ ! $radiocast_user_access = radiocast_user_access($cat_id, $thiscat, 1, 0, 0, 0, 0, 0); // UPLOAD if ($radiocast_user_access['view'] == 0) --- 261,265 ---- // ------------------------------------ ! $radiocast_user_access = radiocast_user_access($cat_id, $thiscat, 1, 0, 0, 0, 0, 0); // VIEW if ($radiocast_user_access['view'] == 0) *************** *** 283,289 **** if( ($thiscat['cat_approval'] == ADMIN) or (($thiscat['cat_approval'] == MOD) and !$radiocast_user_access['moderator']) ) { ! if ($thisstation['station_approval'] != 1) { ! mx_message_die(GENERAL_ERROR, $lang['Not_Authorised']); } } --- 283,289 ---- if( ($thiscat['cat_approval'] == ADMIN) or (($thiscat['cat_approval'] == MOD) and !$radiocast_user_access['moderator']) ) { ! if ($thisstation['station_approval'] == 0) { ! mx_message_die(GENERAL_ERROR, $lang['Not_Authorised'] . ' ,Station need approval.'); } } Index: radiocast_comment_edit.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_comment_edit.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** radiocast_comment_edit.php 22 Jan 2009 08:29:51 -0000 1.2 --- radiocast_comment_edit.php 11 Jun 2009 08:15:55 -0000 1.3 *************** *** 233,237 **** 'STATION_TITLE' => $thisstation['station_title'], 'POSTER' => $poster, ! 'STATION_TIME' => create_date($board_config['default_dateformat'], $thisstation['station_time'], $board_config['board_timezone']), 'STATION_VIEW' => $thisstation['station_view_count'], 'STATION_COMMENTS' => $total_comments, --- 233,237 ---- 'STATION_TITLE' => $thisstation['station_title'], 'POSTER' => $poster, ! 'STATION_TIME' => phpBB2::create_date($board_config['default_dateformat'], $thisstation['station_time'], $board_config['board_timezone']), 'STATION_VIEW' => $thisstation['station_view_count'], 'STATION_COMMENTS' => $total_comments, Index: radiocast_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_cat.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** radiocast_cat.php 22 Jan 2009 08:29:51 -0000 1.4 --- radiocast_cat.php 11 Jun 2009 08:15:55 -0000 1.5 *************** *** 68,71 **** --- 68,73 ---- } + $auth_data['moderator'] = ($auth_data['moderator'] == false) ? $mx_page->auth_mod : $auth_data['moderator']; + if (empty($thiscat)) { *************** *** 141,146 **** } ! // add Moderator Control Panel here ! if( ($userdata['user_level'] == ADMIN) or ($auth_data['moderator'] == 1) ) { $auth_list .= sprintf($lang['RadioCast_moderate_can'], '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&cat_id=$cat_id")) .'">', '</a>'); --- 143,151 ---- } ! // ! // Add Moderator Control Panel here ! // ! ! if( ($userdata['user_level'] == ADMIN) or ($auth_data['moderator'] == 1)) { $auth_list .= sprintf($lang['RadioCast_moderate_can'], '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&cat_id=$cat_id")) .'">', '</a>'); *************** *** 384,390 **** $approval_link = ''; ! if ($thiscat['cat_approval'] != RADIOCAST_USER) { ! if( ($userdata['user_level'] == ADMIN) or (($auth_data['moderator'] == 1) and ($thiscat['cat_approval'] == RADIOCAST_MOD)) ) { $approval_mode = ($stationrow[$j]['station_approval'] == 0) ? 'approval' : 'unapproval'; --- 389,395 ---- $approval_link = ''; ! if ($thiscat['cat_approval']) { ! if( ($mx_user->data['user_level'] == ADMIN) or (($auth_data['moderator'] == 1) and ($thiscat['cat_approval'] == RADIOCAST_MOD)) ) { $approval_mode = ($stationrow[$j]['station_approval'] == 0) ? 'approval' : 'unapproval'; *************** *** 783,791 **** if ($station_filetype == 'flv') { ! $url_song = PORTAL_URL. str_replace('./', '/', RADIOCAST_UPLOAD_PATH) . $thisstation['station_filename']; } else { ! $url_song = mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_song&station_id=" . $stationrow[$j]['station_id'], true)); } --- 788,796 ---- if ($station_filetype == 'flv') { ! $url_station = PORTAL_URL. str_replace('./', '/', RADIOCAST_UPLOAD_PATH) . $thisstation['station_filename']; } else { ! $url_station = mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_station&station_id=" . $stationrow[$j]['station_id'], true)); } *************** *** 795,807 **** 'TITLE' => '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_player&station_id=". $stationrow[$j]['station_id'])) . '">' . $stationrow[$j]['station_title'] . '</a>', ! 'U_STATION' => $url_song, 'SONG_TITLE' => $thisstation['station_title'], ! 'SONG_URL' => !empty($thisstation['station_url']) ? $thisstation['station_url'] : $url_song, ! 'SONG_THUMB_URL' => !empty($thisstation['station_url']) ? $thisstation['station_url'] : mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_song&station_id=" . $stationrow[$j]['station_id'] . "&item_size=425", true)), ! 'SONG_FULL_URL' => !empty($thisstation['station_url']) ? $thisstation['station_url'] : mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_song&station_id=" . $stationrow[$j]['station_id'] . "&item_size=800", true)), 'VIDEO_URL' => !empty($url_player) ? $url_player : $url_video, --- 800,812 ---- 'TITLE' => '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_player&station_id=". $stationrow[$j]['station_id'])) . '">' . $stationrow[$j]['station_title'] . '</a>', ! 'U_STATION' => $url_station, 'SONG_TITLE' => $thisstation['station_title'], ! 'SONG_URL' => !empty($thisstation['station_url']) ? $thisstation['station_url'] : $url_station, ! 'SONG_THUMB_URL' => !empty($thisstation['station_url']) ? $thisstation['station_url'] : mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_station&station_id=" . $stationrow[$j]['station_id'] . "&item_size=425", true)), ! 'SONG_FULL_URL' => !empty($thisstation['station_url']) ? $thisstation['station_url'] : mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_station&station_id=" . $stationrow[$j]['station_id'] . "&item_size=800", true)), 'VIDEO_URL' => !empty($url_player) ? $url_player : $url_video, *************** *** 819,823 **** 'HEIGHT' => ( !empty($media_height) ? $media_height : '350' ), ! 'TIME' => (@function_exists( 'create_date' )) ? create_date($board_config['default_dateformat'], $stationrow[$j]['station_time'], $board_config['board_timezone']) : phpBB2::create_date($board_config['default_dateformat'], $stationrow[$j]['station_time'], $board_config['board_timezone']), 'VIEW' => $stationrow[$j]['station_view_count'], --- 824,828 ---- 'HEIGHT' => ( !empty($media_height) ? $media_height : '350' ), ! 'TIME' => (@function_exists( 'create_date' )) ? phpBB2::create_date($board_config['default_dateformat'], $stationrow[$j]['station_time'], $board_config['board_timezone']) : phpBB2::create_date($board_config['default_dateformat'], $stationrow[$j]['station_time'], $board_config['board_timezone']), 'VIEW' => $stationrow[$j]['station_view_count'], *************** *** 827,833 **** 'COMMENTS' => ($radiocast_config['comment'] == 1) ? ( '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_comment&station_id=". $stationrow[$j]['station_id'])) . '">' . $stationrow[$j]['comments'] . '</a>' ) : '', ! 'EDIT' => ( ( $auth_data['edit'] and ($stationrow[$j]['station_user_id'] == $userdata['user_id']) ) or ($auth_data['moderator'] and ($thiscat['cat_edit_level'] != RADIOCAST_ADMIN) ) or ($userdata['user_level'] == ADMIN) ) ? '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_edit&station_id=". $stationrow[$j]['station_id'])) . '">' . $lang['Edit_song'] . '</a>' : '', ! 'DELETE' => ( ( $auth_data['delete'] and ($stationrow[$j]['station_user_id'] == $userdata['user_id']) ) or ($auth_data['moderator'] and ($thiscat['cat_delete_level'] != RADIOCAST_ADMIN) ) or ($userdata['user_level'] == ADMIN) ) ? '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_delete&station_id=". $stationrow[$j]['station_id'])) . '">' . $lang['Delete_song'] . '</a>' : '', 'MOVE' => ($auth_data['moderator']) ? '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&mode=move&station_id=". $stationrow[$j]['station_id'])) .'">'. $lang['Move'] .'</a>' : '', --- 832,838 ---- 'COMMENTS' => ($radiocast_config['comment'] == 1) ? ( '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_comment&station_id=". $stationrow[$j]['station_id'])) . '">' . $stationrow[$j]['comments'] . '</a>' ) : '', ! 'EDIT' => ( ($mx_user->data['user_level'] == ADMIN) or ($auth_data['edit']) or ($auth_data['moderator']) ) ? '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_edit&station_id=". $stationrow[$j]['station_id'])) . '">' . $lang['Edit_station'] . '</a>' : '', ! 'DELETE' => ( ( ($auth_data['delete']) or ($auth_data['moderator']) ) or ($userdata['user_level'] == ADMIN) ) ? '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_delete&station_id=". $stationrow[$j]['station_id'])) . '">' . $lang['Delete_station'] . '</a>' : '', 'MOVE' => ($auth_data['moderator']) ? '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&mode=move&station_id=". $stationrow[$j]['station_id'])) .'">'. $lang['Move'] .'</a>' : '', Index: radiocast_rate.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_rate.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** radiocast_rate.php 22 Jan 2009 08:29:51 -0000 1.2 --- radiocast_rate.php 11 Jun 2009 08:15:56 -0000 1.3 *************** *** 226,230 **** 'POSTER' => $poster, ! 'STATION_TIME' => create_date($board_config['default_dateformat'], $thisstation['station_time'], $board_config['board_timezone']), 'STATION_VIEW' => $thisstation['station_view_count'], 'STATION_RATING' => ($thisstation['rating'] != 0) ? round($thisstation['rating'], 2) : $lang['Not_rated'], --- 226,230 ---- 'POSTER' => $poster, ! 'STATION_TIME' => phpBB2::create_date($board_config['default_dateformat'], $thisstation['station_time'], $board_config['board_timezone']), 'STATION_VIEW' => $thisstation['station_view_count'], 'STATION_RATING' => ($thisstation['rating'] != 0) ? round($thisstation['rating'], 2) : $lang['Not_rated'], Index: radiocast_list.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_list.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** radiocast_list.php 22 Jan 2009 08:29:51 -0000 1.4 --- radiocast_list.php 11 Jun 2009 08:15:55 -0000 1.5 *************** *** 181,185 **** 'SINGER' => $searchstationrow[$j]['station_singer'], 'POSTER' => $search_poster, ! 'TIME' => create_date($board_config['default_dateformat'], $searchstationrow[$j]['station_time'], $board_config['board_timezone']), 'VIEW' => $searchstationrow[$j]['station_view_count'], --- 181,185 ---- 'SINGER' => $searchstationrow[$j]['station_singer'], 'POSTER' => $search_poster, ! 'TIME' => phpBB2::create_date($board_config['default_dateformat'], $searchstationrow[$j]['station_time'], $board_config['board_timezone']), 'VIEW' => $searchstationrow[$j]['station_view_count'], Index: radiocast_modcp.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_modcp.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** radiocast_modcp.php 22 Jan 2009 08:29:51 -0000 1.3 --- radiocast_modcp.php 11 Jun 2009 08:15:55 -0000 1.4 *************** *** 363,367 **** 'STATION_TITLE' => '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_station&station_id=". $stationrow[$i]['station_id'])) .'" target="_blank">'. $stationrow[$i]['station_title'] .'</a>', 'POSTER' => $station_poster, ! 'TIME' => create_date($board_config['default_dateformat'], $stationrow[$i]['station_time'], $board_config['board_timezone']), 'RATING' => ($stationrow[$i]['rating'] == 0) ? $lang['Not_rated'] : round($stationrow[$i]['rating'], 2), 'COMMENTS' => $stationrow[$i]['comments'], --- 363,367 ---- 'STATION_TITLE' => '<a href="'. mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_station&station_id=". $stationrow[$i]['station_id'])) .'" target="_blank">'. $stationrow[$i]['station_title'] .'</a>', 'POSTER' => $station_poster, ! 'TIME' => phpBB2::create_date($board_config['default_dateformat'], $stationrow[$i]['station_time'], $board_config['board_timezone']), 'RATING' => ($stationrow[$i]['rating'] == 0) ? $lang['Not_rated'] : round($stationrow[$i]['rating'], 2), 'COMMENTS' => $stationrow[$i]['comments'], *************** *** 372,376 **** } $template->assign_vars(array( ! 'PAGINATION' => generate_pagination(mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&cat_id=$cat_id&sort_method=$sort_method&sort_order=$sort_order")), $total_stations, $stations_per_page, $start), 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $stations_per_page ) + 1 ), ceil( $total_stations / $stations_per_page )) ) --- 372,376 ---- } $template->assign_vars(array( ! 'PAGINATION' => phpBB2::generate_pagination(mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&cat_id=$cat_id&sort_method=$sort_method&sort_order=$sort_order")), $total_stations, $stations_per_page, $start), 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $stations_per_page ) + 1 ), ceil( $total_stations / $stations_per_page )) ) *************** *** 427,431 **** 'L_POSTED' => $lang['Posted'], ! 'S_RADIOCAST_ACTION' => mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&cat_id=$cat_id")), 'L_SELECT_SORT_METHOD' => $lang['Select_sort_method'], --- 427,431 ---- 'L_POSTED' => $lang['Posted'], ! 'S_RADIOCAST_ACTION' => mx_append_sid(this_rc_mxurl("radiocast_mode=radiocast_modcp&cat_id=$cat_id")), 'L_SELECT_SORT_METHOD' => $lang['Select_sort_method'], |
|
From: FlorinCB <ory...@us...> - 2009-06-11 08:16:00
|
Update of /cvsroot/mxbb/mx_radiocast/radiocast_mod In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17130/radiocast_mod Modified Files: radiocast_functions.php Log Message: some fixes for permissions. Index: radiocast_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/radiocast_mod/radiocast_functions.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** radiocast_functions.php 22 Jan 2009 08:29:51 -0000 1.2 --- radiocast_functions.php 11 Jun 2009 08:15:56 -0000 1.3 *************** *** 32,36 **** function radiocast_user_access($cat_id, $passed_auth = 0, $view_check, $upload_check, $rate_check, $comment_check, $edit_check, $delete_check) { ! global $db, $radiocast_config, $userdata; // -------------------------------- --- 32,36 ---- function radiocast_user_access($cat_id, $passed_auth = 0, $view_check, $upload_check, $rate_check, $comment_check, $edit_check, $delete_check) { ! global $db, $radiocast_config, $phpbb_auth, $userdata, $mx_user, $mx_page; // -------------------------------- *************** *** 68,76 **** // // -------------------------------- ! // If the current user is an ADMIN (RADIOCAST_ADMIN == ADMIN) // -------------------------------- ! if ($userdata['user_level'] == ADMIN) { for ($i = 0; $i < count($radiocast_user_access); $i++) --- 68,86 ---- // + // + // Authorization SQL + // + $phpbb_auth->acl($mx_user->data); // Do only once, in user_init // Move later + + $auth_data_sql = $phpbb_auth->get_auth_forum(); + + // + // End Auth Check + // // -------------------------------- ! // If the current user is an MODERATOR // -------------------------------- ! if ( $mx_page->auth_mod ) { for ($i = 0; $i < count($radiocast_user_access); $i++) *************** *** 86,96 **** // // END check ADMIN ! // ! // -------------------------------- ! // if this is a GUEST, we will ignore some checking // -------------------------------- ! if (!$userdata['session_logged_in']) { $edit_check = 0; --- 96,135 ---- // // END check ADMIN ! // ! // -------------------------------- ! // If the current user is an ADMIN (RADIOCAST_ADMIN == ADMIN) // -------------------------------- ! if ( ($userdata['user_level'] == ADMIN) ) ! { ! $radiocast_user_access = array( ! 'view' => 1, ! 'upload' => 1, ! 'rate' => 1, ! 'comment' => 1, ! 'edit' => 1, ! 'delete' => 1, ! 'moderator' => 1 ! ); ! ! $radiocast_user_access_keys = array_keys($radiocast_user_access); ! ! for ($i = 0; $i < count($radiocast_user_access); $i++) ! { ! $radiocast_user_access[$radiocast_user_access_keys[$i]] = 1; // Authorised All ! } ! ! // ! // Function EXIT here ! // ! return $radiocast_user_access; ! } ! // ! // END check ADMIN ! // ! ! ! if ( empty($auth_data_sql) ) { $edit_check = 0; *************** *** 98,105 **** $moderator_check = 0; } ! // ! // END check GUEST ! // ! // -------------------------------- --- 137,148 ---- $moderator_check = 0; } ! else ! { ! $view_check = 1; ! $upload_check =1; ! $edit_check = 0; ! $delete_check = 0; ! $moderator_check = 0; ! } // -------------------------------- |
|
From: FlorinCB <ory...@us...> - 2009-06-11 08:15:59
|
Update of /cvsroot/mxbb/mx_radiocast In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17130 Modified Files: db_install.php db_upgrade.php radiocast.php Log Message: some fixes for permissions. Index: radiocast.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/radiocast.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** radiocast.php 22 Jan 2009 08:29:51 -0000 1.6 --- radiocast.php 11 Jun 2009 08:15:55 -0000 1.7 *************** *** 70,86 **** // Check $album_user_id // --------------------- ! if (isset($_POST['user_id'])) ! { ! $radiocast_user_id = intval($_POST['user_id']); ! } ! elseif (isset($_GET['user_id'])) ! { ! $radiocast_user_id = intval($_GET['user_id']); ! } ! else ! { ! $radiocast_user_id = $userdata['user_id']; ! } ! // // Mode setting --- 70,74 ---- // Check $album_user_id // --------------------- ! $radiocast_user_id = $user->data['user_id']; // // Mode setting Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/db_install.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** db_install.php 22 Jan 2009 08:29:51 -0000 1.5 --- db_install.php 11 Jun 2009 08:15:55 -0000 1.6 *************** *** 33,38 **** } ! $mx_module_version = '2.9.0'; ! $mx_module_copy = 'mxBB <i> - Radio Cast</i> module by <a href="http://caleacrestina.com/" target="_blank">OryNider (FlorinCB)</a>'; // If fresh install --- 33,38 ---- } ! $mx_module_version = '2.9.1'; ! $mx_module_copy = 'mX-Publisher <i> - Radio Cast</i> module by <a href="http://caleacrestina.com/" target="_blank">OryNider (FlorinCB)</a>'; // If fresh install Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/db_upgrade.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_upgrade.php 22 Jan 2009 08:29:51 -0000 1.4 --- db_upgrade.php 11 Jun 2009 08:15:55 -0000 1.5 *************** *** 30,35 **** } ! $mx_module_version = '2.9.0'; ! $mx_module_copy = 'mxBB <i> - Radio Cast</i> module by <a href="http://caleacrestina.com/" target="_blank">OryNider (FlorinCB)</a>'; $sql = array(); --- 30,35 ---- } ! $mx_module_version = '2.9.1'; ! $mx_module_copy = 'mX-Publisher <i> - Radio Cast</i> module by <a href="http://caleacrestina.com/" target="_blank">OryNider (FlorinCB)</a>'; $sql = array(); |
|
From: FlorinCB <ory...@us...> - 2009-04-09 03:35:26
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6824 Modified Files: music_page.php Log Message: Index: music_page.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_page.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** music_page.php 26 Sep 2008 12:29:05 -0000 1.12 --- music_page.php 9 Apr 2009 03:35:20 -0000 1.13 *************** *** 543,546 **** --- 543,552 ---- } + $video_src = ($url_player) ? $url_player : $url_video; + + $mx_page->add_header_text('<link rel="videothumbnail" href="' . $img_id . '" type="image/jpeg" />'); + $mx_page->add_header_text('<link rel="image_src" href="' . $img_id . '" />'); + $mx_page->add_header_text('<link rel="video_src" href="' . $video_src . '" />'); + $template->assign_vars(array( 'BLOCK_SIZE' => ( !empty($block_size) ? $block_size : '100%' ), |
|
From: FlorinCB <ory...@us...> - 2009-03-06 07:08:30
|
Update of /cvsroot/mxbb/core/install/schemas In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22415 Modified Files: upgrade_schemas_map.php Log Message: fix Index: upgrade_schemas_map.php =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/upgrade_schemas_map.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** upgrade_schemas_map.php 4 Feb 2008 15:58:07 -0000 1.23 --- upgrade_schemas_map.php 6 Mar 2009 07:08:12 -0000 1.24 *************** *** 23,26 **** --- 23,27 ---- array('schema' => 'upgrade_to_2.9.1' , 'sql' => "SELECT themes_id FROM mx_table_themes"), array('schema' => 'upgrade_to_2.9.2' , 'sql' => "SELECT smilies_id FROM mx_table_smilies"), + //array('schema' => 'upgrade_to_3.0.0' , 'sql' => "SELECT //"), ); |
|
From: FlorinCB <ory...@us...> - 2009-02-27 10:12:54
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17708 Modified Files: mx_functions_admincp.php Log Message: fix by selven Index: mx_functions_admincp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_admincp.php,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** mx_functions_admincp.php 10 Jan 2009 16:15:11 -0000 1.64 --- mx_functions_admincp.php 27 Feb 2009 10:12:43 -0000 1.65 *************** *** 384,388 **** "page_desc" => $page_desc, "page_parent" => (int) $page_parent, ! "parents_data" => $parents_data, "page_order" => (int) $page_order_new, "page_icon" => $page_icon , --- 384,388 ---- "page_desc" => $page_desc, "page_parent" => (int) $page_parent, ! "parents_data" => (int) $parents_data, "page_order" => (int) $page_order_new, "page_icon" => $page_icon , |
|
From: FlorinCB <ory...@us...> - 2009-02-25 10:46:00
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb3 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8363 Modified Files: bbcode.php Log Message: back to oler version which works Index: bbcode.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/bbcode.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** bbcode.php 25 Feb 2009 07:29:58 -0000 1.6 --- bbcode.php 25 Feb 2009 10:45:48 -0000 1.7 *************** *** 31,34 **** --- 31,39 ---- mt_srand( (double) microtime() * 1000000); + // + // Now load some bbcodes, to be extended for this backend (see below) + // + //include_once($mx_root_path . 'includes/mx_functions_bbcode.' . $phpEx); // BBCode associated functions + // /** |
|
From: FlorinCB <ory...@us...> - 2009-02-25 07:30:42
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb3 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv24068 Modified Files: bbcode.php Log Message: back to oler version which works Index: bbcode.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/bbcode.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** bbcode.php 31 Oct 2008 18:54:23 -0000 1.5 --- bbcode.php 25 Feb 2009 07:29:58 -0000 1.6 *************** *** 16,22 **** // ! // Now load some bbcodes, to be extended for this backend (see below) // ! include_once($mx_root_path . 'includes/mx_functions_bbcode.' . $phpEx); // BBCode associated functions /** --- 16,34 ---- // [...1705 lines suppressed...] + $message = addslashes($message); + $message = str_replace('"', '\"', $message); + } + else + { + $message = preg_replace($html_entities_match, $html_entities_replace, $message); + } + + if($bbcode_on && $bbcode_uid != '') + { + $message = $this->bbencode_first_pass($message, $bbcode_uid); + } + + return $message; + } + + //Core BBCode Starts + /** * Generate smilies. |
|
From: FlorinCB <ory...@us...> - 2009-02-05 20:50:11
|
Update of /cvsroot/mxbb/core/language/lang_french In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv30524 Modified Files: lang_main.php lang_meta.php Log Message: fixing typo Index: lang_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_french/lang_meta.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_meta.php 16 Dec 2008 21:53:02 -0000 1.1 --- lang_meta.php 5 Feb 2009 20:50:02 -0000 1.2 *************** *** 193,198 **** $lang['mx_meta']['langcode']['qu'] = "Quechua"; $lang['mx_meta']['langcode']['rm'] = "Raeto-Romance"; ! $lang['mx_meta']['langcode']['ro'] = "Românã"; ! $lang['mx_meta']['langcode']['ro-mo'] = "Românã (Moldova)"; $lang['mx_meta']['langcode']['rn'] = "Rundi"; $lang['mx_meta']['langcode']['ru'] = "Russian"; --- 193,198 ---- $lang['mx_meta']['langcode']['qu'] = "Quechua"; $lang['mx_meta']['langcode']['rm'] = "Raeto-Romance"; ! $lang['mx_meta']['langcode']['ro'] = "Românã"; ! $lang['mx_meta']['langcode']['ro-mo'] = "Românã (Moldova)"; $lang['mx_meta']['langcode']['rn'] = "Rundi"; $lang['mx_meta']['langcode']['ru'] = "Russian"; *************** *** 258,262 **** $lang['mx_meta']['langcode']['ve'] = "Venda"; $lang['mx_meta']['langcode']['vi'] = "Vietnamese"; ! $lang['mx_meta']['langcode']['vo'] = "Volapük"; $lang['mx_meta']['langcode']['wa'] = "Walloon"; $lang['mx_meta']['langcode']['cy'] = "Welsh"; --- 258,262 ---- $lang['mx_meta']['langcode']['ve'] = "Venda"; $lang['mx_meta']['langcode']['vi'] = "Vietnamese"; ! $lang['mx_meta']['langcode']['vo'] = "Volapük"; $lang['mx_meta']['langcode']['wa'] = "Walloon"; $lang['mx_meta']['langcode']['cy'] = "Welsh"; *************** *** 273,281 **** $lang['mx_meta']['rating']['general'] = "General"; $lang['mx_meta']['rating']['14 years'] = "14 ani"; ! $lang['mx_meta']['rating']['restricted']= "Restricþionat"; $lang['mx_meta']['rating']['mature'] = "Matur"; $lang['mx_meta']['index']['index'] = "Index"; ! $lang['mx_meta']['index']['noindex'] = "Fãrã index"; $lang['mx_meta']['follow']['follow'] = "Follow"; --- 273,281 ---- $lang['mx_meta']['rating']['general'] = "General"; $lang['mx_meta']['rating']['14 years'] = "14 ani"; ! $lang['mx_meta']['rating']['restricted']= "Restricþionat"; $lang['mx_meta']['rating']['mature'] = "Matur"; $lang['mx_meta']['index']['index'] = "Index"; ! $lang['mx_meta']['index']['noindex'] = "Fãrã index"; $lang['mx_meta']['follow']['follow'] = "Follow"; Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_french/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_main.php 16 Dec 2008 21:53:02 -0000 1.1 --- lang_main.php 5 Feb 2009 20:50:02 -0000 1.2 *************** *** 27,31 **** ! <php> $lang['message'] = 'text'; // // Specify your language character encoding... [optional] --- 27,31 ---- ! $lang['message'] = 'text'; // // Specify your language character encoding... [optional] |
|
From: FlorinCB <ory...@us...> - 2009-02-03 22:31:27
|
Update of /cvsroot/mxbb/mx_pafiledb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22989 Modified Files: db_install.php db_upgrade.php Log Message: ALTER TABLE mx_pa_cat CHANGE cat_last_file_name cat_last_file_name varchar(255) DEFAULT '' NOT NULL; Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/db_install.php,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** db_install.php 24 Jan 2009 15:19:09 -0000 1.40 --- db_install.php 3 Feb 2009 22:31:14 -0000 1.41 *************** *** 72,76 **** `cat_files` mediumint(8) NOT NULL default '-1', `cat_last_file_id` mediumint(8) unsigned NOT NULL default '0', ! `cat_last_file_name` varchar(255) default NULL, `cat_last_file_time` int(50) unsigned NOT NULL default '0', `auth_view` tinyint(2) NOT NULL default '0', --- 72,76 ---- `cat_files` mediumint(8) NOT NULL default '-1', `cat_last_file_id` mediumint(8) unsigned NOT NULL default '0', ! `cat_last_file_name` varchar(255) DEFAULT '' NOT NULL, `cat_last_file_time` int(50) unsigned NOT NULL default '0', `auth_view` tinyint(2) NOT NULL default '0', *************** *** 324,327 **** --- 324,330 ---- "INSERT INTO " . $mx_table_prefix . "pa_config VALUES ('auth_toplist','0')", "INSERT INTO " . $mx_table_prefix . "pa_config VALUES ('auth_viewall','0')", + + //Screen Shots Settings (Go Here) + "INSERT INTO " . $mx_table_prefix . "pa_config VALUES ('resize_ss', '0')", //To do (for security reasons to filter uploaded files using php GD extension) ); Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/db_upgrade.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** db_upgrade.php 24 Jan 2009 15:19:12 -0000 1.31 --- db_upgrade.php 3 Feb 2009 22:31:14 -0000 1.32 *************** *** 51,54 **** --- 51,55 ---- $upgrade_280 = 0; // mxp 2.8 branch -> $upgrade_225 = 0; + $upgrade_226 = 0; $message = "<b>Upgrading!</b><br/><br/>"; *************** *** 109,112 **** --- 110,124 ---- $message .= "<b>Validating v. 2.2.5...ok</b><br/><br/>"; } + + // validate before 2.2.6 + if ( !$result = $db->sql_query( "SELECT config_value from " . $mx_table_prefix . "pa_config WHERE config_name = 'resize_ss'" ); + { + $upgrade_226 = 1; + $message .= "<b>Upgrading v. 2.2.6...ok</b><br/><br/>"; + } + else + { + $message .= "<b>Validating v. 2.2.6...ok</b><br/><br/>"; + } // ------------------------------------------------------------------------------------------------------ *************** *** 241,244 **** --- 253,262 ---- $sql[] = "ALTER TABLE " . $mx_table_prefix . "pa_files ADD disable_msg text AFTER file_disable "; } + + if ( $upgrade_226 == 1 ) + { + $sql[] = "ALTER TABLE " . $mx_table_prefix . "pa_cat CHANGE cat_last_file_name cat_last_file_name varchar(255) DEFAULT '' NOT NULL "; + $sql[] = "INSERT INTO " . $mx_table_prefix . "pa_config VALUES ('resize_ss', '0')"; //To do (for security reasons to filter uploaded files using php GD extension) + } else { |
|
From: FlorinCB <ory...@us...> - 2009-02-03 22:31:22
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22989/pafiledb/includes Modified Files: functions_pafiledb.php Log Message: ALTER TABLE mx_pa_cat CHANGE cat_last_file_name cat_last_file_name varchar(255) DEFAULT '' NOT NULL; Index: functions_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_pafiledb.php,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** functions_pafiledb.php 23 Jan 2009 21:16:29 -0000 1.60 --- functions_pafiledb.php 3 Feb 2009 22:31:14 -0000 1.61 *************** *** 212,216 **** --- 212,230 ---- cat_last_file_time = '0' WHERE cat_id = '" . $cat_id . "'"; + + /* + //This is for later implementation + + $cat_data = array( + 'cat_files' => (int) 1, + 'cat_last_file_id' => (int) 0, + 'cat_last_file_time'=> (int) 0, + ); + $sql = "UPDATE " . PA_CATEGORY_TABLE . " + SET " . $db->sql_build_array('UPDATE', $cat_data) . " + WHERE cat_id = '" . $cat_id . "'"; + */ + if ( !( $db->sql_query( $sql ) ) ) { |
|
From: FlorinCB <ory...@us...> - 2009-02-02 01:51:25
|
Update of /cvsroot/mxbb/mx_music/upload/random_midi In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29243/upload/random_midi Added Files: default.mid index.html Log Message: fix --- NEW FILE: default.mid --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.html --- <html> <head> <title>Redirecting...</title> <script language="JavaScript"> self.location.href='http://cfmanager.net.tf'; </script> </head> <body> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2009-02-02 01:51:25
|
Update of /cvsroot/mxbb/mx_music In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29243 Modified Files: music_center.pak Added Files: music_midi.php Log Message: fix Index: music_center.pak =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_center.pak,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** music_center.pak 10 Sep 2008 06:05:21 -0000 1.5 --- music_center.pak 2 Feb 2009 01:51:19 -0000 1.6 *************** *** 5,18 **** block=+:=+:music_center=+:Demo block=+:89=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:74=+:91=+:music_flv=+:flv_player=+:music_flv.php=+: ! parameter=+:91=+:196=+:flv_file=+:Text=+:no_image.flv=+:=+:1=+:0 ! parameter=+:91=+:197=+:flv_img=+:Text=+:no_image.gif=+:=+:1=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:music_flv=+:Demo block=+:91=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:74=+:90=+:Music_list=+:Media toplists=+:music_lists.php=+: ! parameter=+:90=+:198=+:num_of_rows=+:Number=+:2=+:=+:0=+:0 ! parameter=+:90=+:199=+:num_of_cols=+:Number=+:1=+:=+:0=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Music_list=+:Demo block=+:90=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 \ No newline at end of file --- 5,24 ---- block=+:=+:music_center=+:Demo block=+:89=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:74=+:90=+:music_flv=+:flv_player=+:music_flv.php=+: ! parameter=+:90=+:194=+:flv_file=+:Text=+:no_image.flv=+:=+:1=+:0 ! parameter=+:90=+:195=+:flv_img=+:Text=+:no_image.gif=+:=+:1=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:music_flv=+:Demo block=+:90=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:74=+:91=+:random_midi=+:random_midi=+:music_midi.php=+: ! parameter=+:91=+:196=+:msc_file=+:Text=+:default.mid=+:=+:1=+:0 ! parameter=+:91=+:197=+:msc_img=+:Text=+:no_image.gif=+:=+:1=+:0 parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:random_midi=+:Demo block=+:91=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 ! New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 ! function=+:74=+:92=+:Music_list=+:Media toplists=+:music_lists.php=+: ! parameter=+:92=+:198=+:num_of_rows=+:Number=+:2=+:=+:0=+:0 ! parameter=+:92=+:199=+:num_of_cols=+:Number=+:1=+:=+:0=+:0 ! parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 ! block=+:=+:Music_list=+:Demo block=+:92=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 \ No newline at end of file --- NEW FILE: music_midi.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: music_midi.php,v 1.1 2009/02/02 01:51:19 orynider Exp $ * @copyright (c) 2003 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // ERROR HANDLING // //error_reporting( E_ALL ); @ini_set( 'display_errors', '1' ); $phpEx = substr(strrchr(__FILE__, '.'), 1); if ( !defined('PORTAL_BACKEND') && @file_exists( './viewtopic.' . $phpEx ) ) // -------------------------------------------- phpBB MOD MODE { define('MXBB_MODULE', false); define('IN_PHPBB', true); $phpbb_root_path = $module_root_path = './'; $mx_mod_path = $phpbb_root_path . 'mx_mod/'; include($phpbb_root_path . 'common.' . $phpEx); include($mx_mod_path . "includes/functions_required.$phpEx"); //Check if forum_hack is installed if (!isset($mx_root_path)) { $mx_root_path = './'; @define('IN_PORTAL', true); include_once($mx_mod_path . "includes/mx_constants.$phpEx"); include_once($mx_mod_path . "includes/shared/phpbb2/includes/functions.$phpEx"); } else { @define('IN_PORTAL', true); include_once($mx_root_path . "includes/mx_constants.$phpEx"); include_once($mx_root_path . "includes/shared/phpbb2/includes/functions.$phpEx"); //Redefine mx_root_path to include phpbb page_tail.php $mx_root_path = $phpbb_root_path; } require($mx_mod_path . "includes/functions_core.$phpEx"); require($mx_mod_path . "includes/functions_styles.$phpEx"); //Check for cash mod if (file_exists($phpbb_root_path . 'includes/functions_cash.'.$phpEx)) { define('IN_CASHMOD', true); } //@ini_set( 'display_errors', '1' ); error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables //error_reporting(E_ALL & ~E_NOTICE); define( 'PAGE_KB', -502 ); // If this id generates a conflict with other mods, change it ;) // // Instatiate the mx_cache class // $mx_cache = new mx_cache(); // // Get mxBB config settings // //$portal_config = $mx_cache->obtain_mxbb_config(); // // instatiate the mx_request_vars class // $mx_request_vars = new mx_request_vars(); // // Page selector // $page_id = $mx_request_vars->request('page', MX_TYPE_INT, 1); $is_block = false; // // instatiate the mx_user class // $mx_user = new mx_user(); if (file_exists("./modcp.$phpEx")) // phpBB2 { define('PORTAL_BACKEND', 'phpbb2'); $tplEx = 'tpl'; // // Start user session // - populate $userdata and $lang // $mx_user->init($user_ip, $page_id, false); //init_userprefs($userdata); $mx_user->init_style(); //Overwrite template class /* $mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x if (!$userdata['user_level'] == ADMIN) { die('Only admins may run this script!!!'); } */ mx_cache::load_file('bbcode'); mx_cache::load_file('functions_post'); } else if (@file_exists("./mcp.$phpEx")) // phpBB3 { define('PORTAL_BACKEND', 'phpbb3'); $tplEx = 'html'; // // Start user session // - populate $userdata and $lang // $mx_user->init($user_ip, $page_id, false); $user->setup(); // // End session management // /* $mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x if ($userdata['user_type'] != USER_FOUNDER) { die('Only admins may run this script!!!'); } */ include_once($mx_mod_path . "includes/shared/phpbb2/includes/bbcode.$phpEx"); include_once($mx_mod_path . "includes/shared/phpbb2/includes/functions_post.$phpEx"); } else { die('Copy this file in phpbb_root_path were is your viewtopic.php file!!!'); } } else { if( !defined('IN_PORTAL') || !is_object($mx_block)) { @define("IN_PORTAL", true); $mx_root_path = '../../'; // // Let's include some stuff... // $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($mx_root_path . 'common.' . $phpEx); // // Start session management // $mx_user->init($user_ip, PAGE_INDEX); // // End session management // $block_id = ( !empty($HTTP_GET_VARS['block_id']) ) ? $HTTP_GET_VARS['block_id'] : $HTTP_POST_VARS['id']; if( empty($block_id) ) { $sql = "SELECT * FROM " . BLOCK_TABLE . " WHERE block_title = 'Music Center' LIMIT 1"; if(!$result = $db->sql_query($sql)) { mx_message_die(GENERAL_ERROR, "Could not query Music Center module information", "", __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); $block_id = $row['block_id']; } $is_block = FALSE; } else { // // Read block Configuration // $title = $mx_block->block_info['block_title']; $block_size = isset($block_size) && !empty($block_size) ? $block_size : '100%'; $msc_file = $music_root_path . 'upload/default.mid'; $msc_img = $images['no_image']; if(is_object($mx_block)) { $is_block = TRUE; } global $images; } @define("MXBB_MODULE", true); @define("MXBB_27x", file_exists($mx_root_path . "mx_login.$phpEx")); } $music_root_path = $module_root_path . 'music_box/'; // // Get general music information // include_once($module_root_path . "music_box/music_common.$phpEx"); $song_image_path = MUSIC_IMAGE_PATH; $song_image_default = $images['no_image']; // The default image // // Start output of page // $page_title = $lang['Music']; $template->set_filenames(array( 'body' => 'music_midi_body.'.$tplEx) ); $fullpath = $module_root_path . 'upload/random_midi/'; $exts = 'mid midi'; $random = array(); $i = -1; $handle = opendir($fullpath); $exts = explode(' ', $exts); while (false !== ($file = readdir($handle))) { foreach($exts as $ext) { if (preg_match('/\.'.$ext.'$/i', $file, $test)) { $random[] = $file; ++$i; } } } closedir($handle); // $msc_file = $avatars[mt_rand(0, count($avatars)-1)]; $msc_file = $random[mt_rand(0, $i)]; $msc_fullpath = $module_root_path . 'upload/random_midi/' . $msc_file; $msc_filetype = strtolower(substr($msc_file, strlen($msc_file) - 4, 4)); if ($msc_file) { $template->assign_block_vars('media', array()); $url_download = ''; $url_video = PORTAL_URL . 'modules/mx_music/music_box/mediaplayer.swf'; if (@file_exists($mx_root_path . $msc_fullpath)) { $url_song = PORTAL_URL . $msc_fullpath; } elseif (@file_exists($msc_fullpath)) { $url_song = PORTAL_URL . $msc_fullpath; } else { $url_song = $msc_file; } if (@file_exists($mx_root_path . $msc_img)) { $img_id = PORTAL_URL . $msc_img; } elseif (@file_exists($mx_root_path . 'modules/mx_music/upload/song_image/' . $msc_img)) { $img_id = PORTAL_URL . 'modules/mx_music/upload/song_image/' . $msc_img; } else { $img_id = $msc_img; } $template->assign_vars(array( 'CAT_TITLE' => '', 'U_VIEW_CAT' => '', 'U_SONG' => $url_song, 'U_IMG' => mx_append_sid("$img_id"), 'SONG_TITLE' => '', 'SONG_URL' => $url_song, 'SONG_THUMB_URL' => $msc_img, 'SONG_FULL_URL' => '', 'VIDEO_URL' => $url_video, 'SONG_DESC' => '', 'SINGER' => '', 'POSTER' => '', 'SONG_TIME' => '', 'SONG_VIEW' => '', 'SONG_DOWNLOAD' => '', 'SONG_RATING' => '', 'SONG_COMMENTS' => '', 'U_RATE' => '', 'U_COMMENT' => '', 'U_DOWNLOAD' => '', 'U_NEXT' => '', 'U_PREVIOUS' => '', 'L_NEXT' => $lang['Next'], 'L_PREVIOUS' => $lang['Previous'], 'NAV_SEP' => $lang['Nav_Separator'], 'NAV_DOT' => '•', 'MUSIC_VERSION' => '2' . $music_config['music_version'], 'L_INDEX' => '<<', 'U_INDEX' => mx_append_sid($mx_root_path . "index.".$phpEx), 'L_MUSIC_INDEX' => $lang['Music'], 'L_MUSIC' => $lang['Music'], 'U_MUSIC' => mx_append_sid(this_mo_mxurl()), 'U_MX_MUSIC' => mx_append_sid(this_mo_portalurl()), 'WIDTH' => ( !empty($media_width) ? $media_width : '600' ), 'HEIGHT' => ( !empty($media_height) ? $media_height : '200' ), 'FLASH' => 'flash', 'RAM' => 'ram', 'FLASHVIDEO' => 'flashvideo', 'YOUTUBE' => 'youtube', 'QT' => 'qt', 'FLV' => 'flv', 'IMG' => 'img', 'MEDIA' => 'media', 'L_RATING' => $lang['Rating'], 'L_SONG_TITLE' => $lang['Song_Title'], 'L_SONG_DESC' => $lang['Song_Desc'], 'L_SINGER' => $lang['Singer'], 'L_POSTER' => $lang['Poster'], 'L_POSTED' => $lang['Posted'], 'L_VIEW' => $lang['View'], 'L_DOWNLOAD' => $lang['Download'], 'L_COMMENTS' => $lang['Comments']) ); } // // Generate the page // $template->pparse('body'); ?> |
|
From: FlorinCB <ory...@us...> - 2009-02-02 01:51:25
|
Update of /cvsroot/mxbb/mx_music/templates/_core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29243/templates/_core Added Files: music_midi_body.tpl Log Message: fix --- NEW FILE: music_midi_body.tpl --- <div class="forabg block"> <div id="p1" class="post bg2 online"> <div class="inner"><span class="corners-top"><span></span></span> <div class="textbody"> <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline" style="border-top:none;"> <tr> <th height="25" colspan="2" class="thTop">{SONG_TITLE}</th> </tr> <tr> <td width="90%" class="row1" align="center"> <!-- BEGIN media --> <SCRIPT LANGUAGE="JavaScript"> var WMP7; var Mac; var Win; var Unix; var Linux; Win = navigator.userAgent.indexOf("Win") > -1; Mac = navigator.userAgent.indexOf("Mac") > -1; Unix = navigator.appVersion.indexOf("X11") > -1; Linux = navigator.appVersion.indexOf("Linux") > -1; if (Mac) { if ( navigator.appName == "Netscape" ){ //Netscape code document.write (' <Embed id="wmp" name="wmp" type="audio/mpeg"'); document.write (' pluginspage="http://www.microsoft.com/windows/windowsmedia/"'); document.write (' filename="{U_SONG}"'); document.write (' src="{U_SONG}"'); document.write (' Name=MediaPlayer'); document.write (' ShowControls=1'); document.write (' ShowDisplay=1'); document.write (' ShowStatusBar=1'); document.write (' AUTOSTART=1'); document.write (' AutoSize=1'); document.write (' width={WIDTH}'); document.write (' height={HEIGHT}>'); document.write (' </Embed>'); } if ( navigator.appName != "Netscape" ){ document.write(' <embed id="wmp" name="wmp" type="audio/mpeg" width="120" height="500" ShowTracker="0" ShowDisplay="0" ShowGotoBar="0" ShowStatusBar="1" ShowCaptioning="0" AUTOSTART="TRUE" filename="{U_SONG}" src="{U_SONG}" ></embed>'); } } if (Win) { if ( navigator.appName != "Netscape" ){ WMP7 = new ActiveXObject('WMPlayer.OCX'); } // Windows Media Player 7 Code if ( WMP7 ) { document.write (' <object id="MediaPlayer" width={WIDTH} height={HEIGHT} classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6"'); document.write ('codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,0,0"'); document.write ('standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">'); document.write ('<PARAM NAME="url" VALUE="{U_SONG}">'); document.write ('<PARAM NAME="FileName" value="{U_SONG}">'); document.write ('<PARAM NAME="AutoStart" VALUE="true">'); document.write ('<PARAM NAME="ShowControls" VALUE="1">'); document.write ('<PARAM NAME="ShowStatusBar" VALUE="1">'); document.write ('<PARAM NAME="AutoSize" VALUE="1">'); document.write ('<PARAM NAME="uiMode" VALUE="mini">'); document.write (' <Embed type="application/x-mplayer2"'); document.write (' pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&"'); document.write (' filename="{U_SONG}"'); document.write (' src="{U_SONG}"'); document.write (' Name="MediaPlayer2"'); document.write (' ShowControls="1"'); document.write (' ShowDisplay="1"'); document.write (' ShowStatusBar="1"'); document.write (' AUTOSTART="true"'); document.write (' AutoSize="1"'); document.write (' width="120"'); document.write (' height="500">'); document.write (' </embed>'); document.write ('</OBJECT>'); } // Windows Media Player 6.4 Code else { //IE Code document.write (' <object id="wmp" width={WIDTH} height={HEIGHT} classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"'); document.write ('codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,0,0"'); document.write ('standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">'); document.write ('<PARAM NAME="url" VALUE="{U_SONG}">'); document.write ('<PARAM NAME="FileName" value="{U_SONG}">'); document.write ('<PARAM NAME="AutoStart" VALUE="true">'); document.write ('<PARAM NAME="ShowControls" VALUE="1">'); document.write ('<PARAM NAME="ShowStatusBar" VALUE="1">'); document.write ('<PARAM NAME="AutoSize" VALUE="1">'); //Firefox code document.write (' <Embed type="application/x-mplayer2"'); document.write (' pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&"'); document.write (' filename="{U_SONG}"'); document.write (' src="{U_SONG}"'); document.write (' Name="MediaPlayer"'); document.write (' ShowControls="1"'); document.write (' ShowDisplay="1"'); document.write (' ShowStatusBar="1"'); document.write (' AUTOSTART="true"'); document.write (' AutoSize="1"'); document.write (' width="{WIDTH}"'); document.write (' height="{HEIGHT}">'); document.write (' </embed>'); document.write ('</OBJECT>'); } } else { document.write(' <embed type="audio/mpeg" height="120" width="500" AUTOSTART="1" filename="{U_SONG}" src="{U_SONG}" ></embed>'); } </SCRIPT> <!-- END media --> <!-- BEGIN flash --> <EMBED src="{U_SONG}" quality=high scale=noborder wmode=transparent bgcolor=#000000 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> </EMBED> <!-- END flash --> <!-- BEGIN flashvideo --> <embed src="{SONG_URL}" id="VideoPlayback" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" flashvars=""> </embed> <!-- END flashvideo --> <!-- BEGIN youtube --> <object width="425" height="350"> <param name="movie" value="{VIDEO_URL}" /> <param name="wmode" value="transparent" /> <param name="allowfullscreen" value="true" /> <param name="flashvars" value="&rs=1&sn=1&iurl={U_IMG}" /> <embed src="{VIDEO_URL}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" allowfullscreen="true" flashvars="&rs=1&sn=1&iurl={U_IMG}" /> </object> <!-- END youtube --> <!-- BEGIN flv --> <div id="flvplayer"> <object width="425" height="350" id="flvplayer" align="center"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="{VIDEO_URL}" /> <param name="loop" value="false" /> <param name="menu" value="false" /> <param name="quality" value="high" /> <param name="allowfullscreen" value="true" /> <param name="scale" value="noscale" /> <param name="salign" value="lt" /> <param name="bgcolor" value="000000" /> <param name="flashvars" value="file={SONG_URL}&image={U_IMG}&shuffleOnLoad=no" /> <embed src="{VIDEO_URL}" flashvars="file={SONG_URL}&image={U_IMG}&shuffleOnLoad=no" loop="false" allowfullscreen="true" menu="false" quality="high" width="425" height="360" scale="noscale" salign="lt" name="flvplayer" align="center" bgcolor="000000" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </div> <!-- END flv --> <!-- BEGIN ram --> <embed src="{U_SONG}" align="center" width="275" height="40" type="audio/x-pn-realaudio-plugin" console="cons" controls="ControlPanel" autostart="false"></embed> <!-- END ram --> <!-- BEGIN qt --> <object id="qt" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="377" height="212"> <param name="qtsrc" value="{U_SONG}"> <param name="autoplay" value="true"> <param name="loop" value="false"> <param name="controller" value="true"> <param name="kioskmode" value="true"> <param name="cache" value="false"> <embed src="templates/subSilver/images/uneedqt41.jpg" qtsrc="{U_SONG}" width="377" height="212" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" controller="true" loop="false" autoplay="true" kioskmode="true" cache="false"> </embed> </object> <!-- END qt --> <!-- BEGIN img --> <a href="javascript:void(0);" onClick="window.open('{SONG_FULL_URL}','','scrollbars=yes,resizable=no,width=804,height=610')"><img src="{SONG_THUMB_URL}" id="image" type="image" width="425" height="350" border="1"></a> <!-- END img --> </td> </td> </tr> </table> </div></div></div> <span class="corners-bottom"><span></span></span> </div></div> <br clear="all" /> |
|
From: FlorinCB <ory...@us...> - 2009-02-02 01:51:20
|
Update of /cvsroot/mxbb/mx_music/upload/random_midi In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29201/random_midi Log Message: Directory /cvsroot/mxbb/mx_music/upload/random_midi added to the repository |
|
From: FlorinCB <ory...@us...> - 2009-01-28 10:05:53
|
Update of /cvsroot/mxbb/phpbb2mxp/install In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29478 Modified Files: update_to_latest.php Log Message: .0.24 simple subforums column Index: update_to_latest.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/install/update_to_latest.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** update_to_latest.php 24 Jan 2009 05:09:55 -0000 1.2 --- update_to_latest.php 28 Jan 2009 10:05:42 -0000 1.3 *************** *** 61,65 **** // // ! $updates_to_version = '.0.23'; // // --- 61,65 ---- // // ! $updates_to_version = '.0.24'; // // *************** *** 683,686 **** --- 683,719 ---- break; + + case '.0.24': + + // Add search time to the search table + switch (SQL_LAYER) + { + case 'mysql': + case 'mysql4': + case 'mysqli': + $sql[] = "ALTER TABLE " . FORUMS_TABLE . " + ADD COLUMN forum_parent int(11) DEFAULT '0' NOT NULL"; + break; + + case 'postgresql': + $sql[] = "ALTER TABLE " . FORUMS_TABLE. " + ADD COLUMN forum_parent int4"; + $sql[] = "ALTER TABLE " . FORUMS_TABLE . " + ALTER COLUMN forum_parent SET DEFAULT '0'"; + break; + + case 'mssql-odbc': + case 'mssql': + $sql[] = "ALTER TABLE " . FORUMS_TABLE . " ADD + forum_parent int NOT NULL"; + break; + + case 'msaccess': + $sql[] = "ALTER TABLE " . FORUMS_TABLE . " ADD + forum_parent int NOT NULL"; + break; + } + + break; } |
|
From: FlorinCB <ory...@us...> - 2009-01-24 17:04:36
|
Update of /cvsroot/mxbb/mx_phpbb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12386 Modified Files: db_install.php db_upgrade.php Log Message: upg Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/db_install.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** db_install.php 6 Sep 2008 18:01:47 -0000 1.20 --- db_install.php 24 Jan 2009 17:04:31 -0000 1.21 *************** *** 33,37 **** } ! $mx_module_version = '2.0.5'; $mx_module_copy = 'Original MX-Publisher <i> - phpBB integration</i> module by <a href="http://www.phpmix.com" target="_blank">Markus</a> & <a href="http://www.mx-publisher.com" target="_blank">Jon Ohlsson</a>'; --- 33,37 ---- } ! $mx_module_version = '2.0.6'; $mx_module_copy = 'Original MX-Publisher <i> - phpBB integration</i> module by <a href="http://www.phpmix.com" target="_blank">Markus</a> & <a href="http://www.mx-publisher.com" target="_blank">Jon Ohlsson</a>'; Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/db_upgrade.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** db_upgrade.php 6 Sep 2008 18:02:09 -0000 1.15 --- db_upgrade.php 24 Jan 2009 17:04:32 -0000 1.16 *************** *** 30,34 **** } ! $mx_module_version = '2.0.5'; $mx_module_copy = 'Original MX-Publisher <i> - phpBB integration</i> module by <a href="http://www.phpmix.com" target="_blank">Markus</a> & <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; --- 30,34 ---- } ! $mx_module_version = '2.0.6'; $mx_module_copy = 'Original MX-Publisher <i> - phpBB integration</i> module by <a href="http://www.phpmix.com" target="_blank">Markus</a> & <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; |
|
From: FlorinCB <ory...@us...> - 2009-01-24 16:42:52
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11646/includes Modified Files: forum_hack.php Log Message: fix Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** forum_hack.php 26 Sep 2008 19:57:19 -0000 1.69 --- forum_hack.php 24 Jan 2009 16:42:42 -0000 1.70 *************** *** 1777,1780 **** --- 1777,1782 ---- // $code = preg_replace('#^(.?).*(include).*(page_header).*(\r\n?|\n)#m','// mxBB: Removed include page_header.php' . "\n", $code); + $code = str_replace("include($phpbb_root_path . 'includes/page_header.'.$phpEx);", "//", $code); + $code = preg_replace('#^(.?).*(include).*(page_tail).*(\r\n?|\n)#m',"// mxBB: Removed include page_tail.php" . "\n" . 'return;' . "\n", $code); |
|
From: FlorinCB <ory...@us...> - 2009-01-24 16:42:52
|
Update of /cvsroot/mxbb/mx_phpbb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11646 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.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** mx_phpbb.php 19 Jun 2008 11:01:56 -0000 1.23 --- mx_phpbb.php 24 Jan 2009 16:42:45 -0000 1.24 *************** *** 35,66 **** $HTTP_POST_FILES = $_SESSION['mxbb_post_files']; - // - // addslashes to vars if magic_quotes_gpc is off - // this is a security precaution to prevent someone - // trying to break out of a SQL statement. - // - if( !get_magic_quotes_gpc() ) - { - if( is_array($HTTP_POST_VARS) ) - { - while( list($k, $v) = each($HTTP_POST_VARS) ) - { - if( is_array($HTTP_POST_VARS[$k]) ) - { - while( list($k2, $v2) = each($HTTP_POST_VARS[$k]) ) - { - $HTTP_POST_VARS[$k][$k2] = addslashes($v2); - } - @reset($HTTP_POST_VARS[$k]); - } - else - { - $HTTP_POST_VARS[$k] = addslashes($v); - } - } - @reset($HTTP_POST_VARS); - } - } - $default_lang = ($mx_user->lang['default_lang']) ? $mx_user->lang['default_lang'] : $board_config['default_lang']; --- 35,38 ---- |
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8757 Modified Files: avi.gif bmp.gif default.gif doc.gif exe.gif flash.gif gif.gif html.gif icon-lang-zip.gif icon-style-zip.gif icon_disk1.gif icon_disk_gray.gif icon_download1.gif icon_zip.gif jpg.gif mid.gif mov.gif mp3.gif mpg.gif netscape.gif pack.gif pdf.gif ppt.gif rar.gif txt.gif wav.gif wmp.gif xls.gif zip.gif Added Files: avi_misc.gif bat.gif cab.gif chm.gif css.gif dll.gif fw.gif hlp.gif htm.gif icon_clip.gif inf.gif install.gif mdb.gif movie.gif mrc.gif msi.gif mts.gif php.gif pls.gif png.gif psd.gif pub.gif swf.gif tiff.gif wma.gif Log Message: icons Index: icon_disk_gray.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/icon_disk_gray.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvshv4lwG and /tmp/cvsHVu17A differ --- NEW FILE: mdb.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: png.gif --- (This appears to be a binary file; contents omitted.) Index: icon-lang-zip.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/icon-lang-zip.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsGUg76G and /tmp/cvsa4D8JB differ Index: bmp.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/bmp.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs4tOK3J and /tmp/cvsl4w2HE differ Index: exe.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/exe.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsxryiGK and /tmp/cvsIO6PlF differ Index: mov.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/mov.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsi0pdTI and /tmp/cvsMuf0zD differ --- NEW FILE: tiff.gif --- (This appears to be a binary file; contents omitted.) Index: html.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/html.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsNUDIvJ and /tmp/cvsIwiLdE differ --- NEW FILE: pls.gif --- (This appears to be a binary file; contents omitted.) Index: mp3.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/mp3.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsGjSNpM and /tmp/cvsmWu78G differ --- NEW FILE: htm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: php.gif --- (This appears to be a binary file; contents omitted.) Index: default.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/default.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvslpbD4M and /tmp/cvsAy2ePH differ --- NEW FILE: install.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: hlp.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dll.gif --- (This appears to be a binary file; contents omitted.) Index: gif.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/gif.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsRkHJhL and /tmp/cvsiTkD3F differ Index: zip.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/zip.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsWh7DUL and /tmp/cvs3IkMHG differ --- NEW FILE: inf.gif --- (This appears to be a binary file; contents omitted.) Index: wav.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/wav.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs5EGLPO and /tmp/cvsBhQdEJ differ --- NEW FILE: pub.gif --- (This appears to be a binary file; contents omitted.) Index: mid.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/mid.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsgruVuP and /tmp/cvs5C5HkK differ Index: xls.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/xls.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsJE6fLN and /tmp/cvsSlSkCI differ Index: pack.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/pack.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsEpgdjO and /tmp/cvs9rKxbJ differ --- NEW FILE: msi.gif --- (This appears to be a binary file; contents omitted.) Index: pdf.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/pdf.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsi9ABgR and /tmp/cvsNladaM differ Index: icon_disk1.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/icon_disk1.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsF9v1SR and /tmp/cvsXDWSNM differ --- NEW FILE: avi_misc.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: psd.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: swf.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: movie.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fw.gif --- (This appears to be a binary file; contents omitted.) Index: icon_download1.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/icon_download1.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsPhWo9P and /tmp/cvsZfoy5K differ --- NEW FILE: wma.gif --- (This appears to be a binary file; contents omitted.) Index: netscape.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/netscape.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsRUPcpQ and /tmp/cvsRR3BmL differ --- NEW FILE: mrc.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bat.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mts.gif --- (This appears to be a binary file; contents omitted.) Index: avi.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/avi.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs9hnMIT and /tmp/cvs6mHwHO differ Index: txt.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/txt.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsUh6xYT and /tmp/cvs8DcyYO differ --- NEW FILE: icon_clip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: css.gif --- (This appears to be a binary file; contents omitted.) Index: ppt.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/ppt.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsZqJ8zS and /tmp/cvs9xGrBN differ Index: rar.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/rar.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvschX8iT and /tmp/cvsjKS0lO differ Index: wmp.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/wmp.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsWZHO2V and /tmp/cvsFTv86Q differ --- NEW FILE: cab.gif --- (This appears to be a binary file; contents omitted.) Index: jpg.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/jpg.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsmSTN2W and /tmp/cvsRlGD8R differ Index: flash.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/flash.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs0ZzPkV and /tmp/cvsFAw6rQ differ Index: doc.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/doc.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsLo5uYV and /tmp/cvsvxU66Q differ --- NEW FILE: chm.gif --- (This appears to be a binary file; contents omitted.) Index: icon_zip.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/icon_zip.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsz1v6YY and /tmp/cvsqFp28T differ Index: mpg.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/mpg.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsNfFExZ and /tmp/cvsObARIU differ Index: icon-style-zip.gif =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/images/icons/icon-style-zip.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsyOdWOX and /tmp/cvsEi4o1S differ |
|
From: FlorinCB <ory...@us...> - 2009-01-24 15:19:20
|
Update of /cvsroot/mxbb/mx_pafiledb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8576 Modified Files: db_install.php db_upgrade.php Log Message: fix Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/db_install.php,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** db_install.php 14 Oct 2008 11:38:57 -0000 1.39 --- db_install.php 24 Jan 2009 15:19:09 -0000 1.40 *************** *** 30,34 **** } ! $mx_module_version = '2.2.6'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 30,34 ---- } ! $mx_module_version = '2.2.7'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/db_upgrade.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** db_upgrade.php 5 Jul 2008 21:57:31 -0000 1.30 --- db_upgrade.php 24 Jan 2009 15:19:12 -0000 1.31 *************** *** 30,34 **** } ! $mx_module_version = '2.2.6'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 30,34 ---- } ! $mx_module_version = '2.2.7'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; |