A Aldeia Numaboa ancestral ainda está disponível para visitação. É a versão mais antiga da Aldeia que eu não quis simplesmente descartar depois de mais de 10 milhões de pageviews. Como diz a Sirley, nossa cozinheira e filósofa de plantão: "Misericórdia, ai que dó!"

Se você tiver curiosidade, o endereço é numaboa.net.br.

Leia mais...

Informática Numaboa - Tutoriais e Programação

GeSHi à moda da casa

Qui

9

Jul

2009


12:17

(5 votos, média 4.00 de 5) 


Lá na altura da linha 59 os parâmetros são analisados, então vamos criar um novo parâmetro neste ponto. Chamei-o de "inicio" e seu valor padrão é 1:

$lang = JArrayHelper::getValue( $args, 'lang', 'php' ); $lines = JArrayHelper::getValue( $args, 'lines', 'false' ); $inicio = JArrayHelper::getValue( $args, 'inicio', '1' );

Logo depois de criar o objeto $geshi é verificado se as linhas de código devem ser numeradas ou não. Neste ponto é usado uma das propriedades da classe geshi para iniciar a numeração, a enable_line_numbers. Vamos usar mais uma propriedade, a start_line_numbers_at, para que a numeração comece a partir do número indicado:

$geshi = new GeSHi( $text, $lang ); if ($lines == 'true') { $geshi->enable_line_numbers( GESHI_NORMAL_LINE_NUMBERS ); $geshi->start_line_numbers_at( $inicio ); }

Agora, se eu chamar o GeSHi com

<geshi lines="true" inicio="10">qualquer coisa</geshi>

o resultado será:

qualquer coisa

E viva "nóis"!!! O resultado não poderia ser melhor biggrin

A terceira etapa

Já sei. Agora vocês vão me cobrar como colocar um título nos blocos do GeSHi. É lógico que vamos precisar de mais um parâmetro, que eu chamei de tit. Para ciscar este parâmetro, voltamos para as linhas depois da linha 59:

$lang = JArrayHelper::getValue( $args, 'lang', 'php' ); $lines = JArrayHelper::getValue( $args, 'lines', 'false' ); $inicio = JArrayHelper::getValue( $args, 'inicio', '1' ); $tit = JArrayHelper::getValue( $args, 'tit', '' );

Com isto, se o parâmetro tit existir, ele será considerado; se não, a string será nada ou vazia. Agora, novamente logo depois de criar o objeto geshi, vamos informá-lo do estilo que queremos para a área de título (fique à vontade para criar o seu). Para isto usamos a propriedade set_header_content_style:

$geshi = new GeSHi( $text, $lang ); if ($lines == 'true') { $geshi->enable_line_numbers( GESHI_NORMAL_LINE_NUMBERS ); $geshi->start_line_numbers_at( $inicio ); } $geshi->set_header_content_style("border-bottom: 1px dotted #aaaaaa; padding: 3pt; margin-bottom: 10px; font-size: 12px; font-weight: bold; color: #666666");

Depois de definido o estilo, vamos usar a propriedade set_header_content para incluir o título:

$geshi = new GeSHi( $text, $lang ); if ($lines == 'true') { $geshi->enable_line_numbers( GESHI_NORMAL_LINE_NUMBERS ); $geshi->start_line_numbers_at( $inicio ); } $geshi->set_header_content_style("border-bottom: 1px dotted #aaaaaa; padding: 3pt; margin-bottom: 10px; font-size: 12px; font-weight: bold; color: #666666"); if( $tit != '') { $geshi->set_header_content( $tit ); }

Agora, se eu chamar o GeSHi com

<geshi lines="true" inicio="10" tit="Título">qualquer coisa</geshi>

o resultado será:

qualquer coisa

Este é o plugin do GeSHi que uso, bem à moda da casa. Mostro a seguir o código completo do plugin modificado:

registerEvent( 'onPrepareContent', 'plgContentGeshi' ); /** * Code Highlighting Plugin * * Replaces
...
tags with highlighted text * Troquei por <geshi>...</geshi> */ function plgContentGeshi( &$row, &$params, $page=0 ) { // simple performance check to determine whether bot should process further if ( JString::strpos( $row->text, 'geshi>' ) === false ) { return true; } // Get Plugin info $plugin =& JPluginHelper::getPlugin('content', 'geshi'); // define the regular expression for the bot $regex = "#<geshi\s*(.*?)>(.*?)</geshi>#s"; $GLOBALS['_MAMBOT_GESHI_PARAMS'] =& $params; // perform the replacement $row->text = preg_replace_callback( $regex, 'plgContentGeshi_replacer', $row->text ); return true; } /** * Replaces the matched tags an image * @param array An array of matches (see preg_match_all) * @return string */ function plgContentGeshi_replacer( &$matches ) { $params =& $GLOBALS['_MAMBOT_GESHI_PARAMS']; jimport('geshi.geshi'); jimport('domit.xml_saxy_shared'); $args = SAXY_Parser_Base::parseAttributes( $matches[1] ); $text = $matches[2]; $lang = JArrayHelper::getValue( $args, 'lang', 'php' ); $lines = JArrayHelper::getValue( $args, 'lines', 'false' ); $inicio = JArrayHelper::getValue( $args, 'inicio', '1' ); $tit = JArrayHelper::getValue( $args, 'tit', '' ); $html_entities_match = array( "|\
|", "#<#", "#>#", "|'|", '#"#', '# #' ); $html_entities_replace = array( "\n", '<', '>', "'", '"', ' ' ); $text = preg_replace( $html_entities_match, $html_entities_replace, $text ); $text = str_replace('<', '<', $text); $text = str_replace('>', '>', $text); // Replace tabs with "   " so tabbed code indents sorta right without making huge long lines. $text = str_replace( "\t", ' ', $text ); $geshi = new GeSHi( $text, $lang ); if ($lines == 'true') { $geshi->enable_line_numbers( GESHI_NORMAL_LINE_NUMBERS ); $geshi->start_line_numbers_at( $inicio ); } $geshi->set_header_content_style("border-bottom: 1px dotted #aaaaaa; padding: 3pt; margin-bottom: 10px; font-size: 12px; font-weight: bold; color: #666666"); if( $tit != '') { $geshi->set_header_content( $tit ); } $text = $geshi->parse_code(); return $text; }
Леди Шармкастрюля вокофициальный никас сайт харьковпланшеты цена https://ru.topodin.com/seo/post/prodvizhenie-sajtov-prodayuschih-plastikovye-okna-osobennosti-i-etapy-raboty topodin отзывыресторан nikas

Informações adicionais