Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • dmj/selbstzeugnisse-hab
  • goermar/selbstzeugnisse-hab
2 results
Show changes
Commits on Source (2)
Showing
with 791 additions and 3 deletions
calabash.cmd -i resources/daten/edition/diarium/diarium.xml -o resources/daten/edition/diarium/linkmap.xml resources/xproc/edition/linkmap.xpl
transform.cmd -o:public/beacon.txt -xsl:resources/xproc/edition/beacon.xsl resources/daten/edition/diarium/linkmap.xml
\ No newline at end of file
calabash.cmd -i resources/daten/edition/diarium/diarium.xml -o resources/daten/edition/diarium/linkmap.xml resources/xproc/edition/linkmap.xpl
calabash.cmd -o result=resources/daten/repertorium/mets.xml resources/xproc/repertorium/mets.xpl
\ No newline at end of file
calabash.cmd -i resources/daten/edition/diarium/register_orte.xml resources/xproc/normdaten.xpl
calabash.cmd -i resources/daten/edition/diarium/register_personen.xml resources/xproc/normdaten.xpl
calabash.cmd -i resources/daten/repertorium/register/orte.xml resources/xproc/normdaten.xpl
calabash.cmd -i resources/daten/repertorium/register/personen.xml resources/xproc/normdaten.xpl
\ No newline at end of file
calabash.cmd -o result=resources/daten/repertorium/mets.xml resources/xproc/repertorium/mets.xpl
calabash.cmd -i resources/daten/edition/diarium/diarium.xml -o resources/daten/edition/diarium/linkmap.xml resources/xproc/edition/linkmap.xpl
calabash.cmd -i resources/mets.xml -o public/sitemap.xml resources/xproc/sitemap.xpl
calabash.cmd -o public/repertorium/repository.xml resources/xproc/repertorium/oais.xpl
transform.cmd -o:public/beacon.txt -xsl:resources/xproc/edition/beacon.xsl resources/daten/edition/diarium/linkmap.xml
calabash.cmd resources/xproc/repertorium/solr.xpl
calabash.cmd -i resources/mets.xml resources/xproc/fulltext/fulltext.xpl
robocopy .\\ \\\\devserver\hosting\development\2015\selbstzeugnisse.hab.de /MIR /XD .git /XD tmp
\ No newline at end of file
calabash.cmd -o public/repertorium/repository.xml resources/xproc/repertorium/oais.xpl
\ No newline at end of file
calabash.cmd -i resources/mets.xml -o public/sitemap.xml resources/xproc/sitemap.xpl
\ No newline at end of file
calabash.cmd resources/xproc/repertorium/solr.xpl
calabash.cmd -i resources/mets.xml resources/xproc/fulltext/fulltext.xpl
\ No newline at end of file
php -S 127.0.0.1:9999 -t public public/index.php
\ No newline at end of file
......@@ -65,3 +65,48 @@ $app->get('/dienste', 'controller.staticpage:handle')
$app->get('/suche', 'controller.search:handle')
->bind('suche');
$app->get('/sz2/projektbeschreibung', 'controller.staticpage:handle')
->bind('sz2.projektbeschreibung');
$app->get('/sz2/kurzbiographien', 'controller.staticpage:handle')
->bind('sz2.kurzbiographien');
$app->get('/sz2/editionsrichtlinien', 'controller.staticpage:handle')
->bind('sz2.editionsrichtlinien');
$app->get('/sz2/bibliographie', 'controller.staticpage:handle')
->bind('sz2.bibliographie');
$app->get('/sz2/cod_guelf_28_blank', 'controller.staticpage:handle')
->bind('sz2.cod_guelf_28_blank');
$app->get('/sz2/cod_guelf_28_blank_teil2', 'controller.staticpage:handle')
->bind('sz2.cod_guelf_28_blank_teil2');
$app->get('/sz2/cod_guelf_28_blank_teil3', 'controller.staticpage:handle')
->bind('sz2.cod_guelf_28_blank_teil3');
$app->get('/sz2/cod_guelf_28_blank_teil4', 'controller.staticpage:handle')
->bind('sz2.cod_guelf_28_blank_teil4');
$app->get('/sz2/cod_guelf_211_1_extrav', 'controller.staticpage:handle')
->bind('sz2.cod_guelf_211_1_extrav');
$app->get('/sz2/cod_guelf_286a_blank', 'controller.staticpage:handle')
->bind('sz2.cod_guelf_286a_blank');
$app->get('/sz2/personen', 'controller.staticpage:handle')
->bind('sz2.personen');
$app->get('/sz2/orte', 'controller.staticpage:handle')
->bind('sz2.orte');
$app->get('/sz2/literatur', 'controller.staticpage:handle')
->bind('sz2.literatur');
$app->get('/sz2/geobrowser', 'controller.staticpage:handle')
->bind('sz2.geobrowser');
$app->get('/editionen', 'controller.staticpage:handle')
->bind('editionen');
<?php
$filename = __DIR__.preg_replace('#(\?.*)$#', '', $_SERVER['REQUEST_URI']);
if (php_sapi_name() === 'cli-server' && is_file($filename)) {
return false;
}
require_once __DIR__ . '/../vendor/autoload.php';
$app = new Silex\Application();
@include __DIR__ . '/../config/services.php';
@include __DIR__ . '/../config/controllers.php';
@include __DIR__ . '/../config/routes.php';
$app['debug'] = true;
return $app->run();
\ No newline at end of file
This diff is collapsed.
<?php
$app->get('/', 'controller.staticpage:handle')
->bind('home');
$app->get('/edition/', 'controller.staticpage:handle')
->bind('edition');
$app->get('/edition/beschreibung', 'controller.staticpage:handle')
->bind('edition.beschreibung');
$app->get('/edition/richtlinien', 'controller.staticpage:handle')
->bind('edition.richtlinien');
$app->get('/edition/diarium/register.xml', 'controller.staticpage:handle')
->bind('edition.diarium.register');
$app->get('/edition/diarium/download', 'controller.staticpage:handle')
->bind('edition.diarium.download');
$app->get('/edition/diarium/{metsId}', 'controller.dynamicpage:handle')
->bind('edition.diarium.jahr')
->convert('metsId', function ($metsId) { return "edition.diarium.{$metsId}"; });
$app->get('/edition/diarium/', 'controller.staticpage:handle')
->bind('edition.diarium');
$app->get('/edition/personen', 'controller.staticpage:handle')->bind('edition.personen');
$app->get('/edition/orte', 'controller.staticpage:handle')
->bind('edition.orte');
$app->get('/repertorium/', 'controller.staticpage:handle')
->bind('repertorium');
$app->get('/repertorium/suche/', 'controller.repertorium.results:handle')
->bind('repertorium.suche');
$app->get('/repertorium/eintrag/{metsId}', 'controller.dynamicpage:handle')
->bind('repertorium.eintrag')
->convert('metsId', function ($metsId) { return "repertorium.eintrag.{$metsId}"; });
$app->get('/repertorium/liste', 'controller.repertorium.list:handle')
->bind('repertorium.liste');
$app->get('/repertorium/vokabular', 'controller.staticpage:handle')
->bind('repertorium.vokabular');
$app->get('/bibliographie', 'controller.staticpage:handle')
->bind('bibliographie');
$app->get('/projekt', 'controller.staticpage:handle')
->bind('projekt');
$app->get('/extern', 'controller.staticpage:handle')
->bind('extern');
$app->get('/impressum', 'controller.staticpage:handle')
->bind('impressum');
$app->get('/dienste', 'controller.staticpage:handle')
->bind('dienste');
$app->get('/suche', 'controller.search:handle')
->bind('suche');
$app->get('/ludwig-rudolf', 'controller.staticpage:handle')->bind('ludwig-rudolf');
\ No newline at end of file
This diff is collapsed.
......@@ -249,9 +249,9 @@ i {
.teaser li {
float: left;
max-width: 200px;
width: 15em;
height: 400px;
max-width: 100px;
width: 12em;
height: 200px;
}
.teaser li + li {
......@@ -554,3 +554,15 @@ ol {
ol em {
background-color: yellow;
}
.float {
left: 65rem;
/* left: 55em;*/
position: absolute;
padding: .25em;
width: 25rem;
}
.float img {
width: inherit;
}
@font-face {
font-family: Symbola;
src: url(../fonts/Symbola-26xx.woff) format("woff");
}
@font-face {
font-family: Lato;
src: url(../fonts/Lato-Regular.woff) format("woff");
}
@font-face {
font-family: Lato;
font-weight: bold;
src: url(../fonts/Lato-Bold.woff) format("woff");
}
@font-face {
font-family: Lato;
font-style: italic;
font-weight: normal;
src: url(../fonts/Lato-Italic.woff) format("woff");
}
@font-face {
font-family: Lato;
font-style: italic;
font-weight: bold;
src: url(../fonts/Lato-BoldItalic.woff) format("woff");
}
@font-face {
font-family: Junicode;
src: url(../fonts/Junicode.woff) format("woff");
}
body {
font: 10px/1.3 Lato, Symbole, Verdana, sans-serif;
background: url(../images/body_bg.jpg) center/cover no-repeat fixed;
background-color: #bbbcc7;
color: #634e42;
}
small {
font-size: smaller;
}
strong {
font-weight: bold;
}
.banner {
background-image: url(../images/banner_bg.jpg);
background-size: 100% auto;
height: 120px;
color: #634e42;
width: 100%;
margin-bottom: 4em;
}
.banner h1 {
font-size: 3em;
text-transform: uppercase;
margin: 0;
}
.banner h2 {
font-size: 2em;
font-style: italic;
margin: 0 0 0 2em;
}
.banner h3 {
display: block;
font-size: small;
font-weight: normal;
}
.banner > img.brand {
position: absolute;
top: 0;
left: 40px;
margin: 0;
}
.banner-logo {
float: right;
margin: 20px;
}
.banner input {
width: 100%;
background-color: #bbbcc7;
}
.banner-slogan {
margin-left: 220px;
padding-top: 2em;
}
.symbol {
font-family: "Symbola";
}
h1 {
font-size: xx-large;
}
h2 {
font-size: x-large;
}
h1, h2, h3 {
margin: .5em 0;
}
h3 {
font-size: large;
font-weight: bold;
}
h4 {
font-style: italic;
}
h3 + div, h3 + ul {
margin-left: 1em;
}
blockquote {
margin-left: 1em; padding: 1em; border-left: 3px solid #ccc;
}
p {
margin-top: 1em;
}
p + * {
margin-top: 1em;
}
a {
color: #3b5b7e;
text-decoration: underline;
}
*[lang] {
border-bottom: thin dotted;
}
sub, sup {
font-size: .83em
}
sub {
vertical-align: sub
}
sup {
vertical-align: super
}
i {
font-style: italic;
}
/**
* DYI Grid: https://css-tricks.com/dont-overthink-it-grids/
*/
.content {
line-height: 1.8em;
font-size: 1.5em;
float: left;
min-width: 110em;
}
.content h1, .content h2, .content h3 {
line-height: 1.8em;
}
.content:after {
content: "";
display: table;
clear: both;
}
/* .content h2 { */
/* border-bottom: thin solid; */
/* } */
.navigation {
float: left;
width: 12.5em;
padding: 1em 2em;
/* position: sticky;*/
top: 0px;
display: inline-block;
}
.navigation:first-child {
margin-top: 3em;
}
.navigation-collapse ul {
display: none;
}
.navigation ul {
text-transform: uppercase;
color: black;
}
.navigation ul ul {
margin-top: 0;
margin-left: 1em;
font-size: small;
}
.navigation li {
line-height: 1.0em;
margin: 1.1em 0;
}
.navigation .active {
font-weight: bold;
}
.navigation a {
color: inherit;
text-decoration: none;
}
.mainpage {
float: left;
/* width: 50em;*/
width: 35em;
padding: 1em 2em;
}
.infopanel {
float: left;
min-width: 40em;
padding: 1em 2em;
position: sticky;
top: 0px;
display: inline-block;
}
.infopanel h1 {
font-size: larger;
margin: 1em 0;
border-bottom: thin solid;
}
.teaser {
position: absolute;
left: 75em;
width: 500px;
}
.teaser li {
float: left;
max-width: 200px;
width: 15em;
height: 400px;
}
.teaser li + li {
margin-left: 1em;
}
.teaser > img {
padding: 1em;
margin-left: 40%;
}
.bg-blue {
background-color: #364759;
}
.bg-lgrey {
background-color: #888d96;
}
.bg-mgrey {
background-color: #a19ea0;
}
.list-styled {
list-style: disc outside;
}
.ref {
text-decoration: none;
/* border-bottom: thin dashed; */
display: inline;
}
.ref-place, .ref-person, .ref-gloss, .ref-bibl {
color: #3b5b7e;
text-decoration: none;
}
.ref-place-target, .ref-person-target, .ref-gloss-target, .ref-bibl-target {
display: none;
background-color: #fff8dc;
border: thin solid #ffe4b5;
padding: .25em;
position: absolute;
left: 51em;
width: 30em;
max-width: 30em;
/*left: 65em;
width: 28rem;
max-width: 28rem;*/
font-size: 1rem !important;
font-weight: normal !important;
z-index: 100;
}
/*.ref-person:before, .ref-place:before {
content: " ⌘ ";
}*/
.facet { display: table; font-size: small; line-height: 1.4em; }
.facet a { text-decoration: none; }
.facet-label { display: table-header-group; }
.facet-label > span { display: table-cell; }
.facet-value { display: table-row; margin: 0; }
.facet-value-label, .facet-value-count { display: table-cell; }
.facet-value-label { width: 12em; }
.facet-value .active:before { content: "✓"; margin-left: -1em; }
.facet + .facet { margin-top: 1em; }
.facet ul { margin-left: 1em; }
.search-result dt { float: left; width: 12em; margin-left: 2em; }
.search-result dd { margin-left: 14em; }
.pagination {
text-align: center;
}
.pagination li {
display: inline;
}
.content input[type=text] {
width: 60%;
}
.content input, select {
border: thin solid #222;
background-color: white;
}
fieldset {
text-align: center;
}
/*label {
display: none;
}*/
.js-toggle-sibling {
cursor: pointer;
}
.js-toggle {
display: none;
}
table {
border-collapse: collapse;
}
td, th {
padding: 0.25em;
}
th {
font-weight: bold;
border-bottom: 1px solid;
}
.print-only { display: none; }
.error { color: crimson; font-size: 1rem !important; font-weight: normal; }
.diarium {
font-family: "Junicode", "Symbola";
}
.diarium .pagination {
margin-bottom: 1em;
font-family: Lato;
display: block;
text-align: left;
}
.diarium .pagination a {
text-decoration: none;
color: inherit;
}
.diarium .pagination .prev:before {
content: "▲";
color: red;
}
.diarium .pagination .next:before {
content: "▼";
color: red;
}
.diarium .pagination h1 {
font-size: xx-large;
margin: 0;
border: none;
}
.content .diarium h2 {
font-size: large;
font-weight: bold;
display: inline;
border-bottom: none;
}
.diarium * + p {
display: inline;
}
.diarium p + p {
display: block;
}
.diarium div + div {
margin-top: 1em;
}
.diarium .margin-left {
position: absolute;
left: 1.5rem;
max-width: 12rem;
font-size: 1rem !important;
}
.diarium .unclear::after {
content: "[?]";
}
.annotation {
text-decoration: none;
/* border-bottom: thin dashed; */
display: inline;
}
.annotation-reference {
padding: 0 .25em;
text-decoration: none;
border-bottom: thin dashed;
font-size:9pt;
vertical-align:super;
color: blue;
}
.annotation-target + * {
display: inline;
}
.annotation-target {
/*display: none;*/
background-color: #fff8dc;
border: thin solid #ffe4b5;
padding: .25em;
padding-left: 2.5em;
text-indent: -2.2em;
position: absolute;
left: 65em;
width: 25rem;
max-width: 25rem;
font-size: 1rem !important;
font-weight: normal !important;
z-index: 90;
/* float: right;*/
/* margin-right: -31rem;*/
}
.appheading {
font-size: 13pt;
color: black;
font-weight: 600;
text-align: left
}
.fnnumber {
display: inline-block;
margin-left: 2.2em;
}
.active {
font-weight: bold;
}
.diarium .active, .diarium .active * {
font-weight: inherit;
/*background-color: yellow;*/
background-color: #fffa9c;
z-index: 100;
}
.diarium .visible, .diarium .visible * {
font-weight: inherit;
/*background-color: #fffa9c;*/
z-index: 100;
display: inline;
}
.margin-left .annotation-target {
margin-left: -1.5em;
}
.facsimile {
display: none;
background-color: black;
border: thin solid grey;
padding: .25em;
position: absolute;
/*left: 65em;*/
left: 51em;
/*width: 50em;
max-width: 50em;*/
width: 32em;
max-width: 32em;
height: 50em;
max-height: 50em;
font-size: 1rem !important;
font-weight: normal !important;
z-index: 100;
}
.facsimile a {
padding: .25em;
color: white;
text-decoration: none;
cursor: pointer;
}
.facsimile img {
width: 95%;
height: 100%;
}
.facsimile iframe {
width: 95%;
height: 100%;
}
/*
#facsimile {
display: block;
}*/
.controls a {
text-decoration: none;
}
.controls {
text-align: right;
font-size: small;
}
.controls li {
display: inline;
padding: 0 1em;
}
.register dl { margin-left: 2em; }
.register dt { font-weight: bold; margin-left: -1em; margin-right: 1em; float: left; }
.register dt a { margin: 0 0.25em; text-decoration: inherit; }
.cipher:before { content: "{:"; }
.cipher:after { content: ":}"; }
.breadcrumbs li { display: inline; }
.breadcrumbs li + li:before { content: " / "; }
ol {
list-style-type: roman;
}
ol em {
background-color: yellow;
}
.float {
/* left: 65rem;*/
left: 55em;
position: absolute;
padding: .25em;
width: 25rem;
}
.float img {
width: inherit;
}
.resp {
text-align: right;
font-size: smaller;
}
.row {
display: table-row;
}
.column {
display: table-cell;
padding: 1em;
}
public/assets/selbstzeugnisse/images/teaser/img001_klein.jpg

9.79 KiB

public/assets/selbstzeugnisse/images/teaser/img002_klein.jpg

8.55 KiB

public/assets/selbstzeugnisse/images/teaser/img004.jpg

26.8 KiB

public/assets/selbstzeugnisse/images/teaser/img005.jpg

26.6 KiB