comparison Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs @ 290:15b428ae5931

Combinar
author juanjose.montesdeocaarbos
date Tue, 07 Feb 2012 23:29:06 -0300
parents a6037c6c88d8
children
comparison
equal deleted inserted replaced
289:8b0c62c255cd 290:15b428ae5931
8 { 8 {
9 public class VanGEventDetail : IGEventDetail 9 public class VanGEventDetail : IGEventDetail
10 { 10 {
11 private const string TextoVan = 11 private const string TextoVan =
12 "La comunidad ALT.NET Hispano (http://altnethispano.org) realizará [EVENTO_TIPO] sobre [NOMBRE][NOMBRE_EXPOSITOR]." + 12 "La comunidad ALT.NET Hispano (http://altnethispano.org) realizará [EVENTO_TIPO] sobre [NOMBRE][NOMBRE_EXPOSITOR]." +
13 "\n\rFecha: [FECHA] a las 18:00 hrs. Hora Internacional (GMT/UTC), con una duración aproximada de 2 horas." + 13 "\n\rFecha: [FECHA] a las [HORA] hrs. Hora Internacional (GMT/UTC), con una duración aproximada de 2 horas." +
14 "\n\rPueden plantear sus comentarios e inquietudes sobre el tema de la reunión en: [URL_DISCUCION]" + 14 "\n\rPueden plantear sus comentarios e inquietudes sobre el tema de la reunión en: [URL_DISCUCION]" +
15 "\n\rPara mayor información sobre cómo atender la reunión consulten: http://tinyurl.com/van-hispano" + 15 "\n\rPara mayor información sobre cómo atender la reunión consulten: http://tinyurl.com/van-hispano" +
16 "\n\rPueden vincular el Google Calendar al suyo (http://screenr.com/nr7)"; 16 "\n\rPueden vincular el Google Calendar al suyo (http://screenr.com/nr7)";
17 17
18 18
32 32
33 Summary = TextoVan.Replace("[EVENTO_TIPO]", GetEventoTipo(evento.Tipo)). 33 Summary = TextoVan.Replace("[EVENTO_TIPO]", GetEventoTipo(evento.Tipo)).
34 Replace("[NOMBRE]", evento.Titulo). 34 Replace("[NOMBRE]", evento.Titulo).
35 Replace("[NOMBRE_EXPOSITOR]", GetPonentes(evento)). 35 Replace("[NOMBRE_EXPOSITOR]", GetPonentes(evento)).
36 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)). 36 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)).
37 Replace("[URL_DISCUCION]", evento.UrlInvitacion); 37 Replace("[URL_DISCUCION]", evento.UrlInvitacion).
38 Replace("[HORA]",evento.FechaInicio.Value.ToShortTimeString());
38 } 39 }
39 40
40 private static string GetPonentes(Evento evento) 41 private static string GetPonentes(Evento evento)
41 { 42 {
42 var ponentes = evento.GetPonentesAsString(p => p.Nombre); 43 var ponentes = evento.GetPonentesAsString(p => p.Nombre);