Gallerien in der Wettkampfeinzelansicht, Makefile für den ftpUpload

einer Videogallerie und Userattribute im Wettkampfplaner

Changes to be committed:

- Erweiterung der Wettkampfeinzelansicht um die (evtl. vorhandenen)
Galerien
 - modified:   phpLib/cwsvJudo/wkKalender.php
 - modified:   src/css/cwsvJudo-2018-mainNav.css
 - modified:   src/css/cwsvJudo-2018-wkKalender.css
- Makefile für das Hochladen einer Videogalerie
 - new file:   src/Makefiles/Makefile.ftpUpload
- Gehören mit zu den Gallerientemplates
 - new file:   src/galleryTemplates/indexHier.php
 - new file:   src/galleryTemplates/indexInArbeit.php
- Userattribute im Wettkampfplaner (war liegengeblieben)
 - new file:   wkParticipo/lib/wkParticipo-userAttribute.php
This commit is contained in:
marko
2018-11-06 10:21:53 +01:00
parent 00a50e2f0c
commit 2b7ab02db4
7 changed files with 246 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
<?php
include_once("config.inc.php");
$wkName = empty($wkName) ? "<fehlender Wettkampfname>" : $wkName;
include_once( $_SERVER['DOCUMENT_ROOT']."/ressourcen/phpLib/videoGallery/videoGallery.tmpl.php" );
?>

View File

@@ -0,0 +1,20 @@
<?php
include_once("config.inc.php");
$basePath = "/users/cwsvjudo/www";
require_once($basePath."/config/phpcount.config.php");
require_once($basePath."/ressourcen/phpLib/phpcount/phpcount.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>In Arbeit</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php PHPCount::AddHit($wkName." - Videoalbum (Vorschau)");?>
</head>
<body>
<p>Die Videos des Wettkampfes <?php echo($wkName);?> sind momentan noch in Vorbereitung. Einfach später noch mal probieren.</p>
<img style="width:100%;" src="/ressourcen/graphiken/misc/staffeleiM%e4nnlein.jpg" />
<p>Wer ganz ungeduldig ist, kann ja schon mal <a href="./indexHier.php">kiebitzen</a>.</p>
</body>
</html>