Recent Topics

1 Feb 13, 2008 09:30    

My b2evolution Version: 2.0.1-alpha

I'm using "2.0.1-alpha released on 09/18/07" version of B2evolution and I love it but recently I tried to integrate dewplayer (an mp3 flash player)...

I'm using the classical way of integrating flash with embed and object: the result is that the dewplayer appears and works perfectly but it has a cost:

I must put the code for integrating the player in the end of my post, otherwise it "eats" a few lines of the following code which result of an half-part text and </tags> (the opening tag being eaten) in my post when I save it.

I suspect the problem to be the "embed" or the "object" tags not being fully supported but I did not find anything about how to modify my formatting .php (I'm a beginner in PHP) for my version of B2.

Any help for the beginner I am would be really appreciated.

Thx.

Here is my conf/_formatting.php:

<?php
/**
 * This is b2evolution's formatting config file.
 *
 * This file sets how b2evolution will parse and format texts (posts, comments, etc.)
 * Last significant changes to this file: version 1.6
 *
 * @todo Move as much as possible to $Settings / $UserSettings
 * @package conf
 */
if( !defined('EVO_CONFIG_LOADED') ) die( 'Please, do not access this page directly.' );


// ** Formatting **

/**
 * Automatically balance unmatched tags in posts and comments.
 *
 * Choose the formatting options for your posts:
 *  0 to disable
 *  1 to ensable
 *
 * @todo fp>This should be moved to the backoffice. Checbox for each blog.
 *
 * @global integer 0|1
 */
$use_balanceTags = 1;


/**
 * Choose formatting options for comments
 * 'never'   : option will never be used
 * 'opt-in'  : option will be used only if user explicitely asks for it
 * 'opt-out' : option will be used by default, but user can refuse
 * 'always'  : option will always be used
 *
 * @todo fp> remove and let Auto-P handle the comment formatting.
 */
$comments_use_autobr = 'opt-out';	// automatically change line breaks to <br />


/*
 * Validity & Security Checking
 *
 * Posts and comments should be checked to see if they contain valid XHTML code
 * and no invalid code (javascript, styles, CSS, etc...)
 */

# Html checking will validate posts and comments to a subset of valid XHTML.
# This will also do much cleaner security checking than the next option.
# Note: This option requires the PHP XML module. If your PHP installation doesn't have it
# disable html_checker and use security_checker.
/*
 * @todo fp>This should be moved to the backoffice. Checbox for each blog. This checkbox should NOT be editable by the blog owner.
 * Only the system admin should be adble to edit this. Special "Admin" tab on the blog settings.
 */
$use_html_checker = 0;
# Security checking will check for illegal javascript hacks in posts/comments
# and for CSS in comments. However, this may be a bit harsh on your posts :]
/*
 * @todo fp>This should be moved to the backoffice. Checbox for each blog. This checkbox should NOT be editable by the blog owner.
 * Only the system admin should be adble to edit this. Special "Admin" tab on the blog settings.
 */
$use_security_checker = 0;
# WARNING: disabling both $use_html_checker and $use_security_checker is suicidal !

// Set this to true if you want to enforce XHTML strict
/*
 * @todo fp>This should be moved to the backoffice. Checbox for each blog
 * @todo fp>It would however be interesting to have additional settings like use_strict, for things like: allow_tables, allow_objects (flash)
 */
$use_strict =  false;

# Set this to true to allow id && style as core attributes for posts
$posts_allow_css_tweaks = false;

$posts_allow_javascript = false;

# set this to true to allow id && style as core attributes for comments
# WARNING : This would allow spammers to post hidden content in comments
#           enable it at your own risk !
$comments_allow_css_tweaks = false;

/*
 * HTML Checker params:
 *
 * The params are defined twice: once for the posts and once for the comments.
 * Typically you'll be more restrictive on comments.
 *
 * Adapted from XHTML-1.0-Transitional/Strict by fplanque
 * http://www.w3.org/TR/2002/REC-xhtml1-20020801/dtds.html#a_dtd_XHTML-1.0-Strict
 */

// DEFINITION of allowed XHTML code for POSTS (posted in the backoffice)

/**
 * Allowed Entity classes
 */
if( $use_strict )
{
	define('E_special_pre', 'br span bdo');			// Strict
	define('E_special', E_special_pre.' img');		// Strict
}
else
{
	define('E_special_extra', 'img' );							// Transitional
	define('E_special_basic', 'br span bdo' );			// Transitional
	define('E_special', E_special_basic.' '.E_special_extra );	// Transitional
}

if( $use_strict )
{
	define('E_fontstyle', 'tt i b big small');				// Strict
}
else
{
	define('E_fontstyle_extra', 'big small font' );			// Transitional
	define('E_fontstyle_basic', 'tt i b u s strike' );	// Transitional
	define('E_fontstyle', E_fontstyle_basic.' '.E_fontstyle_extra );	// Transitional
}

if( $use_strict )
{
	define('E_phrase', 'em strong dfn code q samp kbd var cite abbr acronym sub sup'); // Strict
}
else
{
	define('E_phrase_extra', 'sub sup'); 																							// Transitional
	define('E_phrase_basic', 'em strong dfn code q samp kbd var cite abbr acronym');	// Transitional
	define('E_phrase', E_phrase_basic.' '.E_phrase_extra ); 													// Transitional
}

define('E_misc_inline', 'ins del');
define('E_misc', E_misc_inline);
define('E_inline', 'a '.E_special.' '.E_fontstyle.' '.E_phrase );
define('E_Iinline', '#PCDATA '.E_inline.' '.E_misc_inline );
define('E_heading', 'h1 h2 h3 h4 h5 h6');

if( $use_strict )
{
	define('E_list', 'ul ol dl');				// Strict
}
else
{
	define('E_list', 'ul ol dl menu dir');	// Transitional
}

if( $use_strict )
{
	define('E_blocktext', 'pre hr blockquote address');			// Strict
}
else
{
	define('E_blocktext', 'pre hr blockquote address center');	// Transitional
}

define('E_block', 'p '.E_heading.' div '.E_list.' '.E_blocktext.' fieldset table');

if( $use_strict ) define('E_Bblock', E_block.' '.E_misc );			// Strict only

define('E_Flow', '#PCDATA '.E_block.' '.E_inline.' '.E_misc );
define('E_a_content', '#PCDATA '.E_special.' '.E_fontstyle.' '.E_phrase.' '.E_misc_inline );

if( $use_strict )
{
	define('E_pre_content', '#PCDATA a '.E_fontstyle.' '.E_phrase.' '.E_special_pre.' '.E_misc_inline ); // Strict
}
else
{
	define('E_pre_content', '#PCDATA a '.E_special_basic.' '.E_fontstyle_basic.' '.E_phrase_basic.' '.E_misc_inline ); // Transitional
}

// Allowed Attribute classes
define('A_coreattrs', 'class title'.( $posts_allow_css_tweaks ? ' id style' : '' )
					.( $posts_allow_javascript ? ' onmouseover onmouseout onclick' : '' )  );
define('A_i18n', 'lang xml:lang dir');
define('A_attrs', A_coreattrs.' '.A_i18n);

if( !$use_strict ) define('A_TextAlign', 'align');									// Transitional only

define('A_cellhalign', 'align char charoff');
define('A_cellvalign', 'valign');

// Array showing what tags are allowed and what their allowed subtags are.
$allowed_tags = array
(
	'body' => E_Flow, // Remember this is not a true body, just a post body
	'div' => E_Flow,
	'p' => E_Iinline,
	'h1' => E_Iinline,
	'h2' => E_Iinline,
	'h3' => E_Iinline,
	'h4' => E_Iinline,
	'h5' => E_Iinline,
	'h6' => E_Iinline,
	'ul' => 'li',
	'ol' => 'li',
);
if( !$use_strict )
{
	$allowed_tags += array
	(
		'menu' => 'li',		// Transitional only
		'dir' => 'li',		// Transitional only
	);
}

$allowed_tags += array
(
	'li' => E_Flow,
	'dl' => 'dt dd',
	'dt' => E_Iinline,
	'dd' => E_Flow,
);

if( $use_strict )
{
	$allowed_tags += array
	(
		'address' => E_Iinline,														// Strict
	);
}
else
{
	$allowed_tags += array
	(
		'address' => '#PCDATA '.E_inline.' '.E_misc_inline,		// Transitional
	);
}

$allowed_tags += array
	(
		'hr' => '',
		'pre' => E_pre_content,
	);

if( $use_strict )
{
	$allowed_tags += array
	(
		'blockquote' => E_Bblock,		// Strict
	);
}
else
{
	$allowed_tags += array
	(
		'blockquote' => E_Flow,					// Transitional
		'center' => E_Flow,					// Transitional only
	);
}

$allowed_tags += array
(
	'ins' => E_Flow,
	'del' => E_Flow,
	'a' => E_a_content,
	'span' => E_Iinline,
	'bdo' => E_Iinline,
	'br' => '',
	'em' => E_Iinline,
	'strong' => E_Iinline,
	'dfn' => E_Iinline,
	'code' => E_Iinline,
	'samp' => E_Iinline,
	'kbd' => E_Iinline,
	'var' => E_Iinline,
	'cite' => E_Iinline,
	'abbr' => E_Iinline,
	'acronym' => E_Iinline,
	'q' => E_Iinline,
	'sub' => E_Iinline,
	'sup' => E_Iinline,
	'tt' => E_Iinline,
	'i' => E_Iinline,
	'b' => E_Iinline,
	'big' => E_Iinline,
	'small' => E_Iinline,
);

if( !$use_strict )
{
	$allowed_tags += array
	(
		'u' => E_Iinline,						// Transitional only
		's' => E_Iinline,						// Transitional only
		'strike' => E_Iinline,			// Transitional only
		'font' => E_Iinline,				// Transitional only
	);
}

$allowed_tags += array
(
	'img' => '',
	'fieldset' => '#PCDATA legend '.E_block.' '.E_inline.' '.E_misc,
	'legend' => E_Iinline,
	'table' => 'caption col colgroup thead tfoot tbody tr',
	'caption' => E_Iinline,
	'thead' => 'tr',
	'tfoot' => 'tr',
	'tbody' => 'tr',
	'colgroup' => 'col',
	'tr' => 'th td',
	'th' => E_Flow,
	'td' => E_Flow,
);

// Array showing allowed attributes for tags
if( $use_strict )
{
	$allowed_attributes = array
	(
		'div' => A_attrs,								// Strict
		'p' => A_attrs,								// Strict
		'h1' => A_attrs,								// Strict
		'h2' => A_attrs,								// Strict
		'h3' => A_attrs,								// Strict
		'h4' => A_attrs,								// Strict
		'h5' => A_attrs,								// Strict
		'h6' => A_attrs,								// Strict
		'ul' => A_attrs,	// Strict
		'ol' => A_attrs,	// Strict
		'li' => A_attrs,							// Strict
		'dl' => A_attrs,					// Strict
		'hr' => A_attrs,															// Strict
		'pre' => A_attrs.' xml:space',								// Strict
		'a' => A_attrs.' charset type href hreflang rel rev shape coords',			// Strict
		'br' => A_coreattrs,				// Strict
		'img' => A_attrs.' src alt longdesc height width usemap ismap',	// Strict
		'legend' => A_attrs,							// Strict
		'table' => A_attrs.' summary width border frame rules cellspacing cellpadding',  // Strict
		'caption' => A_attrs,						// Strict
		'tr' => A_attrs.' '.A_cellhalign.' '.A_cellvalign,	// Strict
		'th' => A_attrs.' abbr axis headers scope rowspan colspan '.A_cellhalign.' '.A_cellvalign,	// Strict
		'td' => A_attrs.' abbr axis headers scope rowspan colspan '.A_cellhalign.' '.A_cellvalign,	// Strict
	);
}
else
{
	$allowed_attributes = array
	(
		'div' => A_attrs.' '.A_TextAlign,		// Transitional
		'p' => A_attrs.' '.A_TextAlign,		// Transitional
		'h1' => A_attrs.' '.A_TextAlign,		// Transitional
		'h2' => A_attrs.' '.A_TextAlign,		// Transitional
		'h3' => A_attrs.' '.A_TextAlign,		// Transitional
		'h4' => A_attrs.' '.A_TextAlign,		// Transitional
		'h5' => A_attrs.' '.A_TextAlign,		// Transitional
		'h6' => A_attrs.' '.A_TextAlign,		// Transitional
		'ul' => A_attrs.' type compact',	// Transitional
		'ol' => A_attrs.' type compact start',	// Transitional
		'menu' => A_attrs.' compact',	// Transitional only
		'dir' => A_attrs.' compact',	// Transitional only
		'li' => A_attrs.' type value',	// Transitional
		'dl' => A_attrs.' compact',	// Transitional
		'hr' => A_attrs.' align noshade size width',		// Transitional
		'pre' => A_attrs.' width xml:space',						// Transitional
		'center' => A_attrs,					// Transitional only
		'a' => A_attrs.' charset type href hreflang rel rev shape coords target',	// Transitional
		'br' => A_coreattrs.' clear',	// Transitional
		'u' => A_attrs,						// Transitional only
		's' => A_attrs,						// Transitional only
		'strike' => A_attrs,			// Transitional only
		'font' => A_coreattrs.' '.A_i18n.' size color face',	// Transitional only
		'img' => A_attrs.' src alt name longdesc height width usemap ismap align border hspace vspace',	// Transitional
		'legend' => A_attrs.' align',				// Transitional
		'table' => A_attrs.' summary width border frame rules cellspacing cellpadding align bgcolor',								// Transitional
		'caption' => A_attrs.' align',																								// Transitional
		'tr' => A_attrs.' '.A_cellhalign.' '.A_cellvalign.' bgcolor',																// Transitional
		'th' => A_attrs.' abbr axis headers scope rowspan colspan '.A_cellhalign.' '.A_cellvalign.' nowrap bgcolor width height',	// Transitional
		'td' => A_attrs.' abbr axis headers scope rowspan colspan '.A_cellhalign.' '.A_cellvalign.' nowrap bgcolor width height',	// Transitional
	);
}
$allowed_attributes += array
(
	'fieldset' => A_attrs,

	'ins' => A_attrs.' cite datetime',
	'del' => A_attrs.' cite datetime',
	'blockquote' => A_attrs.' cite',
	'span' => A_attrs,
	'bdo' => A_coreattrs.' lang xml:lang dir',
	'dt' => A_attrs,
	'dd' => A_attrs,

	'address' => A_attrs,

	'em' => A_attrs,
	'strong' => A_attrs,
	'dfn' => A_attrs,
	'code' => A_attrs,
	'samp' => A_attrs,
	'kbd' => A_attrs,
	'var' => A_attrs,
	'cite' => A_attrs,
	'abbr' => A_attrs,
	'acronym' => A_attrs,
	'q' => A_attrs.' cite',
	'sub' => A_attrs,
	'sup' => A_attrs,
	'tt' => A_attrs,
	'i' => A_attrs,
	'b' => A_attrs,
	'big' => A_attrs,
	'small' => A_attrs,
	'colgroup' => A_attrs.' span width cellhalign cellvalign',
	'col' => A_attrs.' span width cellhalign cellvalign',
	'thead' => A_attrs.' '.A_cellhalign.' '.A_cellvalign,
	'tfoot' => A_attrs.' '.A_cellhalign.' '.A_cellvalign,
	'tbody' => A_attrs.' '.A_cellhalign.' '.A_cellvalign,

);

$allowed_uri_scheme = array
(
	'http',
	'https',
	'ftp',
	'gopher',
	'nntp',
	'news',
	'mailto',
	'irc',
	'aim',
	'icq'
);
if( $posts_allow_javascript )
{
	$allowed_uri_scheme[] = 'javascript';
}

// DEFINITION of allowed XHTML code for COMMENTS (posted from the public blog pages)

# here is a list of the tags that are allowed in the comments.
# all tags not in this list will be filtered out anyway before we do any checking
$comment_allowed_tags = '<p><ul><ol><li><dl><dt><dd><address><blockquote><ins><del><span><bdo><br><em><strong><dfn><code><samp><kdb><var><cite><abbr><acronym><q><sub><sup><tt><i><b><big><small>';

// Allowed Entity classes
define('C_E_special_pre', 'br span bdo');
define('C_E_special', C_E_special_pre);
define('C_E_fontstyle', 'tt i b big small');
define('C_E_phrase', 'em strong dfn code q samp kbd var cite abbr acronym sub sup');
define('C_E_misc_inline', 'ins del');
define('C_E_misc', C_E_misc_inline);
define('C_E_inline', 'a '.C_E_special.' '.C_E_fontstyle.' '.C_E_phrase );
define('C_E_Iinline', '#PCDATA '.C_E_inline.' '.C_E_misc_inline );
define('C_E_heading', '');
define('C_E_list', 'ul ol dl');
define('C_E_blocktext', 'hr blockquote address');
define('C_E_block', 'p '.C_E_heading.' div '.C_E_list.' '.C_E_blocktext.' table');
define('C_E_Bblock', C_E_block.' '.C_E_misc );
define('C_E_Flow', '#PCDATA '.C_E_block.' '.C_E_inline.' '.C_E_misc );
define('C_E_a_content', '#PCDATA '.C_E_special.' '.C_E_fontstyle.' '.C_E_phrase.' '.C_E_misc_inline );
define('C_E_pre_content', '#PCDATA a '.C_E_fontstyle.' '.C_E_phrase.' '.C_E_special_pre.' '.C_E_misc_inline );

// Allowed Attribute classes
define('C_A_coreattrs', 'class title'.( $comments_allow_css_tweaks ? ' id style' : '' ) );
define('C_A_i18n', 'lang xml:lang dir');
define('C_A_attrs', C_A_coreattrs.' '.C_A_i18n);
define('C_A_cellhalign', 'align char charoff');
define('C_A_cellvalign', 'valign');

/**
 * Array showing what tags are allowed and what their allowed subtags are.
 * @global array
 */
$comments_allowed_tags = array
(
	'body' => E_Flow, // Remember this is not a true body, just a comment body
	'p' => C_E_Iinline,
	'ul' => 'li',
	'ol' => 'li',
	'li' => C_E_Flow,
	'dl' => 'dt dd',
	'dt' => C_E_Iinline,
	'dd' => C_E_Flow,
	'address' => C_E_Iinline,
	'hr' => '',
);
if( $use_strict )
{
	$comments_allowed_tags += array
	(
		'blockquote' => C_E_Bblock,		// XHTML-1.0-Strict
	);
}
else
{
	$comments_allowed_tags += array
	(
		'blockquote' => C_E_Flow,				// XHTML-1.0-Transitional
	);
}
$comments_allowed_tags += array
(
	'ins' => C_E_Flow,
	'del' => C_E_Flow,
//	'a' => C_E_a_content,  // Allowing this will call for a whole lot of comment spam!!!
	'span' => C_E_Iinline,
	'bdo' => C_E_Iinline,
	'br' => '',
	'em' => C_E_Iinline,
	'strong' => C_E_Iinline,
	'dfn' => C_E_Iinline,
	'code' => C_E_Iinline,
	'samp' => C_E_Iinline,
	'kbd' => C_E_Iinline,
	'var' => C_E_Iinline,
	'cite' => C_E_Iinline,
	'abbr' => C_E_Iinline,
	'acronym' => C_E_Iinline,
	'q' => C_E_Iinline,
	'sub' => C_E_Iinline,
	'sup' => C_E_Iinline,
	'tt' => C_E_Iinline,
	'i' => C_E_Iinline,
	'b' => C_E_Iinline,
	'big' => C_E_Iinline,
	'small' => C_E_Iinline,
);


/**
 * Array showing allowed attributes for tags.
 * @global array
 */
$comments_allowed_attributes = array
(
	'p' => C_A_attrs,
	'ul' => C_A_attrs,
	'ol' => C_A_attrs,
	'li' => C_A_attrs,
	'dl' => C_A_attrs,
	'dt' => C_A_attrs,
	'dd' => C_A_attrs,
	'address' => C_A_attrs,
	'blockquote' => C_A_attrs.' cite',
	'ins' => C_A_attrs.' cite datetime',
	'del' => C_A_attrs.' cite datetime',
	'a' => C_A_attrs.' charset type href hreflang rel rev shape coords',
	'span' => C_A_attrs,
	'bdo' => C_A_coreattrs.' lang xml:lang dir',
	'br' => C_A_coreattrs,
	'em' => C_A_attrs,
	'strong' => C_A_attrs,
	'dfn' => C_A_attrs,
	'code' => C_A_attrs,
	'samp' => C_A_attrs,
	'kbd' => C_A_attrs,
	'var' => C_A_attrs,
	'cite' => C_A_attrs,
	'abbr' => C_A_attrs,
	'acronym' => C_A_attrs,
	'q' => C_A_attrs.' cite',
	'sub' => C_A_attrs,
	'sup' => C_A_attrs,
	'tt' => C_A_attrs,
	'i' => C_A_attrs,
	'b' => C_A_attrs,
	'big' => C_A_attrs,
	'small' => C_A_attrs,
);


/**
 * URI schemes allowed for URLs in comments and user profiles:
 * @global array
 */
$comments_allowed_uri_scheme = array
(
	'http',
	'https',
	'ftp',
	'gopher',
	'nntp',
	'news',
	'mailto',
	'irc',
	'aim',
	'icq'
);


// Array showing URI attributes
$uri_attrs = array
(
	'xmlns',
	'profile',
	'href',
	'src',
	'cite',
	'classid',
	'codebase',
	'data',
	'archive',
	'usemap',
	'longdesc',
	'action'
);


/**
 * Translation of HTML entities and special characters.
 * @global array
 */
$b2_htmltrans = array(
	// '–' => ' ', '—' => ' ', '‘' => ' ', '’' => ' ',
	// '“' => ' ', '”' => ' ', '•' => ' ', '€' => ' ',
	'&lt;' => '<',	'&gt;' => '>',
	'&sp;' => ' ', '&excl;' => '!', '&quot;' => '"', '&num;' => '#',
	'&dollar;' =>  '$', '&percnt;' => '%', '&amp;' => '&', '&apos;' => ''',
	'&lpar;' => '(', '&rpar;' => ')',
	'&ast;' => '*', '&plus;' => '+', '&comma;' => ',', '&hyphen;' => '-',
	'&minus;' => '-', '&period;' => '.', '&sol;' => '/', '&colon;' => ':',
	'&semi;' => ';', '&lt;' => '<',
	'&equals;' => '=', '&gt;' => '>', '&quest;' => '?', '&commat;' => '@',
	'&lsqb;' => '[', '&bsol;' => '\', '&rsqb;' => ']', '&circ;' => '^',
	'&lowbar;' => '_', '&horbar;' => '_',
	'&grave;' => '`', '&lcub;' => '{', '&verbar;' => '|', '&rcub;' => '}',
	'&tilde;' => '~', '&lsquor;' => '‚', '&ldquor;' => '„',
	'&ldots;' => '…', '&Scaron;' => 'Š', '&lsaquo;' => '‹', '&OElig;' => 'Œ',
	'&lsquo;' => '‘', '&rsquor;' => '‘', '&rsquo;' => '’',
	'&ldquo;' => '“', '&rdquor;' => '“', '&rdquo;' => '”', '&bull;' => '•',
	'&ndash;' => '–', '&endash;' => '–', '&mdash;' => '—', '&emdash;' => '—',
	'&tilde;' => '˜', '&trade;' => '™',
	'&scaron;' => 'š', '&rsaquo;' => '›', '&oelig;' => 'œ', '&Yuml;' => 'Ÿ',
	'&nbsp;' => ' ', '&iexcl;' => '¡', '&cent;' => '¢', '&pound;' => '£',
	'&curren;' => '¤', '&yen;' => '¥',
	'&brvbar;' => '¦', '&brkbar;' => '¦', '&sect;' => '§', '&uml;' => '¨',
	'&die;' => '¨', '&copy;' => '©', '&ordf;' => 'ª', '&laquo;' => '«',
	'&not;' => '¬', '&shy;' => '­',
	'&reg;' => '®', '&macr;' => '¯', '&hibar;' => '¯', '&deg;' => '°',
	'&plusmn;' => '±', '&sup2;' => '²', '&sup3;' => '³', '&acute;' => '´',
	'&micro;' => 'µ', '&para;' => '¶',
	'&middot;' => '·', '&cedil;' => '¸', '&sup1;' => '¹', '&ordm;' => 'º',
	'&raquo;' => '»', '&frac14;' => '¼', '&frac12;' => '½', '&half;' => '½',
	'&frac34;' => '¾', '&iquest;' => '¿',
	'&Agrave;' => 'À', '&Aacute;' => 'Á', '&Acirc;' => 'Â', '&Atilde;' => 'Ã',
	'&Auml;' => 'Ä', '&Aring;' => 'Å', '&AElig;' => 'Æ', '&Ccedil;' => 'Ç',
	'&Egrave;' => 'È', '&Eacute;' => 'É',
	'&Ecirc;' => 'Ê', '&Euml;' => 'Ë', '&Igrave;' => 'Ì', '&Iacute;' => 'Í',
	'&Icirc;' => 'Î', '&Iuml;' => 'Ï', '&ETH;' => 'Ð', '&Ntilde;' => 'Ñ',
	'&Ograve;' => 'Ò', '&Oacute;' => 'Ó',
	'&Ocirc;' => 'Ô', '&Otilde;' => 'Õ', '&Ouml;' => 'Ö', '&times;' => '×',
	'&Oslash;' => 'Ø', '&Ugrave;' => 'Ù', '&Uacute;' => 'Ú', '&Ucirc;' => 'Û',
	'&Uuml;' => 'Ü', '&Yacute;' => 'Ý',
	'&THORN;' => 'Þ', '&szlig;' => 'ß', '&agrave;' => 'à', '&aacute;' => 'á',
	'&acirc;' => 'â', '&atilde;' => 'ã', '&auml;' => 'ä', '&aring;' => 'å',
	'&aelig;' => 'æ', '&ccedil;' => 'ç',
	'&egrave;' => 'è', '&eacute;' => 'é', '&ecirc;' => 'ê', '&euml;' => 'ë',
	'&igrave;' => 'ì', '&iacute;' => 'í', '&icirc;' => 'î', '&iuml;' => 'ï',
	'&eth;' => 'ð', '&ntilde;' => 'ñ',
	'&ograve;' => 'ò', '&oacute;' => 'ó', '&ocirc;' => 'ô', '&otilde;' => 'õ',
	'&ouml;' => 'ö', '&divide;' => '÷', '&oslash;' => 'ø', '&ugrave;' => 'ù',
	'&uacute;' => 'ú', '&ucirc;' => 'û',
	'&uuml;' => 'ü', '&yacute;' => 'ý', '&thorn;' => 'þ', '&yuml;' => 'ÿ',
	'&OElig;' => 'Œ', '&oelig;' => 'œ', '&Scaron;' => 'Š', '&scaron;' => 'š',
	'&Yuml;' => 'Ÿ', '&fnof;' => 'ƒ',
	'&circ;' => 'ˆ', '&tilde;' => '˜', '&Alpha;' => 'Α', '&Beta;' => 'Β',
	'&Gamma;' => 'Γ', '&Delta;' => 'Δ', '&Epsilon;' => 'Ε', '&Zeta;' => 'Ζ',
	'&Eta;' => 'Η', '&Theta;' => 'Θ',
	'&Iota;' => 'Ι', '&Kappa;' => 'Κ', '&Lambda;' => 'Λ',
	'&Mu;' => 'Μ', '&Nu;' => 'Ν', '&Xi;' => 'Ξ',
	'&Omicron;' => 'Ο', '&Pi;' => 'Π', '&Rho;' => 'Ρ', '&Sigma;' => 'Σ',
	'&Tau;' => 'Τ', '&Upsilon;' => 'Υ', '&Phi;' => 'Φ',
	'&Chi;' => 'Χ', '&Psi;' => 'Ψ', '&Omega;' => 'Ω',
	'&alpha;' => 'α', '&beta;' => 'β', '&gamma;' => 'γ', '&delta;' => 'δ',
	'&epsilon;' => 'ε', '&zeta;' => 'ζ', '&eta;' => 'η',
	'&theta;' => 'θ', '&iota;' => 'ι', '&kappa;' => 'κ', '&lambda;' => 'λ',
	'&mu;' => 'μ', '&nu;' => 'ν', '&xi;' => 'ξ',
	'&omicron;' => 'ο', '&pi;' => 'π', '&rho;' => 'ρ', '&sigmaf;' => 'ς',
	'&sigma;' => 'σ', '&tau;' => 'τ', '&upsilon;' => 'υ', '&phi;' => 'φ',
	'&chi;' => 'χ', '&psi;' => 'ψ',
	'&omega;' => 'ω', '&thetasym;' => 'ϑ', '&upsih;' => 'ϒ', '&piv;' => 'ϖ',
	'&ensp;' => ' ', '&emsp;' => ' ', '&thinsp;' => ' ', '&zwnj;' => '‌',
	'&zwj;' => '‍', '&lrm;' => '‎',
	'&rlm;' => '‏', '&ndash;' => '–', '&mdash;' => '—', '&lsquo;' => '‘',
	'&rsquo;' => '’', '&sbquo;' => '‚', '&ldquo;' => '“', '&rdquo;' => '”',
	'&bdquo;' => '„', '&dagger;' => '†',
	'&Dagger;' => '‡', '&bull;' => '•', '&hellip;' => '…', '&permil;' => '‰',
	'&prime;' => '′', '&Prime;' => '″', '&lsaquo;' => '‹', '&rsaquo;' => '›',
	'&oline;' => '‾', '&frasl;' => '⁄',
	'&euro;' => '€', '&image;' => 'ℑ', '&weierp;' => '℘', '&real;' => 'ℜ',
	'&trade;' => '™', '&alefsym;' => 'ℵ', '&larr;' => '←', '&uarr;' => '↑',
	'&rarr;' => '→', '&darr;' => '↓',
	'&harr;' => '↔', '&crarr;' => '↵', '&lArr;' => '⇐', '&uArr;' => '⇑',
	'&rArr;' => '⇒', '&dArr;' => '⇓', '&hArr;' => '⇔', '&forall;' => '∀',
	'&part;' => '∂', '&exist;' => '∃',
	'&empty;' => '∅', '&nabla;' => '∇', '&isin;' => '∈', '&notin;' => '∉',
	'&ni;' => '∋', '&prod;' => '∏', '&sum;' => '∑', '&minus;' => '−',
	'&lowast;' => '∗', '&radic;' => '√',
	'&prop;' => '∝', '&infin;' => '∞', '&ang;' => '∠', '&and;' => '∧',
	'&or;' => '∨', '&cap;' => '∩', '&cup;' => '∪', '&int;' => '∫',
	'&there4;' => '∴', '&sim;' => '∼',
	'&cong;' => '≅', '&asymp;' => '≈', '&ne;' => '≠', '&equiv;' => '≡',
	'&le;' => '≤', '&ge;' => '≥', '&sub;' => '⊂', '&sup;' => '⊃',
	'&nsub;' => '⊄', '&sube;' => '⊆',
	'&supe;' => '⊇', '&oplus;' => '⊕', '&otimes;' => '⊗', '&perp;' => '⊥',
	'&sdot;' => '⋅', '&lceil;' => '⌈', '&rceil;' => '⌉', '&lfloor;' => '⌊',
	'&rfloor;' => '⌋', '&lang;' => '〈',
	'&rang;' => '〉', '&loz;' => '◊', '&spades;' => '♠', '&clubs;' => '♣',
	'&hearts;' => '♥', '&diams;' => '♦'
);


/**
 * Translation of invalid Unicode references range to valid range.
 * These are Windows CP1252 specific characters.
 * They would look weird on non-Windows browsers.
 * If you've ever pasted text from MSWord, you'll understand.
 * @global array
 */
$b2_htmltranswinuni = array(
	'€' => '€', // the Euro sign
	'‚' => '‚',
	'ƒ' => 'ƒ',
	'„' => '„',
	'…' => '…',
	'†' => '†',
	'‡' => '‡',
	'ˆ' => 'ˆ',
	'‰' => '‰',
	'Š' => 'Š',
	'‹' => '‹',
	'Œ' => 'Œ',
	'Ž' => 'ž',
	'‘' => '‘',
	'’' => '’',
	'“' => '“',
	'”' => '”',
	'•' => '•',
	'–' => '–',
	'—' => '—',
	'˜' => '˜',
	'™' => '™',
	'š' => 'š',
	'›' => '›',
	'œ' => 'œ',
	'ž' => 'ž',
	'Ÿ' => 'Ÿ'
);

?>

3 Feb 14, 2008 06:56

Oh! It works great but generates another problem:
The tag generated
[object:flash:http://xxxx/dewplayer-vol.swf width:240 height:20]
is always centered and do not react to any kind of alignement (div align="left", p align="left",...)

Any ideas ?

4 Feb 14, 2008 07:36

That is because it wrapped in the videoblock div...

// flash:
		$content = preg_replace( '¤\[object:flash:(.+?) width:(.+?) height:(.+?)]¤', '<div class="videoblock"><object width="\\2" height="\\3"><param name="movie" value="\\1">	<embed src="\\1" width="\\2" height="\\3"></embed></object></div>', $content );

you can either edit your CSS for videoblock or edit the plugin's code with a different div class.

5 Feb 15, 2008 00:02

Great! Job done. Thank you very much for the help! : )


Form is loading...