mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
#!/bin/sh
|
|
# HTML calendar shell script
|
|
#
|
|
# This file is part of REMIND.
|
|
# Copyright (C) 1992-1997 by Dianne Skoll
|
|
# Copyright (C) 1999-2000 by Roaring Penguin Software Inc.
|
|
|
|
echo "Content-Type: text/html"
|
|
echo ""
|
|
|
|
if [ "$1 $2" = " " ] ; then
|
|
$REMIND - <<'EOR'
|
|
set thismon monnum(today())
|
|
set thisyear year(today())
|
|
set nextmon iif(thismon+1 > 12, 1, thismon+1)
|
|
set nextyear iif(nextmon==1, thisyear+1, thisyear)
|
|
set lastmon iif(thismon-1 < 1, 12, thismon-1)
|
|
set lastyear iif(lastmon==12, thisyear-1, thisyear)
|
|
set nextmon mon(nextmon)
|
|
set lastmon mon(lastmon)
|
|
BANNER %
|
|
REM RUN $REMIND -iHTML=1 -p $DIR/hebdate.rem %m %y | $DIR/rem2html --forwurl "cal_dispatch?hebhtml+[nextmon]+[nextyear]" --backurl "cal_dispatch?hebhtml+[lastmon]+[lastyear]"
|
|
EOR
|
|
|
|
else
|
|
|
|
$REMIND - "$1" "$2" <<'EOR'
|
|
set thismon monnum(today())
|
|
set thisyear year(today())
|
|
set nextmon iif(thismon+1 > 12, 1, thismon+1)
|
|
set nextyear iif(nextmon==1, thisyear+1, thisyear)
|
|
set lastmon iif(thismon-1 < 1, 12, thismon-1)
|
|
set lastyear iif(lastmon==12, thisyear-1, thisyear)
|
|
set nextmon mon(nextmon)
|
|
set lastmon mon(lastmon)
|
|
BANNER %
|
|
REM RUN $REMIND -iHTML=1 -p $DIR/hebdate.rem %m %y | $DIR/rem2html --forwurl "cal_dispatch?hebhtml+[nextmon]+[nextyear]" --backurl "cal_dispatch?hebhtml+[lastmon]+[lastyear]"
|
|
EOR
|
|
|
|
fi
|
|
|
|
exit 0
|