#!/bin/sh # ############################################################################################ # # Project: Beabloo - Hotspot Content # # Script: CGI That retrieve the brand zone id and inserts it into the OpenX # generated code # # Author: Oscar Herrera # Date: 2008-12-08 # Last Modify: 2008-12-08 # ############################################################################################ # # # Variables APP_DIR="/opt/beabloo" initContentType(){ echo "Content-type: text/html" echo "" echo "" } generateHTML(){ echo "" echo "" echo "" echo "shop-video" echo "" echo "" echo "" echo "" echo "" echo "" echo "" } # --------------------------------------- # Main # --------------------------------------- BRANDS_ZONEID=`cat ${APP_DIR}/data/conf/Global.properties | grep brand_zoneid | awk -F"=" '{print $2}'` initContentType generateHTML