#!/bin/sh #------------------------------------------------------------------------------ # /usr/local/htdocs/header.cgi - print list header # # Copyright (c) 2003-2010 Andreas Pohl, apohl(at)ibp-consult(dot)com # Copyright (c) 2011-2018 The Eisfair Team, team(at)eisfair(dot)org # # Creation: 2006-07-01 ap # Last Update: $Id$ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #------------------------------------------------------------------------------ myname=`basename $0` # HTML-Header echo 'Content-Type: text/html; charset=iso-8859-1' echo 'Cache-control: no-store' # HTTP/1.1 (or no-cache?) echo 'Pragma: no-cache' # HTTP/1.0 echo echo '' echo 'List Packages' echo '' echo '' echo '' echo '' echo ' ' echo ' " echo ' ' echo ' ' cat ./table echo ' ' echo ' ' echo ' ' echo ' ' echo '

Paketliste

' echo '
' date +"%a, %d.%m.%Y %H:%M:%S" echo '
PackageVersionDatePack-Eis
' echo '
' echo '' echo '' exit 0