Changeset 29


Ignore:
Timestamp:
05/29/07 14:06:42 (17 years ago)
Author:
niltonneto
Message:

* empty log message *

Location:
trunk
Files:
3 added
1 deleted
15 edited

Legend:

Unmodified
Added
Removed
  • trunk/calendar/doc/change_log.txt

    r23 r29  
    22módulo Agenda de Eventos, e a partir da versão 29/11/2006 [0.9.17] 
    33Nilton Emilio Buhrer Neto. 
     4 
     522/05/2007 - [0.9.2] 
     6- Adicionando/corrigindo funcionalidade de exportar vcard de todos os eventos 
     7 
     822/05/2007 - [0.9.2] 
     9- Adicionando funcionalidade de exportar vcard de eventos externos 
    410 
    51103/05/2007 - [0.9.2] 
  • trunk/calendar/inc/class.bocalendar.inc.php

    r2 r29  
    24952495                } 
    24962496 
     2497        function create_vcard($event) 
     2498        { 
     2499                // It translates int to string 
     2500                if ( $event[end][month] < 10 ) 
     2501                        $end_event_month="0".$event[end][month]; 
     2502                else 
     2503                        $end_event_month=$event[end][month]; 
     2504                if ( $event[start][month] < 10 ) 
     2505                        $start_event_month="0".$event[start][month]; 
     2506                else 
     2507                        $start_event_month=$event[start][month]; 
     2508                if ( $event[end][mday] < 10 ) 
     2509                        $end_event_day="0".$event[end][mday]; 
     2510                else 
     2511                        $end_event_day=$event[end][mday]; 
     2512                if ( $event[start][mday] < 10 ) 
     2513                        $start_event_day="0".$event[start][mday]; 
     2514                else 
     2515                        $start_event_day=$event[start][mday]; 
     2516                if ( $event[start][hour] < 10) 
     2517                        $start_event_hour="0".$event[start][hour]; 
     2518                else 
     2519                        $start_event_hour=$event[start][hour]; 
     2520                if ( $event[end][hour] < 10) 
     2521                        $end_event_hour="0".$event[end][hour]; 
     2522                else 
     2523                        $end_event_hour=$event[end][hour]; 
     2524                         
     2525                if ( $event[start][min] < 10) 
     2526                        $start_event_min="0".$event[start][min]; 
     2527                else 
     2528                        $start_event_min=$event[start][min]; 
     2529                if ( $event[end][min] < 10) 
     2530                        $end_event_min="0".$event[end][min]; 
     2531                else 
     2532                        $end_event_min=$event[end][min];         
     2533         
     2534                $tmpattach="BEGIN:VCALENDAR\n" 
     2535                ."PRODID:-//Expresso Livre//Calendar//EN\n" 
     2536                ."VERSION:1.0\n" 
     2537                ."BEGIN:VEVENT\n" 
     2538                ."DTSTART:".$event[start][year].$start_event_month.$start_event_day."T".$start_event_hour.$start_event_min."00Z\n" 
     2539                ."DTEND:".$event[end][year].$end_event_month.$end_event_day."T".$end_event_hour.$end_event_min."00Z\n" 
     2540                ."UID:Expresso-".$event[id].$event[uid]."\n" 
     2541                ."LAST-MODIFIED:".time()."\n" 
     2542                ."DESCRIPTION:".$event[description]."\n" 
     2543                ."SUMMARY:".$event[title]."\n" 
     2544                ."LOCATION:".$event[location]."\n" 
     2545                ."END:VEVENT"."\n" 
     2546                ."END:VCALENDAR\n"; 
     2547                return $tmpattach; 
     2548} 
     2549 
    24972550                /*! 
    24982551                @function send_update 
     
    25202573 
    25212574                        $GLOBALS['phpgw_info']['user']['preferences'] = $GLOBALS['phpgw']->preferences->create_email_preferences(); 
    2522                         $sender = $GLOBALS['phpgw_info']['user']['preferences']['email']['address']; 
     2575                        $sender = $GLOBALS['phpgw_info']['user']['email']; 
    25232576 
    25242577                        $temp_tz_offset = $this->prefs['common']['tz_offset']; 
     
    26382691                                $GLOBALS['phpgw']->send = CreateObject('phpgwapi.send'); 
    26392692                        } 
    2640                         $send = &$GLOBALS['phpgw']->send; 
     2693                //      $send = &$GLOBALS['phpgw']->send; 
     2694                         
     2695                        //Seta o email usando phpmailer 
     2696                        define('PHPGW_INCLUDE_ROOT','../');      
     2697                        define('PHPGW_API_INC','../phpgwapi/inc');       
     2698                        include_once(PHPGW_API_INC.'/class.phpmailer.inc.php'); 
     2699                        $mail = new PHPMailer(); 
     2700                        $mail->IsSMTP(); 
     2701                        $mail->Host = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpServer']; 
     2702                        $mail->Port = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpPort']; 
     2703                        $mail->From = $_SESSION['phpgw_info']['expressomail']['user']['email']; 
     2704                        $mail->FromName = $_SESSION['phpgw_info']['expressomail']['user']['fullname']; 
     2705                        $mail->IsHTML(true); 
     2706                         
    26412707                        // Aqui é enviado o email 
    2642  
    26432708                        foreach($to_notify as $userid => $statusid)  
    26442709                        { 
     
    26882753                                         
    26892754                                        list($subject,$body1) = split("\n",$GLOBALS['phpgw']->preferences->parse_notify($notify_msg,$details),2); 
    2690                                         $subject = $send->encode_subject($subject); 
    26912755                                         
    26922756                                        switch($part_prefs['calendar']['update_format']) 
     
    28612925                                                        $body->set_var($var); 
    28622926                                                        $tmpbody = $body->fp('out','list'); 
    2863                                                          
     2927                                                                                                                 
    28642928                                                        break; 
    28652929 
    28662930                                                case 'ical': 
    28672931                                                        $content_type = "calendar; method=$method; name=calendar.ics"; 
    2868 /* would be nice, need to get it working 
    2869                                                         if ($body != '') 
     2932/*                                                      if ($body != '') 
    28702933                                                        { 
    28712934                                                                $boundary = '----Message-Boundary'; 
     
    28822945                                                        break; 
    28832946                                        } 
     2947                                        $mail->AddAddress(implode(",",$to));     
     2948                                        $mail->Body = $tmpbody; 
     2949                                        $mail->From = $sender; 
     2950                                        $mail->FromName = $GLOBALS['phpgw_info']['user']['fullname']; 
     2951                                        $mail->Sender = $mail->From; 
     2952                                        $mail->SenderName = $mail->FromName; 
     2953                                        $mail->Subject = $subject; 
     2954                                         
    28842955                                         
    28852956                                        //It sends email for the participants ( Envia email para os participantes) 
    2886                                          
    2887                                         $returncode = $send->msg('email',$to,$subject,$tmpbody,''/*$msgtype*/,'','','',$sender, $content_type/*,$boundary*/); 
     2957                                        if(!$mail->Send()) 
     2958                                        { 
     2959                                                $returncode=false; 
     2960                                        } 
     2961                                        else 
     2962                                        { 
     2963                                                $returncode=true; 
     2964                                        } 
     2965                                                                 
     2966                                        //$returncode = $send->msg('email',$to,$subject,$tmpbody,''/*$msgtype*/,'','','',$sender, $content_type/*,$boundary*/); 
    28882967 
    28892968                                 
    28902969                                        unset($vardata5); 
    28912970                                        unset($vardata6); 
    2892                                         //echo "<b><p>send(to='$to', sender='$sender'<br>subject='$subject') returncode=$returncode<br>".nl2br($body)."</p></b>\n"; 
    28932971                                        if (!$returncode)       // not nice, but better than failing silently 
    28942972                                        { 
    28952973                                                echo '<p><b>bocalendar::send_update</b>: '.lang("Failed sending message to '%1' #%2 subject='%3', sender='%4' !!!",$to,$userid,htmlspecialchars($subject), $sender)."<br>\n"; 
    2896                                                 echo '<i>'.$send->err['desc']."</i><br>\n"; 
     2974                                                echo '<i>'.$mail->ErrorInfo."</i><br>\n"; 
    28972975                                                echo lang('This is mostly caused by a not or wrongly configured SMTP server. Notify your administrator.')."</p>\n"; 
    28982976                                                echo '<p>'.lang('Click %1here%2 to return to the calendar.','<a href="'.$GLOBALS['phpgw']->link('/calendar/').'">','</a>')."</p>\n"; 
     
    29072985                                        $details['enddate']   = $GLOBALS['phpgw']->common->show_date($endtime); 
    29082986                                        list($subject,$body1) = split("\n",$GLOBALS['phpgw']->preferences->parse_notify($notify_msg,$details),2); 
    2909                                         $subject = $send->encode_subject($subject); 
    29102987                                } 
    29112988                                foreach($var as $index => $ex_participant){ 
     
    29152992                                                        $to[] = $ex_participant; 
    29162993                                } 
    2917                                 $to = implode(",",$to); 
     2994                                $mail->AddAddress(implode(",",$to)); 
    29182995                                $_body = explode("<hr size='1' width='100%'>",$tmpbody); 
    29192996                                $tmpbody = $_body[0]; 
    29202997                                $tmpbody.= "<b>".lang("external participants").":: </b> ".htmlentities($this->ex_participants); 
     2998                                $tmpbody.= "<br>".lang("Summary").": ".$this->so->cal->event[title]."<br>"; 
     2999                                $tmpbody.= "<br>".lang("Start date").": ".$GLOBALS['phpgw']->common->show_date($starttime)."<br>".lang("End date").": ".$GLOBALS['phpgw']->common->show_date($endtime)."<br>"; 
    29213000                                $tmpbody.= "<br><br><hr size='1' width='100%'><font color='red'>".lang("This message was sent by server. You must send a message to sender to confirm this event")."</font>"; 
    2922                                 $returncode = $send->msg('email', '', $subject, $tmpbody, '', '', $to, '', $sender, $content_type); 
    2923                         } 
    2924  
    2925                         unset($send); 
     3001                         
     3002                                //attach extern vcard                    
     3003                                // define('context','$GLOBALS.bocalendar.so.cal.event'); 
     3004                                $tmpattach = $this->create_vcard($GLOBALS['bocalendar']->so->cal->event); 
     3005                                $tempdir = $GLOBALS['phpgw_info']['server']['temp_dir'] . SEP; 
     3006                                srand((double)microtime()*1000000); 
     3007                                $random_number = rand(100000000,999999999); 
     3008                                $newfilename = md5(time() . getenv("REMOTE_ADDR") . $random_number ); 
     3009                                $filename = $tempdir . $newfilename; 
     3010                                $attach_fd = fopen($filename,"w+"); 
     3011                                fwrite($attach_fd,$tmpattach); 
     3012                                $mail->AddAttachment($filename, "extern.vcard", "base64", "text/plain"); // "application/octet-stream" 
     3013                                fclose($attach_fd); 
     3014                                $mail->From = $sender; 
     3015                                $mail->FromName = lang("Expresso external user").": ".$GLOBALS['phpgw_info']['user']['fullname']; 
     3016                                $mail->Sender = $mail->From; 
     3017                                $mail->SenderName = $mail->FromName; 
     3018                                $mail->Subject = lang("External event from Expresso"); 
     3019                                $mail->Body = $tmpbody; 
     3020                                 
     3021                                if(!$mail->Send()) 
     3022                                { 
     3023                                        $returncode=false; 
     3024                                } 
     3025                                else 
     3026                                { 
     3027                                        $returncode=true; 
     3028                                } 
     3029                        } 
     3030 
    29263031 
    29273032                        if((is_int($this->user) && $this->user != $temp_user['account_id']) || 
  • trunk/calendar/inc/class.uialarm.inc.php

    r23 r29  
    136136                                if ($alarm_time <= time()) 
    137137                                { 
    138                                         echo "Alarm is older than now!!!"; 
     138                                        echo lang('Alarm is older than now!!!'); 
    139139                                        $GLOBALS['phpgw']->common->phpgw_exit(True); 
    140140                                } 
  • trunk/calendar/inc/class.uicalendar.inc.php

    r24 r29  
    10041004                function export($vcal_id=0) 
    10051005                { 
    1006                         if(!isset($_POST['cal_id']) || !$_POST['cal_id']) 
    1007                         { 
    1008                                 Header('Location: '.$this->index()); 
    1009                                 $GLOBALS['phpgw']->common->phpgw_exit(); 
    1010                         } 
    1011                         $GLOBALS['phpgw_info']['flags']['noappheader'] = True; 
    1012                         $GLOBALS['phpgw_info']['flags']['noappfooter'] = True; 
    1013                         if(!isset($_POST['output_file']) || !$_POST['output_file']) 
    1014                         { 
    1015                                 unset($GLOBALS['phpgw_info']['flags']['noheader']); 
    1016                                 unset($GLOBALS['phpgw_info']['flags']['nonavbar']); 
    1017                                 $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Export'); 
    1018                                 $GLOBALS['phpgw']->common->phpgw_header(); 
    1019  
    1020                                 $p = $GLOBALS['phpgw']->template; 
    1021                                 $p->set_file( 
    1022                                         Array( 
    1023                                                 'form_button'   => 'form_button_script.tpl' 
    1024                                         ) 
    1025                                 ); 
    1026                                 $var = Array( 
    1027                                         'action_url_button'     => $this->page('export'), 
    1028                                         'action_text_button'    => lang('Submit'), 
    1029                                         'action_confirm_button' => '', 
    1030                                         'action_extra_field'    => "\n".lang('Enter Output Filename: ( .vcs appended )')."\n".'   <input name="output_file" size="25" maxlength="80" value="">'."\n" 
    1031                                                 . '   <input type="hidden" name="cal_id" value="'.$_POST['cal_id'].'">' 
    1032                                 ); 
    1033                                 $p->set_var($var); 
    1034                                 echo $p->fp('out','form_button'); 
    1035                         } 
    1036                         else 
    1037                         { 
    1038                                 $output_file = $_POST['output_file'].'.vcs'; 
    1039                                 $vfs = CreateObject('phpgwapi.vfs'); 
    1040 //                              if(!$vfs->file_exists('.calendar',array(RELATIVE_USER))) 
    1041 //                              { 
    1042 //                                      $vfs->mkdir('.calendar',array(RELATIVE_USER)); 
    1043 //                              } 
    1044  
    1045                                 $content = ExecMethod('calendar.boicalendar.export', Array( 
    1046                                         'l_event_id' => $_POST['cal_id'], 
    1047                                         'chunk_split' => False, 
    1048                                 )); 
    1049  
    1050                                 $vfs->cd(array( 
    1051                                         'string' => '/', 
    1052                                         'relatives' => array(RELATIVE_USER) 
    1053                                 )); 
    1054                                 $vfs->write(array( 
    1055                                         'string' => $output_file, 
    1056                                         'relatives' => array (RELATIVE_USER), 
    1057                                         'content' => $content 
    1058                                 )); 
    1059  
    1060                                 if($this->debug) 
    1061                                 { 
    1062                                         echo '<!-- DEBUG: Output Filename = '.$output_file.' -->'."\n"; 
    1063                                         echo '<!-- DEBUG: Fakebase = '.$vfs->fakebase.' -->'."\n"; 
    1064                                         echo '<!-- DEBUG: Path = '.$vfs->pwd().' -->'."\n"; 
    1065                                 } 
    1066                                 if ($this->bo->return_to) 
    1067                                 { 
    1068                                         $GLOBALS['phpgw']->redirect_link('/index.php','menuaction='.$this->bo->return_to); 
    1069                                 } 
    1070                                 else 
    1071                                 { 
    1072                                         $GLOBALS['phpgw']->redirect($this->index()); 
    1073                                 } 
    1074                                 $GLOBALS['phpgw']->common->phpgw_exit(); 
    1075                         } 
     1006                         
     1007                        $temp_path = $GLOBALS['phpgw_info']['server']['temp_dir'] . SEP; 
     1008                        srand((double)microtime()*1000000); 
     1009                        $random_number = rand(100000000,999999999); 
     1010                        $newfilename = md5(time() . getenv("REMOTE_ADDR") . $random_number ); 
     1011                        $filename = $temp_path . $newfilename; 
     1012                        $attach_fd = fopen($filename,"w+"); 
     1013                        $cal_id = get_var('cal_id',array('GET','POST'),$vcal_id); 
     1014                        $event = $this->bo->read_entry($cal_id); 
     1015                        include_once('class.bocalendar.inc.php'); 
     1016                        $cal = new bocalendar; 
     1017                        $tmpattach=$cal->create_vcard($event); 
     1018                        fwrite($attach_fd,$tmpattach); 
     1019                        header ("Content-Type: text/plain");  
     1020                        header ("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
     1021                        header('Content-Length: ' . filesize($filename)); 
     1022                        header("Content-disposition: attachment; filename="."export.vcard"); 
     1023                        readfile($filename); 
     1024                        fclose($attach_fd); 
    10761025                } 
    10771026 
  • trunk/expressoMail1_2/index.php

    r27 r29  
    44                'nonavbar' => False, 
    55                'currentapp' => 'expressoMail1_2', 
    6                 'update_version'        => '1.20311', 
     6                'update_version'        => '1.20312', 
    77                'enable_nextmatchs_class' => True 
    88        ); 
     
    7272                                                        "js/filters.js,". 
    7373                                                        "js/filter.js,". 
    74                                                         "js/rich_text_editor.js,". 
     74                                                        // Fix Firefox problem with loadScript. 
     75                                                        ($_GET['to'] ? "" : "js/rich_text_editor.js,"). 
    7576                                                        "js/connector.js,". 
    7677                                                        "js/globals.js,". 
  • trunk/expressoMail1_2/js/InfoContact.js

    r27 r29  
    4949emInfoContact.prototype.show = function (data){ 
    5050        var _this = this; 
    51         var card = Element("card_cc");   
     51        var card = Element("card_cc"); 
     52 
    5253        if(card.style.display != '') { 
    5354                card.style.left = findPosX(this.td) + 20; 
     
    9091                         
    9192        } 
     93 
     94        if(findPosX(_this.td) == 0) { 
     95                _this.hide(); 
     96                return; 
     97        } 
     98 
    9299        handler_search(); 
    93100        //cExecute ("$this.db_functions.getUserByEmail&email="+email, handler_search); 
  • trunk/help/index.html

    r2 r29  
    11<html> 
    2 <head> 
    3 <style> 
    4 <!-- 
    5  /* Font Definitions */ 
    6 @font-face 
    7         {font-family:"Tms Rmn"; 
    8         panose-1:0 0 0 0 0 0 0 0 0 0; 
    9         mso-font-charset:0; 
    10         mso-generic-font-family:roman; 
    11         mso-font-format:other; 
    12         mso-font-pitch:variable; 
    13         mso-font-signature:3 0 0 0 1 0;} 
    14 @font-face 
    15         {font-family:Wingdings; 
    16         panose-1:5 0 0 0 0 0 0 0 0 0; 
    17         mso-font-charset:2; 
    18         mso-generic-font-family:auto; 
    19         mso-font-pitch:variable; 
    20         mso-font-signature:0 268435456 0 0 -2147483648 0;} 
    21  /* Style Definitions */ 
    22 p.MsoNormal, li.MsoNormal, div.MsoNormal 
    23         {mso-style-parent:""; 
    24         margin:0cm; 
    25         margin-bottom:.0001pt; 
    26         mso-pagination:widow-orphan; 
    27         font-size:10.0pt; 
    28         font-family:"Times New Roman"; 
    29         mso-fareast-font-family:"Times New Roman";} 
    30 h1 
    31         {mso-style-next:Normal; 
    32         margin-top:12.0pt; 
    33         margin-right:0cm; 
    34         margin-bottom:3.0pt; 
    35         margin-left:0cm; 
    36         mso-pagination:widow-orphan; 
    37         page-break-after:avoid; 
    38         mso-outline-level:1; 
    39         font-size:16.0pt; 
    40         font-family:Arial; 
    41         mso-font-kerning:16.0pt;} 
    42 p.MsoBodyText, li.MsoBodyText, div.MsoBodyText 
    43         {margin:0cm; 
    44         margin-bottom:.0001pt; 
    45         text-align:center; 
    46         mso-pagination:widow-orphan; 
    47         font-size:12.0pt; 
    48         font-family:"Times New Roman"; 
    49         mso-fareast-font-family:"Times New Roman";} 
    50 p.MsoBodyText2, li.MsoBodyText2, div.MsoBodyText2 
    51         {margin:0cm; 
    52         margin-bottom:.0001pt; 
    53         text-align:justify; 
    54         mso-pagination:widow-orphan; 
    55         font-size:10.0pt; 
    56         font-family:"Times New Roman"; 
    57         mso-fareast-font-family:"Times New Roman";} 
    58 a:link, span.MsoHyperlink 
    59         {color:blue; 
    60         text-decoration:underline; 
    61         text-underline:single;} 
    62 a:visited, span.MsoHyperlinkFollowed 
    63         {color:purple; 
    64         text-decoration:underline; 
    65         text-underline:single;} 
    66 @page Section1 
    67         {size:21.0cm 842.0pt; 
    68         margin:1.0cm 1.0cm 25.5pt 1.0cm; 
    69         mso-header-margin:36.0pt; 
    70         mso-footer-margin:36.0pt; 
    71         mso-paper-source:0;} 
    72 div.Section1 
    73         {page:Section1;} 
    74  /* List Definitions */ 
    75 @list l0 
    76         {mso-list-id:1619333983; 
    77         mso-list-type:hybrid; 
    78         mso-list-template-ids:191892872 68550667 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;} 
    79 @list l0:level1 
    80         {mso-level-start-at:0; 
    81         mso-level-number-format:bullet; 
    82         mso-level-text:\F0D8; 
    83         mso-level-tab-stop:36.0pt; 
    84         mso-level-number-position:left; 
    85         text-indent:-18.0pt; 
    86         font-family:Wingdings; 
    87         mso-fareast-font-family:"Times New Roman";} 
    88 @list l0:level2 
    89         {mso-level-number-format:bullet; 
    90         mso-level-text:o; 
    91         mso-level-tab-stop:72.0pt; 
    92         mso-level-number-position:left; 
    93         text-indent:-18.0pt; 
    94         font-family:"Courier New"; 
    95         mso-bidi-font-family:"Times New Roman";} 
    96 @list l0:level3 
    97         {mso-level-number-format:bullet; 
    98         mso-level-text:\F0A7; 
    99         mso-level-tab-stop:108.0pt; 
    100         mso-level-number-position:left; 
    101         text-indent:-18.0pt; 
    102         font-family:Wingdings; 
    103         mso-bidi-font-family:"Times New Roman";} 
    104 @list l0:level4 
    105         {mso-level-number-format:bullet; 
    106         mso-level-text:\F0B7; 
    107         mso-level-tab-stop:144.0pt; 
    108         mso-level-number-position:left; 
    109         text-indent:-18.0pt; 
    110         font-family:Symbol;} 
    111 @list l0:level5 
    112         {mso-level-number-format:bullet; 
    113         mso-level-text:o; 
    114         mso-level-tab-stop:180.0pt; 
    115         mso-level-number-position:left; 
    116         text-indent:-18.0pt; 
    117         font-family:"Courier New";} 
    118 @list l0:level6 
    119         {mso-level-number-format:bullet; 
    120         mso-level-text:\F0A7; 
    121         mso-level-tab-stop:216.0pt; 
    122         mso-level-number-position:left; 
    123         text-indent:-18.0pt; 
    124         font-family:Wingdings;} 
    125 @list l0:level7 
    126         {mso-level-number-format:bullet; 
    127         mso-level-text:\F0B7; 
    128         mso-level-tab-stop:252.0pt; 
    129         mso-level-number-position:left; 
    130         text-indent:-18.0pt; 
    131         font-family:Symbol;} 
    132 @list l0:level8 
    133         {mso-level-number-format:bullet; 
    134         mso-level-text:o; 
    135         mso-level-tab-stop:288.0pt; 
    136         mso-level-number-position:left; 
    137         text-indent:-18.0pt; 
    138         font-family:"Courier New";} 
    139 @list l0:level9 
    140         {mso-level-number-format:bullet; 
    141         mso-level-text:\F0A7; 
    142         mso-level-tab-stop:324.0pt; 
    143         mso-level-number-position:left; 
    144         text-indent:-18.0pt; 
    145         font-family:Wingdings;} 
    146 ol 
    147         {margin-bottom:0cm;} 
    148 ul 
    149         {margin-bottom:0cm;} 
    150 --> 
    151 </style> 
    152 </head> 
    153 <body lang=PT-BR link=blue vlink=purple style='tab-interval:35.4pt'> 
    154 <p align="center"><font face="Arial" size="2"><b>Clique <a href="CartelaExpresso.pdf">aqui</a> 
    155 para copiar o manual no formato PDF</b></font></p> 
     2        <head> 
     3                <title>Expresso Livre</title> 
     4        </head> 
     5        <body style="margin:0px;padding:0"> 
     6        <table width="100%"><tr><td align="right" background="images/fundo_topo.jpg"><a name="0"><img src="images/topo.jpg?1"></a></td></tr></table> 
     7        <div style="margin:10px"> 
    1568 
    157 <div> 
    158 <p class=MsoNormal align=center style='margin-left:7.1pt;text-align:center'><img width=326 height=59 
    159 src="./CartelaExpressoHtml_arquivos/image002.jpg" v:shapes="_x0000_i1028"></p> 
    160  
    161 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:6.55pt; 
    162 margin-bottom:0cm;margin-left:7.1pt;margin-bottom:.0001pt;text-align:center'><span 
    163 style='font-size:8.0pt;color:#3366FF'>powered by:<o:p></o:p></span></p> 
    164  
    165 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:6.55pt; 
    166 margin-bottom:0cm;margin-left:7.1pt;margin-bottom:.0001pt;text-align:center'><!--[if gte vml 1]><v:shape 
    167  id="_x0000_i1029" type="#_x0000_t75" style='width:58.5pt;height:10.5pt'> 
    168  <v:imagedata src="./CartelaExpressoHtml_arquivos/image003.png" o:title=""/> 
    169 </v:shape><![endif]--><![if !vml]><img width=78 height=14 
    170 src="./CartelaExpressoHtml_arquivos/image004.jpg" v:shapes="_x0000_i1029"><![endif]></p> 
    171  
    172 <p class=MsoNormal style='margin-left:7.1pt;text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    173  
    174 <p class=MsoNormal align=center style='margin-left:7.1pt;text-align:center'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    175  
    176 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    177 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    178 style='font-size:12.0pt'>O </span><b><i><span style='font-size:11.0pt; 
    179 font-family:Arial;mso-bidi-font-family:"Times New Roman"'>Expresso<sup>Livre</sup></span></i></b><i><span 
    180 style='font-size:12.0pt'><span style="mso-spacerun: yes">  </span></span></i><span 
    181 style='font-size:12.0pt'>é um conjunto de softwares livres, para utilização com 
    182 navegadores internet, que implementa solução de correio eletrônico, trabalho em 
    183 grupo e colaboração.<o:p></o:p></span></p> 
    184  
    185 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    186 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    187 style='font-size:12.0pt'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></span></p> 
    188  
    189 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    190 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    191 style='font-size:12.0pt'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></span></p> 
    192  
    193 <p class=MsoBodyText style='margin-top:0cm;margin-right:12.7pt;margin-bottom: 
    194 0cm;margin-left:21.3pt;margin-bottom:.0001pt'>Estão disponíveis os módulos de 
    195 correio, agenda, catálogo geral e pessoal.</p> 
    196  
    197 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    198 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    199 style='font-size:12.0pt'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></span></p> 
    200  
    201 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    202 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    203 style='font-size:12.0pt'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></span></p> 
    204  
    205 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    206 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    207 style='font-size:12.0pt'>O </span><b><i><span style='font-size:11.0pt; 
    208 font-family:Arial;mso-bidi-font-family:"Times New Roman"'>Expresso<sup>Livre</sup></span></i></b><i><span 
    209 style='font-size:12.0pt'><span style="mso-spacerun: yes">  </span></span></i><span 
    210 style='font-size:12.0pt'>pode ser acessado de <o:p></o:p></span></p> 
    211  
    212 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    213 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    214 style='font-size:12.0pt'>qualquer lugar, independente da <o:p></o:p></span></p> 
    215  
    216 <p class=MsoNormal align=center style='margin-top:0cm;margin-right:12.7pt; 
    217 margin-bottom:0cm;margin-left:21.3pt;margin-bottom:.0001pt;text-align:center'><span 
    218 style='font-size:12.0pt'>plataforma utilizada. <br style='mso-special-character: 
    219 line-break'> 
    220 <![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'> 
    221 <![endif]></span></p> 
    222  
    223 <p class=MsoNormal><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    224  
    225 <table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%; 
    226  border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; 
    227  mso-padding-alt:0cm 3.5pt 0cm 3.5pt'> 
    228  <tr> 
    229   <td width="100%" valign=top style='width:100.0%;border:none;padding:0cm 3.5pt 0cm 3.5pt'> 
    230   <div class=MsoNormal align=center style='text-align:center'> 
    231   <hr size=2 width="100%" align=center> 
    232   </div> 
    233   <p class=MsoNormal align=center style='text-align:center'></p> 
    234   </td> 
    235  </tr> 
    236 </table> 
    237  
    238 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    239 <div align='center' style='font-size:16pt'>Manual de Utiliza&ccedil;&atilde;o</div> 
    240 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    241 <p class=MsoNormal style='text-align:justify'>Escolha a organização Celepar, 
    242 preencha o campo Nome do usuário com o seu login e informe a senha. Pressione o 
    243 botão Conectar.<span style="mso-spacerun: yes">   </span></p> 
    244  
    245 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    246  
    247 <p class=MsoNormal align=center style='text-align:center'><!--[if gte vml 1]><v:shape 
    248  id="_x0000_i1030" type="#_x0000_t75" style='width:135.75pt;height:53.25pt'> 
    249  <v:imagedata src="./CartelaExpressoHtml_arquivos/image011.png" o:title=""/> 
    250 </v:shape><![endif]--><![if !vml]><img border=0 width=181 height=71 
    251 src="./CartelaExpressoHtml_arquivos/image012.jpg" v:shapes="_x0000_i1030"><![endif]></p> 
    252  
    253 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    254  
    255 <p class=MsoNormal style='text-align:justify'>A página inicial do <b><i><span 
    256 style='font-size:9.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman"'>Expresso<sup>Livre</sup></span></i></b><i><span 
    257 style="mso-spacerun: yes">  </span></i>é apresentada a seguir, na parte 
    258 superior da tela aparecem os ícones das funcionalidades disponibilizadas, que 
    259 serão explicadas abaixo.</p> 
    260  
    261 <p class=MsoNormal style='text-align:justify'>Na parte esquerda da tela existe 
    262 um menu retrátil, clique no botão <!--[if gte vml 1]><v:shape id="_x0000_i1031" 
    263  type="#_x0000_t75" style='width:12pt;height:13.5pt'> 
    264  <v:imagedata src="./CartelaExpressoHtml_arquivos/image013.png" o:title=""/> 
    265 </v:shape><![endif]--><![if !vml]><img border=0 width=16 height=18 
    266 src="./CartelaExpressoHtml_arquivos/image014.jpg" v:shapes="_x0000_i1031"><![endif]><span 
    267 style="mso-spacerun: yes">  </span>para expandi-lo. O menu muda conforme o 
    268 contexto. </p> 
    269  
    270 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    271  
    272 <table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%; 
    273  border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; 
    274  mso-padding-alt:0cm 3.5pt 0cm 3.5pt'> 
    275  <tr> 
    276   <td width="100%" valign=top style='width:100.0%;border:none;padding:0cm 3.5pt 0cm 3.5pt'> 
    277   <div class=MsoNormal align=center style='text-align:center'> 
    278   <hr size=2 width="100%" align=center> 
    279   </div> 
    280   <p class=MsoNormal align=center style='text-align:center'></p> 
    281   </td> 
    282  </tr> 
    283 </table> 
    284  
    285 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    286  
    287 <p class=MsoNormal style='text-align:justify'><span style='font-size:18.0pt'><!--[if gte vml 1]><v:shape 
    288  id="_x0000_i1032" type="#_x0000_t75" style='width:21pt;height:22.5pt'> 
    289  <v:imagedata src="./CartelaExpressoHtml_arquivos/image015.png" o:title=""/> 
    290 </v:shape><![endif]--><![if !vml]><img border=0 width=28 height=30 
    291 src="./CartelaExpressoHtml_arquivos/image016.jpg" v:shapes="_x0000_i1032"><![endif]></span><b><span 
    292 style='font-size:18.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman"; 
    293 mso-font-kerning:16.0pt'><span style="mso-spacerun: yes">  </span><sup>Página 
    294 Inicial</sup><o:p></o:p></span></b></p> 
    295  
    296 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    297  
    298 <p class=MsoNormal style='text-align:justify'>A página inicial mostra um 
    299 pequeno calendário, a agenda do dia e mensagens novas. Para mudar a ordem do 
    300 que aparece primeiro, se a agenda ou as mensagens, clique nos ícones<span 
    301 style="mso-spacerun: yes">  </span><!--[if gte vml 1]><v:shape id="_x0000_i1033" 
    302  type="#_x0000_t75" style='width:26.25pt;height:12pt'> 
    303  <v:imagedata src="./CartelaExpressoHtml_arquivos/image017.png" o:title=""/> 
    304 </v:shape><![endif]--><![if !vml]><img border=0 width=35 height=16 
    305 src="./CartelaExpressoHtml_arquivos/image018.jpg" v:shapes="_x0000_i1033"><![endif]>.</p> 
    306  
    307 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    308  
    309 <p class=MsoNormal align=center style='text-align:center'><!--[if gte vml 1]><v:shape 
    310  id="_x0000_i1034" type="#_x0000_t75" style='width:237.75pt;height:136.5pt'> 
    311  <v:imagedata src="./CartelaExpressoHtml_arquivos/image019.png" o:title=""/> 
    312 </v:shape><![endif]--><![if !vml]><img border=0 width=317 height=182 
    313 src="./CartelaExpressoHtml_arquivos/image020.jpg" v:shapes="_x0000_i1034"><![endif]></p> 
    314  
    315 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    316  
    317 <p class=MsoNormal style='text-align:justify'>Se você clicar no assunto de uma 
    318 das novas mensagens, o módulo de correio é aberto e a mensagem exibida. O 
    319 módulo de agenda é aberto se for clicado no calendário. Se você clicar em um 
    320 compromisso do dia, ele é aberto, e se clicar em um horário vazio é possível 
    321 incluir um compromisso.</p> 
    322  
    323 <table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%; 
    324  border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; 
    325  mso-padding-alt:0cm 3.5pt 0cm 3.5pt'> 
    326  <tr> 
    327   <td width="100%" valign=top style='width:100.0%;border:none;padding:0cm 3.5pt 0cm 3.5pt'> 
    328   <div class=MsoNormal align=center style='text-align:center'> 
    329   <hr size=2 width="100%" align=center> 
    330   </div> 
    331   <p class=MsoNormal align=center style='text-align:center'></p> 
    332   </td> 
    333  </tr> 
    334 </table> 
    335  
    336 <h1 style='text-align:justify;tab-stops:list 36.0pt'><span style='font-size: 
    337 18.0pt'><!--[if gte vml 1]><v:shape id="_x0000_i1039" type="#_x0000_t75" 
    338  style='width:23.25pt;height:22.5pt' o:bullet="t"> 
    339  <v:imagedata src="./CartelaExpressoHtml_arquivos/image021.png" o:title=""/> 
    340 </v:shape><![endif]--><![if !vml]><img border=0 width=31 height=30 
    341 src="./CartelaExpressoHtml_arquivos/image022.jpg" alt="*" v:shapes="_x0000_i1039"><![endif]><span 
    342 style='mso-tab-count:1'>  </span><sup>Correio</sup><o:p></o:p></span></h1> 
    343  
    344 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    345  
    346 <p class=MsoNormal style='text-align:justify'>A tela inicial do correio é a 
    347 Caixa de Entrada, onde as mensagens aparecem em ordem decrescente de data.</p> 
    348  
    349 <p class=MsoNormal style='text-align:justify'>Clique sobre o assunto para ler a 
    350 mensagem.</p> 
    351  
    352 <p class=MsoNormal style='text-align:justify'>Para excluir ou mover mensagens 
    353 para uma pasta, selecione-as clicando no quadrado branco à sua esquerda e 
    354 depois em <!--[if gte vml 1]><v:shape id="_x0000_i1040" type="#_x0000_t75" 
    355  style='width:48pt;height:15.75pt'> 
    356  <v:imagedata src="./CartelaExpressoHtml_arquivos/image023.png" o:title=""/> 
    357 </v:shape><![endif]--><![if !vml]><img border=0 width=64 height=21 
    358 src="./CartelaExpressoHtml_arquivos/image024.jpg" v:shapes="_x0000_i1040"><![endif]><span 
    359 style="mso-spacerun: yes">  </span>ou na caixa de escolha <!--[if gte vml 1]><v:shape 
    360  id="_x0000_i1041" type="#_x0000_t75" style='width:108pt;height:15pt'> 
    361  <v:imagedata src="./CartelaExpressoHtml_arquivos/image025.png" o:title=""/> 
    362 </v:shape><![endif]--><![if !vml]><img border=0 width=144 height=20 
    363 src="./CartelaExpressoHtml_arquivos/image026.jpg" v:shapes="_x0000_i1041"><![endif]>. 
    364 Uma opção nas Configurações indica se o Remover apaga imediatamente as 
    365 mensagens ou as copia para a pasta Lixeira. </p> 
    366  
    367 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    368  
    369 <p class=MsoNormal align=center style='text-align:center'><!--[if gte vml 1]><v:shape 
    370  id="_x0000_i1042" type="#_x0000_t75" style='width:228pt;height:119.25pt; 
    371  mso-position-horizontal:center' o:allowoverlap="f"> 
    372  <v:imagedata src="./CartelaExpressoHtml_arquivos/image027.png" o:title=""/> 
    373 </v:shape><![endif]--><![if !vml]><img border=0 width=304 height=159 
    374 src="./CartelaExpressoHtml_arquivos/image028.jpg" v:shapes="_x0000_i1042"><![endif]></p> 
    375  
    376 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    377  
    378 <p class=MsoNormal style='text-align:justify'>Utilize os botões <!--[if gte vml 1]><v:shape 
    379  id="_x0000_i1043" type="#_x0000_t75" style='width:13.5pt;height:13.5pt'> 
    380  <v:imagedata src="./CartelaExpressoHtml_arquivos/image029.png" o:title=""/> 
    381 </v:shape><![endif]--><![if !vml]><img border=0 width=18 height=18 
    382 src="./CartelaExpressoHtml_arquivos/image030.jpg" v:shapes="_x0000_i1043"><![endif]>..<!--[if gte vml 1]><v:shape 
    383  id="_x0000_i1044" type="#_x0000_t75" style='width:13.5pt;height:13.5pt'> 
    384  <v:imagedata src="./CartelaExpressoHtml_arquivos/image031.png" o:title=""/> 
    385 </v:shape><![endif]--><![if !vml]><img border=0 width=18 height=18 
    386 src="./CartelaExpressoHtml_arquivos/image032.jpg" v:shapes="_x0000_i1044"><![endif]><span 
    387 style="mso-spacerun: yes">  </span>para navegar entre as páginas da caixa de 
    388 entrada, se houver mais que uma. Note que os botões centrais retrocedem e 
    389 avançam uma página, já os das bordas vão para a primeira e última páginas. 
    390 Quando a ação de avançar ou retroceder não se aplica, por exemplo quando há 
    391 poucas mensagens na pasta, os botões aparecem “apagados”: <!--[if gte vml 1]><v:shape 
    392  id="_x0000_i1048" type="#_x0000_t75" style='width:13.5pt;height:13.5pt'> 
    393  <v:imagedata src="./CartelaExpressoHtml_arquivos/image033.png" o:title=""/> 
    394 </v:shape><![endif]--><![if !vml]><img border=0 width=18 height=18 
    395 src="./CartelaExpressoHtml_arquivos/image034.jpg" v:shapes="_x0000_i1048"><![endif]>.</p> 
    396  
    397 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    398  
    399 <p class=MsoNormal style='text-align:justify'>Clique em <!--[if gte vml 1]><v:shape 
    400  id="_x0000_i1049" type="#_x0000_t75" style='width:44.25pt;height:18.75pt'> 
    401  <v:imagedata src="./CartelaExpressoHtml_arquivos/image035.png" o:title=""/> 
    402 </v:shape><![endif]--><![if !vml]><img border=0 width=59 height=25 
    403 src="./CartelaExpressoHtml_arquivos/image036.jpg" v:shapes="_x0000_i1049"><![endif]><span 
    404 style="mso-spacerun: yes"> </span>para criar uma nova mensagem.</p> 
    405  
    406 <p class=MsoNormal style='text-align:justify'>Informe os destinatários nos 
    407 campo s Para, CC e CCO.<span style="mso-spacerun: yes">   </span>Você pode 
    408 pesquisar destinatários em sua agenda pessoal,<span style="mso-spacerun: yes">  
    409 </span>clicando em<span style="mso-spacerun: yes">  </span><!--[if gte vml 1]><v:shape 
    410  id="_x0000_i1050" type="#_x0000_t75" style='width:85.5pt;height:9pt'> 
    411  <v:imagedata src="./CartelaExpressoHtml_arquivos/image037.png" o:title=""/> 
    412 </v:shape><![endif]--><![if !vml]><img border=0 width=114 height=12 
    413 src="./CartelaExpressoHtml_arquivos/image038.jpg" v:shapes="_x0000_i1050"><![endif]>, 
    414 ou no catálogo geral, clicando em <!--[if gte vml 1]><v:shape id="_x0000_i1051" 
    415  type="#_x0000_t75" style='width:55.5pt;height:9pt'> 
    416  <v:imagedata src="./CartelaExpressoHtml_arquivos/image039.png" o:title=""/> 
    417 </v:shape><![endif]--><![if !vml]><img border=0 width=74 height=12 
    418 src="./CartelaExpressoHtml_arquivos/image040.jpg" v:shapes="_x0000_i1051"><![endif]>. 
    419 </p> 
    420  
    421 <p class=MsoNormal style='text-align:justify'>Para anexar arquivos, utilize o <!--[if gte vml 1]><v:shape 
    422  id="_x0000_i1052" type="#_x0000_t75" style='width:67.5pt;height:10.5pt'> 
    423  <v:imagedata src="./CartelaExpressoHtml_arquivos/image041.png" o:title=""/> 
    424 </v:shape><![endif]--><![if !vml]><img border=0 width=90 height=14 
    425 src="./CartelaExpressoHtml_arquivos/image042.jpg" v:shapes="_x0000_i1052"><![endif]>.</p> 
    426  
    427 <p class=MsoNormal style='text-align:justify'>Depois que tiver escrito sua 
    428 mensagem na área inferior da tela, clique em <!--[if gte vml 1]><v:shape id="_x0000_i1065" 
    429  type="#_x0000_t75" style='width:41.25pt;height:18.75pt'> 
    430  <v:imagedata src="./CartelaExpressoHtml_arquivos/image043.png" o:title=""/> 
    431 </v:shape><![endif]--><![if !vml]><img border=0 width=55 height=25 
    432 src="./CartelaExpressoHtml_arquivos/image044.jpg" v:shapes="_x0000_i1065"><![endif]>.</p> 
    433  
    434 <p class=MsoNormal style='text-align:justify'>O botão <!--[if gte vml 1]><v:shape 
    435  id="_x0000_i1066" type="#_x0000_t75" style='width:42.75pt;height:18pt'> 
    436  <v:imagedata src="./CartelaExpressoHtml_arquivos/image045.png" o:title=""/> 
    437 </v:shape><![endif]--><![if !vml]><img border=0 width=57 height=24 
    438 src="./CartelaExpressoHtml_arquivos/image046.jpg" v:shapes="_x0000_i1066"><![endif]><span 
    439 style="mso-spacerun: yes"> </span>permite gerenciar as pastas na caixa postal.</p> 
    440  
    441 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    442  
    443 <p class=MsoNormal style='text-align:justify'>A opção <!--[if gte vml 1]><v:shape 
    444  id="_x0000_i1067" type="#_x0000_t75" style='width:51pt;height:18pt'> 
    445  <v:imagedata src="./CartelaExpressoHtml_arquivos/image047.png" o:title=""/> 
    446 </v:shape><![endif]--><![if !vml]><img border=0 width=68 height=24 
    447 src="./CartelaExpressoHtml_arquivos/image048.jpg" v:shapes="_x0000_i1067"><![endif]><span 
    448 style="mso-spacerun: yes"> </span>busca por um conteúdo ou critério específicos 
    449 dentro de uma ou mais pastas.</p> 
    450  
    451 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    452  
    453 <p class=MsoNormal style='text-align:justify'><!--[if gte vml 1]><v:shape id="_x0000_i1068" 
    454  type="#_x0000_t75" style='width:55.5pt;height:15pt'> 
    455  <v:imagedata src="./CartelaExpressoHtml_arquivos/image049.png" o:title=""/> 
    456 </v:shape><![endif]--><![if !vml]><img border=0 width=74 height=20 
    457 src="./CartelaExpressoHtml_arquivos/image050.jpg" v:shapes="_x0000_i1068"><![endif]><span 
    458 style="mso-spacerun: yes"> </span>deve ser utilizado para procurar por novas 
    459 mensagens no servidor.<span style="mso-spacerun: yes">  </span>Utilize este 
    460 botão ao invés do botão de atualizar do seu navegador.</p> 
    461  
    462 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    463  
    464 <p class=MsoNormal style='text-align:justify'>Em <!--[if gte vml 1]><v:shape 
    465  id="_x0000_i1054" type="#_x0000_t75" style='width:39pt;height:18pt'> 
    466  <v:imagedata src="./CartelaExpressoHtml_arquivos/image051.png" o:title=""/> 
    467 </v:shape><![endif]--><![if !vml]><img border=0 width=52 height=24 
    468 src="./CartelaExpressoHtml_arquivos/image052.jpg" v:shapes="_x0000_i1054"><![endif]><span 
    469 style="mso-spacerun: yes">  </span>é possível criar regras para a exclusão e 
    470 movimentação de mensagens da caixa postal. Clique em <!--[if gte vml 1]><v:shape 
    471  id="_x0000_i1055" type="#_x0000_t75" style='width:49.5pt;height:9.75pt'> 
    472  <v:imagedata src="./CartelaExpressoHtml_arquivos/image053.png" o:title=""/> 
    473 </v:shape><![endif]--><![if !vml]><img border=0 width=66 height=13 
    474 src="./CartelaExpressoHtml_arquivos/image054.jpg" v:shapes="_x0000_i1055"><![endif]><span 
    475 style="mso-spacerun: yes">  </span>para incluir um filtro.</p> 
    476  
    477 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    478  
    479 <p class=MsoNormal style='text-align:justify'>Importante: os filtros não são 
    480 automáticos, ou seja: para aplica-los é necessário abrir a tela de filtros e 
    481 clicar em <!--[if gte vml 1]><v:shape id="_x0000_i1056" type="#_x0000_t75" 
    482  style='width:105.75pt;height:9pt'> 
    483  <v:imagedata src="./CartelaExpressoHtml_arquivos/image055.png" o:title=""/> 
    484 </v:shape><![endif]--><![if !vml]><img border=0 width=141 height=12 
    485 src="./CartelaExpressoHtml_arquivos/image056.jpg" v:shapes="_x0000_i1056"><![endif]>.</p> 
    486  
    487 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    488  
    489 <p class=MsoNormal style='text-align:justify'>Clicando no ícone <!--[if gte vml 1]><v:shape 
    490  id="_x0000_i1057" type="#_x0000_t75" style='width:42.75pt;height:17.25pt'> 
    491  <v:imagedata src="./CartelaExpressoHtml_arquivos/image057.png" o:title=""/> 
    492 </v:shape><![endif]--><![if !vml]><img border=0 width=57 height=23 
    493 src="./CartelaExpressoHtml_arquivos/image058.jpg" v:shapes="_x0000_i1057"><![endif]><span 
    494 style="mso-spacerun: yes"> </span>é possível configurar o <b><i><span 
    495 style='font-size:9.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman"'>Expresso<sup>Livre 
    496 </sup></span></i></b><span style="mso-spacerun: yes"> </span>para acessar 
    497 outros servidores de e-mail.<span style="mso-spacerun: yes">  </span></p> 
    498  
    499 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    500  
    501 <p class=MsoNormal style='text-align:justify'>No módulo de correio, a escolha 
    502 da conta em uso é feita na caixa <!--[if gte vml 1]><v:shape id="_x0000_i1058" 
    503  type="#_x0000_t75" style='width:111pt;height:15.75pt'> 
    504  <v:imagedata src="./CartelaExpressoHtml_arquivos/image059.png" o:title=""/> 
    505 </v:shape><![endif]--><![if !vml]><img border=0 width=148 height=21 
    506 src="./CartelaExpressoHtml_arquivos/image060.jpg" v:shapes="_x0000_i1058"><![endif]>, 
    507 logo abaixo do ícone de Filtros.</p> 
    508  
    509 <p class=MsoNormal style='text-align:justify'>A opção de<span 
    510 style="mso-spacerun: yes">  </span><!--[if gte vml 1]><v:shape id="_x0000_i1059" 
    511  type="#_x0000_t75" style='width:50.25pt;height:27pt'> 
    512  <v:imagedata src="./CartelaExpressoHtml_arquivos/image061.png" o:title=""/> 
    513 </v:shape><![endif]--><![if !vml]><img border=0 width=67 height=36 
    514 src="./CartelaExpressoHtml_arquivos/image062.jpg" v:shapes="_x0000_i1059"><![endif]><span 
    515 style="mso-spacerun: yes"> </span>permite alterar algumas opções de exibição do 
    516 módulo correio.</p> 
    517  
    518 <p class=MsoNormal style='text-align:justify'>Nas opções, marque a opção 
    519 Mostrar mensagem em uma nova janela se desejar ler as mensagens em janelas 
    520 independentes. Clique em <!--[if gte vml 1]><v:shape id="_x0000_i1060" type="#_x0000_t75" 
    521  style='width:27.75pt;height:12pt'> 
    522  <v:imagedata src="./CartelaExpressoHtml_arquivos/image063.png" o:title=""/> 
    523 </v:shape><![endif]--><![if !vml]><img border=0 width=37 height=16 
    524 src="./CartelaExpressoHtml_arquivos/image064.jpg" v:shapes="_x0000_i1060"><![endif]><span 
    525 style="mso-spacerun: yes"> </span>para salvar as alterações. Importante: se 
    526 desejar janelas independentes, não utilize supressores de “pop-up” em seu 
    527 navegador.</p> 
    528  
    529 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    530  
    531 <table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%; 
    532  border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; 
    533  mso-padding-alt:0cm 3.5pt 0cm 3.5pt'> 
    534  <tr> 
    535   <td width="100%" valign=top style='width:100.0%;border:none;padding:0cm 3.5pt 0cm 3.5pt'> 
    536   <div class=MsoNormal align=center style='text-align:center'> 
    537   <hr size=2 width="100%" align=center> 
    538   </div> 
    539   <p class=MsoNormal align=center style='text-align:center'></p> 
    540   </td> 
    541  </tr> 
    542 </table> 
    543  
    544 <h1 style='text-align:justify;tab-stops:list 36.0pt'><span style='font-size: 
    545 18.0pt'><!--[if gte vml 1]><v:shape id="_x0000_i1069" type="#_x0000_t75" 
    546  style='width:23.25pt;height:22.5pt' o:bullet="t"> 
    547  <v:imagedata src="./CartelaExpressoHtml_arquivos/image065.png" o:title=""/> 
    548 </v:shape><![endif]--><![if !vml]><img border=0 width=31 height=30 
    549 src="./CartelaExpressoHtml_arquivos/image066.jpg" alt="*" v:shapes="_x0000_i1069"><![endif]><span 
    550 style='mso-tab-count:1'>  </span><sup>Agenda</sup><o:p></o:p></span></h1> 
    551  
    552 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    553  
    554 <p class=MsoNormal style='text-align:justify'>A agenda permite várias formas de 
    555 visualização, para alternar entre elas clique em um dos ícones: <!--[if gte vml 1]><v:shape 
    556  id="_x0000_i1070" type="#_x0000_t75" style='width:87pt;height:12.75pt'> 
    557  <v:imagedata src="./CartelaExpressoHtml_arquivos/image067.png" o:title=""/> 
    558 </v:shape><![endif]--><![if !vml]><img border=0 width=116 height=17 
    559 src="./CartelaExpressoHtml_arquivos/image068.jpg" v:shapes="_x0000_i1070"><![endif]>, 
    560 que apontam para Hoje, Esta semana, Este mês, Este ano <br> 
    561 e Planejar, respectivamente.</p> 
    562  
    563 <p class=MsoNormal style='text-align:justify'><!--[if gte vml 1]><v:shape id="_x0000_s1026" 
    564  type="#_x0000_t75" style='position:absolute;left:0;text-align:left; 
    565  margin-left:0;margin-top:9.4pt;width:50.25pt;height:53.25pt;z-index:1; 
    566  mso-position-horizontal:left;mso-position-vertical:absolute'> 
    567  <v:imagedata src="./CartelaExpressoHtml_arquivos/image069.png" o:title=""/> 
    568  <w:wrap type="square"/> 
    569 </v:shape><![endif]--><![if !vml]><img width=67 height=71 
    570 src="./CartelaExpressoHtml_arquivos/image070.jpg" align=left hspace=12 v:shapes="_x0000_s1026"><![endif]></p> 
    571  
    572 <p class=MsoBodyText2>Em várias partes da agenda há atalhos para a criação de 
    573 compromissos e mudança de visualização. Quando o calendário mensal é mostrado, 
    574 clicar no mês e ano abre a visão Este mês, clicar em um dos dias do calendário 
    575 abre a visualização do dia escolhido:</p> 
    576  
    577 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    578  
    579 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    580  
    581 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    582  
    583 <p class=MsoNormal style='text-align:justify'><!--[if gte vml 1]><v:shape id="_x0000_s1027" 
    584  type="#_x0000_t75" style='position:absolute;left:0;text-align:left; 
    585  margin-left:0;margin-top:.9pt;width:54.75pt;height:23.25pt;z-index:2; 
    586  mso-position-horizontal:left;mso-position-vertical:absolute'> 
    587  <v:imagedata src="./CartelaExpressoHtml_arquivos/image071.png" o:title=""/> 
    588  <w:wrap type="square"/> 
    589 </v:shape><![endif]--><![if !vml]><img width=73 height=31 
    590 src="./CartelaExpressoHtml_arquivos/image072.jpg" align=left hspace=12 v:shapes="_x0000_s1027"><![endif]>Na 
    591 visão diária, a inclusão de compromissos pode ser feita clicando-se no horário 
    592 desejado: </p> 
    593  
    594 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    595  
    596 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    597  
    598 <p class=MsoNormal style='text-align:justify'><!--[if gte vml 1]><v:shape id="_x0000_s1028" 
    599  type="#_x0000_t75" style='position:absolute;left:0;text-align:left; 
    600  margin-left:0;margin-top:2.4pt;width:27.75pt;height:15.75pt;z-index:3; 
    601  mso-position-horizontal:left;mso-position-vertical:absolute'> 
    602  <v:imagedata src="./CartelaExpressoHtml_arquivos/image073.png" o:title=""/> 
    603  <w:wrap type="square"/> 
    604 </v:shape><![endif]--><![if !vml]><img width=37 height=21 
    605 src="./CartelaExpressoHtml_arquivos/image074.jpg" align=left hspace=12 v:shapes="_x0000_s1028"><![endif]></p> 
    606  
    607 <p class=MsoNormal style='text-align:justify'>Nas visões semanal e mensal, a 
    608 inclusão é feita clicando-se no símbolo de mais: </p> 
    609  
    610 <p class=MsoNormal align=center style='text-align:center'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    611  
    612 <p class=MsoNormal style='text-align:justify'>Se clicar no dia, será aberta a 
    613 visualização diária.</p> 
    614  
    615 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    616  
    617 <p class=MsoNormal style='text-align:justify'>Uma entrada de agenda pode 
    618 incluir localização, ter uma categoria para visualização, localização, alarme e 
    619 repetição. O compromisso pode durar minutos ou mesmo dias. Participantes podem 
    620 ser convidados.</p> 
    621  
    622 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    623  
    624 <p class=MsoNormal style='text-align:justify'>Antes de utilizar as categorias 
    625 de agenda, cadastre-as na opção Editar categorias no menu retrátil à esquerda 
    626 (clique em <!--[if gte vml 1]><v:shape id="_x0000_i1061" type="#_x0000_t75" 
    627  style='width:12pt;height:13.5pt'> 
    628  <v:imagedata src="./CartelaExpressoHtml_arquivos/image013.png" o:title=""/> 
    629 </v:shape><![endif]--><![if !vml]><img border=0 width=16 height=18 
    630 src="./CartelaExpressoHtml_arquivos/image075.jpg" v:shapes="_x0000_i1061"><![endif]><span 
    631 style="mso-spacerun: yes"> </span>para expandir o menu).</p> 
    632  
    633 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    634  
    635 <p class=MsoNormal style='text-align:justify'>É possível convidar outros 
    636 usuários do <b><i><span style='font-size:9.0pt;font-family:Arial;mso-bidi-font-family: 
    637 "Times New Roman"'>Expresso<sup>Livre </sup></span></i></b><span 
    638 style="mso-spacerun: yes"> </span>para participar do evento. Os Participantes 
    639 podem ser escolhidos a partir de uma lista, clique no nome na janela à esquerda 
    640 e então no botão Adicionar para incluir, para excluir clique no nome na janela 
    641 à direita e então em Remover:</p> 
    642  
    643 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    644  
    645 <p class=MsoNormal align=center style='text-align:center'><!--[if gte vml 1]><v:shape 
    646  id="_x0000_i1062" type="#_x0000_t75" style='width:168.75pt;height:48pt'> 
    647  <v:imagedata src="./CartelaExpressoHtml_arquivos/image076.png" o:title=""/> 
    648 </v:shape><![endif]--><![if !vml]><img border=0 width=225 height=64 
    649 src="./CartelaExpressoHtml_arquivos/image077.jpg" v:shapes="_x0000_i1062"><![endif]></p> 
    650  
    651 <p class=MsoNormal style='text-align:justify'>Para acelerar a busca digite as 
    652 iniciais do nome no campo Buscar.</p> 
    653  
    654 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    655  
    656 <p class=MsoNormal style='text-align:justify'>Os convidados receberão uma 
    657 mensagem avisando e deverão ir até sua agenda, abrir o compromisso, clicar no 
    658 “Sem resposta” ao lado de seu nome e então aceitar ou declinar o convite.</p> 
    659  
    660 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    661  
    662 <table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%; 
    663  border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; 
    664  mso-padding-alt:0cm 3.5pt 0cm 3.5pt'> 
    665  <tr> 
    666   <td width="100%" valign=top style='width:100.0%;border:none;padding:0cm 3.5pt 0cm 3.5pt'> 
    667   <div class=MsoNormal align=center style='text-align:center;page-break-after: 
    668   avoid'> 
    669   <hr size=2 width="100%" align=center> 
    670   </div> 
    671   <p class=MsoNormal align=center style='text-align:center;page-break-after: 
    672   avoid'></p> 
    673   </td> 
    674  </tr> 
    675 </table> 
    676  
    677 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    678  
    679 <p class=MsoNormal style='text-align:justify'><b><span style='font-size:18.0pt; 
    680 font-family:Arial;mso-bidi-font-family:"Times New Roman"'><!--[if gte vml 1]><v:shape 
    681  id="_x0000_i1071" type="#_x0000_t75" style='width:22.5pt;height:23.25pt'> 
    682  <v:imagedata src="./CartelaExpressoHtml_arquivos/image078.png" o:title=""/> 
    683 </v:shape><![endif]--><![if !vml]><img border=0 width=30 height=31 
    684 src="./CartelaExpressoHtml_arquivos/image079.jpg" v:shapes="_x0000_i1071"><![endif]><span 
    685 style="mso-spacerun: yes">   </span><sup>Catálogo de Endereços</sup><o:p></o:p></span></b></p> 
    686  
    687 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    688  
    689 <p class=MsoNormal style='text-align:justify'>O catálogo de endereços pessoais 
    690 permite o cadastramento de várias informações sobre seus contatos.</p> 
    691  
    692 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    693  
    694 <p class=MsoNormal style='text-align:justify'>Antes de utilizar as categorias 
    695 do Catálogo de Endereços, cadastre-as na opção Editar categorias no menu 
    696 retrátil à esquerda (clique em <!--[if gte vml 1]><v:shape id="_x0000_i1063" 
    697  type="#_x0000_t75" style='width:12pt;height:13.5pt'> 
    698  <v:imagedata src="./CartelaExpressoHtml_arquivos/image013.png" o:title=""/> 
    699 </v:shape><![endif]--><![if !vml]><img border=0 width=16 height=18 
    700 src="./CartelaExpressoHtml_arquivos/image080.jpg" v:shapes="_x0000_i1063"><![endif]><span 
    701 style="mso-spacerun: yes"> </span>para expandir o menu).</p> 
    702  
    703 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    704  
    705 <p class=MsoNormal style='text-align:justify'>Clique no botão Adicionar para 
    706 incluir uma nova entrada.<span style="mso-spacerun: yes">  </span>As opções de 
    707 adicionar Vcard, Importar contatos e CSV e exportar contatos podem ser úteis na 
    708 troca de informações com outros produtos como o Netscape, IE ou Organizer.</p> 
    709  
    710 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    711  
    712 <table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%; 
    713  border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; 
    714  mso-padding-alt:0cm 3.5pt 0cm 3.5pt'> 
    715  <tr> 
    716   <td width="100%" valign=top style='width:100.0%;border:none;padding:0cm 3.5pt 0cm 3.5pt'> 
    717   <div class=MsoNormal align=center style='text-align:center'> 
    718   <hr size=2 width="100%" align=center> 
    719   </div> 
    720   <p class=MsoNormal align=center style='text-align:center'></p> 
    721   </td> 
    722  </tr> 
    723 </table> 
    724  
    725 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    726  
    727 <p class=MsoNormal style='text-align:justify'><b><span style='font-size:18.0pt; 
    728 font-family:Arial;mso-bidi-font-family:"Times New Roman"'><!--[if gte vml 1]><v:shape 
    729  id="_x0000_i1064" type="#_x0000_t75" style='width:24pt;height:24pt'> 
    730  <v:imagedata src="./CartelaExpressoHtml_arquivos/image081.png" o:title=""/> 
    731 </v:shape><![endif]--><![if !vml]><img border=0 width=32 height=32 
    732 src="./CartelaExpressoHtml_arquivos/image082.jpg" v:shapes="_x0000_i1064"><![endif]><span 
    733 style="mso-spacerun: yes">   </span><sup>Desconectar</sup><o:p></o:p></span></b></p> 
    734  
    735 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    736  
    737 <p class=MsoNormal style='text-align:justify'>Clique neste botão para fechar 
    738 sua conexão com o <b><i><span style='font-size:9.0pt;font-family:Arial; 
    739 mso-bidi-font-family:"Times New Roman"'>Expresso<sup>Livre</sup></span></i></b> 
    740 .</p> 
    741  
    742 <p class=MsoNormal style='text-align:justify'>Isto é importante para evitar que 
    743 sua conexão fique aberta no servidor. Enquanto a sessão não expirar, se você 
    744 apenas abrir outro endereço no navegador, o <b><i><span style='font-size:9.0pt; 
    745 font-family:Arial;mso-bidi-font-family:"Times New Roman"'>Expresso<sup>Livre</sup></span></i></b><span 
    746 style="mso-spacerun: yes">  </span>poderá ser aberto na estação sem que seja 
    747 necessário informar a senha. </p> 
    748  
    749 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    750  
    751 <table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%; 
    752  border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; 
    753  mso-padding-alt:0cm 3.5pt 0cm 3.5pt'> 
    754  <tr> 
    755   <td width="100%" valign=top style='width:100.0%;border:none;padding:0cm 3.5pt 0cm 3.5pt'> 
    756   <div class=MsoNormal align=center style='text-align:center'> 
    757   <hr size=2 width="100%" align=center> 
    758   </div> 
    759   <p class=MsoNormal align=center style='text-align:center'></p> 
    760   </td> 
    761  </tr> 
    762 </table> 
    763  
    764 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    765  
    766 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    767  
    768 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    769  
    770 <p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    771  
    772 <p class=MsoNormal align=center style='text-align:center'><span 
    773 style='font-size:7.0pt;text-transform:uppercase'>O </span><b><i><span 
    774 style='font-size:6.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman"'>Expresso<sup>Livre</sup></span></i></b><i><span 
    775 style='font-size:7.0pt'><span style="mso-spacerun: yes">  </span></span></i><span 
    776 style='font-size:7.0pt'>utiliza o e-Groupware<span style="mso-spacerun: yes">   
    777 </span><o:p></o:p></span></p> 
    778  
    779 <p class=MsoNormal align=center style='text-align:center'><span 
    780 style='font-size:7.0pt'>(http://www.egroupware.org.br)<o:p></o:p></span></p> 
    781  
    782 <p class=MsoNormal align=center style='text-align:center'><span 
    783 style='font-size:7.0pt'>Sua licença está de<span style="mso-spacerun: yes">  
    784 </span>acordo<span style="mso-spacerun: yes">  </span>com o GPL.<o:p></o:p></span></p> 
    785  
    786 <p class=MsoNormal><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    787  
    788 <p class=MsoNormal><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    789  
    790 <p class=MsoNormal><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    791  
    792 <p class=MsoNormal align=center style='text-align:center'><!--[if gte vml 1]><v:shape 
    793  id="_x0000_i1053" type="#_x0000_t75" style='width:106.5pt;height:31.5pt'> 
    794  <v:imagedata src="./CartelaExpressoHtml_arquivos/image083.png" o:title=""/> 
    795 </v:shape><![endif]--><![if !vml]><img border=0 width=142 height=42 
    796 src="./CartelaExpressoHtml_arquivos/image084.gif" v:shapes="_x0000_i1053"><![endif]></p> 
    797  
    798 <p class=MsoBodyText><span style='font-size:10.0pt;color:black;layout-grid-mode: 
    799 line'>Rua Mateus Leme, 1561<o:p></o:p></span></p> 
    800  
    801 <p class=MsoNormal align=center style='text-align:center'><span 
    802 style='font-size:9.0pt;font-family:"Tms Rmn";color:black;layout-grid-mode:line'>Central 
    803 de Atendimento Celepar: 350-5007</span><span style='font-family:"Tms Rmn"; 
    804 color:black;layout-grid-mode:line'><o:p></o:p></span></p> 
    805  
    806 <p class=MsoNormal align=center style='text-align:center'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    807  
    808 <span style='font-size:10.0pt;font-family:"Times New Roman";mso-fareast-font-family: 
    809 "Times New Roman";mso-ansi-language:PT-BR;mso-fareast-language:PT-BR; 
    810 mso-bidi-language:AR-SA'><br clear=all style='mso-special-character:line-break; 
    811 mso-column-break-before:always'> 
    812 </span> 
    813  
    814 <p class=MsoNormal align=center style='margin-left:7.1pt;text-align:center'><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p> 
    815  
    816 <p class=MsoNormal align=center style='text-align:center'> 
    817 <span style="mso-spacerun: yes"> </span></p> 
    818 </div> 
    819 </body> 
     9        <font face="Arial" size="2"><center><b><u>Manual do usuário do Expresso</u></b></center></font><br> 
     10        <p align="center"><font face="Arial" size="2">Clique <b><a href="Manual_Usuario_Expresso.pdf">aqui</a></b> 
     11                para copiar o manual no formato PDF.</font></p><br> 
     12        <p><font face="Arial" size="2">No manual do usuário do Expresso você irá encontrar:<br><br><br> 
     13        <li>Guia de utilização do módulo <b>ExpressoMail 1.2</b>;<br><br> 
     14        <li>Guia de utilização do módulo <b>Agenda de Eventos</b>;<br><br> 
     15        <li>Guia de utilização do módulo <b>Catálogo de Endereços</b>;<br><br> 
     16        </font></p> 
     17        </div>   
     18        <div align="right" style="padding-right:10px"><font face="Arial" size="2"> 
     19        Equipe Expresso 
     20        <br><a href="http://www.celepar.pr.gov.br" target="_blank">Celepar Informática do Paraná</a></font></div>        
     21        </body>  
    82022</html> 
  • trunk/instant_messenger/inc/class.Ujabber.inc.php

    r27 r29  
    317317                        $s = substr($time[1],6,2); 
    318318                        // Carregando a hora; 
    319                         $array_message[$j]['timestamp'] = ($h - 3 ).":".$m.":".$s; 
     319                        $array_message[$j]['timestamp'] = ($h - 4 ).":".$m.":".$s; 
    320320                        $j++;    
    321321                } 
  • trunk/instant_messenger/js/im_win.js

    r27 r29  
    9696 
    9797           main_menu_head_pref.onclick = function(){IM.menu_preferences('menu_preferences');}; 
    98       main_menu_head_pref_txt = document.createTextNode(IM.get_lang('preferences')); 
     98      main_menu_head_pref_txt = document.createTextNode(IM.get_lang('Options')); 
    9999 
    100100           main_menu_head_div = func.newEl("div"); 
Note: See TracChangeset for help on using the changeset viewer.