]> git.plutz.net Git - confetti/blobdiff - cards/export_card.sh
vcard exporter
[confetti] / cards / export_card.sh
index d6ea2937304bb0ffeae647358546a309db429d56..e9356a90610e0bf3d7b326b0fd394aec7b7470af 100755 (executable)
 # You should have received a copy of the GNU Affero General Public License
 # along with Confetti.  If not, see <http://www.gnu.org/licenses/>. 
 
-echo -n "Content-Type: text/vcard;charset=utf-8\n\n"
-card="${_GET[card]}"
-cat "$_DATA/vcard/$card"
+card="$(GET card |PATH)"
+cardfile="$_DATA/vcard/${card##*/}"
+
+if [ -f "$cardfile" ]; then 
+  . $_EXEC/cgilite/file.sh
+  FILE "$cardfile" "text/vcard/charset=utf-8"
+else
+fi