Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Re:Testing the new parser engine (1 viewing) (1) Guest
Go to bottom Favoured: 2
TOPIC: Re:Testing the new parser engine
#32802
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
The administrator has disabled public write access.  
#32804
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
Smileys aren't broken anymore. The LARGE smiley images are missing though. Did you guys move/empty the fb_files folder?
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
The administrator has disabled public write access.  
#32805
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
Trying again.

[code:1]===============================================================================
Metaobjects is the metadata plugin on steroids
...............................................................................
Copyright 2007 / Andrea Ercolino
-------------------------------------------------------------------------------
LICENSE: http://www.opensource.org/licenses/mit-license.php
WEBSITE: http://noteslog.com/metaobjects/
===============================================================================
*/

( function($) {
$.metaobjects = function( options ) {

options = $.extend( {
context: document
, clean: true
, selector: 'object.metaobject'
}, options );

function jsValue( value ) {
eval( 'value = ' + value + ";" );
return value;
}

return $( options.selector, options.context )
.each( function() {

var settings = { target: this.parentNode };
$( '> param[@name=metaparam]', this )
.each( function() {
$.extend( settings, jsValue( this.value ) );
} );

$( '> param', this )
.not( '[@name=metaparam]' )
.each( function() {
var name = this.name, value = jsValue( this.value );
$( settings.target )
.each( function() {
this[ name ] = value;
} );
} );

if( options.clean ) {
$( this ).remove();
}
} );
};
} ) ( jQuery );[/code:1]
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
Last Edit: 2007/12/01 19:37 By grumblemarc.
 
The administrator has disabled public write access.  
#32806
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
[code:1]/*
extracted from "Advanced MySQL user variable techniques"
(http://www.xaprb.com/blog/2006/12/15/advanced-mysql-user-variable-techniques/)
*/

CREATE TABLE fruits (
`type` varchar(10) NOT NULL,
variety varchar(20) NOT NULL,
price decimal(5,2) NOT NULL default 0,
PRIMARY KEY (`type`,variety)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

insert into fruits(`type`, variety, price) values
('apple', 'gala', 2.79),
('apple', 'fuji', 0.24),
('apple', 'limbertwig', 2.87),
('orange', 'valencia', 3.59),
('orange', 'navel', 9.36),
('pear', 'bradford', 6.05),
('pear', 'bartlett', 2.14),
('cherry', 'bing', 2.55),
('cherry', 'chelan', 6.33);


set @num := 0, @type := '';

select `type`, variety, price, @num
from fruits
where 2 >= greatest(
@num := if(@type = `type`, @num + 1, 1),
least(0, length(@type := `type`))); [/code:1]
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
The administrator has disabled public write access.  
#32807
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
[code:1] function Enzymes() {

//basic expressions
$this->e = array(
'post' => 'd*'
, 'quoted' => $this->quote.'[^'.$this->quote.'\\]*'
.'(?:\\.[^'.$this->quote.'\\]*)*'.$this->quote
, 'oneword' => '[w-]+'
, 'star' => '*'
, 'template' => '(??P/|\\)(?P(?:[^|])+))'
, 'comment' => '(?P/*.*?*/)'
, 'rest' => '(?:|(?P.+))'
, 'before' => '(?P.*?)'
, 'statement' => '{[(?P.*?)]}'
, 'after' => '(?P.*)'
); [/code:1]
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
The administrator has disabled public write access.  
#32808
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
Well it works!
Don't know if they have the HTML bug licked yet.
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
The administrator has disabled public write access.  
#32816
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
no change

it is the same

i thought that it will be like tinymce as grumblemarc said in another topic
manhag (User)
Junior Boarder
Posts: 83
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
idont hate a fireboard moderator

karma [size=4][color=#c0c9c0][u][url=www.bestofjoomla.com/component/option,co...rease/userid,897/pid
 
The administrator has disabled public write access.  
#32817
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
I wish the cursor stays between brackets when I use the bbcode icons
johnnydement (Moderator)
FB Quality & Testing Team
Moderator
Posts: 418
graphgraph
User Offline Click here to see the profile of this user
Voces del Vicio Location: Barcelona Birthdate: 1981-12-23
Logged Logged
 
"As a discussion over the net grows longer, the probability of a comparison involving Nazis or Hitler approaches one." - Godwin Law
 
The administrator has disabled public write access.  
#32833
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
manhag wrote:
no change

it is the same

i thought that it will be like tinymce as grumblemarc said in another topic

Where did I say that?
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
The administrator has disabled public write access.  
#32876
Re:Testing the new parser engine 11 Months, 3 Weeks ago  
grumblemarc wrote:
manhag wrote:
no change

it is the same

i thought that it will be like tinymce as grumblemarc said in another topic

Where did I say that?



why did u reply at that topic then
www.bestofjoomla.com/component/option,co...id,3/id,32873/#32685

i think that it was for wysiwyg HTML instead of BBCode

not for new parser

i really hate a fireboard moderator
manhag (User)
Junior Boarder
Posts: 83
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
idont hate a fireboard moderator

karma [size=4][color=#c0c9c0][u][url=www.bestofjoomla.com/component/option,co...rease/userid,897/pid
 
The administrator has disabled public write access.  
Go to top