import repositories kontor-java and kontor-ee

This commit is contained in:
Thomas Peetz
2025-03-30 15:57:09 +02:00
parent cbc57d22f8
commit fd5bc54eee
393 changed files with 21181 additions and 5 deletions
@@ -0,0 +1,39 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<h:outputStylesheet name="./css/default.css"/>
<h:outputStylesheet name="./css/cssLayout.css"/>
<title>Kontor Application</title>
</h:head>
<h:body>
<div id="top">Trading Cards Application</div>
<div>
<div id="left">
<h:link outcome="kontor">Kontor</h:link><br></br>
<h:link outcome="comics">Comics</h:link><br></br>
<h:link outcome="library">Library</h:link><br></br>
<h:link outcome="medien">Medien</h:link><br></br>
<h:link outcome="tradingcards">Trading Cards</h:link><br></br>
<h:link outcome="sport">Sport</h:link><br></br>
</div>
<div>
<div id="right">Right</div>
<div id="content" class="right_content">
<f:view>
<h:form>
<h:outputLabel value="Sport:"></h:outputLabel>
<h:inputText id="name" maxlength="16" value="#{sportView.name}"></h:inputText>
<h:commandButton id="submit" value="submit" action="addSport"/>
</h:form>
</f:view>
</div>
</div>
</div>
<div id="bottom">Ingenieurbüro Thomas Peetz</div>
</h:body>
</html>
@@ -0,0 +1,39 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<h:outputStylesheet name="./css/default.css"/>
<h:outputStylesheet name="./css/cssLayout.css"/>
<title>Kontor Application</title>
</h:head>
<h:body>
<div id="top">Trading Cards Application</div>
<div>
<div id="left">
<h:link outcome="kontor">Kontor</h:link><br></br>
<h:link outcome="comics">Comics</h:link><br></br>
<h:link outcome="library">Library</h:link><br></br>
<h:link outcome="medien">Medien</h:link><br></br>
<h:link outcome="tradingcards">Trading Cards</h:link><br></br>
<h:link outcome="sport">Sport</h:link><br></br>
</div>
<div>
<div id="right">Right</div>
<div id="content" class="right_content">
<f:view>
<h:form>
<h:outputLabel value="Sport:"></h:outputLabel>
<h:outputText value="#{sportView.name}"></h:outputText>
<h:commandButton id="save" value="save" action="saveSport"/>
</h:form>
</f:view>
</div>
</div>
</div>
<div id="bottom">Ingenieurbüro Thomas Peetz</div>
</h:body>
</html>