X-Git-Url: https://git.plutz.net/?p=confetti;a=blobdiff_plain;f=actions%2Fupdate_attendee.sh;h=6125b2f2128666286f925ed8a67d777079e13363;hp=3e97f8797b5779177d852df79558ae4b19a088f9;hb=16deeb30487a64daff6475da5a008a061f581f92;hpb=2c32c30eb3174e209a9b2fe39bf010392239b27d diff --git a/actions/update_attendee.sh b/actions/update_attendee.sh index 3e97f87..6125b2f 100644 --- a/actions/update_attendee.sh +++ b/actions/update_attendee.sh @@ -1,5 +1,22 @@ #!/bin/zsh +# Copyright 2014 Paul Hänsch +# +# This file is part of Confetti. +# +# Confetti is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Confetti is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Confetti. If not, see . + cgi_post cgi_refdata @@ -37,7 +54,7 @@ case "$_POST[\"action\"]" in addfield) echo "$_POST[\"newfield\"]:\r" >>"$tempfile" echo "END:VCARD\r" >>"$tempfile" - echo -n "Location: http://$HTTP_HOST/?page=attendees${filter}${filtertype}${order}&edit=$card\n\n" + echo -n "Location: ?p=attendees${filter}${filtertype}${order}&edit=$card\n\n" ;; update) attendance=() @@ -57,16 +74,16 @@ case "$_POST[\"action\"]" in echo "END:VCARD\r" >>"$tempfile" mv "$tempfile" "$cardfile" - echo -n "Location: http://$HTTP_HOST/?page=attendees${filter}${filtertype}${order}#$card\n\n" + echo -n "Location: ?p=attendees${filter}${filtertype}${order}#$card\n\n" ;; cancel) rm "$tempfile" [ -f "$cardfile" ] \ - && echo -n "Location: http://$HTTP_HOST/?page=attendees${filter}${filtertype}${order}#$card\n\n" \ - || echo -n "Location: http://$HTTP_HOST/?page=attendees${filter}${filtertype}${order}\n\n" + && echo -n "Location: ?p=attendees${filter}${filtertype}${order}#$card\n\n" \ + || echo -n "Location: ?p=attendees${filter}${filtertype}${order}\n\n" ;; delete) rm "$tempfile" "$cardfile" - echo -n "Location: http://$HTTP_HOST/?page=attendees${filter}${filtertype}${order}\n\n" + echo -n "Location: ?p=attendees${filter}${filtertype}${order}\n\n" ;; esac