Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs @ 231:e5959f3405e0
Eventos sin ponentes
author | nelopauselli |
---|---|
date | Wed, 28 Sep 2011 20:02:44 -0300 |
parents | 33976aea7546 |
children | a6037c6c88d8 |
comparison
equal
deleted
inserted
replaced
230:e38d53a1ead9 | 231:e5959f3405e0 |
---|---|
7 namespace AltNetHispano.Agendas.Google.DetailsEvents | 7 namespace AltNetHispano.Agendas.Google.DetailsEvents |
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á una VAN sobre [NOMBRE], con [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 18:00 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 |
28 Location = "http://snipr.com/virtualaltnet"; | 28 Location = "http://snipr.com/virtualaltnet"; |
29 StartEvent = evento.FechaInicio.Value; | 29 StartEvent = evento.FechaInicio.Value; |
30 EndEvent = evento.FechaTermino.Value; | 30 EndEvent = evento.FechaTermino.Value; |
31 var cultureInfo = new CultureInfo( "es-ES", false ).DateTimeFormat; | 31 var cultureInfo = new CultureInfo( "es-ES", false ).DateTimeFormat; |
32 | 32 |
33 Summary = TextoVan.Replace("[NOMBRE]", evento.Titulo). | 33 Summary = TextoVan.Replace("[EVENTO_TIPO]", GetEventoTipo(evento.Tipo)). |
34 Replace("[NOMBRE_EXPOSITOR]", evento.GetPonentesAsString(p => p.Nombre)). | 34 Replace("[NOMBRE]", evento.Titulo). |
35 Replace("[NOMBRE_EXPOSITOR]", GetPonentes(evento)). | |
35 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)). | 36 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)). |
36 Replace("[URL_DISCUCION]", evento.UrlInvitacion); | 37 Replace("[URL_DISCUCION]", evento.UrlInvitacion); |
37 } | 38 } |
39 | |
40 private static string GetPonentes(Evento evento) | |
41 { | |
42 var ponentes = evento.GetPonentesAsString(p => p.Nombre); | |
43 return !string.IsNullOrWhiteSpace(ponentes) ? string.Format(", con {0}", ponentes) : string.Empty; | |
44 } | |
45 | |
46 private static string GetEventoTipo(TipoEvento tipo) | |
47 { | |
48 switch (tipo) | |
49 { | |
50 case TipoEvento.Van: | |
51 return "una VAN"; | |
52 case TipoEvento.Cafe: | |
53 return "un Café"; | |
54 case TipoEvento.GrupoEstudio: | |
55 return "un Grupo de estudio"; | |
56 default: | |
57 return string.Empty; | |
58 } | |
59 } | |
38 } | 60 } |
39 } | 61 } |