'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: GFSMTuriz/Inicio
    GFSMTuriz

    Inicio

    Historial de GFSMTuriz.Inicio

    Esconder edies de menor importncia - Ver alteraes no contedo

    12-11-2009, 12:25 PM por Isabel Carvalho -
    Linha 11 foi alterada de:
    12
    para:
    12-11-2009, 12:25 PM por Isabel Carvalho -
    Linha 11 foi alterada de:
    para:
    12
    19-09-2008, 03:57 PM por Isabel Carvalho -
    Linhas 9-14 foram alteradas de:
    [[|[++'''Hist&oacute;ria'''++]]][[|?]] \\


    [[|[++'''Dan&ccedil;as e cantares'''++]]][[|?]] \\

    para:
    19-09-2008, 03:55 PM por Isabel Carvalho -
    19-09-2008, 03:53 PM por Isabel Carvalho -
    Linha 5 foi eliminada:
    Linha 7 foi acrescentada:
    19-09-2008, 03:53 PM por Isabel Carvalho -
    Linhas 7-8 foram eliminadas:

    19-09-2008, 03:53 PM por Isabel Carvalho -
    Linhas 9-11 foram alteradas de:
    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas relacionadas com a sua hist&oacute;ria e a sua actividade.\\

    para:
    19-09-2008, 03:46 PM por Isabel Carvalho -
    Linha 4 foi alterada de:
    %right% %height=150 width=150% Attach:logo1.jpg
    para:
    %right% %height=100 width=100% Attach:logo1.jpg
    19-09-2008, 03:46 PM por Isabel Carvalho -
    Linha 4 foi alterada de:
    %right% %height=200 width=200% Attach:logo1.jpg
    para:
    %right% %height=150 width=150% Attach:logo1.jpg
    19-09-2008, 03:45 PM por Isabel Carvalho -
    Linhas 2-3 foram acrescentadas:
    Linhas 4-6 foram eliminadas:
    19-09-2008, 03:45 PM por Isabel Carvalho -
    Linhas 1-4 foram eliminadas:
    Linhas 4-5 foram acrescentadas:
    19-09-2008, 03:44 PM por Isabel Carvalho -
    Linhas 3-5 foram alteradas de:
    para:
    19-09-2008, 03:43 PM por Isabel Carvalho -
    Linhas 6-7 foram acrescentadas:
    %right% %height=200 width=200% Attach:logo1.jpg
    19-09-2008, 03:42 PM por Isabel Carvalho -
    Linhas 4-5 foram alteradas de:
    para:
    19-09-2008, 03:42 PM por Isabel Carvalho -
    Linhas 4-5 foram alteradas de:
    para:
    19-09-2008, 03:41 PM por Isabel Carvalho -
    Linhas 38-39 foram alteradas de:
    [[GFSMTuriz/Contactos|[++'''Turiz'''++]]][[GFSMTuriz/Contactos|?]] \\
    para:
    [[GFSMTuriz/Turiz|[++'''Turiz'''++]]] \\
    19-09-2008, 03:40 PM por Isabel Carvalho -
    18-09-2008, 04:22 PM por Nuno Mendes -
    Linhas 8-9 foram alteradas de:
    para:
    \\
    18-09-2008, 04:22 PM por Nuno Mendes -
    Linhas 6-10 foram alteradas de:
    \\

    %right%%height=200 width=200%www.gfsmturiz.com

    para:
    %right% %height=200 width=200%www.gfsmturiz.com

    18-09-2008, 04:21 PM por Nuno Mendes -
    Linhas 8-10 foram alteradas de:
    %right% %height=200 width=200%www.gfsmturiz.com

    para:
    %right%%height=200 width=200%www.gfsmturiz.com

    18-09-2008, 04:21 PM por Nuno Mendes -
    Linhas 6-7 foram alteradas de:
    para:
    \\
    18-09-2008, 04:21 PM por Nuno Mendes -
    Linhas 4-6 foram alteradas de:
    para:
    18-09-2008, 04:21 PM por Nuno Mendes -
    Linhas 4-7 foram alteradas de:
    para:
    18-09-2008, 04:21 PM por Nuno Mendes -
    Linhas 4-6 foram alteradas de:
    para:
    18-09-2008, 04:20 PM por Nuno Mendes -
    Linhas 4-6 foram alteradas de:
    para:
    18-09-2008, 04:19 PM por Nuno Mendes -
    Linhas 4-6 foram alteradas de:
    para:
    18-09-2008, 04:19 PM por Nuno Mendes -
    Linhas 4-6 foram alteradas de:
    para:
    18-09-2008, 04:19 PM por Nuno Mendes -
    Linhas 4-6 foram alteradas de:
    para:
    18-09-2008, 04:18 PM por Nuno Mendes -
    Linha 2 foi acrescentada:
    18-09-2008, 04:18 PM por Nuno Mendes -
    Linha 2 foi alterada de:
    ||border=0 width=100%||
    para:
    ||%border=0 width=100%||
    18-09-2008, 04:18 PM por Nuno Mendes -
    Linhas 3-8 foram alteradas de:
    para:
    18-09-2008, 04:17 PM por Nuno Mendes -
    Linhas 3-5 foram alteradas de:
    para:
    18-09-2008, 04:17 PM por Nuno Mendes -
    Linhas 3-5 foram alteradas de:
    para:
    18-09-2008, 04:17 PM por Nuno Mendes -
    Linhas 3-5 foram alteradas de:
    para:
    18-09-2008, 04:16 PM por Nuno Mendes -
    Linhas 2-5 foram alteradas de:
    para:
    18-09-2008, 04:16 PM por Nuno Mendes -
    Linhas 2-5 foram alteradas de:
    para:
    18-09-2008, 04:15 PM por Nuno Mendes -
    Linhas 3-6 foram alteradas de:
    para:
    18-09-2008, 04:15 PM por Nuno Mendes -
    Linhas 3-5 foram alteradas de:
    para:
    17-09-2008, 10:18 AM por Isabel Carvalho -
    Linhas 3-5 foram alteradas de:
    para:
    17-09-2008, 10:18 AM por Isabel Carvalho -
    Linhas 3-5 foram alteradas de:
    para:
    17-09-2008, 10:18 AM por Isabel Carvalho -
    Linhas 3-5 foram alteradas de:
    '''Bem-vindos &agrave;'''[[http://pt.wikipedia.org/wiki/Wiki|Wiki]] '''do'''%height=200 width=200%Attach:Image.GFSMTuriz/logo2.gif

    para:
    17-09-2008, 10:16 AM por Isabel Carvalho -
    Linhas 1-2 foram alteradas de:
    \\
    para:
    \\
    Linhas 4-9 foram alteradas de:
    www.gfsmturiz.com


    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas relacionadas com a sua hist&oacute;ria e a sua actividade.\\

    para:


    %height=200 width=200%www.gfsmturiz.com


    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas relacionadas com a sua hist&oacute;ria e a sua actividade.\\

    Linhas 13-38 foram alteradas de:
    [[|[++'''Hist&oacute;ria'''++]]][[|?]] \\


    [[|[++'''Dan&ccedil;as e cantares'''++]]][[|?]] \\


    [[GFSMTuriz/Trajes|[++'''Trajes'''++]]] \\


    [[GFSMTuriz/Trajes|[++'''Tocata'''++]]][[GFSMTuriz/Trajes|?]] \\


    [[GFSMTuriz/Galeria|[++'''Galeria'''++]]] \\


    [[GFSMTuriz/Letras|[++'''Letras'''++]]] \\


    [[GFSMTuriz/Agenda|[++'''Agenda 2008'''++]]] \\


    [[GFSMTuriz/Contactos|[++'''Contactos'''++]]] \\


    [[GFSMTuriz/Contactos|[++'''Turiz'''++]]][[GFSMTuriz/Contactos|?]] \\
    para:
    [[|[++'''Hist&oacute;ria'''++]]][[|?]] \\


    [[|[++'''Dan&ccedil;as e cantares'''++]]][[|?]] \\


    [[GFSMTuriz/Trajes|[++'''Trajes'''++]]] \\


    [[GFSMTuriz/Trajes|[++'''Tocata'''++]]][[GFSMTuriz/Trajes|?]] \\


    [[GFSMTuriz/Galeria|[++'''Galeria'''++]]] \\


    [[GFSMTuriz/Letras|[++'''Letras'''++]]] \\


    [[GFSMTuriz/Agenda|[++'''Agenda 2008'''++]]] \\


    [[GFSMTuriz/Contactos|[++'''Contactos'''++]]] \\


    [[GFSMTuriz/Contactos|[++'''Turiz'''++]]][[GFSMTuriz/Contactos|?]] \\
    17-09-2008, 10:15 AM por Isabel Carvalho -
    Linhas 1-8 foram alteradas de:
    para:
    \\

    '''Bem-vindos &agrave;'''[[http://pt.wikipedia.org/wiki/Wiki|Wiki]] '''do'''%height=200 width=200%Attach:Image.GFSMTuriz/logo2.gif
    www.gfsmturiz.com


    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas relacionadas com a sua hist&oacute;ria e a sua actividade.\\

    Linhas 11-38 foram alteradas de:
    para:
    [[|[++'''Hist&oacute;ria'''++]]][[|?]] \\


    [[|[++'''Dan&ccedil;as e cantares'''++]]][[|?]] \\


    [[GFSMTuriz/Trajes|[++'''Trajes'''++]]] \\


    [[GFSMTuriz/Trajes|[++'''Tocata'''++]]][[GFSMTuriz/Trajes|?]] \\


    [[GFSMTuriz/Galeria|[++'''Galeria'''++]]] \\


    [[GFSMTuriz/Letras|[++'''Letras'''++]]] \\


    [[GFSMTuriz/Agenda|[++'''Agenda 2008'''++]]] \\


    [[GFSMTuriz/Contactos|[++'''Contactos'''++]]] \\


    [[GFSMTuriz/Contactos|[++'''Turiz'''++]]][[GFSMTuriz/Contactos|?]] \\
    17-09-2008, 10:12 AM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    17-09-2008, 10:12 AM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    15-09-2008, 03:39 PM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    15-09-2008, 03:37 PM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    15-09-2008, 03:37 PM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    15-09-2008, 03:36 PM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    15-09-2008, 03:36 PM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    15-09-2008, 03:35 PM por Isabel Carvalho -
    Linhas 4-15 foram eliminadas:
    15-09-2008, 03:35 PM por Isabel Carvalho -
    15-09-2008, 03:35 PM por Isabel Carvalho -
    Linhas 2-6 foram alteradas de:
    para:
    15-09-2008, 03:34 PM por Isabel Carvalho -
    Linhas 2-6 foram alteradas de:
    para:
    15-09-2008, 03:34 PM por Isabel Carvalho -
    Linhas 2-6 foram alteradas de:
    para:
    15-09-2008, 03:34 PM por Isabel Carvalho -
    Linhas 2-6 foram alteradas de:
    para:
    15-09-2008, 03:33 PM por Isabel Carvalho -
    Linhas 2-6 foram alteradas de:
    para:
    15-09-2008, 03:33 PM por Isabel Carvalho -
    Linhas 2-6 foram alteradas de:
    para:
    15-09-2008, 03:32 PM por Isabel Carvalho -
    Linhas 2-6 foram alteradas de:
    para:
    15-09-2008, 03:32 PM por Isabel Carvalho -
    Linhas 1-2 foram alteradas de:
    para:
    15-09-2008, 03:31 PM por Isabel Carvalho -
    Linhas 1-3 foram alteradas de:

    %width=97 height=85%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/logo1.jpg| Attach:logo1.jpg]]
    para:
    15-09-2008, 03:30 PM por Isabel Carvalho -
    Linhas 1-5 foram alteradas de:
    \\

    ||border=1 width=50%
    || %width=80 height=100% || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/D1000135.jpg| Attach:logo1.jpg]]
    para:

    %width=97 height=85%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/logo1.jpg| Attach:logo1.jpg]]
    15-09-2008, 03:27 PM por Isabel Carvalho -
    Linhas 4-5 foram alteradas de:
    || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/Digitalizar0045.jpg| Attach:Digitalizar0045.jpg]] || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/DSC00017.jpg| Attach:DSC00017.jpg]] || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/D1000135.jpg| Attach:logo1.jpg]]
    para:
    || %width=80 height=100% || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/D1000135.jpg| Attach:logo1.jpg]]
    15-09-2008, 03:26 PM por Isabel Carvalho -
    Linhas 3-5 foram acrescentadas:
    ||border=1 width=50%
    || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/Digitalizar0045.jpg| Attach:Digitalizar0045.jpg]] || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/DSC00017.jpg| Attach:DSC00017.jpg]] || %width=80 height=100%[[http://www.picowireless.net/wiki/uploads/GFSMTuriz/D1000135.jpg| Attach:logo1.jpg]]
    15-09-2008, 03:23 PM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    %right%Attach:logo2.gif
    para:
    %right%Attach:logo1.jpg
    15-09-2008, 03:22 PM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    %right%Attach:logo2.jpg
    para:
    %right%Attach:logo2.gif
    15-09-2008, 03:22 PM por Isabel Carvalho -
    15-09-2008, 03:21 PM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    %right%Attach:logo1.jpg
    para:
    %right%Attach:logo2.jpg
    15-09-2008, 03:21 PM por Isabel Carvalho -
    15-09-2008, 03:20 PM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    %write% Attach:logo1.jpg
    para:
    %right%Attach:logo1.jpg
    15-09-2008, 03:19 PM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    %write%Attach:logo1.jpg
    para:
    %write% Attach:logo1.jpg
    15-09-2008, 03:19 PM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    Attach:logo1.jpg
    para:
    %write%Attach:logo1.jpg
    15-09-2008, 03:18 PM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    attach:logo1.jpg
    para:
    Attach:logo1.jpg
    15-09-2008, 03:18 PM por Isabel Carvalho -
    Linha 2 foi acrescentada:
    15-09-2008, 03:17 PM por Isabel Carvalho -
    Linhas 2-3 foram alteradas de:

    para:
    attach:logo1.jpg
    18-06-2008, 03:58 PM por Isabel Carvalho -
    Linhas 23-44 foram alteradas de:
    [[trajes |[++Trajes++]]] \\


    [[tocata |[++Tocata++]]] \\


    [[galeria |[++Galeria++]]] \\


    [[letras |[++Letras++]]] \\


    [[agenda |[++Agenda 2008++]]] \\


    [[contactos |[++Contactos++]]] \\


    [[turiz |[++Turiz++]]] \\


    para:
    [[trajes |[++'''Trajes'''++]]] \\


    [[tocata |[++'''Tocata'''++]]] \\


    [[galeria |[++'''Galeria'''++]]] \\


    [[letras |[++'''Letras'''++]]] \\


    [[agenda |[++'''Agenda 2008'''++]]] \\


    [[contactos |[++'''Contactos'''++]]] \\


    [[turiz |[++'''Turiz'''++]]] \\


    18-06-2008, 03:58 PM por Isabel Carvalho -
    Linhas 17-22 foram alteradas de:
    para:
    18-06-2008, 03:52 PM por Isabel Carvalho -
    Linhas 14-15 foram alteradas de:
    para:
    18-06-2008, 03:18 PM por Isabel Carvalho -
    Linhas 35-37 foram alteradas de:
    [[agenda |[++Agenda++]]] \\

    para:
    [[agenda |[++Agenda 2008++]]] \\

    02-06-2008, 07:01 PM por Nuno Mendes -
    Linhas 12-13 foram alteradas de:

    para:
    %right% www.gfsmturiz.com
    19-05-2008, 01:13 PM por Isabel Carvalho -
    Linha 25 foi acrescentada:
    Linha 28 foi acrescentada:
    Linha 31 foi acrescentada:
    Linha 34 foi acrescentada:
    Linha 37 foi acrescentada:
    Linha 40 foi acrescentada:
    19-05-2008, 01:13 PM por Isabel Carvalho -
    Linha 19 foi acrescentada:
    Linha 22 foi acrescentada:
    19-05-2008, 01:13 PM por Isabel Carvalho -
    Linhas 19-20 foram alteradas de:
    para:
    19-05-2008, 01:13 PM por Isabel Carvalho -
    Linhas 19-36 foram alteradas de:
    para:
    19-05-2008, 01:08 PM por Isabel Carvalho -
    Linhas 17-18 foram alteradas de:
    para:
    19-05-2008, 01:07 PM por Isabel Carvalho -
    Linhas 1-15 foram alteradas de:
    \\


    Bem-vindos &agrave; [[http://pt.wikipedia.org/wiki/Wiki|Wiki]]\\


    do Grupo Folcl&oacute;rico \\


    de Santa Maria de Turiz \\


    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas e documentos relacionados com a sua hist&oacute;ria, actividade, etc..\\

    para:
    Linhas 17-34 foram alteradas de:
    [[|[+Hist&oacute;ria+]]][[|?]] \\

    [[|Dan&ccedil;as e cantares]][[|?]] \\

    [[|Trajes]][[|?]] \\

    [[|Tocata]][[|?]] \\

    [[|Galeria]][[|?]] \\

    [[GFSMTuriz/Letras|Letras]] \\

    [[GFSMTuriz/Letras|Agenda]][[GFSMTuriz/Letras|?]] \\

    [[GFSMTuriz/Letras|Contactos]][[GFSMTuriz/Letras|?]] \\

    [[GFSMTuriz/Letras|Turiz]][[GFSMTuriz/Letras|?]] \\
    para:
    19-05-2008, 01:07 PM por Isabel Carvalho -
    Linhas 1-15 foram alteradas de:
    para:
    \\


    Bem-vindos &agrave; [[http://pt.wikipedia.org/wiki/Wiki|Wiki]]\\


    do Grupo Folcl&oacute;rico \\


    de Santa Maria de Turiz \\


    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas e documentos relacionados com a sua hist&oacute;ria, actividade, etc..\\

    Linhas 17-36 foram alteradas de:
    para:
    [[|[+Hist&oacute;ria+]]][[|?]] \\

    [[|Dan&ccedil;as e cantares]][[|?]] \\

    [[|Trajes]][[|?]] \\

    [[|Tocata]][[|?]] \\

    [[|Galeria]][[|?]] \\

    [[GFSMTuriz/Letras|Letras]] \\

    [[GFSMTuriz/Letras|Agenda]][[GFSMTuriz/Letras|?]] \\

    [[GFSMTuriz/Letras|Contactos]][[GFSMTuriz/Letras|?]] \\

    [[GFSMTuriz/Letras|Turiz]][[GFSMTuriz/Letras|?]] \\
    16-05-2008, 04:41 PM por Nuno Mendes -
    Linhas 4-6 foram alteradas de:
    !Bem-vindos [[http://pt.wikipedia.org/wiki/Wiki|Wiki]]\\

    para:
    16-05-2008, 04:40 PM por Nuno Mendes -
    Linhas 25-30 foram alteradas de:
    [[galeria |Galeria]] \\

    [[letras |Letras]] \\

    [[agenda |Agenda]] \\
    para:
    [[galeria |Galeria]] \\

    [[letras |Letras]] \\

    [[agenda |Agenda]] \\
    07-05-2008, 12:18 PM por Isabel Carvalho -
    07-05-2008, 12:17 PM por Isabel Carvalho -
    Linha 20 foi acrescentada:
    Linha 22 foi acrescentada:
    Linha 24 foi acrescentada:
    Linha 26 foi acrescentada:
    Linha 28 foi acrescentada:
    Linha 30 foi acrescentada:
    Linha 32 foi acrescentada:
    07-05-2008, 12:16 PM por Isabel Carvalho -
    Linhas 19-20 foram eliminadas:

    Linhas 20-21 foram eliminadas:

    Linhas 21-22 foram eliminadas:

    Linhas 22-23 foram eliminadas:

    Linhas 23-24 foram eliminadas:

    Linhas 24-25 foram eliminadas:

    Linhas 25-26 foram eliminadas:

    07-05-2008, 12:16 PM por Isabel Carvalho -
    Linha 21 foi acrescentada:
    Linha 24 foi acrescentada:
    Linha 27 foi acrescentada:
    Linha 30 foi acrescentada:
    Linha 33 foi acrescentada:
    Linha 36 foi acrescentada:
    Linha 39 foi acrescentada:
    07-05-2008, 12:15 PM por Isabel Carvalho -
    Linhas 19-20 foram alteradas de:
    para:
    Linha 36 foi acrescentada:
    07-05-2008, 12:15 PM por Isabel Carvalho -
    Linhas 14-15 foram alteradas de:
    para:
    Linhas 21-36 foram alteradas de:
    [[|Trajes]][[|?]]\\

    [[|Tocata]][[|?]]\\

    [[|Galeria]][[|?]]\\

    [[|Letras]][[|?]]\\

    [[|Agenda]][[|?]]\\

    [[|Contactos]][[|?]]\\

    [[|Turiz]][[|?]]\\


    para:
    [[trajes |Trajes]] \\

    [[tocata |Tocata]] \\

    [[galeria |Galeria]] \\

    [[letras |Letras]] \\

    [[agenda |Agenda]] \\

    [[contactos |Contactos]] \\

    [[turiz |Turiz]] \\

    07-05-2008, 12:08 PM por Isabel Carvalho -
    Linha 15 foi eliminada:
    07-05-2008, 12:08 PM por Isabel Carvalho -
    Linhas 14-19 foram alteradas de:
    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas e documentos para descarga relacionados com procedimentos estruturados no &acirc;mbito da certifica&ccedil;&atilde;o de servi&ccedil;os. \\

    Pretende-se com este servi&ccedil;o de Intranet conseguir congregar informa&ccedil;&atilde;o e instituir uma din&acirc;mica de gest&atilde;o de conte&uacute;dos capaz de melhorar o desempenho da Organiza&ccedil;&atilde;o:
    \\

    para:
    Linhas 36-49 foram alteradas de:
    para:

    07-05-2008, 12:06 PM por Isabel Carvalho -
    Linha 13 foi acrescentada:
    Linhas 21-24 foram alteradas de:
    [[|Hist&oacute;ria]][[|?]]\\

    [[|Dan&ccedil;as e Cantares]][[|?]]\\
    para:
    Linhas 41-52 foram acrescentadas:
    07-05-2008, 12:03 PM por Isabel Carvalho -
    Linhas 1-11 foram alteradas de:
    \\


    Bem-vindos &agrave; -][[http://pt.wikipedia.org/wiki/Wiki|Wiki-]]] \\


    do Grupo Folcl&oacute;rico de Santa Maria de Turiz \\


    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas e documentos para descarga relacionados com procedimentos estruturados no &acirc;mbito da certifica&ccedil;&atilde;o de servi&ccedil;os. \\
    para:
    Linhas 16-18 foram alteradas de:
    \\

    para:
    \\

    Linhas 20-39 foram alteradas de:
    [[|Hist&oacute;ria]][[|?]]\\

    [[|Dan&ccedil;as e Cantares]][[|?]]\\

    [[|Trajes]][[|?]]\\

    [[|Tocata]][[|?]]\\

    [[|Galeria]][[|?]]\\

    [[|Letras]][[|?]]\\

    [[|Agenda]][[|?]]\\

    [[|Contactos]][[|?]]\\

    [[|Turiz]][[|?]]\\

    \\
    para:
    [[|Hist&oacute;ria]][[|?]]\\

    [[|Dan&ccedil;as e Cantares]][[|?]]\\

    [[|Trajes]][[|?]]\\

    [[|Tocata]][[|?]]\\

    [[|Galeria]][[|?]]\\

    [[|Letras]][[|?]]\\

    [[|Agenda]][[|?]]\\

    [[|Contactos]][[|?]]\\

    [[|Turiz]][[|?]]\\

    \\
    07-05-2008, 12:01 PM por Isabel Carvalho -
    Linhas 1-14 foram alteradas de:
    para:
    \\


    Bem-vindos &agrave; -][[http://pt.wikipedia.org/wiki/Wiki|Wiki-]]] \\


    do Grupo Folcl&oacute;rico de Santa Maria de Turiz \\


    Aqui ir&aacute; encontrar um conjunto de p&aacute;ginas e documentos para descarga relacionados com procedimentos estruturados no &acirc;mbito da certifica&ccedil;&atilde;o de servi&ccedil;os. \\

    Pretende-se com este servi&ccedil;o de Intranet conseguir congregar informa&ccedil;&atilde;o e instituir uma din&acirc;mica de gest&atilde;o de conte&uacute;dos capaz de melhorar o desempenho da Organiza&ccedil;&atilde;o:
    \\

    Linhas 17-29 foram alteradas de:
    para:
    [[|Hist&oacute;ria]][[|?]]\\

    [[|Dan&ccedil;as e Cantares]][[|?]]\\

    [[|Trajes]][[|?]]\\

    [[|Tocata]][[|?]]\\

    [[|Galeria]][[|?]]\\

    [[|Letras]][[|?]]\\

    [[|Agenda]][[|?]]\\

    [[|Contactos]][[|?]]\\

    [[|Turiz]][[|?]]\\

    \\
    07-05-2008, 11:59 AM por Isabel Carvalho -
    Linhas 4-5 foram acrescentadas:

    07-05-2008, 11:58 AM por Isabel Carvalho -
    Linhas 3-7 foram alteradas de:
    para:
    07-05-2008, 11:58 AM por Isabel Carvalho -
    Linha 3 foi alterada de:
    para:
    07-05-2008, 11:57 AM por Isabel Carvalho -
    Linhas 3-6 foram alteradas de:
    para:
    07-05-2008, 11:57 AM por Isabel Carvalho -
    Linhas 3-6 foram alteradas de:
    para:
    07-05-2008, 11:57 AM por Isabel Carvalho -
    Linhas 3-6 foram alteradas de:
    para:
    07-05-2008, 11:56 AM por Isabel Carvalho -
    Linhas 3-5 foram alteradas de:
    para:
    07-05-2008, 11:55 AM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    para:
    07-05-2008, 11:54 AM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    para:
    07-05-2008, 11:53 AM por Isabel Carvalho -
    Linhas 2-4 foram alteradas de:
    para:
    07-05-2008, 11:52 AM por Isabel Carvalho -
    Linhas 3-4 foram alteradas de:
    para:
    07-05-2008, 11:51 AM por Isabel Carvalho -
    Linhas 1-2 foram eliminadas:

    Linhas 3-11 foram alteradas de:
    para:
    07-05-2008, 10:43 AM por Isabel Carvalho -
    Linhas 1-27 foram alteradas de:
    \\


    ! %class=txtimportant1%Grupo Folcl&oacute;rio de Santa Maria de Turiz%%

    ! %class=txtimportant1%Hist&oacute;ria%%

    ! %class=txtimportant1%Dan&ccedil;as e cantares%%

    ! %class=txtimportant1%Trajes%%

    ! %class=txtimportant1%Tocata%%

    ! %class=txtimportant1%Galeria%%

    ! %class=txtimportant1%Letras%%

    ! %class=txtimportant1%Agenda%%

    ! %class=txtimportant1%Contactos%%

    ! %class=txtimportant1%Turiz%%

    !

    \\
    para:
    07-05-2008, 10:39 AM por Isabel Carvalho -
    Linhas 24-25 foram alteradas de:
    !
    para:
    !
    07-05-2008, 10:39 AM por Isabel Carvalho -
    Linhas 4-6 foram alteradas de:

    ! %class=txtimportant1%[--Grupo Folcl&oacute;rio de Santa Maria de Turiz--]%%
    para:
    ! %class=txtimportant1%Grupo Folcl&oacute;rio de Santa Maria de Turiz%%

    ! %class=txtimportant1%Hist&oacute;ria%%

    ! %class=txtimportant1%Dan&ccedil;as e cantares%%

    ! %class=txtimportant1%Trajes%%

    ! %class=txtimportant1%Tocata%%

    ! %class=txtimportant1%Galeria%%

    ! %class=txtimportant1%Letras%%

    ! %class=txtimportant1%Agenda%%

    ! %class=txtimportant1%Contactos%%

    ! %class=txtimportant1%Turiz%%

    !
    07-05-2008, 10:33 AM por Isabel Carvalho -
    Linhas 4-5 foram alteradas de:
    ! %class=txtimportant1%Grupo Folcl&oacute;rio de Santa Maria de Turiz-]%%
    para:

    ! %class=txtimportant1%[--Grupo Folcl&oacute;rio de Santa Maria de Turiz--]%%
    07-05-2008, 10:32 AM por Isabel Carvalho -
    07-05-2008, 10:32 AM por Isabel Carvalho -
    07-05-2008, 10:32 AM por Isabel Carvalho -
    07-05-2008, 10:32 AM por Isabel Carvalho -
    Linhas 1-6 foram alteradas de:
    para:
    \\


    ! %class=txtimportant1%Grupo Folcl&oacute;rio de Santa Maria de Turiz-]%%

    \\
    07-05-2008, 10:30 AM por Isabel Carvalho -
    23-04-2008, 02:36 PM por Isabel Carvalho -
    23-04-2008, 02:36 PM por Isabel Carvalho -
    23-04-2008, 02:36 PM por Isabel Carvalho -
    23-04-2008, 01:11 PM por Nuno Mendes -
    Linhas 2-3 foram acrescentadas:
    Linhas 6-7 foram alteradas de:
    para:
    23-04-2008, 01:10 PM por Nuno Mendes -
    Linhas 2-3 foram alteradas de:
    para:
    \\
    23-04-2008, 01:09 PM por Nuno Mendes -
    Linhas 3-4 foram alteradas de:
    para:
    23-04-2008, 01:04 PM por Isabel Carvalho -
    Linhas 1-4 foram acrescentadas: