|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1231 ] | Department of General and Applied Linguistics, University of Copenhagen |
---|---|
Organisation name | Department of General and Applied Linguistics, University of Copenhagen |
Short name or acronym | Department of General and Applied Linguistics, University of Copenhagen |
Organisation type | Center |
Activity type | Speech technology |
Address | Njalsgade 80 |
Postal Code | DK-2300 |
City | Copenhagen S |
Country | Denmark |
Phone | + +45 353 286 |
Fax | + +45 353 286 35 |
Organisation URL | http://www.cphling.dk |
Logo | Description |
![]() |
The Department of General and Applied Linguistics is part of the Faculty of Letters. The department was founded in 1988 by an amalgamation of the Institute of Linguistics, the Institute of Phonetics, the Institute of Applied and Mathematical Linguistics, and the Center for Audiologopedics. The amalgamation of these formerly autonomous units has resulted in a department with a wide selection of more or less intimately connected activities. Common to all is a close association with general linguistic theory and methodology (linguistics taken in its widest sense). It is thus considered important that research on Danish and other languages contribute to general theoretical and typological language descriptions, just as general linguistic theory and methodology are being investigated as a natural tool for analytical and descriptive linguistic research. Apart from the more theoretical disciplines, the department also hosts a number of applied ones. |
Contact | |
Name | Professor, dr. phil. Carsten Elbro |
Function | Professor |
Department | General and Applied Linguistics |
ce_(on)_cphling.dk | |
Phone | + +45 35 32 86 56 |
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" |