Comissão Especial aprova substitutivo ao PL do Código Florestal sem inserção do conceito de agricultura familiar

A sessão da Comissão Especial da Câmara realizada nesta terça-feira (7) que votou e aprovou o texto principal do substituto do deputado Aldo Rebelo (PCdoB-SP) ao Projeto de Lei 1876/99 do Código Florestal foi marcada pela mobilização e pelos protestos das entidades da agricultura familiar da CUT, movimentos sociais e ambientalistas, contrários ao retrocesso ratificado pela bancada ruralista.

Os deputados aprovaram, por 13 votos a 5 (abaixo, veja quem votou contra e a favor), o texto principal do substitutivo e rejeitaram os destaques que propunham modificá-lo. O deputado sequer inseriu o conceito de agricultura familiar, diferenciando os grandes produtores dos pequenos, que produzem com base na agricultura familiar. “Só temos a lamentar. É inaceitável que uma questão tão importante seja excluída do debate. Continuaremos lutando para que o conceito de agricultura familiar seja colocado no projeto de lei, distinguindo a agricultura patronal da agricultura familiar, responsável por levar a milhões de brasileiros um alimento de qualidade e saudável”, exclama Carmen Foro, secretária Nacional de Meio Ambiente da CUT.

Ao final da sessão, sindicalistas da CUT, representantes dos movimentos sociais e ambientalistas gritavam “retrocesso” e “vendidos” para os deputados que votaram a favor do relatório. A matéria segue agora para votação no plenário da Câmara e depois para o Senado. Como a pauta de votações do plenário está obstruída, a proposta só deve sair da Casa depois do período eleitoral.

Carmen ressaltou que os movimentos continuarão mobilizados contra o retrocesso instaurado no Código Florestal.

Quem votou pelo sim ao relatório:
1. Anselmo de Jesus (PT-RO)
2. Homero Pereira (PR-MT)
3. Luis Carlos Heinze (PP-RS)
4. Moacir Micheletto (PMDB-PR)
5. Paulo Piau (PPS-MG)
6. Valdir Colatto (PMDB-SC)
7. Hernandes Amorim (PTB-RO)
8. Marcos Montes (DEM-MG)
9. Moreira Mendes (PPS-RO)
10. Duarte Nogueira (PSDB-SP)
11. Aldo Rebelo (PCdoB-SP)
12. Reinhold Stephanes (PMDB-PR)
13. Eduardo Seabra (PTB-AP)

Quem votou pelo não ao relatório
1. Dr. Rosinha (PT-PR)
2. Ricardo Tripoli (PSDB-SP)
3. Rodrigo Rollemberg (PSB-DF)
4. Sarney Filho (PV-MA)
5. Ivan Valente (PSOL-SP)

Fonte: CUT


ENVIE A MATÉRIA:

<% Dim objCDONTS ' Email object Dim strFromName ' From persons' real name Dim strFromEmail, strToEmail ' Email addresses Dim strSubject, strBody ' Message Dim strThisPage ' This page's URL Dim strReferringPage ' The referring page's URL Dim bValidInput ' A boolean indicating valid parameters ' Retrieve this page name and referring page name strThisPage = Request.ServerVariables("SCRIPT_NAME") strReferringPage = Request.ServerVariables("HTTP_REFERER") ' Debugging lines: 'Response.Write strThisPage & "
" & vbCrLf 'Response.Write strReferringPage & "
" & vbCrLf ' Read in and set the initial values of our message parameters strFromName = Trim(Request.Form("txtFromName")) strFromEmail = Trim(Request.Form("txtFromEmail")) strToEmail = Trim(Request.Form("txtToEmail")) strSubject = "www.contee.org.br" strBody = Trim(Request.Form("txtMessage")) ' I set the body message to a message that referenced the page the ' user arrived from. This makes it great if you place a link to it ' from your different articles, but can be weird if people link in ' from other web sites. If strBody = "" Then If strReferringPage = "" Or InStr(1, strReferringPage, "www.contee.org.br", 1) = 0 Then strBody = "" strBody = strBody & "O link abaixo é uma sugestão de leitura: Comissão Especial aprova substitutivo ao PL do Código Florestal sem inserção do conceito de agricultura familiar" & vbCrLf strBody = strBody & vbCrLf strBody = strBody & "http://www.contee.org.br/noticias/msoc/nmsoc1276.asp" & vbCrLf Else strBody = "O link abaixo é uma sugestão de leitura: Comissão Especial aprova substitutivo ao PL do Código Florestal sem inserção do conceito de agricultura familiar" sstrBody = strBody & "O link abaixo é uma sugestão de leitura: Comissão Especial aprova substitutivo ao PL do Código Florestal sem inserção do conceito de agricultura familiar" & vbCrLf strBody = strBody & vbCrLf strBody = strBody & "http://www.contee.org.br/noticias/msoc/nmsoc1276.asp" & vbCrLf End If End If ' Quick validation just to make sure our parameters are somewhat valid bValidInput = True bValidInput = bValidInput And strFromName <> "" bValidInput = bValidInput And IsValidEmail(strFromEmail) bValidInput = bValidInput And IsValidEmail(strToEmail) ' If valid send email and show thanks, o/w show form If bValidInput Then ' Set up our email object and send the message Set objCDONTS = Server.CreateObject("CDONTS.NewMail") objCDONTS.From = strFromName & " <" & strFromEmail & ">" objCDONTS.To = strToEmail objCDONTS.Subject = strSubject objCDONTS.Body = strBody objCDONTS.Send Set objCDONTS = Nothing ' Show our thank you message ShowThanksMsg Else If "http://" & Request.ServerVariables("HTTP_HOST") & strThisPage = strReferringPage Then Response.Write "Foi encontrado erro no preenchimento. Por favor confira os dados:" & "
" & vbCrLf End If ' Show our information retrieval form ShowReferralForm strThisPage, strFromName, strFromEmail, strToEmail, strBody End If ' End of page logic... subs and functions follow! %>
<% ' Subroutines and Functions that encapsulate some functionality ' and make the above code easier to write... and read. ' A quick email syntax checker. It's not perfect, ' but it's quick and easy and will catch most of ' the bad addresses than people type in. Function IsValidEmail(strEmail) Dim bIsValid bIsValid = True If Len(strEmail) < 5 Then bIsValid = False Else If Instr(1, strEmail, " ") <> 0 Then bIsValid = False Else If InStr(1, strEmail, "@", 1) < 2 Then bIsValid = False Else If InStrRev(strEmail, ".") < InStr(1, strEmail, "@", 1) + 2 Then bIsValid = False End If End If End If End If IsValidEmail = bIsValid End Function ' I made this a function just to get it out of the ' logic and make it easier to read. It just shows the ' form that asks for the input Sub ShowReferralForm(strPageName, strFromName, strFromEmail, strToEmail, strBody) ' I use script_name so users can rename this script witout having to change the code. %>
Seu nome:
Seu e-mail:
Para:
 
<% '

The Message to be sent:

'

Subject: < %= strSubject % >

'

Body: < %= strBody % >

End Sub ' This just shows our thank you message... probably didn't need to ' be a function, but since I made the form one I figured I'd do this ' for consistency. Sub ShowThanksMsg() %>

Sua mensagem foi enviada com sucesso. <% End Sub %>