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: Florin C B. <ory...@us...> - 2011-07-27 15:14:30
|
Update of /cvsroot/mxbb/mx_clock/clocks In directory vz-cvs-4.sog:/tmp/cvs-serv22042/clocks Added Files: Clock.swf design.swf Log Message: cleanup --- NEW FILE: Clock.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: design.swf --- (This appears to be a binary file; contents omitted.) |
|
From: Florin C B. <ory...@us...> - 2011-07-17 02:33:33
|
Update of /cvsroot/mxbb/mx_music/music_box/modules
In directory vz-cvs-4.sog:/tmp/cvs-serv30161/music_box/modules
Modified Files:
music_cat.php music_edit.php music_media_cat.php
music_page.php music_pic_cat.php
Log Message:
image file or image url in imagename - plist using preg
Index: music_media_cat.php
===================================================================
RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_media_cat.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** music_media_cat.php 10 Sep 2008 06:54:22 -0000 1.10
--- music_media_cat.php 17 Jul 2011 02:33:30 -0000 1.11
***************
*** 9,13 ****
*/
! //mxBB
if ( !defined('IN_PORTAL') )
{
--- 9,13 ----
*/
! //MXP
if ( !defined('IN_PORTAL') )
{
***************
*** 16,19 ****
--- 16,20 ----
$music_root_path = $module_root_path . 'music_box/';
+ $song_image_default = $images['no_image']; // The default image
// ------------------------------------
***************
*** 470,474 ****
$cat_id = $thissong['song_cat_id'];
$user_id = $thissong['song_user_id'];
!
if ( $thissong['song_imagename'] == '' )
{
--- 471,478 ----
$cat_id = $thissong['song_cat_id'];
$user_id = $thissong['song_user_id'];
!
! //Image Edit Added by OryNider from Radio Cast
! $thispattern = '/^(([\w]+:)?\/\/)?(([\d\w]|%[a-fA-f\d]{2,2})+(:([\d\w]|%[a-fA-f\d]{2,2})+)?@)?([\d\w][-\d\w]{0,253}[\d\w]\.)+[\w]{2,4}(:[\d]+)?(\/([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)*(\?(&?([-+_~.\d\w]|%[a-fA-f\d]{2,2})=?)*)?(#([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)?$/';
!
if ( $thissong['song_imagename'] == '' )
{
***************
*** 493,499 ****
if ( ($thissong['song_filetype'] == '') || ($song_filetype) && ($thissong['song_filetype'] != $song_filetype) )
{
! //
! // Update the song filetype
! //
$sql = "UPDATE " . MUSIC_TABLE . "
SET song_filetype = '" . $song_filetype . "'
--- 497,503 ----
if ( ($thissong['song_filetype'] == '') || ($song_filetype) && ($thissong['song_filetype'] != $song_filetype) )
{
! //
! // Update the song filetype
! //
$sql = "UPDATE " . MUSIC_TABLE . "
SET song_filetype = '" . $song_filetype . "'
Index: music_edit.php
===================================================================
RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_edit.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** music_edit.php 29 Jan 2008 07:51:05 -0000 1.2
--- music_edit.php 17 Jul 2011 02:33:30 -0000 1.3
***************
*** 9,13 ****
*/
! // MX
if ( !defined('IN_PORTAL') )
{
--- 9,13 ----
*/
! // MXP
if ( !defined('IN_PORTAL') )
{
***************
*** 15,21 ****
}
- $music_root_path = $module_root_path . 'music_box/';
//Image Edit Added by OryNider
$song_image_path = MUSIC_IMAGE_PATH;
// ------------------------------------
--- 15,22 ----
}
//Image Edit Added by OryNider
$song_image_path = MUSIC_IMAGE_PATH;
+ $music_root_path = $module_root_path . 'music_box/';
+ $song_image_default = $images['no_image']; // The default image
// ------------------------------------
***************
*** 61,65 ****
}
- //Image Edit Added by OryNider
if( !empty($thissong['song_imagename']) )
{
--- 62,65 ----
Index: music_page.php
===================================================================
RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_page.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** music_page.php 5 Jan 2011 00:00:03 -0000 1.16
--- music_page.php 17 Jul 2011 02:33:30 -0000 1.17
***************
*** 25,29 ****
! // MX
if ( !defined('IN_PORTAL') )
{
--- 25,29 ----
! // MXP
if ( !defined('IN_PORTAL') )
{
***************
*** 32,37 ****
$music_root_path = $module_root_path . 'music_box/';
- $song_image_path = MUSIC_IMAGE_PATH;
$song_image_default = $images['no_image']; // The default image
// ------------------------------------
--- 32,37 ----
$music_root_path = $module_root_path . 'music_box/';
$song_image_default = $images['no_image']; // The default image
+ $song_image_path = MUSIC_IMAGE_PATH;
// ------------------------------------
***************
*** 131,142 ****
}
! if ( !$thissong['song_imagename'] )
{
! $img_id = $song_image_default;
}
! else
{
$img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']);
}
if ( !$thissong['song_url'] )
--- 131,149 ----
}
! //Image Edit Added by OryNider from Radio Cast
! $thispattern = '/^(([\w]+:)?\/\/)?(([\d\w]|%[a-fA-f\d]{2,2})+(:([\d\w]|%[a-fA-f\d]{2,2})+)?@)?([\d\w][-\d\w]{0,253}[\d\w]\.)+[\w]{2,4}(:[\d]+)?(\/([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)*(\?(&?([-+_~.\d\w]|%[a-fA-f\d]{2,2})=?)*)?(#([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)?$/';
!
! if ($result = preg_match($thispattern, $thissong['song_imagename']))
{
! $img_id = $thissong['song_imagename'];
}
! else if (!empty($thissong['song_imagename']))
{
$img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']);
}
+ else
+ {
+ $img_id = $song_image_default;
+ }
if ( !$thissong['song_url'] )
***************
*** 286,290 ****
$template->assign_block_vars('ogg', array());
! if ( $thisstation['song_url'] == '' )
{
$url_download = mx_append_sid(this_mo_mxurl("music_mode=music_download&song_id=$song_id"));
--- 293,297 ----
$template->assign_block_vars('ogg', array());
! if ( $thissong['song_url'] == '' )
{
$url_download = mx_append_sid(this_mo_mxurl("music_mode=music_download&song_id=$song_id"));
Index: music_pic_cat.php
===================================================================
RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_pic_cat.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** music_pic_cat.php 10 Sep 2008 06:54:22 -0000 1.9
--- music_pic_cat.php 17 Jul 2011 02:33:30 -0000 1.10
***************
*** 9,13 ****
*/
! //mxBB
if ( !defined('IN_PORTAL') )
{
--- 9,13 ----
*/
! //MXP
if ( !defined('IN_PORTAL') )
{
***************
*** 15,18 ****
--- 15,21 ----
}
+ $music_root_path = $module_root_path . 'music_box/';
+ $song_image_default = $images['no_image']; // The default image
+
// ------------------------------------
// Check the request
***************
*** 442,456 ****
$cat_id = $thissong['song_cat_id'];
$user_id = $thissong['song_user_id'];
!
! if ( $thissong['song_imagename'] == '' )
{
! $img_id = $images['no_image'];
}
! else
{
$img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']);
}
! if ( $thissong['song_url'] == '' )
{
$song_filetype = substr($thissong['song_filename'], strlen($thissong['song_filename']) - 3, 3);
--- 445,466 ----
$cat_id = $thissong['song_cat_id'];
$user_id = $thissong['song_user_id'];
!
! //Image Edit Added by OryNider from Radio Cast
! $thispattern = '/^(([\w]+:)?\/\/)?(([\d\w]|%[a-fA-f\d]{2,2})+(:([\d\w]|%[a-fA-f\d]{2,2})+)?@)?([\d\w][-\d\w]{0,253}[\d\w]\.)+[\w]{2,4}(:[\d]+)?(\/([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)*(\?(&?([-+_~.\d\w]|%[a-fA-f\d]{2,2})=?)*)?(#([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)?$/';
!
! if ($result = preg_match($thispattern, $thissong['song_imagename']))
{
! $img_id = $thissong['song_imagename'];
}
! else if (!empty($thissong['song_imagename']))
{
$img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']);
}
+ else
+ {
+ $img_id = $song_image_default;
+ }
! if ($thissong['song_url'] == '')
{
$song_filetype = substr($thissong['song_filename'], strlen($thissong['song_filename']) - 3, 3);
Index: music_cat.php
===================================================================
RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_cat.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** music_cat.php 5 Jan 2011 00:00:03 -0000 1.15
--- music_cat.php 17 Jul 2011 02:33:30 -0000 1.16
***************
*** 9,13 ****
*/
! //mxBB
if ( !defined('IN_PORTAL') )
{
--- 9,13 ----
*/
! //MXP
if ( !defined('IN_PORTAL') )
{
***************
*** 16,19 ****
--- 16,20 ----
$music_root_path = $module_root_path . 'music_box/';
+ $song_image_default = $images['no_image']; // The default image
// ------------------------------------
***************
*** 789,800 ****
$cat_id = $thissong['song_cat_id'];
$user_id = $thissong['song_user_id'];
!
! if ( $thissong['song_imagename'] == '' )
{
! $img_id = $images['no_image'];
}
else
{
! $img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']);
}
--- 790,808 ----
$cat_id = $thissong['song_cat_id'];
$user_id = $thissong['song_user_id'];
!
! //Image Edit Added by OryNider from Radio Cast
! $thispattern = '/^(([\w]+:)?\/\/)?(([\d\w]|%[a-fA-f\d]{2,2})+(:([\d\w]|%[a-fA-f\d]{2,2})+)?@)?([\d\w][-\d\w]{0,253}[\d\w]\.)+[\w]{2,4}(:[\d]+)?(\/([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)*(\?(&?([-+_~.\d\w]|%[a-fA-f\d]{2,2})=?)*)?(#([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)?$/';
!
! if ($result = preg_match($thispattern, $thissong['station_imagename']))
{
! $img_id = $thissong['station_imagename'];
! }
! else if (!empty($thissong['station_imagename']))
! {
! $img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . . $thissong['station_imagename']);
}
else
{
! $img_id = $song_image_default;
}
|
|
From: Florin C B. <ory...@us...> - 2011-05-02 21:17:28
|
Update of /cvsroot/mxbb/mx_ggsitemaps_adv/ggs_style In directory vz-cvs-4.sog:/tmp/cvs-serv32568 Modified Files: logo.gif Log Message: some fixes for v3 Index: logo.gif =================================================================== RCS file: /cvsroot/mxbb/mx_ggsitemaps_adv/ggs_style/logo.gif,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsjJV7og and /tmp/cvs6Qbj2q differ |
|
From: Florin C B. <ory...@us...> - 2011-05-02 21:01:10
|
Update of /cvsroot/mxbb/mx_ggsitemaps_adv/ggs_style In directory vz-cvs-4.sog:/tmp/cvs-serv29976 Modified Files: logo.gif Log Message: some fixes for v3 Index: logo.gif =================================================================== RCS file: /cvsroot/mxbb/mx_ggsitemaps_adv/ggs_style/logo.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvs4OrTXj and /tmp/cvsgXO82y differ |
|
From: Florin C B. <ory...@us...> - 2011-05-02 20:57:10
|
Update of /cvsroot/mxbb/mx_ggsitemaps_adv/ggs_style In directory vz-cvs-4.sog:/tmp/cvs-serv28157 Modified Files: logo.gif Log Message: some fixes for v3 Index: logo.gif =================================================================== RCS file: /cvsroot/mxbb/mx_ggsitemaps_adv/ggs_style/logo.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsUPT65k and /tmp/cvsS1bTZ0 differ |
|
From: Florin C B. <ory...@us...> - 2011-05-01 22:43:33
|
Update of /cvsroot/mxbb/mx_ggsitemaps_adv
In directory vz-cvs-4.sog:/tmp/cvs-serv13874
Modified Files:
db_install.php
Log Message:
some fixes for v3
Index: db_install.php
===================================================================
RCS file: /cvsroot/mxbb/mx_ggsitemaps_adv/db_install.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** db_install.php 25 Jun 2008 19:04:07 -0000 1.3
--- db_install.php 1 May 2011 22:43:31 -0000 1.4
***************
*** 9,35 ****
*/
$phpEx = substr(strrchr(__FILE__, '.'), 1);
! if ( file_exists( 'viewtopic.' . $phpEx ) ) {
define('IN_PHPBB', true);
$phpbb_root_path = $mx_root_path_int = $lang_path = './';
! } else {
define('IN_PORTAL', true);
$mx_root_path_int = './../../';
$lang_path = './../modules/mx_ggsitemaps_adv/';
! if (file_exists( $mx_root_path_int . "mx_login.$phpEx" )) {
define( 'MXBB27x', true );
}
}
!
! if ( !defined('IN_ADMIN') ) {
include($mx_root_path_int . 'common.'.$phpEx);
// Start session management
! if (defined('IN_PORTAL')) {
! if ( defined('MXBB27x') ) {
$userdata = session_pagestart($user_ip, PAGE_INDEX);
mx_init_userprefs($userdata);
! } else {
$mx_user->init($user_ip, PAGE_INDEX);
}
! } else {
include($phpbb_root_path . 'extension.inc');
$userdata = session_pagestart($user_ip, PAGE_INDEX);
--- 9,45 ----
*/
$phpEx = substr(strrchr(__FILE__, '.'), 1);
! if ( file_exists( 'viewtopic.' . $phpEx ) )
! {
define('IN_PHPBB', true);
$phpbb_root_path = $mx_root_path_int = $lang_path = './';
! }
! else
! {
define('IN_PORTAL', true);
$mx_root_path_int = './../../';
$lang_path = './../modules/mx_ggsitemaps_adv/';
! if (file_exists( $mx_root_path_int . "mx_login.$phpEx" ))
! {
define( 'MXBB27x', true );
}
}
! if ( !defined('IN_ADMIN') )
! {
include($mx_root_path_int . 'common.'.$phpEx);
// Start session management
! if (defined('IN_PORTAL'))
! {
! if ( defined('MXBB27x') )
! {
$userdata = session_pagestart($user_ip, PAGE_INDEX);
mx_init_userprefs($userdata);
! }
! else
! {
$mx_user->init($user_ip, PAGE_INDEX);
}
! }
! else
! {
include($phpbb_root_path . 'extension.inc');
$userdata = session_pagestart($user_ip, PAGE_INDEX);
***************
*** 37,45 ****
init_userprefs($userdata);
}
! if( !$userdata['session_logged_in'] ) {
die("Hacking attempt(3)");
}
!
! if( $userdata['user_level'] != ADMIN ) {
die("Hacking attempt(4)");
}
--- 47,56 ----
init_userprefs($userdata);
}
! if( !$userdata['session_logged_in'] )
! {
die("Hacking attempt(3)");
}
! if( $userdata['user_level'] != ADMIN )
! {
die("Hacking attempt(4)");
}
***************
*** 47,56 ****
}
// Define lang file
! if ( !file_exists($lang_path . 'language/lang_' . $board_config['default_lang'] . '/lang_ggs_admin.' . $phpEx)) {
include_once($lang_path . 'language/lang_english/lang_ggs_admin.' . $phpEx);
! } else {
include_once($lang_path . 'language/lang_' . $board_config['default_lang'] . '/lang_ggs_admin.' . $phpEx);
}
! $mx_module_version = '1.3.1';
//$mx_module_copy = 'mx Sitemaps by <a href="http://www.phpbb-seo.com/" target="_phpbbseo" title="Search Engine optimisation">phpBB SEO</a>';
$mx_module_copy = 'Original <i>mx Sitemaps</i> by [dcz] <a href="http://www.phpbb-seo.com/" target="_phpbbseo" title="Search Engine optimisation">phpBB SEO</a> :: Adapted for MX-Publisher by dcz & <a href="http://www.mx-publisher.com">The MXP Development Team</a>';
--- 58,70 ----
}
// Define lang file
! if ( !file_exists($lang_path . 'language/lang_' . $board_config['default_lang'] . '/lang_ggs_admin.' . $phpEx))
! {
include_once($lang_path . 'language/lang_english/lang_ggs_admin.' . $phpEx);
! }
! else
! {
include_once($lang_path . 'language/lang_' . $board_config['default_lang'] . '/lang_ggs_admin.' . $phpEx);
}
! $mx_module_version = '2.0.2';
//$mx_module_copy = 'mx Sitemaps by <a href="http://www.phpbb-seo.com/" target="_phpbbseo" title="Search Engine optimisation">phpBB SEO</a>';
$mx_module_copy = 'Original <i>mx Sitemaps</i> by [dcz] <a href="http://www.phpbb-seo.com/" target="_phpbbseo" title="Search Engine optimisation">phpBB SEO</a> :: Adapted for MX-Publisher by dcz & <a href="http://www.mx-publisher.com">The MXP Development Team</a>';
***************
*** 251,255 ****
"INSERT INTO ".$mx_table_prefix."ggs_config VALUES ('yahoo_exclude_mx', '')",
"INSERT INTO ".$mx_table_prefix."ggs_config VALUES ('ggs_c_info', '(C) 2006 dcz - http://www.phpbb-seo.com/')",
! "INSERT INTO ".$mx_table_prefix."ggs_config VALUES ('ggs_ver', 'v1.3.0')",
);
}
--- 265,269 ----
"INSERT INTO ".$mx_table_prefix."ggs_config VALUES ('yahoo_exclude_mx', '')",
"INSERT INTO ".$mx_table_prefix."ggs_config VALUES ('ggs_c_info', '(C) 2006 dcz - http://www.phpbb-seo.com/')",
! "INSERT INTO ".$mx_table_prefix."ggs_config VALUES ('ggs_ver', 'v1.3.1')",
);
}
|
|
From: Florin C B. <ory...@us...> - 2011-05-01 22:19:10
|
Update of /cvsroot/mxbb/mx_ggsitemaps_adv/includes
In directory vz-cvs-4.sog:/tmp/cvs-serv7374/includes
Modified Files:
ggs_functions.php google_forum.php yahoo_forum.php
Log Message:
some fixes for v3
Index: ggs_functions.php
===================================================================
RCS file: /cvsroot/mxbb/mx_ggsitemaps_adv/includes/ggs_functions.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ggs_functions.php 21 Sep 2008 15:58:47 -0000 1.4
--- ggs_functions.php 1 May 2011 22:19:08 -0000 1.5
***************
*** 209,214 ****
$this->mod_r_config = array('mod_rewrite' => ( $this->ggsitemaps_config['ggs_mod_rewrite'] == "TRUE" ) ? TRUE : FALSE,
'mod_r_type' => intval($this->ggsitemaps_config['ggs_mod_rewrite_type']),
! 'topic_topic' => "viewtopic.$phpEx?" . POST_TOPIC_URL . "=",
! 'forum_forum'=> "viewforum.$phpEx?" . POST_FORUM_URL . "=",
'start' => '&start=',
'ext' => '',
--- 209,214 ----
$this->mod_r_config = array('mod_rewrite' => ( $this->ggsitemaps_config['ggs_mod_rewrite'] == "TRUE" ) ? TRUE : FALSE,
'mod_r_type' => intval($this->ggsitemaps_config['ggs_mod_rewrite_type']),
! 'topic_topic' => $phpbb_root_path . "viewtopic.$phpEx?" . POST_TOPIC_URL . "=",
! 'forum_forum'=> $phpbb_root_path . "viewforum.$phpEx?" . POST_FORUM_URL . "=",
'start' => '&start=',
'ext' => '',
***************
*** 538,546 ****
$sitemapindex_url = $this->path_config['sitemap_url'] . (($this->mod_r_config['mod_rewrite']) ? 'sitemaps.xml' . $this->ext_config['gzip_ext_out'] : 'sitemap.'.$phpEx);
$this->seo_kill_dupes($sitemapindex_url);
! $ggs_xslt = ($this->google_config['ggs_xslt']) ? "\n" . '<?xml-stylesheet type="text/xsl" href="' . $this->path_config['module_path'] . 'ggs_style/mxgss.xsl"?>' : '';
$this->output_data['data'] = "<?xml version='1.0' encoding='UTF-8'?>" . $ggs_xslt . "\n" . '<sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"' . "\n\t" . 'xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9' . "\n\t" . 'http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd"' . "\n\t" . 'xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n" . '<!-- Generated by Google Yahoo MSN Sitemaps and RSS ' . $this->ggsitemaps_config['ggs_ver'] . ' - ' . $this->ggsitemaps_config['ggs_c_info'] . ' -->' . "\n";
$dir = @opendir( $this->path_config['module_path'] . 'includes' );
while( ($file = @readdir($dir)) !== FALSE ) {
! if( preg_match("/^google_[a-zA-Z0-9_-]+\." . $phpEx . "$/", $file) ) {
include_once($this->path_config['module_path'] . 'includes/' . $file);
}
--- 538,546 ----
$sitemapindex_url = $this->path_config['sitemap_url'] . (($this->mod_r_config['mod_rewrite']) ? 'sitemaps.xml' . $this->ext_config['gzip_ext_out'] : 'sitemap.'.$phpEx);
$this->seo_kill_dupes($sitemapindex_url);
! $ggs_xslt = (@file_exists($module_root_path . 'ggs_style/mxgss.xsl')) ? (($this->google_config['ggs_xslt']) ? "\n" . '<?xml-stylesheet type="text/xsl" href="' . $module_root_path . 'ggs_style/mxgss.xsl"?>' : '') : (($this->google_config['ggs_xslt']) ? "\n" . '<?xml-stylesheet type="text/xsl" href="' . $this->path_config['module_path'] . 'ggs_style/mxgss.xsl"?>' : '');
$this->output_data['data'] = "<?xml version='1.0' encoding='UTF-8'?>" . $ggs_xslt . "\n" . '<sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"' . "\n\t" . 'xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9' . "\n\t" . 'http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd"' . "\n\t" . 'xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n" . '<!-- Generated by Google Yahoo MSN Sitemaps and RSS ' . $this->ggsitemaps_config['ggs_ver'] . ' - ' . $this->ggsitemaps_config['ggs_c_info'] . ' -->' . "\n";
$dir = @opendir( $this->path_config['module_path'] . 'includes' );
while( ($file = @readdir($dir)) !== FALSE ) {
! if( @preg_match("/^google_[a-zA-Z0-9_-]+\." . $phpEx . "$/", $file) ) {
include_once($this->path_config['module_path'] . 'includes/' . $file);
}
***************
*** 589,593 ****
$dir = @opendir( $this->path_config['module_path'] . 'includes' );
while( ($file = @readdir($dir)) !== FALSE ) {
! if( preg_match("/^yahoo_[a-zA-Z0-9_-]+\." . $phpEx . "$/", $file) ) {
include_once($this->path_config['module_path'] . 'includes/' . $file);
}
--- 589,593 ----
$dir = @opendir( $this->path_config['module_path'] . 'includes' );
while( ($file = @readdir($dir)) !== FALSE ) {
! if( @preg_match("/^yahoo_[a-zA-Z0-9_-]+\." . $phpEx . "$/", $file) ) {
include_once($this->path_config['module_path'] . 'includes/' . $file);
}
***************
*** 695,699 ****
$blanc_fix = "\n" . '<!-- Some spaces ' . $blanc_fix . ' to force xlst -->';
}
! $rss_xslt = ($this->rss_config['rss_xslt']) ? '<?xml-stylesheet title="XSL_formatting" type="text/xsl" href="' . $this->path_config['rss_url'] . 'ggs_style/mxrss2.xsl"?>' . $blanc_fix : '';
}
$this->output_data['data'] = '<?xml version="1.0" encoding="utf-8"?>' . $rss_xslt . "\n" . '<!-- Generated by Google Yahoo MSN Sitemaps and RSS ' . $this->ggsitemaps_config['ggs_ver'] . ' - ' . $this->ggsitemaps_config['ggs_c_info'] . ' -->' . "\n" . '<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">';
--- 695,699 ----
$blanc_fix = "\n" . '<!-- Some spaces ' . $blanc_fix . ' to force xlst -->';
}
! $rss_xslt = (@file_exists($module_root_path . 'ggs_style/mxgss2.xsl')) ? (($this->rss_config['rss_xslt']) ? '<?xml-stylesheet title="XSL_formatting" type="text/xsl" href="' . $module_root_path . 'ggs_style/mxrss2.xsl"?>' . $blanc_fix : '') : (($this->rss_config['rss_xslt']) ? '<?xml-stylesheet title="XSL_formatting" type="text/xsl" href="' . $this->path_config['rss_url'] . 'ggs_style/mxrss2.xsl"?>' . $blanc_fix : '');
}
$this->output_data['data'] = '<?xml version="1.0" encoding="utf-8"?>' . $rss_xslt . "\n" . '<!-- Generated by Google Yahoo MSN Sitemaps and RSS ' . $this->ggsitemaps_config['ggs_ver'] . ' - ' . $this->ggsitemaps_config['ggs_c_info'] . ' -->' . "\n" . '<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">';
***************
*** 805,809 ****
$nested_cnt = preg_match_all("`(\[[a-z]([^\[\]]*)\])`i", $message, $matches);
for ($i=1; $i<=$nested_cnt; $i++) {
! $message = preg_replace($patterns, $replaces, $message);
}
}
--- 805,809 ----
$nested_cnt = preg_match_all("`(\[[a-z]([^\[\]]*)\])`i", $message, $matches);
for ($i=1; $i<=$nested_cnt; $i++) {
! $message = @preg_replace($patterns, $replaces, $message);
}
}
***************
*** 918,927 ****
* @access private
*/
! function word_limit($string, $length = 50, $ellipsis = ' ...') {
! if ($this->rss_config['non_utf8']) {
! return count($words = preg_split('/\s+/', phpbb_ltrim($string), $length + 1)) > $length ? phpbb_rtrim(substr($string, 0, strlen($string) - strlen(end($words)))) . $ellipsis : $string;
! } else {
! return count($words = preg_split('/\s+/', phpbb_ltrim($string), $length + 1)) > $length ? phpbb_rtrim(utf8_substr($string, 0, utf8_strlen($string) - utf8_strlen(end($words)))) . $ellipsis : $string;
}
}
/**
--- 918,939 ----
* @access private
*/
! function word_limit($string, $length = 50, $ellipsis = ' ...')
! {
! if (@funtion_exists('phpbb_ltrim'))
! {
! if ($this->rss_config['non_utf8']) {
! return count($words = preg_split('/\s+/', phpbb_ltrim($string), $length + 1)) > $length ? phpbb_rtrim(substr($string, 0, strlen($string) - strlen(end($words)))) . $ellipsis : $string;
! } else {
! return count($words = preg_split('/\s+/', phpbb_ltrim($string), $length + 1)) > $length ? phpbb_rtrim(utf8_substr($string, 0, utf8_strlen($string) - utf8_strlen(end($words)))) . $ellipsis : $string;
! }
}
+ else
+ {
+ if ($this->rss_config['non_utf8']) {
+ return count($words = preg_split('/\s+/', phpBB2::phpbb_ltrim($string), $length + 1)) > $length ? phpBB2::phpbb_rtrim(substr($string, 0, strlen($string) - strlen(end($words)))) . $ellipsis : $string;
+ } else {
+ return count($words = preg_split('/\s+/', phpBB2::phpbb_ltrim($string), $length + 1)) > $length ? phpBB2::phpbb_rtrim(utf8_substr($string, 0, utf8_strlen($string) - utf8_strlen(end($words)))) . $ellipsis : $string;
+ }
+ }
}
/**
***************
*** 1127,1138 ****
* @access private
*/
! function check_requested_ext($uri) {
! if ( ( strpos($uri, '.gz') !== FALSE ) && ($this->ext_config['gzip_ext_out'] == '') && !strpos($uri, '.php')) {
$uri = str_replace ('.gz', "", $uri);
! $url= $this->path_config['root_url'] . phpbb_ltrim($uri, "/");
$this->ggs_seo_redirect($url);
! } elseif ( ( strpos($uri, '.gz') === FALSE ) && ($this->ext_config['gzip_ext_out'] != '') && !strpos($uri, '.php')) {
$uri = $uri . '.gz';
! $url= $this->path_config['root_url'] . phpbb_ltrim($uri, "/");
$this->ggs_seo_redirect($url);
}
--- 1139,1154 ----
* @access private
*/
! function check_requested_ext($uri)
! {
! if ( ( strpos($uri, '.gz') !== FALSE ) && ($this->ext_config['gzip_ext_out'] == '') && !strpos($uri, '.php'))
! {
$uri = str_replace ('.gz', "", $uri);
! $url = (@funtion_exists('phpbb_ltrim')) ? $this->path_config['root_url'] . phpbb_ltrim($uri, "/") : $this->path_config['root_url'] . phpBB2::phpbb_ltrim($uri, "/");
$this->ggs_seo_redirect($url);
! }
! elseif ( ( strpos($uri, '.gz') === FALSE ) && ($this->ext_config['gzip_ext_out'] != '') && !strpos($uri, '.php'))
! {
$uri = $uri . '.gz';
! $url = (@funtion_exists('phpbb_ltrim')) ? $this->path_config['root_url'] . phpbb_ltrim($uri, "/") : $this->path_config['root_url'] . phpBB2::phpbb_ltrim($uri, "/");
$this->ggs_seo_redirect($url);
}
***************
*** 1146,1150 ****
function seo_kill_dupes($url) {
if ($this->mod_r_config['zero_dupe']) {
! $requested_url = $this->path_config['root_url'] . phpbb_ltrim($this->output_data['uri'], "/");
$url = str_replace("&", "&", $url);
if ( !($requested_url === $url) ) {
--- 1162,1166 ----
function seo_kill_dupes($url) {
if ($this->mod_r_config['zero_dupe']) {
! $requested_url = (@funtion_exists('phpbb_ltrim')) ? $this->path_config['root_url'] . phpbb_ltrim($this->output_data['uri'], "/") : $this->path_config['root_url'] . phpBB2::phpbb_ltrim($this->output_data['uri'], "/");
$url = str_replace("&", "&", $url);
if ( !($requested_url === $url) ) {
***************
*** 1216,1245 ****
* @access private
*/
! function mx_sitemaps_message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '') {
global $userdata, $lang, $mx_user;
! if ( $mx_user->is_admin ) {
! if (defined('IN_PORTAL')) {
mx_message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '');
! } else {
message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '');
}
! } else {
$message = ($msg_code == GENERAL_ERROR) ? $lang['An_error_occured'] : $lang['Information'];
$message .= "<br/>$msg_text<br/>$err_line<br/>$err_file<br/>$sql";
! if ($msg_text != 'Request not accepted' ) {
$header_msg = "500 Internal Server Error";
! } else {
$header_msg = "403 Forbidden";
}
$message = "<b>$header_msg :</b><br/><br/>$message";
! if (!empty($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache/2')) {
! header ('Cache-Control: no-cache, pre-check=0, post-check=0, max-age=0');
! } else {
! header ('Cache-Control: private, pre-check=0, post-check=0, max-age=0');
}
! header("HTTP/1.1 $header_msg");
! header ('Content-Type: text/html');
echo '<html><head><title>' . $header_msg . '</title><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head><body><br/><pre>' . $message . '</pre></body></html>';
$this->safe_exit();
--- 1232,1274 ----
* @access private
*/
! function mx_sitemaps_message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '')
! {
global $userdata, $lang, $mx_user;
! if ($userdata['user_level'] == ADMIN && $userdata['user_id'] != ANONYMOUS) //$mx_user->is_admin
! {
! if (@defined('IN_PORTAL'))
! {
mx_message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '');
! }
! else
! {
message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '');
}
! }
! else
! {
$message = ($msg_code == GENERAL_ERROR) ? $lang['An_error_occured'] : $lang['Information'];
$message .= "<br/>$msg_text<br/>$err_line<br/>$err_file<br/>$sql";
! if ($msg_text != 'Request not accepted' )
! {
$header_msg = "500 Internal Server Error";
! }
! else
! {
$header_msg = "403 Forbidden";
}
$message = "<b>$header_msg :</b><br/><br/>$message";
! if (!empty($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache/2'))
! {
! @header ('Cache-Control: no-cache, pre-check=0, post-check=0, max-age=0');
! }
! else
! {
! @header ('Cache-Control: private, pre-check=0, post-check=0, max-age=0');
}
! @header ("HTTP/1.1 $header_msg");
! @header ('Content-Type: text/html');
echo '<html><head><title>' . $header_msg . '</title><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head><body><br/><pre>' . $message . '</pre></body></html>';
$this->safe_exit();
Index: google_forum.php
===================================================================
RCS file: /cvsroot/mxbb/mx_ggsitemaps_adv/includes/google_forum.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** google_forum.php 21 Sep 2008 15:58:52 -0000 1.6
--- google_forum.php 1 May 2011 22:19:08 -0000 1.7
***************
*** 97,115 ****
$orig_word = array();
$replacement_word = array();
! obtain_word_list($orig_word, $replacement_word);
$paginated = $board_config['posts_per_page'];
! $sql_first = "SELECT t.topic_id, t.topic_title, t.topic_type, t.topic_status, t.topic_replies, topic_last_post_id, p.post_time
FROM " . TOPICS_TABLE . " AS t, " . POSTS_TABLE . " AS p
! WHERE t.topic_last_post_id=p.post_id
AND t.forum_id = $forum_id
! AND t.topic_status <> " . TOPIC_MOVED . "
ORDER BY t.topic_last_post_id " . $this->google_config['ggs_sort'];
while( ( $topic_sofar < $topics_count ) && ($this->output_data['url_sofar'] < $this->google_config['ggs_url_limit']) ) {
$sql = $sql_first . " LIMIT $topic_sofar," . $this->google_config['ggs_sql_limit'];
! if ( !($result = $db->sql_query($sql)) ) {
! $this->mx_sitemaps_message_die(GENERAL_ERROR, "Could not obtain category data", '', __LINE__, __FILE__, $sql);
}
! while ($topic = $db->sql_fetchrow($result)) {
$pages = ceil( ($topic['topic_replies'] + 1) / $paginated);
$topic['topic_title'] = (count($orig_word)) ? preg_replace($orig_word, $replacement_word, $topic['topic_title']) : $topic['topic_title'];
--- 97,168 ----
$orig_word = array();
$replacement_word = array();
! //obtain_word_list($orig_word, $replacement_word);
! // CHECK FOR BAD WORDS
! // Define censored word matches
! if (!(PORTAL_BACKEND == 'phpbb3'))
! {
! if ( !function_exists('obtain_word_list') )
! {
! function ggsitemaps_obtain_word_list(&$orig_word, &$replacement_word)
! {
! global $db;
!
! // Define censored word matches
! $sql = "SELECT word, replacement
! FROM " . WORDS_TABLE;
! $result = $db->sql_query($sql);
!
! if ( $row = $db->sql_fetchrow($result) )
! {
! do
! {
! $orig_word[] = '#\b(' . str_replace('\*', '\w*?', preg_quote($row['word'], '#')) . ')\b#i';
! $replacement_word[] = $row['replacement'];
! }
! while ($row = $db->sql_fetchrow($result));
! }
!
! return true;
! }
! $orig_word = array();
! $replacement_word = array();
! ggsitemaps_obtain_word_list($orig_word, $replacement_word);
! }
! else
! {
! $orig_word = array();
! $replacement_word = array();
! obtain_word_list($orig_word, $replacement_word);
! }
! }
! else
! {
! global $mx_cache;
! $orig_word = array();
! $replacement_word = array();
! $mx_cache->obtain_word_list($orig_word, $replacement_word);
! //censor_text($orig_word);
! }
$paginated = $board_config['posts_per_page'];
! $sql_first = "SELECT t.*, topic_last_post_id, p.post_time
FROM " . TOPICS_TABLE . " AS t, " . POSTS_TABLE . " AS p
! WHERE t.topic_last_post_id = p.post_id
AND t.forum_id = $forum_id
! AND t.topic_moved_id = 0
ORDER BY t.topic_last_post_id " . $this->google_config['ggs_sort'];
while( ( $topic_sofar < $topics_count ) && ($this->output_data['url_sofar'] < $this->google_config['ggs_url_limit']) ) {
$sql = $sql_first . " LIMIT $topic_sofar," . $this->google_config['ggs_sql_limit'];
!
! if ( ($userdata['user_level'] == ADMIN) && @function_exists('mx_message_die') && !($result = $db->sql_query_limit($sql_first, $this->google_config['ggs_sql_limit'], $topic_sofar)) )
! {
! mx_message_die(GENERAL_ERROR, "Could not obtain category data", "", __LINE__, __FILE__, $sql);
! }
! if ( !($userdata['user_level'] == ADMIN) && !($result = $db->sql_query_limit($sql_first, $this->google_config['ggs_sql_limit'], $topic_sofar)) )
! {
! $this->mx_sitemaps_message_die(GENERAL_ERROR, "Could not obtain category data", "", __LINE__, __FILE__, $sql);
}
! while ($topic = $db->sql_fetchrow($result))
! {
$pages = ceil( ($topic['topic_replies'] + 1) / $paginated);
$topic['topic_title'] = (count($orig_word)) ? preg_replace($orig_word, $replacement_word, $topic['topic_title']) : $topic['topic_title'];
Index: yahoo_forum.php
===================================================================
RCS file: /cvsroot/mxbb/mx_ggsitemaps_adv/includes/yahoo_forum.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** yahoo_forum.php 23 Jun 2008 20:21:09 -0000 1.1
--- yahoo_forum.php 1 May 2011 22:19:08 -0000 1.2
***************
*** 51,58 ****
$not_in_id_sql_ptc = (!empty($not_in_id_sql_ptc) ) ? " WHERE $not_in_id_sql_ptc AND" : ' WHERE ';
}
! $sql = "SELECT COUNT(t.topic_id) AS topic
! FROM " . TOPICS_TABLE . " as t $time_limit_sql_sel
! $time_limit_sql_ptc
! $not_in_id_sql_ptc t.topic_status <> " . TOPIC_MOVED;
//echo "<pre>$sql</pre>";
if ( !($result = $db->sql_query($sql)) ) {
--- 51,55 ----
$not_in_id_sql_ptc = (!empty($not_in_id_sql_ptc) ) ? " WHERE $not_in_id_sql_ptc AND" : ' WHERE ';
}
! $sql = "SELECT COUNT(t.topic_id) AS topic FROM " . TOPICS_TABLE . " as t" . $time_limit_sql_sel . $time_limit_sql_ptc . $not_in_id_sql_ptc . "t.topic_moved_id = 0";
//echo "<pre>$sql</pre>";
if ( !($result = $db->sql_query($sql)) ) {
***************
*** 79,83 ****
FROM " . TOPICS_TABLE . " AS t $time_limit_sql_sel
WHERE $time_limit_sql $not_in_id_sql
! t.topic_status <> " . TOPIC_MOVED . "
ORDER BY t.topic_last_post_id " . $this->yahoo_config['yahoo_sort'];
//echo "<pre>$sql_first</pre>";
--- 76,80 ----
FROM " . TOPICS_TABLE . " AS t $time_limit_sql_sel
WHERE $time_limit_sql $not_in_id_sql
! t.topic_moved_id = 0
ORDER BY t.topic_last_post_id " . $this->yahoo_config['yahoo_sort'];
//echo "<pre>$sql_first</pre>";
|
|
From: Florin C B. <ory...@us...> - 2011-04-17 08:37:09
|
Update of /cvsroot/mxbb/mx_contact In directory vz-cvs-4.sog:/tmp/cvs-serv11605 Modified Files: db_install.php db_uninstall.php db_upgrade.php mx_captcha.php mx_contact.php mx_newsletter.php Log Message: fixex Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/db_upgrade.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** db_upgrade.php 25 Dec 2008 16:29:46 -0000 1.6 --- db_upgrade.php 17 Apr 2011 08:37:07 -0000 1.7 *************** *** 45,49 **** // $upgrade_200 = 0; ! $upgrade_291 = 0; // --- 45,49 ---- // $upgrade_200 = 0; ! $upgrade_291 = 1; // |
|
From: Florin C B. <ory...@us...> - 2011-04-09 16:31:01
|
Update of /cvsroot/mxbb/mx_smartor/templates/_core/admin In directory vz-cvs-4.sog:/tmp/cvs-serv15765/mx_smartor/templates/_core/admin Added Files: ed5fc96584d0733f349e61f72d44d3b6.png Log Message: fixex --- NEW FILE: ed5fc96584d0733f349e61f72d44d3b6.png --- (This appears to be a binary file; contents omitted.) |
|
From: Florin C B. <ory...@us...> - 2011-04-09 16:31:00
|
Update of /cvsroot/mxbb/core/includes In directory vz-cvs-4.sog:/tmp/cvs-serv15765/core/includes Modified Files: mx_functions.php Log Message: fixex Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** mx_functions.php 30 Mar 2011 10:03:55 -0000 1.103 --- mx_functions.php 9 Apr 2011 16:30:57 -0000 1.104 *************** *** 650,653 **** --- 650,711 ---- /** + * Generate portal url (example: http://www.example.com/phpBB) + * @param bool $without_script_path if set to true the script path gets not appended (example: http://www.example.com) + */ + function generate_portal_url($without_script_path = false) + { + global $board_config, $portal_config, $mx_user; + + $script_name = preg_replace('/^\/?(.*?)\/?$/', "\\1", trim($portal_config['script_path'])); + $server_name = $mx_user->host ? $mx_user->host : trim($portal_config['server_name']); + $server_protocol = ( $portal_config['cookie_secure'] ) ? 'https://' : 'http://'; + $server_port = (($portal_config['server_port']) && ($portal_config['server_port'] <> 80)) ? ':' . trim($portal_config['server_port']) . '/' : '/'; + $server_url = $server_protocol . str_replace("//", "/", $server_name . $server_port . $script_name . '/'); //On some server the slash is not added and this trick will fix it + $server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT'); + + // Forcing server vars is the only way to specify/override the protocol + if ($board_config['force_server_vars'] || !$server_name) + { + $server_protocol = ($server_protocol) ? $server_protocol : (($portal_config['cookie_secure']) ? 'https://' : 'http://'); + $server_name = $portal_config['server_name']; + $server_port = (int) $config['server_port']; + $script_path = preg_replace('/^\/?(.*?)\/?$/', "\\1", trim($portal_config['script_path'])); + + $url = $server_protocol . $server_name; + $cookie_secure = $portal_config['cookie_secure']; + } + else + { + // Do not rely on cookie_secure, users seem to think that it means a secured cookie instead of an encrypted connection + $cookie_secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0; + $url = (($cookie_secure) ? 'https://' : 'http://') . $server_name; + + $script_path = $mx_user->page['root_script_path']; + } + + if ($server_port && (($cookie_secure && $server_port <> 443) || (!$cookie_secure && $server_port <> 80))) + { + // HTTP HOST can carry a port number (we fetch $user->host, but for old versions this may be true) + if (strpos($server_name, ':') === false) + { + $url .= ':' . $server_port; + } + } + + if (!$without_script_path) + { + $url .= $script_path; + } + + // Strip / from the end + if (substr($url, -1, 1) == '/') + { + $url = substr($url, 0, -1); + } + + return $url; + } + + /** * Generate Pagination. * |
|
From: Florin C B. <ory...@us...> - 2011-04-02 06:10:18
|
Update of /cvsroot/mxbb/mx_simpledoc/templates/prosilver In directory vz-cvs-4.sog:/tmp/cvs-serv9488/prosilver Log Message: Directory /cvsroot/mxbb/mx_simpledoc/templates/prosilver added to the repository |
|
From: Florin C B. <ory...@us...> - 2011-04-02 06:09:43
|
Update of /cvsroot/mxbb/mx_pjirc/templates/prosilver In directory vz-cvs-4.sog:/tmp/cvs-serv9368/prosilver Log Message: Directory /cvsroot/mxbb/mx_pjirc/templates/prosilver added to the repository |
|
From: Florin C B. <ory...@us...> - 2011-04-02 06:09:14
|
Update of /cvsroot/mxbb/mx_kb/templates/prosilver In directory vz-cvs-4.sog:/tmp/cvs-serv9315/prosilver Log Message: Directory /cvsroot/mxbb/mx_kb/templates/prosilver added to the repository |
|
From: Florin C B. <ory...@us...> - 2011-04-02 06:08:44
|
Update of /cvsroot/mxbb/mx_chatbox/templates/prosilver In directory vz-cvs-4.sog:/tmp/cvs-serv9235/prosilver Log Message: Directory /cvsroot/mxbb/mx_chatbox/templates/prosilver added to the repository |
|
From: Florin C B. <ory...@us...> - 2011-04-01 21:19:47
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks/templates/prosilver
In directory vz-cvs-4.sog:/tmp/cvs-serv20222
Modified Files:
mx_login.html mx_online.html
Log Message:
online block update for prosilver
Index: mx_online.html
===================================================================
RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/templates/prosilver/mx_online.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** mx_online.html 4 Nov 2009 09:27:51 -0000 1.4
--- mx_online.html 1 Apr 2011 21:19:44 -0000 1.5
***************
*** 1,14 ****
<div class="forabg block">
! <div class="inner bg1">
! <!-- BEGIN switch_phpbb -->
! <div class="textbody bg1">
! {TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}
! </div>
! <!-- END switch_phpbb -->
! <div class="textbody bg2">
! {TOTAL_USERS_ONLINE} <br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}<br />
! <em>{L_ONLINE_LEGEND}: {ONLINE_LEGEND}</em>
</div>
</div>
! <span class="corners-bottom"><span></span></span>
! </div>
\ No newline at end of file
--- 1,30 ----
<div class="forabg block">
! <div class="inner bg1 post" style="margin-bottom:0px">
! <span class="corners-top"><span></span></span>
! <div class="box">
! <div class="whos_online">
! <a href="{U_VIEWONLINE}"><img src="{ONLINE_IMG}" alt="{L_WHO_IS_ONLINE}" border="0" /></a>
! <!-- BEGIN switch_phpbb -->
! <div class="inner bg1 post" style="margin-bottom:0px">
! {TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}
! </div>
! <!-- END switch_phpbb -->
! </div>
</div>
+
+ <span class="corners-bottom"><span></span></span>
</div>
! <div class="inner bg2 post" style="margin-top:0x;">
! <div class="top_poster">
! <span class="bg3" style="position: relative; float:left; text-align:center; width:100%; padding-bottom:3px; font-size: 9px;">
! {last_online.ONLINE_TIME}
! </span>
! <br clear="both" />
! <br />
! </div>
! {TOTAL_USERS_ONLINE} <br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}<br />
! <em>{L_ONLINE_LEGEND}: {ONLINE_LEGEND}</em>
! </div>
! <span class="corners-bottom"><span></span></span>
! </div>
! <!-- IF DEBUG_QUERIES --><div class="block_data">{LAST_ONLINE_DEBUG}</div><!-- ENDIF -->
\ No newline at end of file
Index: mx_login.html
===================================================================
RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/templates/prosilver/mx_login.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** mx_login.html 4 Nov 2009 09:27:51 -0000 1.3
--- mx_login.html 1 Apr 2011 21:19:44 -0000 1.4
***************
*** 1,4 ****
<div class="forabg block" style="width:{BLOCK_SIZE}">
! <div class="inner bg2">
<form action="{S_LOGIN_ACTION}" method="post" style="font-size:8px; mso-bidi-font-size:10.0px;">
<fieldset class="fields12">
--- 1,5 ----
+ <div class="clear"></div>
<div class="forabg block" style="width:{BLOCK_SIZE}">
! <div class="inner bg2 panel">
<form action="{S_LOGIN_ACTION}" method="post" style="font-size:8px; mso-bidi-font-size:10.0px;">
<fieldset class="fields12">
***************
*** 25,28 ****
</form>
</div>
! <span class="corners-bottom"><span></span></span>
</div>
\ No newline at end of file
--- 26,29 ----
</form>
</div>
! <span class="corners-bottom"> </span>
</div>
\ No newline at end of file
|
|
From: Florin C B. <ory...@us...> - 2011-04-01 04:51:18
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images In directory vz-cvs-4.sog:/tmp/cvs-serv28039 Added Files: bullet.gif clock.swf dot.gif icon_topic_attach.gif index.html link.png member.gif mini_cal_icon_left_arrow.png mini_cal_icon_right_arrow.png Log Message: news images --- NEW FILE: index.html --- <html> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: bullet.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: member.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_topic_attach.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: clock.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mini_cal_icon_right_arrow.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mini_cal_icon_left_arrow.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: link.png --- (This appears to be a binary file; contents omitted.) |
|
From: Florin C B. <ory...@us...> - 2011-04-01 02:10:52
|
Update of /cvsroot/mxbb/mx_linkdb/linkdb/images In directory vz-cvs-4.sog:/tmp/cvs-serv1677 Added Files: integra_88x31.gif no_image_88x31.gif phpbbportal.gif phpbbstyles.gif phpireland.gif smartorsite_logo.gif sourceforge.net.gif submit_link.gif tartrekguide.gif www.your_site.com.gif www.your_site.net.jpg Log Message: linkdb new images --- NEW FILE: smartorsite_logo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: phpireland.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: submit_link.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: integra_88x31.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: www.your_site.net.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sourceforge.net.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: phpbbstyles.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: no_image_88x31.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: www.your_site.com.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: phpbbportal.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tartrekguide.gif --- (This appears to be a binary file; contents omitted.) |
|
From: Florin C B. <ory...@us...> - 2011-04-01 01:14:10
|
Update of /cvsroot/mxbb/core/templates/prosilver In directory vz-cvs-4.sog:/tmp/cvs-serv27808 Modified Files: prosilver.cfg Log Message: prosilver images Index: prosilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/prosilver.cfg,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** prosilver.cfg 30 Mar 2011 09:55:43 -0000 1.12 --- prosilver.cfg 1 Apr 2011 01:14:08 -0000 1.13 *************** *** 153,157 **** | - these images are used for the adminCP & block editCP \********************************************************************************/ ! $mx_images['mx_spacer'] = "$current_template_phpbb_images/spacer.gif"; // --- 153,157 ---- | - these images are used for the adminCP & block editCP \********************************************************************************/ ! $mx_images['mx_spacer'] = "$current_template_style_images/spacer.gif"; // |
|
From: Florin C B. <ory...@us...> - 2011-03-31 22:13:49
|
Update of /cvsroot/mxbb/core/templates/prosilver/theme/images In directory vz-cvs-4.sog:/tmp/cvs-serv7975 Modified Files: whosonline.gif Log Message: prosilver images Index: whosonline.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/theme/images/whosonline.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsK3Mlrs and /tmp/cvsYoMKp7 differ |
|
From: Florin C B. <ory...@us...> - 2011-03-31 21:39:52
|
Update of /cvsroot/mxbb/core/templates/prosilver/theme/images In directory vz-cvs-4.sog:/tmp/cvs-serv3570 Added Files: admins.png linkarrow.gif mini_birthday.gif mini_k_quick_reply.gif mini_k_quick_reply.png mini_statistics.gif mini_whosonline.gif mods.png news.gif spacer.gif wide.gif Log Message: prosilver images --- NEW FILE: wide.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mini_statistics.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mods.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: news.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mini_k_quick_reply.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mini_whosonline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mini_birthday.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: linkarrow.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mini_k_quick_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admins.png --- (This appears to be a binary file; contents omitted.) |
|
From: Florin C B. <ory...@us...> - 2011-03-30 21:16:42
|
Update of /cvsroot/mxbb/core/language/lang_romanian In directory vz-cvs-4.sog:/tmp/cvs-serv19488 Modified Files: lang_meta.php Log Message: lag meta en-rum upd to utf-8 Index: lang_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian/lang_meta.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_meta.php 23 Oct 2009 07:46:40 -0000 1.2 --- lang_meta.php 30 Mar 2011 21:16:40 -0000 1.3 *************** *** 2,8 **** /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * *************** *** 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"; |
|
From: Florin C B. <ory...@us...> - 2011-03-30 11:08:24
|
Update of /cvsroot/mxbb/core/templates/_core/images/block_icons In directory vz-cvs-4.sog:/tmp/cvs-serv13711/_core/images/block_icons Modified Files: block_edit_admin.gif Log Message: addon app icons Index: block_edit_admin.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/images/block_icons/block_edit_admin.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsbHnuVv and /tmp/cvs09kdTQ differ |
|
From: Florin C B. <ory...@us...> - 2011-03-30 10:55:43
|
Update of /cvsroot/mxbb/core/templates/_core/images/addon_icons In directory vz-cvs-4.sog:/tmp/cvs-serv8158 Added Files: add.gif application.gif application_add.gif application_delete.gif application_edit.gif application_form_edit.gif delete.gif delete_hover.gif Log Message: addon app icons --- NEW FILE: add.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: application.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: delete_hover.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: application_form_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: application_add.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: application_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: application_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: delete.gif --- (This appears to be a binary file; contents omitted.) |
|
From: Florin C B. <ory...@us...> - 2011-03-30 10:12:07
|
Update of /cvsroot/mxbb/core/templates/prosilver/images/addon_icons In directory vz-cvs-4.sog:/tmp/cvs-serv32005/prosilver/images/addon_icons Added Files: vote_lcap.gif vote_lcap_blue.gif vote_lcap_green.gif vote_lcap_red.gif vote_rcap.gif vote_rcap_blue.gif vote_rcap_green.gif vote_rcap_red.gif voting_bar.gif voting_bar_blue.gif voting_bar_green.gif voting_bar_red.gif Log Message: templating addon and voting icons --- NEW FILE: voting_bar_blue.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_rcap_blue.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_lcap_red.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_rcap_green.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: voting_bar_green.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_rcap_red.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_rcap.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_lcap_blue.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: voting_bar.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_lcap_green.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_lcap.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: voting_bar_red.gif --- (This appears to be a binary file; contents omitted.) |
|
From: Florin C B. <ory...@us...> - 2011-03-30 10:10:33
|
Update of /cvsroot/mxbb/core/templates/_core/images/addon_icons In directory vz-cvs-4.sog:/tmp/cvs-serv31910/addon_icons Log Message: Directory /cvsroot/mxbb/core/templates/_core/images/addon_icons added to the repository |