|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3048 ] | IDS Mannheim |
---|---|
Organisation name | Institut für Deutsche Sprache |
Short name or acronym | IDS Mannheim |
Organisation type | non-profit governmental research institute |
Activity type | linguistics |
Address | R5, 6-13 |
Postal Code | 68161 |
City | Mannheim |
Country | Germany |
Phone | + +49-621-1581-0 |
Fax | + +49-621-1581-200 |
vorstand_(on)_ids-mannheim.de | |
Organisation URL | http://www.ids-mannheim.de |
Logo | Description |
![]() |
The Institute for the German Language (IDS) in Mannheim was founded in 1964. It is the central non-university institution for the study and documentation of current usage and recent history of the German language. The IDS is financed jointly by the Federal Government and the state of Baden-Württemberg. Our departments do not teach the German language, but pursue mainly long-term projects which involve large-scale collaborative research. In the department of Grammar the grammatical structures of German are identified and described. The department of Lexical Studies carries out research into lexicology and lexicography. It works with the building of text corpora, which can serve as a basis for research into present-day German, and also into the recent history and development of the language, and comparisons with other languages. The department of Pragmatics/Language Use undertakes research into language use and language variation, i.e. the existence and development of difference in language. One constituent of this work is the compilation of spoken language corpora. |
Contact | |
Name | Cyril Belica |
Function | Head of the Corpus Technology Unit |
Department | Lexical Studies |
belica_(on)_ids-mannheim.de | |
Phone | + +49-621-1581-169 |
Fax | + +49-621-1581-200 |
![]() |
Last update: 2002-04-22 15:18:49 #!/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" |