Init
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.env
|
||||
40
Dockerfile
Normal file
@@ -0,0 +1,40 @@
|
||||
FROM php:7.4-apache
|
||||
|
||||
# Install system dependencies for PHP extensions
|
||||
RUN apt-get update && apt-get install -y \
|
||||
socat \
|
||||
libc-client-dev \
|
||||
libkrb5-dev \
|
||||
libsodium-dev \
|
||||
libsqlite3-dev \
|
||||
libxslt-dev \
|
||||
libcurl4-openssl-dev \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Configure and install PHP extensions
|
||||
RUN docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
|
||||
&& docker-php-ext-install -j$(nproc) \
|
||||
mysqli \
|
||||
pdo_mysql \
|
||||
sodium \
|
||||
pdo_sqlite \
|
||||
xsl \
|
||||
fileinfo \
|
||||
imap \
|
||||
mbstring \
|
||||
gettext \
|
||||
curl \
|
||||
sockets
|
||||
|
||||
# Enable opcache
|
||||
RUN docker-php-ext-enable opcache
|
||||
|
||||
# Copy your application source code into the container's web root
|
||||
COPY src/ /var/www/html/
|
||||
|
||||
# Copy and set permissions for the entrypoint script
|
||||
COPY entrypoint.sh /usr/local/bin/
|
||||
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||
|
||||
# Set the entrypoint to our new script
|
||||
ENTRYPOINT ["entrypoint.sh"]
|
||||
59727
db-dump/initial_db.sql
Normal file
40
docker-compose.yml
Normal file
@@ -0,0 +1,40 @@
|
||||
services:
|
||||
pantoiadb:
|
||||
image: mysql:5.7
|
||||
container_name: mysql-db-pantoia
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
|
||||
MYSQL_DATABASE: ${DB_NAME}
|
||||
MYSQL_USER: ${DB_USER}
|
||||
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
|
||||
volumes:
|
||||
- pantoia-db-data:/var/lib/mysql
|
||||
- ./db-dump:/docker-entrypoint-initdb.d
|
||||
networks:
|
||||
- pantoia-app-network
|
||||
|
||||
pantoia:
|
||||
build: .
|
||||
container_name: web-pantoia
|
||||
restart: always
|
||||
depends_on:
|
||||
- pantoiadb
|
||||
environment:
|
||||
DB_HOST: ${DB_HOST}
|
||||
DB_USER: ${DB_USER}
|
||||
DB_PASS: ${DB_PASS}
|
||||
DB_NAME: ${DB_NAME}
|
||||
networks:
|
||||
- pantoia-app-network
|
||||
- caddynet
|
||||
|
||||
networks:
|
||||
pantoia-app-network:
|
||||
driver: bridge
|
||||
caddynet:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
pantoia-db-data:
|
||||
external: true
|
||||
8
entrypoint.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# Start the TCP proxy in the background for "localhost" DB connection if needed
|
||||
socat TCP-LISTEN:3306,fork TCP:db:3306 &
|
||||
|
||||
# Execute the original command for the container (start Apache)
|
||||
apache2-foreground
|
||||
6
src/.directory
Normal file
@@ -0,0 +1,6 @@
|
||||
[Dolphin]
|
||||
SortOrder=1
|
||||
SortRole=modificationtime
|
||||
Timestamp=2018,12,6,2,15,44
|
||||
Version=4
|
||||
ViewMode=1
|
||||
5
src/.user.ini
Normal file
@@ -0,0 +1,5 @@
|
||||
[PHP]
|
||||
open_basedir="C:/Inetpub/vhosts/pantoia.de\;C:\Windows\Temp\"
|
||||
error_reporting=22519
|
||||
display_errors=on
|
||||
error_log="C:\Inetpub\vhosts\pantoia.de\logs\php_errors\pantoia.de\php_error.log"
|
||||
9
src/.well-known/acme-challenge/web.config
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<system.webServer>
|
||||
<staticContent>
|
||||
<remove fileExtension="." />
|
||||
<mimeMap fileExtension="." mimeType="text/plain" />
|
||||
</staticContent>
|
||||
</system.webServer>
|
||||
</configuration>
|
||||
BIN
src/Anthologien/Corvinus1886/imagines/background.gif
Normal file
|
After Width: | Height: | Size: 25 KiB |
90
src/Anthologien/Corvinus1886/index.html
Normal file
@@ -0,0 +1,90 @@
|
||||
<!-- IE in quirks mode -->
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Hermann Corvinus: Schiller'sche und Göthe'sche Gedichte - Seitenbildedition</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="copyright" content="Bernd Platzdasch 2010">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2010-10-17">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/index_print.css">
|
||||
<script src="../../js/rom2arab.js" type="text/javascript"></script>
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<style type="text/css">
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!--[if IE]><style type="text/css">
|
||||
@media screen {
|
||||
body { overflow: hidden; }
|
||||
div#corpus { height: 100%; overflow: auto; }
|
||||
body { padding-bottom: 2.5em; }
|
||||
div#navigation { background: transparent; }
|
||||
}
|
||||
</style><![endif]-->
|
||||
</head>
|
||||
<body onload="geheZu();">
|
||||
<div id="navigation">
|
||||
<form name="formular" onsubmit="seitenzahl(); return false;">
|
||||
<input class="submit" type="button" value="Seite" onclick="seitenzahl();">
|
||||
<input class="seitenzahleingabe" type="text" name="inpSeite" size="2" maxlength="2">
|
||||
<input class="buNavigation" type="button" value="|<<" onclick="anfang();">
|
||||
<input class="buNavigation" type="button" value="<<" onclick="rueckwaerts();">
|
||||
<input class="buNavigation" type="button" value="<" onclick="vorherige();">
|
||||
<input class="buNavigation" type="button" value=">" onclick="naechste();">
|
||||
<input class="buNavigation" type="button" value=">>" onclick="vorwaerts();">
|
||||
<input class="buNavigation" type="button" value=">>|" onclick="ende();">
|
||||
<select size="1" name="selIvz" onchange="zeigeInhalt();">
|
||||
<option value="Inhalt:" style="font-weight: bold;" selected>  Inhalt:</option>
|
||||
<option value="1">  Titelseite  </option>
|
||||
<option value="3">  Der Taucher, S. 3  </option>
|
||||
<option value="14">  Hektors Abschied, S. 14  </option>
|
||||
<option value="15">  Des Mädchens Klage, S. 15  </option>
|
||||
<option value="15">  Wanderers Nachtlied, S. 15  </option>
|
||||
<option value="16">  Trost in Thränen, S. 16  </option>
|
||||
<option value="17">  Willkommen und Abschied, S. 17  </option>
|
||||
<option value="18">  Neue Liebe, neues Leben, S. 18  </option>
|
||||
</select>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulinkaktuell" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulink" href="vita.html">H. Corvinus</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="hauptbereich_1">
|
||||
<div>
|
||||
<form name="sprung"><input type="button" name="sprungmarke" class="buSprungmarke"
|
||||
style="border: 0 solid white; height: 1px;">
|
||||
</form>
|
||||
<img class="seite" name="seitenbild" style="
|
||||
-moz-box-shadow: 0px 0px 0px lightgrey; /* FF3.5+ */
|
||||
-webkit-box-shadow: 0px 0px 0px lightgrey; /* Saf3.0+, Chrome */
|
||||
box-shadow: 0px 0px 0px lightgrey; /* Opera 10.5, IE 9.0 */border: none;">
|
||||
</div>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
128
src/Anthologien/Corvinus1886/js/nav.js
Normal file
@@ -0,0 +1,128 @@
|
||||
// Corvinus1886
|
||||
// Version 17.10.2010
|
||||
// Copyright (C) 2007 Bernd Platzdasch
|
||||
var id = "cor";
|
||||
var dir = "paginae/Corvinus1886_";
|
||||
var ext = ".jpg";
|
||||
var es = 1;
|
||||
var ls = 18;
|
||||
var nr = 1;
|
||||
var sw = 5;
|
||||
var sf = 1;
|
||||
var asnz = 0;
|
||||
var ses = 1;
|
||||
var sles = 18;
|
||||
var asvz = 0;
|
||||
var lsr = 0;
|
||||
var sls = lsr + sles;
|
||||
var tit = "Hermann Corvinus: Schiller'sche und Göthe'sche Gedichte in lateinischer Uebertragung.";
|
||||
var utit = "Wissenschaftliche Beilage zum Jahresbericht des Herzoglichen Gymnasiums Martino-Katharineum,<br>Braunschweig 1886. – 18 S. / dt.-lat.";
|
||||
function ziffernWeiche() {
|
||||
var inp = document.formular.inpSeite.value;
|
||||
var reg = /^[0-9]+$/i;
|
||||
if (reg.exec(inp)) {inp = Number(inp)+lsr; zurSeite(inp); }
|
||||
reg = /^[IVXLC]+$/i;
|
||||
if (reg.exec(inp)) {
|
||||
Number(inp);
|
||||
inp = rom2arab(inp);
|
||||
inp += asvz;
|
||||
if (inp > lsr) { inp = lsr; }
|
||||
zurSeite(inp); }
|
||||
}
|
||||
|
||||
function zeigeInhalt(select) {
|
||||
var x = document.formular.selIvz.value;
|
||||
if (x == "Inhalt:") { return ; }
|
||||
nr = Number(x);
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function formNr() {
|
||||
var m = nr;
|
||||
m = m.toString();
|
||||
if (m.length == 1) m = '00' + m;
|
||||
if (m.length == 2) m = '0' + m;
|
||||
return m;
|
||||
}
|
||||
|
||||
function zurSeite(x) {
|
||||
x = Number(x);
|
||||
y = ses;
|
||||
z = sls;
|
||||
if (sf == 2) {
|
||||
if ((x%2) == 0) { x = x/2; } else { x = (x-1)/2 }
|
||||
if ((y%2) == 0) { y = y/2; } else { y = (y-1)/2 }
|
||||
if ((z%2) == 0) { z = z/2; } else { z = (z-1)/2 }
|
||||
}
|
||||
if ((x >= y) && (x <= z) ) { nr = ls-asnz-(z-x); }
|
||||
if (x > z) { nr = ls-asnz; }
|
||||
if (x < y) { nr = ls-asnz-(z-y); }
|
||||
}
|
||||
|
||||
function geheZu() {
|
||||
var die_url = window.location.href;
|
||||
if (die_url.indexOf("?sbd=") > -1) {
|
||||
nr = die_url.substring(die_url.indexOf("?")+5,die_url.length);
|
||||
} else {
|
||||
nr = es;
|
||||
}
|
||||
zeige();
|
||||
}
|
||||
|
||||
function anfang() {
|
||||
nr = es;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function rueckwaerts() {
|
||||
if ((nr - sw) >= es) {
|
||||
nr -= sw;
|
||||
zeige();
|
||||
} else {
|
||||
anfang();
|
||||
}
|
||||
}
|
||||
|
||||
function vorherige() {
|
||||
if (nr > es) {
|
||||
nr = nr-1;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function naechste() {
|
||||
if (nr < ls) {
|
||||
++nr;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function vorwaerts() {
|
||||
if ((nr + sw) <= ls) {
|
||||
nr += sw;
|
||||
zeige();
|
||||
} else {
|
||||
ende();
|
||||
}
|
||||
}
|
||||
|
||||
function ende() {
|
||||
nr = ls;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function zeige() {
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.formular.inpSeite.value = "";
|
||||
document.formular.selIvz.options[0].selected = "true";
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function seitenzahl() {
|
||||
ziffernWeiche();
|
||||
zeige();
|
||||
document.formular.inpSeite.focus();
|
||||
}
|
||||
|
||||
|
||||
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_001.jpg
Normal file
|
After Width: | Height: | Size: 105 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_002.jpg
Normal file
|
After Width: | Height: | Size: 151 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_003.jpg
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_004.jpg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_005.jpg
Normal file
|
After Width: | Height: | Size: 127 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_006.jpg
Normal file
|
After Width: | Height: | Size: 138 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_007.jpg
Normal file
|
After Width: | Height: | Size: 139 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_008.jpg
Normal file
|
After Width: | Height: | Size: 135 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_009.jpg
Normal file
|
After Width: | Height: | Size: 127 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_010.jpg
Normal file
|
After Width: | Height: | Size: 127 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_011.jpg
Normal file
|
After Width: | Height: | Size: 126 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_012.jpg
Normal file
|
After Width: | Height: | Size: 118 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_013.jpg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_014.jpg
Normal file
|
After Width: | Height: | Size: 153 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_015.jpg
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_016.jpg
Normal file
|
After Width: | Height: | Size: 140 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_017.jpg
Normal file
|
After Width: | Height: | Size: 161 KiB |
BIN
src/Anthologien/Corvinus1886/paginae/Corvinus1886_018.jpg
Normal file
|
After Width: | Height: | Size: 138 KiB |
90
src/Anthologien/Corvinus1886/vita.html
Normal file
@@ -0,0 +1,90 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Hermann Corvinus: Schiller'sche und Göthe'sche Gedichte - Wer war Hermann Corvinus?</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="copyright" content="Bernd Platzdasch 2011">
|
||||
<meta name="date" content="2011-02-14">
|
||||
<script src="js/nav.js"></script>
|
||||
<link rel="stylesheet" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" href="../../css/buchscans/vita.css">
|
||||
<link rel="stylesheet" media="print" href="../../css/buchscans/vita_print.css">
|
||||
<style>
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script>
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulink" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulinkaktuell" href="vita.html">H. Corvinus</a> |
|
||||
<!-- <a class="menulink" href="rezeption.html">Rezeption</a> | -->
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="druckkopf">
|
||||
<p id="siegel">
|
||||
www.pantoia.de/Anthologien/Corvinus1886/vita.html<br>
|
||||
Letzte Bearbeitung: 26.2.2021<br>
|
||||
Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
</div>
|
||||
<div id="hauptbereich_2">
|
||||
<h1 class="text">Wer war Hermann Corvinus?</h1>
|
||||
<p class="text">
|
||||
Hermann Corvinus, geboren am 6.5.1845 in Offleben, gestorben 1917,
|
||||
studierte nach dem Besuch des Pro- und Obergymnasiums in Braunschweig in
|
||||
Göttingen und Berlin klassische Philologie, daneben betrieb er philosophische
|
||||
Studien. 1870 wurde er am Martino-Katharineum in Braunschweig als Kollaborator
|
||||
angestellt, 1874 wurde er zum Oberlehrer befördert. Zusammen mit seinem
|
||||
Kollegen Konrad Koch (1845-1911) organisierte er 1872 erstmals in Deutschland Schulspiele.
|
||||
Aufgrund eines Augen- und Nervenleidens
|
||||
wurde er am 1.11.1888 in den zeitweiligen Ruhestand versetzt, gleichzeitig
|
||||
wurde ihm der Professorentitel zuerkannt.
|
||||
</p>
|
||||
|
||||
<p class="anm">
|
||||
Vgl. Franz Kössler: Personenlexikon von Lehrern des 19. Jahrhunderts. Berufsbiographien aus Schul-Jahresberichten und Schulprogrammen
|
||||
1825-1918 mit Veröffentlichungsverzeichnissen, Band: Cadura-Czygan, Vorabdruck (Preprint), Stand: 18.12.2007, Universitätsbibliothek Giessen, Giessener Elektronische Bibliothek 2008, Online-Publikation: <a href="http://geb.uni-giessen.de/geb/volltexte/2008/6109/">http://geb.uni-giessen.de/geb/volltexte/2008/6109/</a> (14.2.2011), S. 70; Kurt Hoffmeister: Zeitreise durch die Braunschweiger Sportgeschichte, Norderstedt 2010, S. 16.
|
||||
</p>
|
||||
|
||||
|
||||
<h1 class="text">Verzeichnis seiner Schriften</h1>
|
||||
|
||||
<p class="einr">
|
||||
<span class="hvhbg"><a href="https://nbn-resolving.org/urn:nbn:de:bvb:824-dtl-0000033032">HERBSTGEFÜHL.</a></span> Gedicht von Goethe, in: Programm des Gymnasiums Martino-Catharineum zu Braunschweig, Braunschweig <strong>1878</strong>, S. 1-14.
|
||||
</p>
|
||||
|
||||
<p class="einr">
|
||||
<span class="hvhbg"><a href="https://books.google.de/books?id=t_13PgpP1NoC">EINE BETRACHTUNG</a></span> am Sedantage. Programm des Herzoglichen Gymnasiums Martino-Katharineum zu Braunschweig, Braunschweig <strong>1884</strong>.
|
||||
</p>
|
||||
|
||||
<p class="einr">
|
||||
<span class="hvhbg"><a href="index.html">SCHILLER'SCHE</a></span> und Göthe'sche Gedichte in lateinischer Uebertragung. Wissenschaftliche Beilage zum Jahresbericht des Herzoglichen Gymnasiums Martino-Katharineum in Braunschweig, Braunschweig <strong>1886</strong>.
|
||||
</p>
|
||||
|
||||
<p class="copyright">
|
||||
Letzte Bearbeitung: 16.2.2021 – Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
src/Anthologien/Crain1858/imagines/background.gif
Normal file
|
After Width: | Height: | Size: 25 KiB |
89
src/Anthologien/Crain1858/index.html
Normal file
@@ -0,0 +1,89 @@
|
||||
<!-- IE in quirks mode -->
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Carl Ferdinand Crain: Metrische Uebersetzungen ins Griechische und Lateinische - Seitenbildedition</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="copyright" content="Bernd Platzdasch 2010">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2010-10-31">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/index_print.css">
|
||||
<script src="../../js/rom2arab.js" type="text/javascript"></script>
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<style type="text/css">
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!--[if IE]><style type="text/css">
|
||||
@media screen {
|
||||
body { overflow: hidden; }
|
||||
div#corpus { height: 100%; overflow: auto; }
|
||||
body { padding-bottom: 2.5em; }
|
||||
div#navigation { background: transparent; }
|
||||
}
|
||||
</style><![endif]-->
|
||||
</head>
|
||||
<body onload="geheZu();">
|
||||
<div id="navigation">
|
||||
<form name="formular" onsubmit="seitenzahl(); return false;">
|
||||
<input class="submit" type="button" value="Seite" onclick="seitenzahl();">
|
||||
<input class="seitenzahleingabe" type="text" name="inpSeite" size="3" maxlength="3">
|
||||
<input class="buNavigation" type="button" value="|<<" onclick="anfang();">
|
||||
<input class="buNavigation" type="button" value="<<" onclick="rueckwaerts();">
|
||||
<input class="buNavigation" type="button" value="<" onclick="vorherige();">
|
||||
<input class="buNavigation" type="button" value=">" onclick="naechste();">
|
||||
<input class="buNavigation" type="button" value=">>" onclick="vorwaerts();">
|
||||
<input class="buNavigation" type="button" value=">>|" onclick="ende();">
|
||||
<select size="1" name="selIvz" onchange="zeigeInhalt();">
|
||||
<option value="Inhalt:" style="font-weight: bold;" selected>  Inhalt:</option>
|
||||
<option value="1">  Titelseite</option>
|
||||
<option value="3">  Vorwort</option>
|
||||
<option value="9">  ΙΦΙΓΕΝΕΙΑ</option>
|
||||
<option value="20">  ΙΩΑΝΝΑ</option>
|
||||
<option value="24">  ΙΣΑΒΕΛΛΑ</option>
|
||||
<option value="26">  Gemma Polycratis </option>
|
||||
<option value="28">  Partitio rerum terrestrium   </option>
|
||||
<option value="29">  Dumus rex arborum</option>
|
||||
<option value="30">  Sententiae</option>
|
||||
</select>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulinkaktuell" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulink" href="vita.html">C. F. Crain</a> |
|
||||
<a class="menulink" href="rezeption.html">Rezeption</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="hauptbereich_1">
|
||||
<div>
|
||||
<form name="sprung"><input type="button" name="sprungmarke" class="buSprungmarke"
|
||||
style="border: 0 solid white; height: 1px;">
|
||||
</form>
|
||||
<img class="seite" name="seitenbild">
|
||||
</div>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
128
src/Anthologien/Crain1858/js/nav.js
Normal file
@@ -0,0 +1,128 @@
|
||||
// Crain1858
|
||||
// Version 17.10.2010
|
||||
// Copyright (C) 2007 Bernd Platzdasch
|
||||
var id = "crai";
|
||||
var dir = "paginae/Crain1858_";
|
||||
var ext = ".jpg";
|
||||
var es = 1;
|
||||
var ls = 31;
|
||||
var nr = 1;
|
||||
var sw = 10;
|
||||
var sf = 1;
|
||||
var asnz = 0;
|
||||
var ses = 1;
|
||||
var sles = 23;
|
||||
var asvz = 0;
|
||||
var lsr = 6;
|
||||
var sls = lsr + sles;
|
||||
var tit = "Metrische Uebersetzungen ins Griechische und Lateinische aus Schiller und Göthe.";
|
||||
var utit = "Von C. F. Crain, Schulprogramm für 1858,<br> Wismar 1858. – V + 23 S. / gr., lat.";
|
||||
function ziffernWeiche() {
|
||||
var inp = document.formular.inpSeite.value;
|
||||
var reg = /^[0-9]+$/i;
|
||||
if (reg.exec(inp)) {inp = Number(inp)+lsr; zurSeite(inp); }
|
||||
reg = /^[IVXLC]+$/i;
|
||||
if (reg.exec(inp)) {
|
||||
Number(inp);
|
||||
inp = rom2arab(inp);
|
||||
inp += asvz;
|
||||
if (inp > lsr) { inp = lsr; }
|
||||
zurSeite(inp); }
|
||||
}
|
||||
|
||||
function zeigeInhalt(select) {
|
||||
var x = document.formular.selIvz.value;
|
||||
if (x == "Inhalt:") { return ; }
|
||||
nr = Number(x);
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function formNr() {
|
||||
var m = nr;
|
||||
m = m.toString();
|
||||
if (m.length == 1) m = '00' + m;
|
||||
if (m.length == 2) m = '0' + m;
|
||||
return m;
|
||||
}
|
||||
|
||||
function zurSeite(x) {
|
||||
x = Number(x);
|
||||
y = ses;
|
||||
z = sls;
|
||||
if (sf == 2) {
|
||||
if ((x%2) == 0) { x = x/2; } else { x = (x-1)/2 }
|
||||
if ((y%2) == 0) { y = y/2; } else { y = (y-1)/2 }
|
||||
if ((z%2) == 0) { z = z/2; } else { z = (z-1)/2 }
|
||||
}
|
||||
if ((x >= y) && (x <= z) ) { nr = ls-asnz-(z-x); }
|
||||
if (x > z) { nr = ls-asnz; }
|
||||
if (x < y) { nr = ls-asnz-(z-y); }
|
||||
}
|
||||
|
||||
function geheZu() {
|
||||
var die_url = window.location.href;
|
||||
if (die_url.indexOf("?sbd=") > -1) {
|
||||
nr = die_url.substring(die_url.indexOf("?")+5,die_url.length);
|
||||
} else {
|
||||
nr = es;
|
||||
}
|
||||
zeige();
|
||||
}
|
||||
|
||||
function anfang() {
|
||||
nr = es;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function rueckwaerts() {
|
||||
if ((nr - sw) >= es) {
|
||||
nr -= sw;
|
||||
zeige();
|
||||
} else {
|
||||
anfang();
|
||||
}
|
||||
}
|
||||
|
||||
function vorherige() {
|
||||
if (nr > es) {
|
||||
nr = nr-1;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function naechste() {
|
||||
if (nr < ls) {
|
||||
++nr;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function vorwaerts() {
|
||||
if ((nr + sw) <= ls) {
|
||||
nr += sw;
|
||||
zeige();
|
||||
} else {
|
||||
ende();
|
||||
}
|
||||
}
|
||||
|
||||
function ende() {
|
||||
nr = ls;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function zeige() {
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.formular.inpSeite.value = "";
|
||||
document.formular.selIvz.options[0].selected = "true";
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function seitenzahl() {
|
||||
ziffernWeiche();
|
||||
zeige();
|
||||
document.formular.inpSeite.focus();
|
||||
}
|
||||
|
||||
|
||||
BIN
src/Anthologien/Crain1858/paginae/Crain1858_001.jpg
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_002.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_003.jpg
Normal file
|
After Width: | Height: | Size: 188 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_004.jpg
Normal file
|
After Width: | Height: | Size: 249 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_005.jpg
Normal file
|
After Width: | Height: | Size: 220 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_006.jpg
Normal file
|
After Width: | Height: | Size: 233 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_007.jpg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_008.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_009.jpg
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_010.jpg
Normal file
|
After Width: | Height: | Size: 175 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_011.jpg
Normal file
|
After Width: | Height: | Size: 201 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_012.jpg
Normal file
|
After Width: | Height: | Size: 205 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_013.jpg
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_014.jpg
Normal file
|
After Width: | Height: | Size: 189 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_015.jpg
Normal file
|
After Width: | Height: | Size: 212 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_016.jpg
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_017.jpg
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_018.jpg
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_019.jpg
Normal file
|
After Width: | Height: | Size: 196 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_020.jpg
Normal file
|
After Width: | Height: | Size: 185 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_021.jpg
Normal file
|
After Width: | Height: | Size: 197 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_022.jpg
Normal file
|
After Width: | Height: | Size: 202 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_023.jpg
Normal file
|
After Width: | Height: | Size: 203 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_024.jpg
Normal file
|
After Width: | Height: | Size: 193 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_025.jpg
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_026.jpg
Normal file
|
After Width: | Height: | Size: 183 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_027.jpg
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_028.jpg
Normal file
|
After Width: | Height: | Size: 201 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_029.jpg
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_030.jpg
Normal file
|
After Width: | Height: | Size: 185 KiB |
BIN
src/Anthologien/Crain1858/paginae/Crain1858_031.jpg
Normal file
|
After Width: | Height: | Size: 166 KiB |
67
src/Anthologien/Crain1858/rezeption.html
Normal file
@@ -0,0 +1,67 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Carl Ferdinand Crain: Metrische Uebersetzungen ins Griechische und Lateinische - Rezeption</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2011-02-28">
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/vita.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/vita_print.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/index_print.css">
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<style type="text/css">
|
||||
td {padding-bottom: 0.5em}
|
||||
td.jahr {width:6em; font-weight: bold;}
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulink" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulink" href="vita.html">C. F. Crain</a> |
|
||||
<a class="menulinkaktuell" href="rezeption.html">Rezeption</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="druckkopf">
|
||||
www.pantoia.de/Anthologien/Crain1858/rezeption.html<br>
|
||||
Letzte Bearbeitung: 28.2.2011<br>
|
||||
Copyright © Bernd Platzdasch
|
||||
</div>
|
||||
<div id="hauptbereich_2">
|
||||
<h1 class="text">Rezeption. Dokumente und Zitate</h1>
|
||||
<p>
|
||||
Archiv für das Studium der neueren Sprachen und Literaturen, <br>15. Jg., Bd. 27, <strong>1860</strong>, S. 226:
|
||||
</p>
|
||||
<p> </p>
|
||||
<img src="rezeption/ArchStSprLit_27_226.jpg">
|
||||
<p class="copyright">
|
||||
Letzte Bearbeitung: 28.2.2011 – Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
src/Anthologien/Crain1858/rezeption/ArchStSprLit_27_226.jpg
Normal file
|
After Width: | Height: | Size: 350 KiB |
117
src/Anthologien/Crain1858/vita.html
Normal file
@@ -0,0 +1,117 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Carl Ferdinand Crain: Metrische Uebersetzungen ins Griechische und Lateinische - Wer war Carl Ferdinand Crain?</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="copyright" content="Bernd Platzdasch 2010">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2010-11-02">
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/vita.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/vita_print.css">
|
||||
<style type="text/css">
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulink" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulinkaktuell" href="vita.html">C. F. Crain</a> |
|
||||
<a class="menulink" href="rezeption.html">Rezeption</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="druckkopf">
|
||||
<p id="siegel">
|
||||
www.pantoia.de/Anthologien/Crain1858/vita.html<br>
|
||||
Letzte Bearbeitung: 2.11.2010<br>
|
||||
Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
</div>
|
||||
<div id="hauptbereich_2">
|
||||
<h1 class="text">Wer war Carl Ferdinand Crain?</h1>
|
||||
<p class="text">
|
||||
Carl Ferdinand Crain wurde am 4.2.1787 in Thalwinkel in Thüringen geboren. Die ersten Lebensjahre verbrachte er in Klosterhäseler bei Naumburg, wo sein Vater Johann Christoph Crain Küster und Dorfschullehrer war. Er besuchte Schulpforta und studierte danach in Leipzig Theologie und Philologie. 1810 wurde er Magister. Nach dem Studium war er zunächst Hauslehrer in Leipzig, danach drei Jahre lang Hilfslehrer an der dortigen Rathsfreischule. Im November 1814 kam er nach Wismar an die Große Stadtschule. 12 Jahre lang unterrichtete er hauptsächlich die unteren Klassen, erst ab 1826 gab er regelmäßig in Prima und Sekunda Latein und Griechisch. Von 1828 bis 1863 war er Rektor der Schule. Anlässlich seines 25-jährigen Dienstjubiläums wurde er 1839 zum Professor ernannt. Im März 1863 wurde er nach 50 Dienstjahren in den Ruhestand versetzt. Er starb am 19.10.1865 in Wismar.
|
||||
</p>
|
||||
<p class="text">
|
||||
„Was seine geistige Arbeitsfähigkeit betrifft, so arbeitete Crain sehr rasch und leicht. Er hat sich spielend in alle Gebiete des Schulunterrichts hineingefunden. Er gab Lateinisch, Griechisch, aber auch Religion, Mathematik, Physik, deutsche Sprache und Literatur. Er schrieb rein und fließend Latein, verfaßte mit großer Leichtigkeit deutsche und altsprachliche Gedichte aller Art. Ja, noch in seinem letzten Lebensjahrzehnt vergnügte er sich an der Anfertigung lateinischer Gedichte.”<a href="#1" name="r1"> [1]</a>
|
||||
|
||||
<p class="anm">
|
||||
Vgl. Gustav Willgeroth: Die Lehrer der Gr. Stadtschule zu Wismar seit dem Jahre 1800 bis zur Gegenwart. Biographische Skizzen, Wismar 1935, S. 7 f.; Rudolf Kleiminger: Die Geschichte der Großen Stadtschule zu Wismar von 1541 bis 1945. Ein Beitrag zur Geschichte des Schulwesens in Mecklenburg und zur Stadtgeschichte Wismars, hrsg. v. Joachim Grehn, Kiel 1991, S. 140-170. – <a href="#r1" name="1">[1]</a> Ebd., S. 142.
|
||||
</p>
|
||||
|
||||
|
||||
<h1 class="text">Verzeichnis seiner Schriften</h1>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">WISMAR </span>am Schluß des Jahres 1827, in: Freimüthiges Abendblatt, Bd. 10 (<strong>1828</strong>), 473, S. 65-73.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">SOPHOKLEISCHE STUDIEN I:</span> König Oedipus deutsch, Leipzig <strong>1833</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">LEBENSABRISS</span> des weiland Bürgermeisters Haupt zu Wismar, in: Freimüthiges Abendblatt, Bd. 18 (<strong>1836</strong>), 902, S. 337-349.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">DAS KIRCHENBUCH</span> des grauen Klosters zu Wismar, in: Jahrbücher des Vereins für Mecklenburgische Geschichte und Altertumskunde, Bd. 6 (<strong>1841</strong>), S. 99-106.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">DIE REFORMATION </span>der christlichen Kirche in Wismar, Schulprogramm, Wismar <strong>1841</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">MECKLENBURGISCHER</span> Fürsten Gräber, in: Jahrbücher des Vereins für Mecklenburgische Geschichte und Altertumskunde, Bd. 6 (<strong>1841</strong>), S. 107-127.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">UEBER DAS MITTELALTERLICHE </span>Vogelschießen, namentlich in Wismar, in: Jahrbücher des Vereins für Mecklenburgische Geschichte und Altertumskunde, Bd. 7 (<strong>1842</strong>), S. 179-187.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">DIE BEDEUTUNG </span>des diesjährigen Lätaresonntages für die hiesige Marienkirche, Wismar <strong>1853</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">WISMARS SCHICKSALE </span>während der französischen Kriege. Denkblätter zur Feier des 19. August 1853, Wismar <strong>[1853]</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">ÜBER WISMARS </span>Bevölkerung im Mittelalter, Schulprogramm, Wismar <strong>1854</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg"><a href="index.html">METRISCHE UEBERSETZUNGEN</a> </span>ins Griechische und Lateinische aus Schiller und Göthe, nebst einem Anhange aus der Bibel, Schulprogramm, Wismar <strong>1858</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">BEITRÄGE </span>zur Geschichte der Seestadt Wismar. Anhang zu M. Dietrich Schröder's Kurzer Beschreibung der Stadt und Herrschaft Wismar, Wismar <strong>1859</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg"><a href="../Crain1860/index.html">GÖTHE'S BALLADEN:</a></span> Der König von Thule und Erlkönig, metrisch ins Griechische übersetzt, in: Schulprogramm der großen Stadtschule Wismar, Wismar <strong>1860</strong>, S. 1-4.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">ZUR GESCHICHTE</span> des grauen Klosters zu Wismar, Schulprogramm, Wismar <strong>1861</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">BEITRÄGE </span>zur Geschichte der Wismarschen großen Stadtschule, 5 Abteilungen, Schulprogramme, Wismar <strong>1862-1865</strong>.
|
||||
</p>
|
||||
<p class="copyright">
|
||||
Letzte Bearbeitung: 30.3.2011 – Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
src/Anthologien/Crain1860/imagines/background.gif
Normal file
|
After Width: | Height: | Size: 25 KiB |
84
src/Anthologien/Crain1860/index.html
Normal file
@@ -0,0 +1,84 @@
|
||||
<!-- IE in quirks mode -->
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Carl Ferdinand Crain: Der König von Thule und Erlkönig - Seitenbildedition</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="copyright" content="Bernd Platzdasch 2010">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2011-03-30">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/index_print.css">
|
||||
<script src="../../js/rom2arab.js" type="text/javascript"></script>
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<style type="text/css">
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!--[if IE]><style type="text/css">
|
||||
@media screen {
|
||||
body { overflow: hidden; }
|
||||
div#corpus { height: 100%; overflow: auto; }
|
||||
body { padding-bottom: 2.5em; }
|
||||
div#navigation { background: transparent; }
|
||||
}
|
||||
</style><![endif]-->
|
||||
</head>
|
||||
<body onload="geheZu();">
|
||||
<div id="navigation">
|
||||
<form name="formular" onsubmit="seitenzahl(); return false;">
|
||||
<input class="submit" type="button" value="Seite" onclick="seitenzahl();">
|
||||
<input class="seitenzahleingabe" type="text" name="inpSeite" size="3" maxlength="3">
|
||||
<input class="buNavigation" type="button" value="|<<" onclick="anfang();">
|
||||
<input class="buNavigation" type="button" value="<<" onclick="rueckwaerts();">
|
||||
<input class="buNavigation" type="button" value="<" onclick="vorherige();">
|
||||
<input class="buNavigation" type="button" value=">" onclick="naechste();">
|
||||
<input class="buNavigation" type="button" value=">>" onclick="vorwaerts();">
|
||||
<input class="buNavigation" type="button" value=">>|" onclick="ende();">
|
||||
<select size="1" name="selIvz" onchange="zeigeInhalt();">
|
||||
<option value="Inhalt:" style="font-weight: bold;" selected>  Inhalt:</option>
|
||||
<option value="1">  Titelseite</option>
|
||||
<option value="2">  Vorwort</option>
|
||||
<option value="6">  Βασιλευς Θουλαιος  </option>
|
||||
<option value="8">  Μορμω ανασσα</option>
|
||||
</select>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulinkaktuell" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulink" href="vita.html">C. F. Crain</a> |
|
||||
<a class="menulink" href="rezeption.html">Rezeption</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="hauptbereich_1">
|
||||
<div>
|
||||
<form name="sprung"><input type="button" name="sprungmarke" class="buSprungmarke"
|
||||
style="border: 0 solid white; height: 1px;">
|
||||
</form>
|
||||
<img class="seite" name="seitenbild">
|
||||
</div>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
128
src/Anthologien/Crain1860/js/nav.js
Normal file
@@ -0,0 +1,128 @@
|
||||
// Crain1858
|
||||
// Version 31.10.2010
|
||||
// Copyright (C) 2007 Bernd Platzdasch
|
||||
var id = "crai2";
|
||||
var dir = "paginae/Crain1860_";
|
||||
var ext = ".jpg";
|
||||
var es = 1;
|
||||
var ls = 9;
|
||||
var nr = 1;
|
||||
var sw = 3;
|
||||
var sf = 1;
|
||||
var asnz = 0;
|
||||
var ses = 1;
|
||||
var sles = 4;
|
||||
var asvz = 1;
|
||||
var lsr = 5;
|
||||
var sls = lsr + sles;
|
||||
var tit = "Göthe's Balladen: Der König von Thule und Erlkönig,";
|
||||
var utit = "metrisch ins Griechische übersetzt von Carl Ferdinand Crain, in: <br>Schulprogramm der großen Stadtschule Wismar, Wismar 1860, S. 1-4. / gr.";
|
||||
function ziffernWeiche() {
|
||||
var inp = document.formular.inpSeite.value;
|
||||
var reg = /^[0-9]+$/i;
|
||||
if (reg.exec(inp)) {inp = Number(inp)+lsr; zurSeite(inp); }
|
||||
reg = /^[IVXLC]+$/i;
|
||||
if (reg.exec(inp)) {
|
||||
Number(inp);
|
||||
inp = rom2arab(inp);
|
||||
inp += asvz;
|
||||
if (inp > lsr) { inp = lsr; }
|
||||
zurSeite(inp); }
|
||||
}
|
||||
|
||||
function zeigeInhalt(select) {
|
||||
var x = document.formular.selIvz.value;
|
||||
if (x == "Inhalt:") { return ; }
|
||||
nr = Number(x);
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function formNr() {
|
||||
var m = nr;
|
||||
m = m.toString();
|
||||
if (m.length == 1) m = '00' + m;
|
||||
if (m.length == 2) m = '0' + m;
|
||||
return m;
|
||||
}
|
||||
|
||||
function zurSeite(x) {
|
||||
x = Number(x);
|
||||
y = ses;
|
||||
z = sls;
|
||||
if (sf == 2) {
|
||||
if ((x%2) == 0) { x = x/2; } else { x = (x-1)/2 }
|
||||
if ((y%2) == 0) { y = y/2; } else { y = (y-1)/2 }
|
||||
if ((z%2) == 0) { z = z/2; } else { z = (z-1)/2 }
|
||||
}
|
||||
if ((x >= y) && (x <= z) ) { nr = ls-asnz-(z-x); }
|
||||
if (x > z) { nr = ls-asnz; }
|
||||
if (x < y) { nr = ls-asnz-(z-y); }
|
||||
}
|
||||
|
||||
function geheZu() {
|
||||
var die_url = window.location.href;
|
||||
if (die_url.indexOf("?sbd=") > -1) {
|
||||
nr = die_url.substring(die_url.indexOf("?")+5,die_url.length);
|
||||
} else {
|
||||
nr = es;
|
||||
}
|
||||
zeige();
|
||||
}
|
||||
|
||||
function anfang() {
|
||||
nr = es;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function rueckwaerts() {
|
||||
if ((nr - sw) >= es) {
|
||||
nr -= sw;
|
||||
zeige();
|
||||
} else {
|
||||
anfang();
|
||||
}
|
||||
}
|
||||
|
||||
function vorherige() {
|
||||
if (nr > es) {
|
||||
nr = nr-1;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function naechste() {
|
||||
if (nr < ls) {
|
||||
++nr;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function vorwaerts() {
|
||||
if ((nr + sw) <= ls) {
|
||||
nr += sw;
|
||||
zeige();
|
||||
} else {
|
||||
ende();
|
||||
}
|
||||
}
|
||||
|
||||
function ende() {
|
||||
nr = ls;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function zeige() {
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.formular.inpSeite.value = "";
|
||||
document.formular.selIvz.options[0].selected = "true";
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function seitenzahl() {
|
||||
ziffernWeiche();
|
||||
zeige();
|
||||
document.formular.inpSeite.focus();
|
||||
}
|
||||
|
||||
|
||||
BIN
src/Anthologien/Crain1860/paginae/Crain1860_001.jpg
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_002.jpg
Normal file
|
After Width: | Height: | Size: 195 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_003.jpg
Normal file
|
After Width: | Height: | Size: 250 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_004.jpg
Normal file
|
After Width: | Height: | Size: 267 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_005.jpg
Normal file
|
After Width: | Height: | Size: 203 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_006.jpg
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_007.jpg
Normal file
|
After Width: | Height: | Size: 97 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_008.jpg
Normal file
|
After Width: | Height: | Size: 120 KiB |
BIN
src/Anthologien/Crain1860/paginae/Crain1860_009.jpg
Normal file
|
After Width: | Height: | Size: 98 KiB |
67
src/Anthologien/Crain1860/rezeption.html
Normal file
@@ -0,0 +1,67 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Carl Ferdinand Crain: Der König von Thule und Erlkönig - Rezeption</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2011-02-28">
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/vita.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/vita_print.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/index_print.css">
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<style type="text/css">
|
||||
td {padding-bottom: 0.5em}
|
||||
td.jahr {width:6em; font-weight: bold;}
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulink" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulink" href="vita.html">C. F. Crain</a> |
|
||||
<a class="menulinkaktuell" href="rezeption.html">Rezeption</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="druckkopf">
|
||||
www.pantoia.de/Anthologien/Crain1860/rezeption.html<br>
|
||||
Letzte Bearbeitung: 39.3.2011<br>
|
||||
Copyright © Bernd Platzdasch
|
||||
</div>
|
||||
<div id="hauptbereich_2">
|
||||
<h1 class="text">Rezeption. Dokumente und Zitate</h1>
|
||||
<p>
|
||||
Archiv für das Studium der neueren Sprachen und Literaturen, <br>16. Jg., Bd. 30, <strong>1861</strong>, S. 205:
|
||||
</p>
|
||||
<p> </p>
|
||||
<img src="rezeption/ArchStSprLit_30_205.jpg">
|
||||
<p class="copyright">
|
||||
Letzte Bearbeitung: 30.3.2011 – Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
src/Anthologien/Crain1860/rezeption/ArchStSprLit_30_205.jpg
Normal file
|
After Width: | Height: | Size: 101 KiB |
117
src/Anthologien/Crain1860/vita.html
Normal file
@@ -0,0 +1,117 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>Carl Ferdinand Crain: Der König von Thule und Erlkönig - Wer war Carl Ferdinand Crain?</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="copyright" content="Bernd Platzdasch 2010">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2011-03-30">
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/vita.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/vita_print.css">
|
||||
<style type="text/css">
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.gif");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<a class="menulink" href="index.html">Seitenbildedition</a> |
|
||||
<a class="menulinkaktuell" href="vita.html">C. F. Crain</a> |
|
||||
<a class="menulink" href="rezeption.html">Rezeption</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="druckkopf">
|
||||
<p id="siegel">
|
||||
www.pantoia.de/Anthologien/Crain1860/vita.html<br>
|
||||
Letzte Bearbeitung: 30.3.2011<br>
|
||||
Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
</div>
|
||||
<div id="hauptbereich_2">
|
||||
<h1 class="text">Wer war Carl Ferdinand Crain?</h1>
|
||||
<p class="text">
|
||||
Carl Ferdinand Crain wurde am 4.2.1787 in Thalwinkel in Thüringen geboren. Die ersten Lebensjahre verbrachte er in Klosterhäseler bei Naumburg, wo sein Vater Johann Christoph Crain Küster und Dorfschullehrer war. Er besuchte Schulpforta und studierte danach in Leipzig Theologie und Philologie. 1810 wurde er Magister. Nach dem Studium war er zunächst Hauslehrer in Leipzig, danach drei Jahre lang Hilfslehrer an der dortigen Rathsfreischule. Im November 1814 kam er nach Wismar an die Große Stadtschule. 12 Jahre lang unterrichtete er hauptsächlich die unteren Klassen, erst ab 1826 gab er regelmäßig in Prima und Sekunda Latein und Griechisch. Von 1828 bis 1863 war er Rektor der Schule. Anlässlich seines 25-jährigen Dienstjubiläums wurde er 1839 zum Professor ernannt. Im März 1863 wurde er nach 50 Dienstjahren in den Ruhestand versetzt. Er starb am 19.10.1865 in Wismar.
|
||||
</p>
|
||||
<p class="text">
|
||||
„Was seine geistige Arbeitsfähigkeit betrifft, so arbeitete Crain sehr rasch und leicht. Er hat sich spielend in alle Gebiete des Schulunterrichts hineingefunden. Er gab Lateinisch, Griechisch, aber auch Religion, Mathematik, Physik, deutsche Sprache und Literatur. Er schrieb rein und fließend Latein, verfaßte mit großer Leichtigkeit deutsche und altsprachliche Gedichte aller Art. Ja, noch in seinem letzten Lebensjahrzehnt vergnügte er sich an der Anfertigung lateinischer Gedichte.”<a href="#1" name="r1"> [1]</a>
|
||||
|
||||
<p class="anm">
|
||||
Vgl. Gustav Willgeroth: Die Lehrer der Gr. Stadtschule zu Wismar seit dem Jahre 1800 bis zur Gegenwart. Biographische Skizzen, Wismar 1935, S. 7 f.; Rudolf Kleiminger: Die Geschichte der Großen Stadtschule zu Wismar von 1541 bis 1945. Ein Beitrag zur Geschichte des Schulwesens in Mecklenburg und zur Stadtgeschichte Wismars, hrsg. v. Joachim Grehn, Kiel 1991, S. 140-170. – <a href="#r1" name="1">[1]</a> Ebd., S. 142.
|
||||
</p>
|
||||
|
||||
|
||||
<h1 class="text">Verzeichnis seiner Schriften</h1>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">WISMAR </span>am Schluß des Jahres 1827, in: Freimüthiges Abendblatt, Bd. 10 (<strong>1828</strong>), 473, S. 65-73.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">SOPHOKLEISCHE STUDIEN I:</span> König Oedipus deutsch, Leipzig <strong>1833</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">LEBENSABRISS</span> des weiland Bürgermeisters Haupt zu Wismar, in: Freimüthiges Abendblatt, Bd. 18 (<strong>1836</strong>), 902, S. 337-349.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">DAS KIRCHENBUCH</span> des grauen Klosters zu Wismar, in: Jahrbücher des Vereins für Mecklenburgische Geschichte und Altertumskunde, Bd. 6 (<strong>1841</strong>), S. 99-106.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">DIE REFORMATION </span>der christlichen Kirche in Wismar, Schulprogramm, Wismar <strong>1841</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">MECKLENBURGISCHER</span> Fürsten Gräber, in: Jahrbücher des Vereins für Mecklenburgische Geschichte und Altertumskunde, Bd. 6 (<strong>1841</strong>), S. 107-127.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">UEBER DAS MITTELALTERLICHE </span>Vogelschießen, namentlich in Wismar, in: Jahrbücher des Vereins für Mecklenburgische Geschichte und Altertumskunde, Bd. 7 (<strong>1842</strong>), S. 179-187.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">DIE BEDEUTUNG </span>des diesjährigen Lätaresonntages für die hiesige Marienkirche, Wismar <strong>1853</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">WISMARS SCHICKSALE </span>während der französischen Kriege. Denkblätter zur Feier des 19. August 1853, Wismar <strong>[1853]</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">ÜBER WISMARS </span>Bevölkerung im Mittelalter, Schulprogramm, Wismar <strong>1854</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg"><a href="../Crain1858/index.html">METRISCHE UEBERSETZUNGEN</a> </span>ins Griechische und Lateinische aus Schiller und Göthe, nebst einem Anhange aus der Bibel, Schulprogramm, Wismar <strong>1858</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">BEITRÄGE </span>zur Geschichte der Seestadt Wismar. Anhang zu M. Dietrich Schröder's Kurzer Beschreibung der Stadt und Herrschaft Wismar, Wismar <strong>1859</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg"><a href="index.html">GÖTHE'S BALLADEN:</a></span> Der König von Thule und Erlkönig, metrisch ins Griechische übersetzt, in: Schulprogramm der großen Stadtschule Wismar, Wismar <strong>1860</strong>, S. 1-4.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">ZUR GESCHICHTE</span> des grauen Klosters zu Wismar, Schulprogramm, Wismar <strong>1861</strong>.
|
||||
</p>
|
||||
<p class="einr">
|
||||
<span class="hvhbg">BEITRÄGE </span>zur Geschichte der Wismarschen großen Stadtschule, 5 Abteilungen, Schulprogramme, Wismar <strong>1862-1865</strong>.
|
||||
</p>
|
||||
<p class="copyright">
|
||||
Letzte Bearbeitung: 30.3.2011 – Copyright © Bernd Platzdasch
|
||||
</p>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
src/Anthologien/EchtermeyerSeyffert1833/imagines/background.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
88
src/Anthologien/EchtermeyerSeyffert1833/index.html
Normal file
@@ -0,0 +1,88 @@
|
||||
<!-- IE in quirks mode -->
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
|
||||
<html>
|
||||
<head><link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
|
||||
<title>T. E. Echtermeyer / M. L. Seyffert: Carmina aliquot Goethii et Schilleri Latine reddita - Seitenbildedition</title>
|
||||
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
||||
<meta name="copyright" content="Bernd Platzdasch 2007">
|
||||
<meta name="revisit-after" content="14 days">
|
||||
<meta http-equiv="content-language" content="de">
|
||||
<meta name="date" content="2008-13-01">
|
||||
<link rel="stylesheet" type="text/css" href="../../css/buchscans/main.css">
|
||||
<link rel="stylesheet" type="text/css" media="print" href="../../css/buchscans/index_print.css">
|
||||
<script src="js/nav.js" type="text/javascript"></script>
|
||||
<script src="../../js/rom2arab.js" type="text/javascript"></script>
|
||||
<style type="text/css">
|
||||
@media screen {
|
||||
div#titelbox {
|
||||
background-image: url("imagines/background.jpg");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!--[if IE]><style type="text/css">
|
||||
@media screen {
|
||||
body { overflow: hidden; }
|
||||
div#corpus { height: 100%; overflow: auto; }
|
||||
body { padding-bottom: 2.5em; }
|
||||
div#navigation { background: transparent; }
|
||||
}
|
||||
</style><![endif]-->
|
||||
</head>
|
||||
<body onload="geheZu();">
|
||||
<div id="navigation">
|
||||
<form name="formular" onsubmit="seitenzahl(); return false;">
|
||||
<input class="submit" type="button" value="Seite" onclick="seitenzahl();">
|
||||
<input class="seitenzahleingabe" type="text" name="inpSeite" size="3" maxlength="4">
|
||||
<input class="buNavigation" type="button" value="|<<" onclick="anfang();">
|
||||
<input class="buNavigation" type="button" value="<<" onclick="rueckwaerts();">
|
||||
<input class="buNavigation" type="button" value="<" onclick="vorherige();">
|
||||
<input class="buNavigation" type="button" value=">" onclick="naechste();">
|
||||
<input class="buNavigation" type="button" value=">>" onclick="vorwaerts();">
|
||||
<input class="buNavigation" type="button" value=">>|" onclick="ende();">
|
||||
<select size="1" name="selIvz" onchange="zeigeInhalt();">
|
||||
<option value="Inhalt:" style="font-weight: bold;" selected>  Inhalt:</option>
|
||||
<option value="1">  Titelseite</option>
|
||||
<option value="3">  Praefatio</option>
|
||||
<option value="13">  Carmina</option>
|
||||
<option value="98">  Index carminum</option>
|
||||
<option value="99">  Eclogae</option>
|
||||
<option value="142">  Corrigenda</option>
|
||||
<option value="143">  Index eclogarum</option>
|
||||
</select>
|
||||
</form>
|
||||
</div>
|
||||
<div id="corpus">
|
||||
<div id="titelbox">
|
||||
<div id="titelboxtext">
|
||||
<script type="text/javascript">
|
||||
document.write('<h1 id="titel">' + tit + '</h1>');
|
||||
document.write('<p id="untertitel">' + utit + '</p>');
|
||||
</script>
|
||||
</div>
|
||||
<div id="titelboxmenu">
|
||||
<p class="menuzeile">
|
||||
<!-- <a class="menulink" href="einfuehrung.html">Einfhrung</a> | -->
|
||||
<a class="menulinkaktuell" href="index.html">Seitenbildedition</a> |
|
||||
<!-- <a class="menulink" href="verz.html">Gedichteverzeichnis</a> | -->
|
||||
<a class="menulink" href="vita.html">T. E. Echtermeyer</a> |
|
||||
<a class="menulink" href="vita_seyffert.html">M. L. Seyffert</a> |
|
||||
<a class="menulink" href="../../index.html">Hauptseite...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="hauptbereich_1">
|
||||
<div>
|
||||
<form name="sprung">
|
||||
<input type="button" name="sprungmarke" class="buSprungmarke" style="border: 0 solid white; height: 1px;">
|
||||
</form>
|
||||
<img class="seite" name="seitenbild">
|
||||
</div>
|
||||
<noscript>
|
||||
<p class="noscript">Aktivieren Sie JavaScript in Ihrem Browser!</p>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
130
src/Anthologien/EchtermeyerSeyffert1833/js/nav.js
Normal file
@@ -0,0 +1,130 @@
|
||||
// EchtermeyerSeyffert1833
|
||||
// Version 15.11.07
|
||||
// Copyright (C) 2007 Bernd Platzdasch
|
||||
|
||||
var id = "ecy";
|
||||
var dir = "paginae/EchtermeyerSeyffert1833_";
|
||||
var ext = ".jpg";
|
||||
var es = 1;
|
||||
var ls = 144;
|
||||
var nr = 1;
|
||||
var sw = 10;
|
||||
var sf = 1;
|
||||
var asnz = 1;
|
||||
var ses = 1;
|
||||
var sles = 131;
|
||||
var asvz = 0;
|
||||
var lsr = 12;
|
||||
var sls = lsr + sles;
|
||||
var tit = "Carmina aliquot Goethii et Schilleri Latine reddita";
|
||||
var utit = "ediderunt Theodorus Echtermeyer et Mauritius Seyffert,<br>Halle 1833. – XII + 113 S. / dt.-lat.";
|
||||
|
||||
function ziffernWeiche() {
|
||||
var inp = document.formular.inpSeite.value;
|
||||
var reg = /^[0-9]+$/i;
|
||||
if (reg.exec(inp)) {inp = Number(inp)+lsr; zurSeite(inp); }
|
||||
reg = /^[IVXLC]+$/i;
|
||||
if (reg.exec(inp)) {
|
||||
Number(inp);
|
||||
inp = rom2arab(inp);
|
||||
inp += asvz;
|
||||
if (inp > lsr) { inp = lsr; }
|
||||
zurSeite(inp); }
|
||||
}
|
||||
|
||||
function zeigeInhalt(select) {
|
||||
var x = document.formular.selIvz.value;
|
||||
if (x == "Inhalt:") { return ; }
|
||||
nr = Number(x);
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function formNr() {
|
||||
var m = nr;
|
||||
m = m.toString();
|
||||
if (m.length == 1) m = '00' + m;
|
||||
if (m.length == 2) m = '0' + m;
|
||||
return m;
|
||||
}
|
||||
|
||||
function zurSeite(x) {
|
||||
x = Number(x);
|
||||
y = ses;
|
||||
z = sls;
|
||||
if (sf == 2) {
|
||||
if ((x%2) == 0) { x = x/2; } else { x = (x-1)/2 }
|
||||
if ((y%2) == 0) { y = y/2; } else { y = (y-1)/2 }
|
||||
if ((z%2) == 0) { z = z/2; } else { z = (z-1)/2 }
|
||||
}
|
||||
if ((x >= y) && (x <= z) ) { nr = ls-asnz-(z-x); }
|
||||
if (x > z) { nr = ls-asnz; }
|
||||
if (x < y) { nr = ls-asnz-(z-y); }
|
||||
}
|
||||
|
||||
function geheZu() {
|
||||
var die_url = window.location.href;
|
||||
if (die_url.indexOf("?sbd=") > -1) {
|
||||
nr = die_url.substring(die_url.indexOf("?")+5,die_url.length);
|
||||
} else {
|
||||
nr = es;
|
||||
}
|
||||
zeige();
|
||||
}
|
||||
|
||||
function anfang() {
|
||||
nr = es;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function rueckwaerts() {
|
||||
if ((nr - sw) >= es) {
|
||||
nr -= sw;
|
||||
zeige();
|
||||
} else {
|
||||
anfang();
|
||||
}
|
||||
}
|
||||
|
||||
function vorherige() {
|
||||
if (nr > es) {
|
||||
nr = nr-1;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function naechste() {
|
||||
if (nr < ls) {
|
||||
++nr;
|
||||
zeige();
|
||||
}
|
||||
}
|
||||
|
||||
function vorwaerts() {
|
||||
if ((nr + sw) <= ls) {
|
||||
nr += sw;
|
||||
zeige();
|
||||
} else {
|
||||
ende();
|
||||
}
|
||||
}
|
||||
|
||||
function ende() {
|
||||
nr = ls;
|
||||
zeige();
|
||||
}
|
||||
|
||||
function zeige() {
|
||||
document.seitenbild.src = dir + formNr() + ext;
|
||||
document.formular.inpSeite.value = "";
|
||||
document.formular.selIvz.options[0].selected = "true";
|
||||
document.sprung.sprungmarke.focus();
|
||||
}
|
||||
|
||||
function seitenzahl() {
|
||||
ziffernWeiche();
|
||||
zeige();
|
||||
document.formular.inpSeite.focus();
|
||||
}
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 112 KiB |
|
After Width: | Height: | Size: 136 KiB |
|
After Width: | Height: | Size: 154 KiB |
|
After Width: | Height: | Size: 148 KiB |
|
After Width: | Height: | Size: 151 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 147 KiB |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 144 KiB |
|
After Width: | Height: | Size: 121 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 113 KiB |