FB_init

Monday, November 26, 2012

Kleber Lucas, perdoa-lhes, porque não sabem o que fazem

  Kleber Lucas casou-se pela terceira vez, sendo apedrejado virtualmente pelo meio evangélico. Não é a primeira história de repúdio que conheço.
  No meio evangélico no qual cresci no sul do Brasil qualquer caso que fugisse da norma do casal Cinderela-e-Príncipe-felizes-para-sempre era reprovado sumariamente. Lembro-me de um caso da igreja onde o homem teve um caso com a amiga da filha. Perguntei décadas depois do ocorrido à filha, que era amiga minha, como ela havia se sentido na época. Disse ela que o pior foi a exclusão dos círculos em que vivia: na escola (evangélica) e na igreja.
   Lembro-me de um casal que participou por um tempo da Comunidade de Porto Alegre ('Seara Latina' nos primórdios dos anos 80) que, por serem divorciados, não foram aceitos. Lembro-me de um outro amigo meu, excelente músico, evangélico, que separou-se e foi declarado anátema por outros mais da linha 'louvor-e-adoração'.
  A hipocrisia moral de muitos evangélicos lhes impede de ver as situações com compaixão e empatia. Porque quando tem que escolher entre seus aparatos dogmáticos (entenda-se: tabus) e o ser humano, optam pelos aparatos. Em casos extremos, como o Pastor JØntex que come todas, mantém-se a fachada de crente e assim não há problema. O importante é os crentes poderem dormir com a consciência limpa. Em seus sonhos orgulhosamente recitam de cor versículos sobre 'não julgar' e dão tapinhas nas costas uns dos outros.
  Desde muito tempo a igreja toma o nome de Deus em vão revestindo seus preconceitos de voz divina. Como o torturador patriótico. Como o monstro que joga pedra em espelhos.
  Caro Kleber Lucas, espero que seja feliz, enquanto dure. Perdoa-lhes, porque não sabem o que fazem.

Sunday, November 11, 2012

Visit to St George & St Anthony Coptic Orthodox Church

   We just started the "Getting to Know our Neighbour's Faith" small group at the Ottawa Mennonite Church. Today was our first visit. We went to St. George & St. Anthony Coptic Orthodox Church. Their website is http://www.orthodoxy.ca/ . It was a beautiful liturgy. We were welcomed by Fr. Mikhail Fam and Fr. George Mikhail, who invited us to stay after the service and talk, and connect during the week if we wanted.
   Some personal impressions:
- I didn't quite know what to expect when I arrived. The uncertainty of the unknown at times invites a bit of 'fear' ( of 'acceptance', or 'faux pas'). I forgot to ask in advance, for instance, if there were instructions for the dressing costumes, particularly for visiting women of the group. Luckily they had scarfs that served as veil.
- The liturgy is filled with visuals. From the images to the symbols to gestures, it was beautiful to see how rich they were. (In contrast with the Reformed branches of Christianity, many of which removed the symbols as they collided with the alleged 'idolatry' of Roman Catholicism).
- Historically, Reformed churches tried to remove the 'special status' of clergy and laity. In the service at St. George & St. Anthony the Fathers and Deacons were at the front, but looking at the liturgy, the participation of 'clergy' in Reformed churches is not much different in general than what I witnessed.
- Clergy and Deacons at the altar were all male. There might have been about 80 people in the congregation, with a good mix of all ages. A large room with glass allows parents with small children to follow the service.
- I didn't quite know what to expect during the service. I did notice that there was lots of reading of Scripture ( Hebrew Bible and New Testament ). Readings of the liturgy were documented in a book available at the pews and also projected on screens. These readings had the text in Greek, Arabic and English. Readings of Scripture were in Arabic and English.
- The sermon spoke about the Parable of the Sower, which was the reading of the Gospels. To me it sounded clear. I liked it. (It seemed easier to understand and accept what I was hearing, as if I didn't have much 'filters' in my ears for being of a Christian background... ) The Father spoke, among other things, that there were conversations about what it meant for a church to be 'of Jesus Christ'. And that he thinks a church must be 'evangelical' and 'missionary' (in the context of the Parable). Very nice.
- The Father gave us a book and a few booklets about their tradition. The booklets are addressed to youth.

St George & St Anthony Coptic Orthodox Church in Ottawa

St George & St Anthony Coptic Orthodox Church in Ottawa

St George & St Anthony Coptic Orthodox Church in Ottawa

St George & St Anthony Coptic Orthodox Church in Ottawa

Monday, November 05, 2012

SharePoint - Displaying list items with line breaks

This is how you can display list items that have line breaks (based on SharePoint 2010)

1- With SharePoint Designer, open the site and the list.
2- Under the 'Forms' section, open 'DispForm.aspx'.
3- Find the section below and add the fragments in bold:


<asp:Content ContentPlaceHolderId="PlaceHolderTitleAreaClass" runat="server">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" id="onetidPageTitleAreaFrameScript">
if (document.getElementById("onetidPageTitleAreaFrame") != null)
{
document.getElementById("onetidPageTitleAreaFrame").className="ms-areaseparator";
}

// Custom below:
$(document).ready(function() {    
     //var content = $(".ms-rtestate-field").find('div').html();
     $('DIV.ms-rtestate-field').each(function(index) {
        var innerdiv= $(this).find('div');
        if(innerdiv) {
           innerdiv.wrap('<pre/>');
        }
 });
   });

</script>
</asp:Content>



4- Save

Note: to check if the list items are really storing the newline characters, you may use a CAML Query Builder.