'editfck', 'Width' => '100%', 'Height' => '400', 'BaseImagePath' => 'http://'.$_SERVER[HTTP_HOST], 'BasePath' =>'/wiki/pub/fckeditor/FCKeditor/', 'UserFilesPath' => '/wiki/uploads/', 'ToolBar'=> 'PmWiki', 'EditorAreaCSS' => '/wiki/pub/fckeditor/pm_fckstyles.css', 'StylesXmlPath' => '/wiki/pub/fckeditor/pm_fckstyles.xml', 'CustomConfigurationsPath' => '/wiki/pub/fckeditor/pm_fckconfig.js', 'TextTranslation' => array(summary => 'Summary:', author => 'Author:', minor => 'This is a minor edit', editfck => "WysIsWyg Edit") )); SDVA($HandleActions,array($PmFCK['EditFckAction'] => 'HandleEditFck')); SDVA($HandleAuth,array($PmFCK['EditFckAction'] => 'edit')); SDVA($MarkupToDisable, array(count($MarkupToDisable) =>'if', 'redirect', 'include', 'nogroupfooter', 'nogroupheader', 'groupheader', 'groupfooter', 'noright', 'noleft', 'notitle', 'nofooter', 'noaction', 'spacewikiwords', 'messages', 'linebreaks', 'linkwikiwords', 'noheader', 'varindex', 'pagelist', 'searchresults', 'input', 'comment', 'title')); function HandleEditFck($pagename, $auth = 'edit') { global $IsPagePosted, $EditFields, $ChangeSummary, $EditFunctions, $EnablePost, $EnablePostAuthorRequired, $FmtV, $Now, $EditRedirectFmt, $Author, $PageEditForm, $HandleEditFmt, $PageStartFmt, $PageEditFmt, $PageEndFmt,$PmFCK,$MarkupToDisable,$MarkupTable,$MarkupRules,$MessagesFmt; SDV($EditRedirectFmt, '$FullName'); if (@$_POST['cancel']) { Redirect(FmtPageName($EditRedirectFmt, $pagename)); return; } Lock(2); $IsPagePosted = false; $page = RetrieveAuthPage($pagename, $auth, true); if (!$page) Abort("?cannot edit $pagename"); PCache($pagename,$page); $new = $page; if (isset($_POST['FCKeditor1'])) $new['text']=HTMLToMarkups($pagename,str_replace("\r",'',stripmagic($_POST['FCKeditor1']))); $new['csum'] = $ChangeSummary; if ($ChangeSummary) $new["csum:$Now"] = $ChangeSummary; $EnablePost &= preg_grep('/^post/', array_keys(@$_POST)); // $Editfunctions if (IsEnabled($EnablePostAuthorRequired,0)) { RequireAuthor($pagename, $page, $new); } SaveAttributes($pagename,$page,$new); PostPage($pagename,$page,$new); PostRecentChanges($pagename,$page,$new); Lock(0); if ($IsPagePosted && !@$_POST['postedit']) { Redirect(FmtPageName($EditRedirectFmt, $pagename)); return; } $FmtV['$DiffClassMinor'] = (@$_POST['diffclass']=='minor') ? "checked='checked'" : ''; $FmtV['$EditText'] = str_replace('$','$',htmlspecialchars(@$new['text'],ENT_NOQUOTES)); $FmtV['$EditBaseTime'] = $Now; /* if (@$PageEditForm) { $form = ReadPage(FmtPageName($PageEditForm, $pagename), READPAGE_CURRENT); // $FmtV['$EditForm'] = MarkupToHTML($pagename, $form['text']); }*/ // Config $oFCKeditor = new FCKeditor('FCKeditor1'); $oFCKeditor->Config['EditorAreaCSS'] = $PmFCK['EditorAreaCSS']; $oFCKeditor->Config['StylesXmlPath'] = $PmFCK['StylesXmlPath']; $oFCKeditor->Config['CustomConfigurationsPath'] = $PmFCK['CustomConfigurationsPath']; $oFCKeditor->BasePath = $PmFCK['BasePath']; $oFCKeditor->Width = $PmFCK['Width']; $oFCKeditor->Height = $PmFCK['Height'] ; $oFCKeditor->Config['ToolBar'] = $PmFCK['ToolBar']; $TmpMarkupTable=$MarkupTable; // Disable selected markups during the conversion $TmpMarkupRules=$MarkupRules; DisableMarkup($MarkupToDisable); $html= MarkupToHTML($pagename,$new['text']); // Convert Wiki Markups to normal HTML, using the standard fonction $html = preg_replace("/]*)><\/div>/i", "",$html); // Remove some stuff that causes problem when translating from HTML to Wiki after the edit $html = preg_replace("/]*)><\/p>/i", "",$html); $MarkupTable=$TmpMarkupTable; // Restore the markups for the page to be properly displayed $MarkupRules=$TmpMarkupRules; $oFCKeditor->Value = $html; $PageEditFmt= "

$[Editing {\$FullName}]

".$MessagesFmt[0]." ".$oFCKeditor->CreateHtml(). "
".$PmFCK['TextTranslation']['summary']."
".$PmFCK['TextTranslation']['author']." ".$PmFCK['TextTranslation']['minor']."
"; SDV($HandleEditFmt, array(&$PageStartFmt, &$PageEditFmt , &$PageEndFmt)); PrintFmt($pagename, $HandleEditFmt); // } function HTMLToMarkups($pagename,$html) { global $HTML_Markups,$ScriptUrl; // Delete all the \r\n ibetween markups to avoid problem when converting table markups // This has to be done before replacement of non-block markups, which mays produces compulsory \r\n inside a cell for example $html = preg_replace_callback("/([ ]*<[\/]{0,1}(table|thead|tbody|tr|th|td){1}[^>]*>[\r\n]*)/i", "LinesBreaksRemove" ,$html ); // Replacement of all non-block markups foreach ($HTML_Markups as $markup => $attributes) { if (isset($attributes['alias'])) $attributes=$HTML_Markups[$attributes['alias']]; if (@$attributes['type'] == 'single') $html = preg_replace("/<$markup([^>]*)>/i", @$attributes['start'], $html); if (@$attributes['type'] == 'noattr') $html = preg_replace("/<$markup([^>]*)>(.*?)<\/$markup>/i", @$attributes['start']."$2".@$attributes['end'], $html); if (@$attributes['type'] == 'attr') { preg_match_all("/<$markup(([ ]*[a-zA-Z]+=[\"'](.*?)[\"'])*?)[ ]*>(.*?)<\/$markup>/i", $html , $matches); // [ ]?([a-zA-Z]+='(.+?)') $strmatch = $matches[0]; $markup_attr = $matches[1]; $markup_txt = $matches[4]; $i=0; while ($i]+?)[\"']/",$markup_attr[$i],$attr_match); list($tmp,$markup_listattr,$markup_listparam)=$attr_match; $j=0; $attrisset=0; while ($j markup - nothing else !! { preg_match_all("/(.*?)<\/a>/i", $html , $matches); // [ ]?([a-zA-Z]+='(.+?)') $strmatch = $matches[0]; $markup_attr = $matches[1]; $markup_txt = $matches[4]; $i=0; while ($i]+?)[\"|']/",$markup_attr[$i],$attr_match); list($tmp,$markup_listattr,$markup_listparam)=$attr_match; $j=0; while ($j local link eregi("[a-z]+[/\.]{1}[a-z]+$",$linkparam['href'],$page); // Check if the link as a text description or if it's just the pagename if ($page[0]==trim($markup_txt[$i])) $wikilink=$attributes['normal']['start'].$page[0].$attributes['normal']['end']; else $wikilink=$attributes['normal']['start'].$page[0].$attributes['normal']['middle'].$markup_txt[$i].$attributes['normal']['end']; // Normal Url } else $wikilink=$attributes['normal']['start'].$linkparam['href'].$attributes['normal']['middle'].$markup_txt[$i].$attributes['normal']['end']; // Normal Url } else if (isset($linkparam['name']) || isset($linkparam['id'])) { // Anchor $linkparam['name'] = ($linkparam['name']!='') ? $linkparam['name']:$linkparam['id']; if (trim($markup_txt[$i])!="") $wikilink = $attributes['anchor']['middle'] . $markup_txt[$i]; $wikilink = $attributes['anchor']['start'].$linkparam['name'].$wikilink.$attributes['anchor']['end']; } else { /* Unknow ? - do nothing */ } if (@$linkparam['target']=='_blank') $wikilink = @$attributes['newwin']['start']. $wikilink . @$attributes['newwin']['end']; $html=str_replace($strmatch[$i],$wikilink,$html); $i++; } } // End of "if (@$attributes['type'] == 'link')" } // List markups $html = preg_replace_callback("/([ ]*<[\/]{0,1}(ul|ol|li){1}>?)/i", "ListMarkupReplace" ,$html ); // Table markups $html = preg_replace_callback("/[ ]*<([\/]{0,1})(table|tr|th|td)([^>]*)>/i", "TableMarkupReplace" ,$html ); // Img markups $html = preg_replace_callback("/[ ]*]*)>/i", "ImgMarkupReplace" ,$html ); // Avoid space to become too present $html = str_replace(" ", " ",$html); // Remove non recognized markups $html = strip_tags ($html); return $html; } SDV($ListDepth,0); SDV($BulletType,''); function ListMarkupReplace($matches) { global $ListDepth,$BulletType; $ret_html=''; $ListBullets = array( 'ul' => '*', 'ol' => '#', 'dl' => ':'); switch (trim($matches[0])){ case "
  • ": $ret_html=str_repeat($BulletType, $ListDepth); break; case "
  • ": $ret_html=""; break; case "
      ": $ListDepth++; $BulletType = $ListBullets['ul']; break; case "
        ": $ListDepth++; $BulletType = $ListBullets['ol']; break; case "
        ": $ListDepth++; $BulletType = $ListBullets['dl']; break; case "
    ": $ListDepth--; break; case "": $ListDepth--; break; case "": $ListDepth--; break; } return $ret_html; } SDV($NewLineCreated,0); // Set to 1 if a
    has just been matched, to display a (:cellnr:) instead of a (:cellr:) function TableMarkupReplace($matches) { global $HTML_Markups,$NewLineCreated; $ret_html=''; $opclose=$matches[1]; $markup=$matches[2]; $params=$matches[3]; if (trim($params)!="" && $opclose != "/") { preg_match_all("/([a-zA-Z]+?)=[\"|']([^\"'>]+?)[\"|']/",$params,$attr_match); $i=0; while ($i$attr_val) { if (in_array($attr_name,$HTML_Markups[$markup]['autorizedparam'])) $wikiparam.=" $attr_name=$attr_val"; } } else $wikiparam=""; if ($opclose=="") { switch ($markup) { case "table": $ret_html="(:table$wikiparam:)\r\n"; break; case "tr": $NewLineCreated=1; break; case "th": $ret_html= ($NewLineCreated==1) ? "(:cellnr$wikiparam:)" : "(:cell$wikiparam:)"; $NewLineCreated=0; break; case "td": $ret_html= ($NewLineCreated==1) ? "(:cellnr$wikiparam:)" : "(:cell$wikiparam:)"; $NewLineCreated=0; break; } } else { switch ($markup) { case "table": $ret_html="(:tableend:)\r\n"; break; case "th": $ret_html="\r\n"; break; case "td": $ret_html="\r\n"; break; } } return $ret_html; } function ImgMarkupReplace($matches) { global $HTML_Markups,$PmFCK; $ret_html=''; preg_match_all("/([a-zA-Z]+?)=[\"|']([^\"'>]+?)[\"|']/",$matches[1],$attr_match); $i=0; while ($i$attr_val) { if (in_array($attr_name,$HTML_Markups['img']['autorizedparam'])) $wikiparam.=" $attr_name=$attr_val"; } $wikialt = ($listattr['alt']!='') ? "\"$listattr[alt]\"":''; $wikiparam=trim($wikiparam); $ret_html="%$wikiparam%$wikisrc$wikialt"; } return $ret_html; } function LinesBreaksRemove($matches) { return str_replace("\r\n","",trim($matches[0])); } /* $HTML_Markups : type attribute - noattr : direct replacement - the markup doesn't have significant attributes - attr : replacement may change depending of markup attributes (ex class, style) - single : it's a single markup. There isn't an openning markup and a closing one with some stuff between */ $HTML_Markups = array( 'b' => array( 'start' => "'''", 'end' => "'''" , 'type' => 'noattr'), 'strong' => array( 'alias' => 'b' ), 'i' => array( 'start' => "''", 'end' => "''", 'type' => 'noattr' ), 'em' => array( 'alias' => 'i' ), 'tt' => array( 'start' => '@@', 'end' => '@@', 'type' => 'noattr' ), 'code' => array( 'alias' => 'tt' ), 'small' => array( 'start' => "'+", 'end' => "+'", 'type' => 'noattr' ), 'big' => array( 'start' => "'-", 'end' => "-'", 'type' => 'noattr' ), 'sup' => array( 'start' => "'^", 'end' => "^'", 'type' => 'noattr' ), 'sub' => array( 'start' => "'_", 'end' => "_'", 'type' => 'noattr' ), 'ins' => array( 'start' => '{+', 'end' => '+}', 'type' => 'noattr' ), 'u' => array( 'alias' => 'ins'), 'del' => array( 'start' => '{-', 'end' => '-}', 'type' => 'noattr' ), 'strike' => array( 'alias' => 'del'), 'p' => array( 'type' => 'attr', 'attr_class' => array( 'vspace' => array ('start' => "", 'end' => "\r\n\r\n"), 'default' => array ('start' => '%p class=$param%', 'end' => "%%\r\n\r\n")), 'attr_align' => array( 'justify' => array ('start' => "%block text-align=justify%", 'end' => "%%\r\n\r\n"), 'center' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'right' => array ('start' => "%block text-align=right%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'attr_style' => array ('text-align: center;' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'no_attr_def' => array( 'start' => "", 'end' => "\r\n\r\n")), 'div' => array( 'type' => 'attr', 'attr_class' => array( 'vspace' => array ('start' => "", 'end' => "\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'attr_align' => array( 'justify' => array ('start' => "%block text-align=justify%", 'end' => "%%\r\n\r\n"), 'center' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'right' => array ('start' => "%block text-align=right%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'no_attr_def' => array( 'start' => "", 'end' => "\r\n\r\n")), 'span' => array( 'type' => 'attr', 'attr_class' => array( 'wikiword' => array ('start' => "", 'end' => ""), 'default' => array ('start' => '%class=$param%', 'end' => "%%")), 'attr_style' => array( 'font-size: 144%;' => array ('start' => "[++", 'end' => "++]"), // Need to translate the 'font-size: 120%;' => array ('start' => "[+", 'end' => "+]"), // size markups of PmWiki 'font-size: 83%;' => array ('start' => "[-", 'end' => "-]"), // 'font-size: 69%;' => array ('start' => "[--", 'end' => "--]"), // 'default' => array ('start' => "", 'end' => "")), 'no_attr_def' => array( 'start' => "", 'end' => "")), 'font' => array( 'type' => 'attr', 'attr_size' => array( '1' => array ('start' => "[--", 'end' => "--]"), // Need to translate the size '2' => array ('start' => "[-", 'end' => "-]"), // bar of FCKEditor '3' => array ('start' => "", 'end' => "-]"), '4' => array ('start' => "[+", 'end' => "+]"), '5' => array ('start' => "[++", 'end' => "++]"), 'default' => array ('start' => "", 'end' => "")), 'no_attr_def' => array( 'start' => "", 'end' => "")), 'h1' => array( 'start' => '! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h2' => array( 'start' => '!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h3' => array( 'start' => '!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h4' => array( 'start' => '!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h5' => array( 'start' => '!!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h6' => array( 'start' => '!!!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'br' => array( 'start' => "\\\\\\\r\n", 'type' => 'single' ), 'hr' => array( 'start' => '----' , 'type' => 'single' ), 'a' => array( 'type' => 'link', 'normal' => array('start' => '[[', 'middle' =>'|', 'end' =>']]'), // standard link [[link|text]] 'raw_url' => array('start' => '', 'middle' =>'', 'end' =>''), // only an url 'newwin' => array('start' => '%newwin%'), // add %newwin% is target='_blank' is found 'anchor' => array('start' => '[[#', 'middle' =>'|', 'end' =>']]')), // anchor link [[#anchor]] or [[#anchor|text]] 'table' => array( 'type' => 'block', 'autorizedparam' => array('border', 'bordercolor', 'cellspacing', 'cellpadding', 'width', 'bgcolor', 'align', 'summary')), 'td' => array( 'type' => 'block', 'autorizedparam' => array('align', 'valign', 'colspan', 'rowspan', 'bgcolor', 'width')), 'tbody' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), // "Unuseful" Markups : not translated in PmWiki 'thead' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), 'tbody' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), 'img' => array( 'type' => 'block', 'autorizedparam' => array('width', 'height', 'border', 'vspace', 'hspace')) ); ?> Picowireless Wiki: DigitalChip/Fiesta 18 TD
    DigitalChip

    Fiesta 18 TD

    Historial de DigitalChip.Fiesta18TD

    Esconder edies de menor importncia - Ver alteraes no contedo

    07-12-2012, 07:27 PM por Nuno Mendes -
    Linhas 26-27 foram alteradas de:
    para:
    06-12-2012, 10:19 PM por Nuno Mendes -
    Linhas 20-21 foram alteradas de:
    Jantes Mak Sonic 17"x7" 4x108mm
    para:
    Jantes Mak Sonic 17"x7" 4x108mm ET 35
    Linhas 26-27 foram alteradas de:
    Novembro 2012 a atualizdade: Turbo Diesel 130cv\\
    para:
    06-12-2012, 10:18 PM por Nuno Mendes -
    Linhas 26-27 foram alteradas de:
    para:
    Novembro 2012 a atualizdade: Turbo Diesel 130cv\\
    Linha 81 foi eliminada:
    Linhas 83-86 foram acrescentadas:

    !!!2012 Novembro
    ----
    ||border=0 width=100%
    Linha 88 foi acrescentada:
    \\
    Linha 89 foi eliminada:
    25-07-2012, 01:10 PM por Nuno Mendes -
    Linha 45 foi alterada de:
    %newwin% [[http://digitalchip.myftp.biz/nmm/tuning/|O antigo site do fiesta]] \\
    para:
    (:comment %newwin% [[http://digitalchip.myftp.biz/nmm/tuning/|O antigo site do fiesta]] :) \\
    25-07-2012, 01:07 PM por Nuno Mendes -
    Linha 40 foi alterada de:
    para:
    24-08-2009, 03:48 PM por Nuno Mendes -
    Linha 61 foi eliminada:
    Linha 63 foi acrescentada:
    Linha 71 foi eliminada:
    Linha 73 foi acrescentada:
    24-08-2009, 03:48 PM por Nuno Mendes -
    Linha 63 foi acrescentada:
    \\
    Linha 73 foi acrescentada:
    \\
    24-08-2009, 03:44 PM por Nuno Mendes -
    Linha 63 foi alterada de:
    2009 Agosto 19
    para:
    !!!2009 Agosto 19
    Linha 72 foi alterada de:
    2009 Agosto 21
    para:
    !!!2009 Agosto 21
    24-08-2009, 03:44 PM por Nuno Mendes -
    Linhas 63-64 foram acrescentadas:
    2009 Agosto 19
    ----
    Linhas 72-73 foram acrescentadas:
    2009 Agosto 21
    ----
    24-08-2009, 03:40 PM por Nuno Mendes -
    Linha 62 foi eliminada:
    Linha 64 foi alterada de:
    %width=320 height=240%http://img25.imageshack.us/img25/7486/20082009003.jpg
    para:
    %width=300 height=225%http://img25.imageshack.us/img25/7486/20082009003.jpg
    Linha 66 foi alterada de:
    %width=320 height=240%http://img401.imageshack.us/img401/6559/20082009002.jpg
    para:
    %width=300 height=225%http://img401.imageshack.us/img401/6559/20082009002.jpg
    Linhas 68-72 foram alteradas de:
    %width=320 height=240%http://img25.imageshack.us/img25/7863/20082009n.jpg
    \\
    \\
    %center%trabalho em progresso
    para:
    %width=300 height=225%http://img25.imageshack.us/img25/7863/20082009n.jpg
    Linha 71 foi alterada de:
    ||Interior pintado em preto||
    para:
    ||Zona do motor pintada em preto||
    Linhas 75-79 foram acrescentadas:

    \\
    \\
    %center%trabalho em progresso
    24-08-2009, 03:38 PM por Nuno Mendes -
    Linhas 74-79 foram alteradas de:
    %width=300 height=225%http://img269.imageshack.us/img269/772/21082009004k.jpg
    %width=300 height=225%http://img31.imageshack.us/img31/1420/21082009002k.jpg
    %width=300 height=225%http://img269.imageshack.us/img269/9766/21082009003.jpg
    %width=300 height=225%http://img21.imageshack.us/img21/2041/21082009001z.jpg
    %width=300 height=225%http://img208.imageshack.us/img208/2862/21082009r.jpg
    %width=300 height=225%http://img208.imageshack.us/img208/8072/21082009006.jpg
    para:
    ||border=0 width=100%
    ||Interior pintado em preto||
    ||%width=300 height=225%http://img269.imageshack.us/img269/772/21082009004k.jpg||%width=300 height=225%http://img31.imageshack.us/img31/1420/21082009002k.jpg||
    ||%width=300 height=225%http://img269.imageshack.us/img269/9766/21082009003.jpg||%width=300 height=225%http://img21.imageshack.us/img21/2041/21082009001z.jpg||
    ||%width=300 height=225%http://img208.imageshack.us/img208/2862/21082009r.jpg||%width=300 height=225%http://img208.imageshack.us/img208/8072/21082009006.jpg||
    24-08-2009, 03:37 PM por Nuno Mendes -
    Linhas 74-79 foram alteradas de:
    %width=320 height=240%http://img208.imageshack.us/img208/8072/21082009006.jpg
    %width=320 height=240%http://img269.imageshack.us/img269/772/21082009004k.jpg
    %width=320 height=240%http://img31.imageshack.us/img31/1420/21082009002k.jpg
    %width=320 height=240%http://img269.imageshack.us/img269/9766/21082009003.jpg
    %width=320 height=240%"http://img21.imageshack.us/img21/2041/21082009001z.jpg
    %width=320 height=240%http://img208.imageshack.us/img208/2862/21082009r.jpg
    para:
    %width=300 height=225%http://img269.imageshack.us/img269/772/21082009004k.jpg
    %width=300 height=225%http://img31.imageshack.us/img31/1420/21082009002k.jpg
    %width=300 height=225%http://img269.imageshack.us/img269/9766/21082009003.jpg
    %width=300 height=225%http://img21.imageshack.us/img21/2041/21082009001z.jpg
    %width=300 height=225%http://img208.imageshack.us/img208/2862/21082009r.jpg
    %width=300 height=225%http://img208.imageshack.us/img208/8072/21082009006.jpg
    24-08-2009, 03:36 PM por Nuno Mendes -
    Linhas 74-79 foram acrescentadas:
    %width=320 height=240%http://img208.imageshack.us/img208/8072/21082009006.jpg
    %width=320 height=240%http://img269.imageshack.us/img269/772/21082009004k.jpg
    %width=320 height=240%http://img31.imageshack.us/img31/1420/21082009002k.jpg
    %width=320 height=240%http://img269.imageshack.us/img269/9766/21082009003.jpg
    %width=320 height=240%"http://img21.imageshack.us/img21/2041/21082009001z.jpg
    %width=320 height=240%http://img208.imageshack.us/img208/2862/21082009r.jpg
    21-08-2009, 01:56 PM por Nuno Mendes -
    Linha 41 foi alterada de:
    !!!!! "Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments." - http://www.arduino.cc/
    para:
    !!!!! "Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments." - %newwin% http://www.arduino.cc/
    21-08-2009, 01:56 PM por Nuno Mendes -
    Linha 41 foi alterada de:
    !!!!! "Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments."
    para:
    !!!!! "Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments." - http://www.arduino.cc/
    21-08-2009, 01:55 PM por Nuno Mendes -
    Linhas 42-44 foram alteradas de:
    http://arduino.cc/en/uploads/Main/arduino316.jpg
    Em desenvolvimento e testes...
    para:
    http://arduino.cc/en/uploads/Main/arduino316.jpg Em desenvolvimento e testes...
    21-08-2009, 01:55 PM por Nuno Mendes -
    Linha 42 foi alterada de:
    para:
    http://arduino.cc/en/uploads/Main/arduino316.jpg
    21-08-2009, 01:52 PM por Nuno Mendes -
    Linhas 41-42 foram alteradas de:
    !!!!! "Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments. "
    para:
    !!!!! "Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments."

    Em desenvolvimento e testes...
    21-08-2009, 01:51 PM por Nuno Mendes -
    Linha 40 foi alterada de:
    Arduino -
    para:
    Linhas 42-43 foram alteradas de:
    para:
    21-08-2009, 01:50 PM por Nuno Mendes -
    Linhas 40-41 foram alteradas de:
    Arduino - !!!!!"Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments. "
    para:
    Arduino -
    !!!!! "Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments. "
    21-08-2009, 01:50 PM por Nuno Mendes -
    Linhas 39-42 foram acrescentadas:
    21-08-2009, 01:48 PM por Nuno Mendes -
    Linha 43 foi alterada de:
    ||border=0 width=100%||
    para:
    ||border=0 width=100%
    21-08-2009, 01:48 PM por Nuno Mendes -
    Linha 42 foi acrescentada:
    21-08-2009, 01:47 PM por Nuno Mendes -
    Linha 42 foi alterada de:
    ||border=0 width=100%
    para:
    ||border=0 width=100%||
    21-08-2009, 01:47 PM por Nuno Mendes -
    Linhas 41-46 foram eliminadas:
    Linhas 43-48 foram acrescentadas:
    21-08-2009, 01:46 PM por Nuno Mendes -
    Linha 49 foi alterada de:
    para:
    Linha 52 foi alterada de:
    para:
    Linha 54 foi alterada de:
    || !!!!Intercooler ||
    para:
    ||Intercooler||
    Linha 58 foi alterada de:
    para:
    Linha 60 foi alterada de:
    para:
    Linha 62 foi alterada de:
    !!!!Zona do motor pronta para pintar em preto
    para:
    Zona do motor pronta para pintar em preto
    21-08-2009, 01:45 PM por Nuno Mendes -
    Linha 49 foi alterada de:
    para:
    21-08-2009, 01:45 PM por Nuno Mendes -
    Linha 49 foi alterada de:
    para:
    Linha 52 foi alterada de:
    para:
    Linha 54 foi alterada de:
    ||Intercooler||
    para:
    || !!!!Intercooler ||
    21-08-2009, 01:44 PM por Nuno Mendes -
    Linha 49 foi alterada de:
    para:
    Linha 52 foi alterada de:
    para:
    Linha 54 foi alterada de:
    ||!!!!Intercooler||
    para:
    ||Intercooler||
    21-08-2009, 01:44 PM por Nuno Mendes -
    Linha 49 foi acrescentada:
    Linha 52 foi acrescentada:
    Linha 54 foi acrescentada:
    ||!!!!Intercooler||
    21-08-2009, 01:42 PM por Nuno Mendes -
    Linhas 47-55 foram eliminadas:
    %width=320 height=240%http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/3635/SP_A0388.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/2539/SP_A0387.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/608/SP_A0394.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/1342/SP_A0486.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg http://img146.imageshack.us/img146/6337/SP_A0483.jpg

    %width=300 height=225%
    Linhas 49-51 foram alteradas de:
    || foto1 || foto2 ||
    para:
    ||%width=300 height=225%http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg||%width=300 height=225%http://img146.imageshack.us/img146/5088/SP_A0386.jpg||
    ||%width=300 height=225%http://img146.imageshack.us/img146/3635/SP_A0388.jpg||%width=300 height=225%http://img146.imageshack.us/img146/2539/SP_A0387.jpg||
    ||%width=300 height=225%http://img146.imageshack.us/img146/608/SP_A0394.jpg||%width=300 height=225%http://img146.imageshack.us/img146/1342/SP_A0486.jpg||
    21-08-2009, 01:41 PM por Nuno Mendes -
    Linhas 59-63 foram alteradas de:
    ||
    %width=300 height=225%http://img146.imageshack.us/img146/8738/SP_A0478.jpg ||
    %width=300 height=225%http://img146.imageshack.us/img146/6337/SP_A0483.jpg||

    para:
    ||%width=300 height=225%http://img146.imageshack.us/img146/8738/SP_A0478.jpg||%width=300 height=225%http://img146.imageshack.us/img146/6337/SP_A0483.jpg||

    21-08-2009, 01:40 PM por Nuno Mendes -
    Linhas 59-61 foram alteradas de:
    ||http://img146.imageshack.us/img146/8738/SP_A0478.jpg ||http://img146.imageshack.us/img146/6337/SP_A0483.jpg||

    para:
    ||
    %width=300 height=225%http://img146.imageshack.us/img146/8738/SP_A0478.jpg ||
    %width=300 height=225%http://img146.imageshack.us/img146/6337/SP_A0483.jpg||

    21-08-2009, 01:40 PM por Nuno Mendes -
    Linhas 56-57 foram alteradas de:
    ||border=1 width=100%
    para:
    %width=300 height=225%
    ||border=0 width=100%
    Linhas 59-61 foram alteradas de:
    || %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg ||%width=320 height=240%http://img146.imageshack.us/img146/6337/SP_A0483.jpg||

    para:
    ||http://img146.imageshack.us/img146/8738/SP_A0478.jpg ||http://img146.imageshack.us/img146/6337/SP_A0483.jpg||

    21-08-2009, 01:39 PM por Nuno Mendes -
    Linhas 56-60 foram acrescentadas:
    ||border=1 width=100%
    || foto1 || foto2 ||
    || %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg ||%width=320 height=240%http://img146.imageshack.us/img146/6337/SP_A0483.jpg||

    21-08-2009, 01:37 PM por Nuno Mendes -
    Linhas 54-55 foram alteradas de:
    %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg %width=320 height=240%http://img146.imageshack.us/img146/6337/SP_A0483.jpg
    para:
    %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg http://img146.imageshack.us/img146/6337/SP_A0483.jpg
    21-08-2009, 01:36 PM por Nuno Mendes -
    Linhas 54-56 foram alteradas de:
    %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/6337/SP_A0483.jpg
    para:
    %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg %width=320 height=240%http://img146.imageshack.us/img146/6337/SP_A0483.jpg
    21-08-2009, 01:36 PM por Nuno Mendes -
    Linha 61 foi acrescentada:
    !!!!Zona do motor pronta para pintar em preto
    21-08-2009, 01:35 PM por Nuno Mendes -
    Linha 57 foi acrescentada:
    Linha 59 foi acrescentada:
    21-08-2009, 01:35 PM por Nuno Mendes -
    Linhas 57-60 foram alteradas de:
    %width=320 height=240%http://img25.imageshack.us/my.php?image=20082009003.jpg
    %width=320 height=240%http://img401.imageshack.us/my.php?image=20082009002.jpg
    %width=320 height=240%http://img25.imageshack.us/my.php?image=20082009n.jpg
    para:
    %width=320 height=240%http://img25.imageshack.us/img25/7486/20082009003.jpg
    %width=320 height=240%http://img401.imageshack.us/img401/6559/20082009002.jpg
    %width=320 height=240%http://img25.imageshack.us/img25/7863/20082009n.jpg
    21-08-2009, 01:33 PM por Nuno Mendes -
    Linhas 57-60 foram acrescentadas:
    %width=320 height=240%http://img25.imageshack.us/my.php?image=20082009003.jpg
    %width=320 height=240%http://img401.imageshack.us/my.php?image=20082009002.jpg
    %width=320 height=240%http://img25.imageshack.us/my.php?image=20082009n.jpg
    06-11-2008, 09:29 PM por Nuno Mendes -
    Linha 6 foi eliminada:
    \\
    Linha 38 foi eliminada:
    Linhas 45-48 foram alteradas de:
    %width=320 height=240%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg %width=320 height=240%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg .%width=320 height=240%http://img84.imageshack.us/img84/9365/nmmDSCF4161.jpg


    para:
    %width=320 height=240%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg %width=320 height=240%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg %width=320 height=240%http://img84.imageshack.us/img84/9365/nmmDSCF4161.jpg
    06-11-2008, 09:29 PM por Nuno Mendes -
    Linhas 47-50 foram alteradas de:
    %width=320 height=240%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg %width=320 height=240%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg
    %width=320 height=240%http://img84.imageshack.us/img84/9365/nmmDSCF4161.jpg

    para:
    %width=320 height=240%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg %width=320 height=240%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg .%width=320 height=240%http://img84.imageshack.us/img84/9365/nmmDSCF4161.jpg


    06-11-2008, 09:28 PM por Nuno Mendes -
    Linhas 47-48 foram alteradas de:
    %width=320 height=240%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg
    %width=320 height=240%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg
    para:
    %width=320 height=240%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg %width=320 height=240%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg
    06-11-2008, 09:28 PM por Nuno Mendes -
    Linhas 47-51 foram alteradas de:
    %width=240 height=320%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg
    %width=240 height=320%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg
    %width=240 height=320%http://img84.imageshack.us/img84/9365/nmmDSCF4161.jpg

    para:
    %width=320 height=240%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg
    %width=320 height=240%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg
    %width=320 height=240%http://img84.imageshack.us/img84/9365/nmmDSCF4161.jpg

    06-11-2008, 09:27 PM por Nuno Mendes -
    Linhas 47-48 foram alteradas de:

    para:
    %width=240 height=320%http://img84.imageshack.us/img84/9379/nmmDSCF4154.jpg
    %width=240 height=320%http://img84.imageshack.us/img84/2748/nmmDSCF4159.jpg
    %width=240 height=320%http://img84.imageshack.us/img84/9365/nmmDSCF4161.jpg

    06-11-2008, 09:22 PM por Nuno Mendes -
    Linha 28 foi alterada de:
    para:
    06-11-2008, 09:22 PM por Nuno Mendes -
    Linhas 27-29 foram alteradas de:
    para:
    06-11-2008, 09:21 PM por Nuno Mendes -
    Linhas 28-29 foram alteradas de:
    Motor 1.8i 16v 105cv: [[http://youtube.com/watch?v=hMLAxXweUys| 1]] [[http://youtube.com/watch?v=WNk7QWfpfDI|2]]\\
    para:
    Motor 1.8i 16v 105cv: [[http://youtube.com/watch?v=hMLAxXweUys| 1]] [[http://youtube.com/watch?v=WNk7QWfpfDI|2]]\\
    06-11-2008, 09:21 PM por Nuno Mendes -
    Linhas 27-28 foram alteradas de:
    para:
    06-11-2008, 09:21 PM por Nuno Mendes -
    Linhas 27-28 foram alteradas de:
    para:
    06-11-2008, 09:16 PM por Nuno Mendes -
    Linhas 23-27 foram alteradas de:
    para:
    06-11-2008, 09:12 PM por Nuno Mendes -
    06-11-2008, 09:12 PM por Nuno Mendes -
    Linha 9 foi alterada de:
    Mendes (nmm)\\
    para:
    Mendes (nmm)
    06-11-2008, 09:12 PM por Nuno Mendes -
    Linhas 9-10 foram alteradas de:
    Mendes (nmm) @ nuno.mendes@picowireless.net\\
    para:
    Mendes (nmm)\\
    !!!!!nuno.mendes@picowireless.net\\
    06-11-2008, 09:11 PM por Nuno Mendes -
    Linha 9 foi alterada de:
    Mendes (nmm)\\
    para:
    Mendes (nmm) @ nuno.mendes@picowireless.net\\
    06-11-2008, 09:11 PM por Nuno Mendes -
    Linha 4 foi alterada de:
    para:
    06-11-2008, 09:10 PM por Nuno Mendes -
    Linha 13 foi alterada de:
    para:
    06-11-2008, 09:10 PM por Nuno Mendes -
    Linha 13 foi alterada de:
    para:
    06-11-2008, 09:10 PM por Nuno Mendes -
    Linhas 11-13 foram acrescentadas:
    Linhas 15-19 foram alteradas de:
    para:
    06-11-2008, 09:10 PM por Nuno Mendes -
    Linha 14 foi alterada de:
    para:
    06-11-2008, 09:10 PM por Nuno Mendes -
    Linha 14 foi alterada de:
    para:
    06-11-2008, 09:09 PM por Nuno Mendes -
    Linha 14 foi alterada de:
    para:
    06-11-2008, 09:09 PM por Nuno Mendes -
    Linhas 13-14 foram alteradas de:
    para:
    06-11-2008, 09:09 PM por Nuno Mendes -
    Linha 13 foi alterada de:
    para:
    06-11-2008, 09:09 PM por Nuno Mendes -
    Linha 13 foi alterada de:
    para:
    06-11-2008, 09:09 PM por Nuno Mendes -
    Linha 13 foi alterada de:
    para:
    06-11-2008, 09:08 PM por Nuno Mendes -
    Linha 13 foi alterada de:
    para:
    06-11-2008, 09:07 PM por Nuno Mendes -
    Linhas 11-15 foram alteradas de:
    para:
    06-11-2008, 09:05 PM por Nuno Mendes -
    Linhas 49-50 foram alteradas de:
    %center% trabalho em progresso
    para:
    %center%trabalho em progresso
    06-11-2008, 09:04 PM por Nuno Mendes -
    Linhas 47-50 foram alteradas de:
    para:
    \\
    \\
    %center% trabalho em progresso
    06-11-2008, 08:54 PM por Nuno Mendes -
    Linhas 13-14 foram alteradas de:
    Ford Fiesta\\
    mk3 1.8TD de 1990\\
    para:
    Ford Fiesta mk3\\
    1800 Turbo Diesel de 1990\\
    06-11-2008, 08:51 PM por Nuno Mendes -
    Linha 24 foi alterada de:
    Turbo BMW 525TDS (td04)\\
    para:
    06-11-2008, 08:51 PM por Nuno Mendes -
    Linhas 30-31 foram alteradas de:
    %newwin% [[http://digitalchip.myftp.biz/nmm/tuning/|Site antigo]] \\
    para:
    %newwin% [[http://digitalchip.myftp.biz/nmm/tuning/|O antigo site do fiesta]] \\
    \\
    06-11-2008, 08:48 PM por Nuno Mendes -
    Linha 30 foi alterada de:
    http://digitalchip.myftp.biz/nmm/tuning/
    para:
    %newwin% [[http://digitalchip.myftp.biz/nmm/tuning/|Site antigo]] \\
    06-11-2008, 08:48 PM por Nuno Mendes -
    Linha 30 foi acrescentada:
    http://digitalchip.myftp.biz/nmm/tuning/
    06-11-2008, 08:41 PM por Nuno Mendes -
    Linha 30 foi alterada de:
    %width=600 height=450%http://img159.imageshack.us/img159/3550/nmmdsc03177kf6.jpg
    para:
    %width=590 height=432%http://img159.imageshack.us/img159/3550/nmmdsc03177kf6.jpg
    06-11-2008, 08:40 PM por Nuno Mendes -
    Linha 30 foi alterada de:
    %width=320 height=240%http://img159.imageshack.us/img159/3550/nmmdsc03177kf6.jpg
    para:
    %width=600 height=450%http://img159.imageshack.us/img159/3550/nmmdsc03177kf6.jpg
    06-11-2008, 08:40 PM por Nuno Mendes -
    Linhas 32-34 foram alteradas de:
    %width=320 height=240%http://img131.imageshack.us/img131/9774/nmminteriormb5.jpg

    para:
    %width=240 height=320%http://img131.imageshack.us/img131/9774/nmminteriormb5.jpg

    06-11-2008, 08:39 PM por Nuno Mendes -
    Linhas 32-33 foram alteradas de:

    para:
    %width=320 height=240%http://img131.imageshack.us/img131/9774/nmminteriormb5.jpg

    06-11-2008, 08:38 PM por Nuno Mendes -
    Linhas 31-33 foram alteradas de:
    %width=320 height=240%http://img300.imageshack.us/img300/7839/nmmdscf4181fc5jpg

    para:
    %width=320 height=240%http://img300.imageshack.us/img300/7839/nmmdscf4181fc5.jpg

    06-11-2008, 08:38 PM por Nuno Mendes -
    Linhas 28-33 foram acrescentadas:

    !!!Antigamente...
    %width=320 height=240%http://img159.imageshack.us/img159/3550/nmmdsc03177kf6.jpg
    %width=320 height=240%http://img300.imageshack.us/img300/7839/nmmdscf4181fc5jpg

    06-11-2008, 08:30 PM por Nuno Mendes -
    Linha 28 foi acrescentada:
    Linha 31 foi eliminada:
    Linha 35 foi eliminada:
    06-11-2008, 08:29 PM por Nuno Mendes -
    Linha 34 foi acrescentada:
    %width=320 height=240%http://img146.imageshack.us/img146/1342/SP_A0486.jpg
    Linhas 38-39 foram alteradas de:
    %width=320 height=240%http://img146.imageshack.us/img146/1342/SP_A0486.jpg
    para:

    06-11-2008, 08:29 PM por Nuno Mendes -
    Linha 33 foi acrescentada:
    %width=320 height=240%http://img146.imageshack.us/img146/608/SP_A0394.jpg
    Linha 35 foi alterada de:
    %width=320 height=240%http://img146.imageshack.us/img146/608/SP_A0394.jpg
    para:
    06-11-2008, 08:28 PM por Nuno Mendes -
    Linhas 28-31 foram alteradas de:
    %width=320 height=240%http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg%width=320 height=240%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    para:
    %width=320 height=240%http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/3635/SP_A0388.jpg
    Linhas 37-38 foram alteradas de:
    %width=320 height=240%http://img146.imageshack.us/img146/3635/SP_A0388.jpg
    para:
    06-11-2008, 08:28 PM por Nuno Mendes -
    Linha 28 foi alterada de:
    %width=320 height=240%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    para:
    %width=320 height=240%http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg%width=320 height=240%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    Linha 32 foi eliminada:
    %width=320 height=240%http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg
    06-11-2008, 08:25 PM por Nuno Mendes -
    Linhas 29-36 foram alteradas de:
    http://img146.imageshack.us/img146/2539/SP_A0387.jpg
    http://img146.imageshack.us/img146/8738/SP_A0478.jpg
    http://img146.imageshack.us/img146/608/SP_A0394.jpg
    http://img146.imageshack.us/img146/6337/SP_A0483.jpg
    http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg
    http://img146.imageshack.us/img146/1342/SP_A0486.jpg
    http://img146.imageshack.us/img146/3635/SP_A0388.jpg
    para:
    %width=320 height=240%http://img146.imageshack.us/img146/2539/SP_A0387.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/8738/SP_A0478.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/608/SP_A0394.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/6337/SP_A0483.jpg
    %width=320 height=240%http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/1342/SP_A0486.jpg
    %width=320 height=240%http://img146.imageshack.us/img146/3635/SP_A0388.jpg
    06-11-2008, 08:24 PM por Nuno Mendes -
    Linha 28 foi alterada de:
    %width=800 height=600%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    para:
    %width=320 height=240%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    06-11-2008, 08:23 PM por Nuno Mendes -
    Linha 28 foi alterada de:
    %width=800 height=600% Attach:http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    para:
    %width=800 height=600%http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    06-11-2008, 08:23 PM por Nuno Mendes -
    Linha 28 foi alterada de:
    http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    para:
    %width=800 height=600% Attach:http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    06-11-2008, 08:22 PM por Nuno Mendes -
    Linhas 28-36 foram alteradas de:
    <a href="http://img146.imageshack.us/my.php?image=SP_A0386.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/5088/SP_A0386.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0387.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/2539/SP_A0387.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0478.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/8738/SP_A0478.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0394.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/608/SP_A0394.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0483.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/6337/SP_A0483.jpg" border="0"/></a>
    <a href="http://img505.imageshack.us/my.php?image=dscf5626jq5.jpg" target="_blank"><img src="http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0486.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/1342/SP_A0486.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0388.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/3635/SP_A0388.jpg" border="0"/></a>
    para:
    http://img146.imageshack.us/img146/5088/SP_A0386.jpg
    http://img146.imageshack.us/img146/2539/SP_A0387.jpg
    http://img146.imageshack.us/img146/8738/SP_A0478.jpg
    http://img146.imageshack.us/img146/608/SP_A0394.jpg
    http://img146.imageshack.us/img146/6337/SP_A0483.jpg
    http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg
    http://img146.imageshack.us/img146/1342/SP_A0486.jpg
    http://img146.imageshack.us/img146/3635/SP_A0388.jpg
    06-11-2008, 08:21 PM por Nuno Mendes -
    Linhas 28-36 foram alteradas de:
    <a href="http://img146.imageshack.us/my.php?image=SP_A0386.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/5088/SP_A0386.th.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0387.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/2539/SP_A0387.th.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0478.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/8738/SP_A0478.th.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0394.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/608/SP_A0394.th.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0483.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/6337/SP_A0483.th.jpg" border="0"/></a>
    <a href="http://img505.imageshack.us/my.php?image=dscf5626jq5.jpg" target="_blank"><img src="http://img505.imageshack.us/img505/9914/dscf5626jq5.th.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0486.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/1342/SP_A0486.th.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0388.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/3635/SP_A0388.th.jpg" border="0"/></a>
    para:
    <a href="http://img146.imageshack.us/my.php?image=SP_A0386.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/5088/SP_A0386.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0387.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/2539/SP_A0387.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0478.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/8738/SP_A0478.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0394.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/608/SP_A0394.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0483.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/6337/SP_A0483.jpg" border="0"/></a>
    <a href="http://img505.imageshack.us/my.php?image=dscf5626jq5.jpg" target="_blank"><img src="http://img505.imageshack.us/img505/9914/dscf5626jq5.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0486.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/1342/SP_A0486.jpg" border="0"/></a>
    <a href="http://img146.imageshack.us/my.php?image=SP_A0388.jpg" target="_blank"><img src="http://img146.imageshack.us/img146/3635/SP_A0388.jpg" border="0"/></a>
    06-11-2008, 08:20 PM por Nuno Mendes -
    Linhas 26-36 foram alteradas de:
    para:
    06-11-2008, 07:41 PM por Nuno Mendes -
    Linhas 20-23 foram alteradas de:
    para:
    Linhas 25-26 foram alteradas de:
    para:
    06-11-2008, 07:40 PM por Nuno Mendes -
    Linhas 20-22 foram alteradas de:
    para:
    06-11-2008, 07:39 PM por Nuno Mendes -
    Linhas 18-22 foram acrescentadas:
    06-11-2008, 07:38 PM por Nuno Mendes -
    Linha 4 foi alterada de:
    para:
    Linha 5 foi eliminada:
    Linhas 13-18 foram alteradas de:
    para:
    Ford Fiesta\\
    mk3 1.8TD de 1990\\
    Pneus Michellin Pilot Sport 215/40R17\\
    Jantes Mak Sonic 17"x7" 4x108mm
    06-11-2008, 07:36 PM por Nuno Mendes -
    Linhas 1-19 foram acrescentadas: