summaryrefslogtreecommitdiff
path: root/meetup
diff options
context:
space:
mode:
authorJürgen Schweizer <oe6jue@oevsv.at>2019-02-20 20:23:00 +0100
committerJürgen Schweizer <oe6jue@oevsv.at>2019-02-20 20:23:00 +0100
commitb85afd8b281f5de7e956bf785c6ae2a8ccce1201 (patch)
tree0703299f217a5dd41f1dbfda7f046d35315200af /meetup
parent27cddbf97ff4b191f90400d71512194497c96554 (diff)
correct filename
Diffstat (limited to 'meetup')
-rwxr-xr-xmeetup/gen_dates.sh2
-rw-r--r--meetup/gen_dates2.sh76
2 files changed, 0 insertions, 78 deletions
diff --git a/meetup/gen_dates.sh b/meetup/gen_dates.sh
index 6e73c02..5b9160d 100755
--- a/meetup/gen_dates.sh
+++ b/meetup/gen_dates.sh
@@ -11,8 +11,6 @@ DEBUG=0
# where to put the output files?
NEXT_FILE="next.html"
AFTER_FILE="after.html"
-STANDARD_FILE="standard.html"
-TECHCORE_FILE="techcore.html"
DOW=`date +"%u"`
if [ $DOW -eq 1 ]; then
diff --git a/meetup/gen_dates2.sh b/meetup/gen_dates2.sh
deleted file mode 100644
index 5b9160d..0000000
--- a/meetup/gen_dates2.sh
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/sh
-# generates the upcoming meetups for Funkfeuer Graz Homepage
-#
-# this script should be called by cron every day (night)
-# how far in the future should i go?
-LIMIT=3
-
-# uncomment to enable debug
-DEBUG=0
-
-# where to put the output files?
-NEXT_FILE="next.html"
-AFTER_FILE="after.html"
-
-DOW=`date +"%u"`
-if [ $DOW -eq 1 ]; then
- DOM=`date +"%e"`
- TS=`date +"%s"`
-else
- DOM=`date --date="next monday" +"%e"`
- TS=`date --date="next monday" +"%s"`
-fi
-
-MEETUPS=""
-MEETUPTYPES=""
-CNT=0
-while true; do
- if [ -n "$DEBUG" ]; then echo -n "check day($TS): "`date --date="@$TS" +"%d.%m.%Y"`; fi
-
- if [ $DOM -le 7 ] || ([ $DOM -ge 15 ] && [ $DOM -le 21 ]); then
- if [ $DOM -le 7 ]; then
- MTYP="Tech/Core"
- else
- MTYP="gem&uuml;tliches"
- fi
- if [ -n "$DEBUG" ]; then echo " -> ok $MTYP"; fi
- MEETUPS="$MEETUPS $TS"
- MEETUPTYPES="$MEETUPTYPES $MTYP"
- CNT=$((CNT + 1))
- if [ $CNT -ge $LIMIT ]; then
- break;
- fi
- else
- if [ -n "$DEBUG" ]; then echo ""; fi
- fi
- TS=$((TS + (7 * 24 * 3600)))
- DOM=`date --date="@$TS" +"%e"`
-done
-
-set -- $MEETUPS
-NEXT=$1
-shift
-FUTURE=$@
-
-set -- $MEETUPTYPES
-NEXTMTYP=$1
-shift
-FUTUREMTYP=$@
-
-date --date="@$NEXT" +"%d.%m.%Y" > "$NEXT_FILE.new"
-CNT=0
-echo "<ul>" > "$AFTER_FILE.new"
-for meetup in $FUTURE; do
- set -- $FUTUREMTYP
- mtext=$1
- shift
- FUTUREMTYP=$@
-
- echo " <li>"`date --date="@$meetup" +"%d.%m.%Y"`": $mtext Treffen </li>" >> "$AFTER_FILE.new"
- CNT=$((CNT + 1))
-done
-echo "</ul>" >> "$AFTER_FILE.new"
-mv "$NEXT_FILE.new" "$NEXT_FILE"
-mv "$AFTER_FILE.new" "$AFTER_FILE"
-
-exit 0