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 (9)
Showing
with 2375 additions and 1 deletion
File added
......@@ -16,6 +16,8 @@ php bin/composer.phar install
## Start a local server
Execute file start_server.bat or
```bash
php -S 127.0.0.1:9999 -t public public/index.php
```
......
File added
File added
File added
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
......@@ -3,8 +3,11 @@
$app->get('/', 'controller.staticpage:handle')
->bind('home');
$app->get('/edition/', 'controller.staticpage:handle')
$app->get('/edition_august', 'controller.staticpage:handle')
->bind('edition');
$app->get('/edition/einleitung', 'controller.staticpage:handle')
->bind('edition.einleitung');
$app->get('/edition/beschreibung', 'controller.staticpage:handle')
->bind('edition.beschreibung');
......@@ -65,3 +68,60 @@ $app->get('/dienste', 'controller.staticpage:handle')
$app->get('/suche', 'controller.search:handle')
->bind('suche');
$app->get('/edition_sz2', 'controller.staticpage:handle')
->bind('edition_sz2');
$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/cod_guelf_286_blank', 'controller.staticpage:handle')
->bind('sz2.cod_guelf_286_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('/sz2/itinerar_geobrowser', 'controller.staticpage:handle')
->bind('sz2.itinerar_geobrowser');
$app->get('/sz2/itinerar', 'controller.staticpage:handle')
->bind('sz2.itinerar');
$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.
This diff is collapsed.