|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2812 ] | The Humanities Information Technologies (HIT) Centre |
---|---|
Organisation name | The Humanities Information Technologies (HIT) Centre |
Short name or acronym | The Humanities Information Technologies (HIT) Centre |
Organisation type | Center |
Activity type | Speech technology |
Address | Allégaten 27 |
Postal Code | N-5007 |
City | Bergen |
Country | Norway |
Phone | + +47 55 58 29 54 |
Fax | + +47 55 58 94 70 |
Organisation URL | http://www.hit.uib.no |
Logo | Description |
![]() |
The Faculty of Arts at the University of Bergen has therefore started a research programme in humanities information technologies, focusing on selected areas of research. This research programme is supported by a service center, the HIT Centre. The research programme specialises in four are as: + Language technology focusing on corpus linguistics, terminology and lexicography + Editorial philology + Massive digital resources + Software development + Infrastructure |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |