update with infos

This commit is contained in:
Bernhard Tittelbach 2017-02-23 15:27:14 +01:00
parent ba25c9551f
commit 43594f080b
3 changed files with 72 additions and 0 deletions

18
main.go
View File

@ -125,12 +125,30 @@ func answer(c *telgo.Client, args []string) bool {
case "yes":
c.Sayln("")
c.Sayln(" Great! We'll see you at the party then.")
c.Sayln("")
c.Sayln(" expect DJ Music, Food, Tschunk, Games and more")
c.Sayln("")
c.Sayln(" 2017-03-18 from 18:00 till it's over")
c.Sayln("")
c.Sayln(" Find the place:")
c.Sayln(" realraum, Brockmanngasse 15, 8010 Graz")
c.Sayln(" http://osm.org/go/0Iz~oIpTW?m=&node=668061696")
c.Sayln("")
c.Sayln(" Save the date:")
c.Sayln(" https://plus.google.com/u/0/events/cqiq6003lok2qd9jcqmh4u4p8d4")
c.Sayln(" https://10.r3.at/10r3.ics")
c.Sayln("")
c.Sayln(" Get more Info:")
c.Sayln(" https://wiki.realraum.at/unterkunft")
c.Sayln(" idle at irc://#realraum@irc.oftc.net")
fmt.Printf("client(%s) wants to come to the party!\n", c.Conn.RemoteAddr())
case "n":
fallthrough
case "no":
c.Sayln("")
c.Sayln(" Sorry to hear! You're missing out on a great experience.")
c.Sayln(" We trust in your ability to listen to great music and have lot's")
c.Sayln(" of fun with great food and tschunk at home though.")
fmt.Printf("client(%s) won't show up :(\n", c.Conn.RemoteAddr())
default:
c.Sayln(" yes or no?")

39
web/10r3.ics Normal file
View File

@ -0,0 +1,39 @@
BEGIN:VCALENDAR
VERSION:2.0
METHOD:PUBLISH
BEGIN:VTIMEZONE
TZID:/freeassociation.sourceforge.net/Europe/Vienna
X-LIC-LOCATION:Europe/Vienna
BEGIN:STANDARD
TZNAME:CET
DTSTART:19701029T030000
RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
END:STANDARD
BEGIN:DAYLIGHT
TZNAME:CEST
DTSTART:19700326T020000
RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VEVENT
UID:realraum Grid
Calendar-ba60f4c3f99b69e96569dcaa976cb7c3-853@grical.realraum.at
DTSTART;TZID=/freeassociation.sourceforge.net/Europe/Vienna:
20170318T180000
DTEND;TZID=/freeassociation.sourceforge.net/Europe/Vienna:
20170319T110000
CATEGORIES:realraum
CLASS:PUBLIC
DESCRIPTION:10 Jahre realraum müssen gefeiert werden. Die realraum Eröffungsfeier war heut vor genau 10 Jahren. Dewegen: PARTY PARTY PARTY PARTY PARTY
DTSTAMP:20161206T205434
X-LIC-ERROR;X-LIC-ERRORTYPE=VALUE-PARSE-ERROR:Can't parse as GEO value in
GEO property. Removing entire property: 47.0655764023\\\;15.4505753517
LOCATION:realraum, Brockmanngasse 15, 8010 Graz, Austria, Europe
SUMMARY:10 Jahre realraum Feier
URL:http://grical.realraum.at/e/show/853/
END:VEVENT
END:VCALENDAR

View File

@ -139,6 +139,21 @@ $(function () {
$body.off('keypress');
$output = $('.output4');
printLine($output, ' Great! We\'ll see you at the party then.');
printLine($output, ' expect DJ Music, Food, Tschunk, Games and more');
printLine($output, '');
printLine($output, ' 2017-03-18 from 18:00 till it\'s over');
printLine($output, '');
printLine($output, ' Find the place:');
printLine($output, ' realraum, Brockmanngasse 15, 8010 Graz');
printLine($output, ' http://osm.org/go/0Iz~oIpTW?m=&node=668061696');
printLine($output, '');
printLine($output, ' Save the date:');
printLine($output, ' https://plus.google.com/u/0/events/cqiq6003lok2qd9jcqmh4u4p8d4');
printLine($output, ' https://10.r3.at/10r3.ics');
printLine($output, '');
printLine($output, ' Get more Info:');
printLine($output, ' https://wiki.realraum.at/unterkunft');
printLine($output, ' idle at irc://#realraum@irc.oftc.net');
printLine($output, '');
printLine($output, ' https://github.com/realraum/telme10');