next up previous contents
Next: B Listing zum Script Up: No Title Previous: Literatur

A Listing zur Inidatei .mnmlit2html.ini

# ---------------------------------------------------
#            TEIL 1
# ---------------------------------------------------

## Latex2html findet sich hier:
$LATEX2HTML_DIR = "/usr/local/dist/bin";

## Ort, an dem  die fertigen HTML-Dokumente
## abgelegt werden.
$HTML_DATA_DIR = "/proj/Literatur/public-htdocs/MNMPub";

## Literaturverzeichnis, hier werden die Dokumente abgelegt,
## die zur Bearbeitung durch mnnlit2html anstehen.
$INPUT_DIR = "/proj/Literatur/MNM/Upload";

## Bibliographie-Verzeichnis,
## enthaelt Informationen ueber die
## einzelnen Dokumente und deren Verfassern
$BIB_DIR = "/proj/Literatur/MNM/Bib";

## Temporaeres Verzeichnis, dieses sollte
## ausreichend Platz zur Verfuegung stellen
$TMP = "/tmp";

## Bezeichnet den HTML-Befehl, der Haupteil und
## Fuss voneinander trennt. Wird in latex2html.config
## gesetzt und sollte entsprechend uebernommen werden,
## damit trotz fehlendem Abstract eine Zusammenfassung
## korrekt gefunden wird.
## Default-Eintrag ist fuer latex2html-{96.1,97.1} gueltig
$CHILDLINE = "<BR>.*<HR>";


# -----------------------------------------------------
#          Teil 2
# -----------------------------------------------------

## ZUSAMMENFASSUNG
@ZUSAMMENFASSUNG = ("Einf\"uhrung", "Zusammenfassung");

## 
## Die erste Zeile gibt an, nach welchen Feldern
## in den einzelnen Bibliographie-Eintragen gesucht wird.
## Die zweite Zeile muss Eintraege aus der ersten enthalten
## und gibt an, welche Eintraege publiziert werden 
##
## ARTICLE
@article =
   ("author","title","journal","year","type","month","note","key");
@article_to_publish =
   ("author","title","journal","month","year");

## BOOK
@book =
   ("author","editor","title","publisher","year","volume",
    "series","address","edition","month","note","key");
@book_to_publish =
   ("author","editor","title","publisher","year","volume",
    "series","address","edition","month","note","key");

## BOOKLET
@booklet =
   ("title","author","howpublished","address","month",
    "year","note","key");
@booklet_to_publish =
   ("title","author","howpublished","address","month",
    "year","note","key");

## CONFERENCE
@conference =
   ("author","title","book","title","year","editor","pages",
    "organization","publisher","address","month","note","key");
@conference_to_publish =
   ("author","title","book","title","year","editor","pages",
    "organization","publisher","address","month","note","key");

## INBOOK
@inbook =
   ("author","editor","title","chapter","pages","publisher",
    "year","volume","series","address","edition","month","note","key");
@inbook_to_publish =
   ("author","editor","title","chapter","pages","publisher",
    "year","volume","series","address","edition","month","note","key");

## INCOLLECTION
@incollection =
   ("author","title","booktitle","year","publisher","editor",
    "chapter","pages","address","month","note","key");
@incollection_to_publish =
   ("author","title","booktitle","year","publisher","editor",
    "chapter","pages","month");

## INPROCEEDINGS
@inproceedings =
   ("author","title","booktitle","publisher","school",
    "year","type","month","key");
@inproceedings_to_publish =
   ("author","title","booktitle","publisher","school",
    "month","year");

## MANUAL
@manual =
   ("title","author","organization","address","edition",
    "month","year","note","key");
@manual_to_publish =
   ("title","author","organization","address","edition",
    "month","year","note","key");

## MASTERSTHESIS
@mastersthesis =
   ("author","title","school","year","type","month","key");
@mastersthesis_to_publish =
   ("author","title","school","month","year");

## MISC
@misc =
   ("author","title","howpublished","month",
    "year","note","key");
@misc_to_publish =
   ("author","title","howpublished","month",
    "year","note","key");

## PHDTHESIS
@phdthesis =
   ("author","title","school","year","type","address",
    "month","note","key");
@phdthesis_to_publish =
   ("note","author","title","school","year","address");

## PROCEEDINGS
@proceedings =
   ("title","year","editor","publisher","organization",
    "address","month","note","key");
@proceedings_to_publish =
   ("title","year","editor","publisher","organization",
    "address","month","note","key");

## TECHREPORT
@techreport =
   ("author","title","institution","year","type",
    "month","key");
@techreport_to_publish =
   ("author","title","institution","month","year");

## UNPUBLISHED
@unpublished =
   ("author","title","note","month","year","key");
@unpublished_to_publish =
   ("author","title","note","month","year","key");


# --------------------------------------------------------
#             Teil 3
# --------------------------------------------------------

## MONTHS
## This is an associative array containing the names of
## each month of the year. At the left you can see the
## abbreviation (3 chars long) and at the right the
## long Version.

## The german version
## (comment it out, if you prefer the english version below)
%months = (
        "jan"     => "Januar",
        "feb"     => "Februar",
        "mar"     => "M\ä\;rz",
        "apr"     => "April",
        "may"     => "Mai",
        "jun"     => "Juni",
        "jul"     => "Juli",
        "aug"     => "August",
        "sep"     => "September",
        "oct"     => "Oktober",
        "nov"     => "November",
        "dec"     => "Dezember",
);

## The english version: (comment it out if necessary)
#%months = (
#       "jan"     =>      "January",
#       "feb"     =>      "February",
#       "mar"     =>      "March",
#       "apr"     =>      "April",
#       "may"     =>      "May",
#       "jun"     =>      "June",
#       "jul"     =>      "July",
#       "aug"     =>      "August",
#       "sep"     =>      "September",
#       "oct"     =>      "October",
#       "nov"     =>      "November",
#       "dec"     =>      "December",
#);


## TYPES
## This is an associative array containing the type
## of a document on the left and its header on the right.
%types = (
   "diplomarbeiten"  => "Diplomarbeiten / Master's Theses",
   "dissertationen"  => "Dissertationen / Ph.D. Theses",
   "fopras"          => "Systementwicklungsprojekte / Advanced Practicals",
   "projekte"        => "Projektberichte / Project Reports",
   "publikationen"   => "Publikationen / Publications"
);


Copyright Munich Network Management Team