From: Roland Haeder Date: Fri, 4 Sep 2015 14:13:34 +0000 (+0200) Subject: Moved out to pizzaservice-war.git to make it self-sufficient ("autark" in German). X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4a57ddb7d8035e0623c90534360223cd67589c12;p=pizzaservice.git Moved out to pizzaservice-war.git to make it self-sufficient ("autark" in German). Signed-off-by: Roland Häder --- diff --git a/PizzaService-war/build.xml b/PizzaService-war/build.xml deleted file mode 100644 index 00b4eed..0000000 --- a/PizzaService-war/build.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project PizzaService-war. - - - diff --git a/PizzaService-war/install/install.sql b/PizzaService-war/install/install.sql deleted file mode 100644 index d4bce3b..0000000 --- a/PizzaService-war/install/install.sql +++ /dev/null @@ -1,52 +0,0 @@ -DROP TABLE IF EXISTS `category`; -CREATE TABLE IF NOT EXISTS `category` ( -`id` bigint(20) unsigned NOT NULL COMMENT 'Primary key', - `title` varchar(255) NOT NULL COMMENT 'Category title', - `parent` bigint(20) unsigned DEFAULT NULL COMMENT 'Parent category', - PRIMARY KEY (`id`), - INDEX `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Categories' ; - -DROP TABLE IF EXISTS `contacts`; -CREATE TABLE IF NOT EXISTS `contacts` ( -`id` bigint(20) unsigned NOT NULL COMMENT 'Primary key', - `own_contact` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether own contact', - `gender` varchar(10) NOT NULL DEFAULT 'UNKNOWN' COMMENT 'Gender', - `first_name` varchar(100) NOT NULL COMMENT 'First name', - `family_name` varchar(100) NOT NULL COMMENT 'Family name', - `company_name` varchar(255) DEFAULT NULL COMMENT 'Company name', - `street` varchar(255) DEFAULT NULL COMMENT 'Street name', - `house_number` smallint(5) unsigned DEFAULT NULL COMMENT 'House number', - `city` varchar(100) DEFAULT NULL COMMENT 'City name', - `zip_code` smallint(5) unsigned DEFAULT NULL COMMENT 'ZIP code', - `country_code` char(2) DEFAULT NULL COMMENT 'Country code', - `phone_number` varchar(100) DEFAULT NULL COMMENT 'Phone number', - `cellphone_number` varchar(100) DEFAULT NULL COMMENT 'Cellphone number', - `fax_number` varchar(100) DEFAULT NULL COMMENT 'Fax number', - `email_address` varchar(100) DEFAULT NULL COMMENT 'Email addres', - `birthday` date DEFAULT NULL COMMENT 'Birth day', - `comment` tinytext NOT NULL COMMENT 'Comment', - `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Entry created', - `updated` timestamp NULL DEFAULT NULL COMMENT 'Entry updated', - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Contacts data' ; - -DROP TABLE IF EXISTS `products`; -CREATE TABLE IF NOT EXISTS `products` ( -`id` bigint(20) unsigned NOT NULL COMMENT 'Primary key', - `category` bigint(20) unsigned DEFAULT NULL COMMENT 'Category id', - `title` varchar(255) NOT NULL COMMENT 'Title of product', - `price` decimal(20,2) unsigned NOT NULL COMMENT 'Product price', - `available` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether product is available', - PRIMARY KEY (`id`), - INDEX `category` (`category`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Products' ; - -ALTER TABLE `category` -MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key'; - -ALTER TABLE `contacts` -MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key'; - -ALTER TABLE `products` -MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key'; diff --git a/PizzaService-war/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar b/PizzaService-war/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar deleted file mode 100644 index eaf6790..0000000 Binary files a/PizzaService-war/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar and /dev/null differ diff --git a/PizzaService-war/lib/cdi-api.jar b/PizzaService-war/lib/cdi-api.jar deleted file mode 100644 index 1fa239e..0000000 Binary files a/PizzaService-war/lib/cdi-api.jar and /dev/null differ diff --git a/PizzaService-war/lib/gf-client.jar b/PizzaService-war/lib/gf-client.jar deleted file mode 100644 index 2f369f3..0000000 Binary files a/PizzaService-war/lib/gf-client.jar and /dev/null differ diff --git a/PizzaService-war/lib/nblibraries.properties b/PizzaService-war/lib/nblibraries.properties deleted file mode 100644 index d9714fb..0000000 --- a/PizzaService-war/lib/nblibraries.properties +++ /dev/null @@ -1,11 +0,0 @@ -libs.CopyLibs.classpath=\ - ${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar -libs.CopyLibs.displayName=CopyLibs Task -libs.CopyLibs.prop-version=2.0 -libs.javaee-endorsed-api-6.0.classpath=\ - ${base}/javaee-endorsed-api-6.0/javax.annotation.jar;\ - ${base}/javaee-endorsed-api-6.0/jaxb-api-osgi.jar;\ - ${base}/javaee-endorsed-api-6.0/webservices-api-osgi.jar -libs.javaee-endorsed-api-6.0.displayName=Java EE 6 Endorsed API Library -libs.javaee-endorsed-api-6.0.javadoc=\ - ${base}/javaee-endorsed-api-6.0/javaee-doc-api.jar diff --git a/PizzaService-war/nbproject/ant-deploy.xml b/PizzaService-war/nbproject/ant-deploy.xml deleted file mode 100644 index 2d5f877..0000000 --- a/PizzaService-war/nbproject/ant-deploy.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/PizzaService-war/nbproject/build-impl.xml b/PizzaService-war/nbproject/build-impl.xml deleted file mode 100644 index 7c7566e..0000000 --- a/PizzaService-war/nbproject/build-impl.xml +++ /dev/null @@ -1,1483 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set build.web.dir - Must set build.generated.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.war - - - - - - - - - -The Java EE server classpath is not correctly set up - server home directory is missing. -Either open the project in the IDE and assign the server or setup the server classpath manually. -For example like this: - ant -Dj2ee.server.home=<app_server_installation_directory> - - -The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}. -Either open the project in the IDE and assign the server or setup the server classpath manually. -For example like this: - ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file) -or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The libs.CopyLibs.classpath property is not set up. -This property must point to -org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part -of NetBeans IDE installation and is usually located at -<netbeans_installation>/java<version>/ant/extra folder. -Either open the project in the IDE and make sure CopyLibs library -exists or setup the property manually. For example like this: - ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.jsp.includes - - - - - - - - - - - - - - - - - - - - - - - - - - Must select a file in the IDE or set jsp.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable. - - - Launching ${browse.url} - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/PizzaService-war/nbproject/genfiles.properties b/PizzaService-war/nbproject/genfiles.properties deleted file mode 100644 index d4e8376..0000000 --- a/PizzaService-war/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=dda72f05 -build.xml.script.CRC32=82213886 -build.xml.stylesheet.CRC32=651128d4@1.68.1.1 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=dda72f05 -nbproject/build-impl.xml.script.CRC32=06b680e3 -nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.68.1.1 diff --git a/PizzaService-war/nbproject/project.properties b/PizzaService-war/nbproject/project.properties deleted file mode 100644 index 8f87762..0000000 --- a/PizzaService-war/nbproject/project.properties +++ /dev/null @@ -1,95 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=true -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.web.dir}/WEB-INF/classes -build.classes.excludes=**/*.java,**/*.form -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -build.web.dir=${build.dir}/web -build.web.excludes=${build.classes.excludes} -client.urlPart= -compile.jsps=false -conf.dir=${source.root}/conf -debug.classpath=${build.classes.dir}:${javac.classpath} -debug.test.classpath=\ - ${run.test.classpath} -display.browser=true -# Files to be excluded from distribution war -dist.archive.excludes= -dist.dir=dist -dist.ear.war=${dist.dir}/${war.ear.name} -dist.javadoc.dir=${dist.dir}/javadoc -dist.war=${dist.dir}/${war.name} -endorsed.classpath=\ - ${libs.javaee-endorsed-api-6.0.classpath} -excludes= -file.reference.cdi-api.jar=lib/cdi-api.jar -file.reference.gf-client.jar=lib/gf-client.jar -includes=** -j2ee.compile.on.save=true -j2ee.copy.static.files.on.save=true -j2ee.deploy.on.save=true -j2ee.platform=1.7 -j2ee.platform.classpath=${j2ee.server.middleware}/mq/lib/jaxm-api.jar:${j2ee.server.home}/modules/endorsed/javax.annotation-api.jar:${j2ee.server.home}/modules/endorsed/jaxb-api.jar:${j2ee.server.home}/modules/endorsed/webservices-api-osgi.jar:${j2ee.server.home}/modules/bean-validator.jar:${j2ee.server.home}/modules/javax.batch-api.jar:${j2ee.server.home}/modules/javax.ejb-api.jar:${j2ee.server.home}/modules/javax.el.jar:${j2ee.server.home}/modules/javax.enterprise.concurrent-api.jar:${j2ee.server.home}/modules/javax.enterprise.concurrent.jar:${j2ee.server.home}/modules/javax.enterprise.deploy-api.jar:${j2ee.server.home}/modules/javax.faces.jar:${j2ee.server.home}/modules/javax.inject.jar:${j2ee.server.home}/modules/javax.interceptor-api.jar:${j2ee.server.home}/modules/javax.jms-api.jar:${j2ee.server.home}/modules/javax.json.jar:${j2ee.server.home}/modules/javax.mail.jar:${j2ee.server.home}/modules/javax.management.j2ee-api.jar:${j2ee.server.home}/modules/javax.persistence.jar:${j2ee.server.home}/modules/javax.resource-api.jar:${j2ee.server.home}/modules/javax.security.auth.message-api.jar:${j2ee.server.home}/modules/javax.security.jacc-api.jar:${j2ee.server.home}/modules/javax.servlet-api.jar:${j2ee.server.home}/modules/javax.servlet.jsp-api.jar:${j2ee.server.home}/modules/javax.servlet.jsp.jar:${j2ee.server.home}/modules/javax.servlet.jsp.jstl-api.jar:${j2ee.server.home}/modules/javax.servlet.jsp.jstl.jar:${j2ee.server.home}/modules/javax.transaction-api.jar:${j2ee.server.home}/modules/javax.websocket-api.jar:${j2ee.server.home}/modules/javax.ws.rs-api.jar:${j2ee.server.home}/modules/javax.xml.registry-api.jar:${j2ee.server.home}/modules/javax.xml.rpc-api.jar:${j2ee.server.home}/modules/jaxb-osgi.jar:${j2ee.server.home}/modules/webservices-osgi.jar:${j2ee.server.home}/modules/weld-osgi-bundle.jar -j2ee.platform.embeddableejb.classpath=${j2ee.server.home}/lib/embedded/glassfish-embedded-static-shell.jar -j2ee.platform.wscompile.classpath=${j2ee.server.home}/modules/webservices-osgi.jar -j2ee.platform.wsgen.classpath=${j2ee.server.home}/modules/webservices-osgi.jar:${j2ee.server.home}/modules/endorsed/webservices-api-osgi.jar:${j2ee.server.home}/modules/jaxb-osgi.jar:${j2ee.server.home}/modules/endorsed/jaxb-api.jar -j2ee.platform.wsimport.classpath=${j2ee.server.home}/modules/webservices-osgi.jar:${j2ee.server.home}/modules/endorsed/webservices-api-osgi.jar:${j2ee.server.home}/modules/jaxb-osgi.jar:${j2ee.server.home}/modules/endorsed/jaxb-api.jar -j2ee.platform.wsit.classpath= -j2ee.server.type=gfv3ee6 -jar.compress=false -javac.classpath=\ - ${reference.jshop.jar}:\ - ${file.reference.cdi-api.jar}:\ - ${file.reference.gf-client.jar} -# Space-separated list of extra javac options -javac.compilerargs= -javac.debug=true -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.preview=true -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -lib.dir=${web.docbase.dir}/WEB-INF/lib -persistence.xml.dir=${conf.dir} -platform.active=default_platform -project.jshop=../../jshop -reference.jshop.jar=${project.jshop}/dist/jshop.jar -resource.dir=setup -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -# Space-separated list of JVM arguments used when running a class with a main method or a unit test -# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value): -runmain.jvmargs= -source.encoding=UTF-8 -source.root=src -src.dir=${source.root}/java -test.src.dir=test -war.content.additional= -war.ear.name=${war.name} -war.name=PizzaService-war.war -web.docbase.dir=web -webinf.dir=web/WEB-INF diff --git a/PizzaService-war/nbproject/project.xml b/PizzaService-war/nbproject/project.xml deleted file mode 100644 index 954eb02..0000000 --- a/PizzaService-war/nbproject/project.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - org.netbeans.modules.web.project - - - PizzaService-war - 1.6.5 - - - ${reference.jshop.jar} - WEB-INF/lib - - - ${file.reference.cdi-api.jar} - WEB-INF/lib - - - ${file.reference.gf-client.jar} - WEB-INF/lib - - - - - - - - - - - - .\lib\nblibraries.properties - - - - jshop - jar - - jar - clean - jar - - - - diff --git a/PizzaService-war/src/conf/MANIFEST.MF b/PizzaService-war/src/conf/MANIFEST.MF deleted file mode 100644 index 59499bc..0000000 --- a/PizzaService-war/src/conf/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - diff --git a/PizzaService-war/src/java/log4j2.xml b/PizzaService-war/src/java/log4j2.xml deleted file mode 100644 index 1f62de5..0000000 --- a/PizzaService-war/src/java/log4j2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/PizzaService-war/src/java/org/mxchange/localization/bundle_de.properties b/PizzaService-war/src/java/org/mxchange/localization/bundle_de.properties deleted file mode 100644 index e69de29..0000000 diff --git a/PizzaService-war/src/java/org/mxchange/localization/bundle_en.properties b/PizzaService-war/src/java/org/mxchange/localization/bundle_en.properties deleted file mode 100644 index e69de29..0000000 diff --git a/PizzaService-war/web/WEB-INF/faces-config.xml b/PizzaService-war/web/WEB-INF/faces-config.xml deleted file mode 100644 index 59dad75..0000000 --- a/PizzaService-war/web/WEB-INF/faces-config.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - PrivacyTermsCheckboxValidator - org.mxchange.jsfcore.validator.bool.privacy_terms.PrivacyTermsCheckboxValidator - - - NameValidator - org.mxchange.jsfcore.validator.string.names.NameValidator - - diff --git a/PizzaService-war/web/WEB-INF/glassfish-web.xml b/PizzaService-war/web/WEB-INF/glassfish-web.xml deleted file mode 100644 index 730d586..0000000 --- a/PizzaService-war/web/WEB-INF/glassfish-web.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - /PizzaService-war - - - - Keep a copy of the generated servlet class' java code. - - - diff --git a/PizzaService-war/web/WEB-INF/templates.dist/guest_page.xhtml b/PizzaService-war/web/WEB-INF/templates.dist/guest_page.xhtml deleted file mode 100644 index 7439d63..0000000 --- a/PizzaService-war/web/WEB-INF/templates.dist/guest_page.xhtml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - Your page's title here - - - - - - - Your header above content here - - - - Here goes your content. - - - - - - - diff --git a/PizzaService-war/web/WEB-INF/templates/base.tpl b/PizzaService-war/web/WEB-INF/templates/base.tpl deleted file mode 100644 index d191bf6..0000000 --- a/PizzaService-war/web/WEB-INF/templates/base.tpl +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - Pizza-Service - <ui:insert name="title">Default title</ui:insert> - - - -
- -
- - - - -
- diff --git a/PizzaService-war/web/WEB-INF/templates/generic/gender_selection_box.tpl b/PizzaService-war/web/WEB-INF/templates/generic/gender_selection_box.tpl deleted file mode 100644 index a6fff29..0000000 --- a/PizzaService-war/web/WEB-INF/templates/generic/gender_selection_box.tpl +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - diff --git a/PizzaService-war/web/WEB-INF/templates/guest/guest_base.tpl b/PizzaService-war/web/WEB-INF/templates/guest/guest_base.tpl deleted file mode 100644 index 5d8856b..0000000 --- a/PizzaService-war/web/WEB-INF/templates/guest/guest_base.tpl +++ /dev/null @@ -1,13 +0,0 @@ - - - - diff --git a/PizzaService-war/web/WEB-INF/templates/guest/guest_footer.tpl b/PizzaService-war/web/WEB-INF/templates/guest/guest_footer.tpl deleted file mode 100644 index 6462748..0000000 --- a/PizzaService-war/web/WEB-INF/templates/guest/guest_footer.tpl +++ /dev/null @@ -1,16 +0,0 @@ - - - -
-
diff --git a/PizzaService-war/web/WEB-INF/templates/guest/guest_login_form.tpl b/PizzaService-war/web/WEB-INF/templates/guest/guest_login_form.tpl deleted file mode 100644 index a0a719b..0000000 --- a/PizzaService-war/web/WEB-INF/templates/guest/guest_login_form.tpl +++ /dev/null @@ -1,48 +0,0 @@ - -
- -
-
- Bitte geben Sie Ihre Kundennummer und Passwort ein: -
- -
- Bitte Daten eingeben: - -
-
- -
- -
- -
-
- -
- -
-
- -
- -
- -
-
- -
-
- - -
-
-
-
diff --git a/PizzaService-war/web/WEB-INF/templates/guest/guest_menu.tpl b/PizzaService-war/web/WEB-INF/templates/guest/guest_menu.tpl deleted file mode 100644 index 0e4d718..0000000 --- a/PizzaService-war/web/WEB-INF/templates/guest/guest_menu.tpl +++ /dev/null @@ -1,27 +0,0 @@ - - - diff --git a/PizzaService-war/web/WEB-INF/tlds/basket.tld b/PizzaService-war/web/WEB-INF/tlds/basket.tld deleted file mode 100644 index 234caf2..0000000 --- a/PizzaService-war/web/WEB-INF/tlds/basket.tld +++ /dev/null @@ -1,20 +0,0 @@ - - - 1.0 - 1.2 - basket - http://mxchange.org/jshop/tags/basket - - - mini_basket - A mini basket showing latest added item and a link to the full basket web page - org.mxchange.pizzaapplication.tags.basket.MiniBasketTag - - basket - Basket instance, should be the same as the bean - true - true - org.mxchange.jshop.beans.basket.BasketBean - - - diff --git a/PizzaService-war/web/WEB-INF/web.xml b/PizzaService-war/web/WEB-INF/web.xml deleted file mode 100644 index e66ce27..0000000 --- a/PizzaService-war/web/WEB-INF/web.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - Full-qualified back class name, must implement DatabaseBackend interface - database.backend.class - org.mxchange.jcore.database.backend.base64.Base64CsvDatabaseBackend - - - Login name for MySQL database, mostly not root - database.mysql.login - root - - - Password for above login, an empty password can be archived by setting a space - database.mysql.password - root - - - Hostname or IP address for MySQL server - database.mysql.host - localhost - - - Name of MySQL catalog - database.mysql.dbname - test - - - Data path for file-based database backends. This must be a relative path and it will reside 2 levels up from the server's web path. - database.backend.storagepath - data - - - javax.faces.PROJECT_STAGE - Development - - - A servlet filter for setting character encoding to UTF-8 - Utf8ServletFilter - org.mxchange.jsfcore.filter.servlet.utf8.Utf8ServletFilter - - - A servlet filter for logging - Log4jServletFilter - org.apache.logging.log4j.web.Log4jServletFilter - - - - Log4jServletFilter - /* - - - Utf8ServletFilter - /* - - - Faces Servlet - javax.faces.webapp.FacesServlet - 1 - - - Faces Servlet - /faces/* - - - tpl - text/plain - - - - 30 - - - - faces/index.xhtml - - diff --git a/PizzaService-war/web/admin/category.jsp b/PizzaService-war/web/admin/category.jsp deleted file mode 100644 index 8aefece..0000000 --- a/PizzaService-war/web/admin/category.jsp +++ /dev/null @@ -1,141 +0,0 @@ -<%-- - Document : category - Created on : 05.08.2015, 10:51:14 - Author : Roland Haeder ---%> - -<%--<%@page errorPage="errorHandler.jsp" %>--%> -<%@page import="org.mxchange.jshop.category.Category"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> -<%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - - - - -<% - // TODO: Can be removed later - controller.init(); -%> - - - - - - - - - Pizza-Service - Kategorien - - - - - - - -
-
-

Kategorien administrieren:

-
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - -
- Auswählen: - - Bezeichnung: - - Elternkategorie: -
- ${category.categoryId}: - - - ${category.decodedTitle} - - ${controller.generateLinkForParent(category)} -
-
-
- -
-
-
-
- Neue Kategorie hinzufügen: -
- -
- Bitte alle Felder ausfüllen: - -
-
- Bezeichnung: -
(z.B. Pizzen)
-
- -
- -
- -
-
- -
-
- Elternkategorie: -
- -
- -
- -
-
-
- - -
-
-
-
-
- - - - diff --git a/PizzaService-war/web/admin/index.jsp b/PizzaService-war/web/admin/index.jsp deleted file mode 100644 index d6cea8c..0000000 --- a/PizzaService-war/web/admin/index.jsp +++ /dev/null @@ -1,48 +0,0 @@ -<%-- - Document : index - Created on : 04.08.2015, 10:33:10 - Author : Roland Haeder ---%> - -<%--<%@page errorPage="errorHandler.jsp" %>--%> -<%@page import="java.util.Map"%> -<%@page import="java.util.Iterator"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> -<%@page import="org.mxchange.jshop.product.Product"%> -<%@page contentType="text/html" pageEncoding="UTF-8"%> - - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - - - - - - - Pizza-Service - Administration - - - - - - - -
-
-

Willkommen zur Administration:

-
- -
- Einiges kann hier eingestellt werden. -
-
- - - - diff --git a/PizzaService-war/web/admin/product.jsp b/PizzaService-war/web/admin/product.jsp deleted file mode 100644 index 49af00a..0000000 --- a/PizzaService-war/web/admin/product.jsp +++ /dev/null @@ -1,188 +0,0 @@ -<%-- - Document : product - Created on : 04.08.2015, 10:55:10 - Author : Roland Haeder ---%> - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%--<%@page errorPage="errorHandler.jsp" %>--%> -<%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> - - - - - -<% - // TODO: Can be removed later - controller.init(); -%> - - - - - - - - - Pizza-Service - Produkte - - - - - - - -
-
-

Diese Produkte wurden eingestellt:

-
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - -
- Produktnummer: - - Produktbezeichnung: - - Einzelpreis: - - Kategorie: - - Verfügbar: -
- ${product.itemId}: - - - ${product.title} - - ${product.price} - - ${controller.getPrintableProduktCategory(product)} - - ${controller.getPrintableProduktAvailability(product)} -
-
-
- -
-
-
-
- Neues Produkt hinzufügen: -
- -
- Bitte alle Felder ausfüllen: - -
-
- Produktbezeichnung: -
(z.B. Pizza Italia)
-
- -
- -
- -
-
- -
-
- Einzelpreis: -
(z.B. 50.0)
-
- -
- -
- -
-
- -
-
- Kategorie: -
- -
- -
- -
-
- -
-
- Verfügbar: -
- -
- -
- -
-
-
- - -
-
-
- -
- Hinweise zum Hinzufügen von Produkten: -
    -
  • Beim Preis keine Währungszeichen (wie € usw.) eingeben.
  • -
  • Kommastellen mit Punkt, nicht mit Komma abtrennen.
  • -
  • Keine Tausendertrenner verwenden, auch keine Leerschritte.
  • -
-
-
-
- - - - diff --git a/PizzaService-war/web/bye.xhtml b/PizzaService-war/web/bye.xhtml deleted file mode 100644 index 167737b..0000000 --- a/PizzaService-war/web/bye.xhtml +++ /dev/null @@ -1,49 +0,0 @@ -<%-- - Document : bye - Created on : 05.08.2015, 10:51:14 - Author : Roland Haeder ---%> - -<%--<%@page errorPage="errorHandler.jsp" %>--%> - - - - - - - Pizza-Service - Sitzung beenden - - - - - - - -
-
-

Situng beenden:

-
- -
- <% - synchronized (session) { - if (!session.isNew()) { - // Not new session - session.invalidate(); - out.println("Sitzung beendet."); - } else { - // New session - out.println("Sitzung bereits beendet."); - } - } - %> -
-
- - - - diff --git a/PizzaService-war/web/customer/login.xhtml b/PizzaService-war/web/customer/login.xhtml deleted file mode 100644 index 198e37c..0000000 --- a/PizzaService-war/web/customer/login.xhtml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - Einloggen - - - - - - - Zum Kundenbereich einloggen - - - -
- Noch kein Kunde? Einfach beim Bestellen anmelden oder hier anmelden. -
- -
-
- -
- -
-
- - - - -
- diff --git a/PizzaService-war/web/customer/lost_passwd.xhtml b/PizzaService-war/web/customer/lost_passwd.xhtml deleted file mode 100644 index 0535296..0000000 --- a/PizzaService-war/web/customer/lost_passwd.xhtml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - Passwort vergessen - - - - - - - Stellen Sie Ihr Passwort wieder her. - - - -
- -
-
- Sie haben Ihr Passwort vergessen? -
- -
- Bitte Daten eingeben: - -
-
- -
- -
- -
- -
-
- -
- ... oder ... -
- -
-
- -
- -
- -
- -
-
- -
- - -
-
-
-
- - - - -
- diff --git a/PizzaService-war/web/customer/register.xhtml b/PizzaService-war/web/customer/register.xhtml deleted file mode 100644 index 3be507e..0000000 --- a/PizzaService-war/web/customer/register.xhtml +++ /dev/null @@ -1,291 +0,0 @@ - - - - - Neukunde - - - - - - - Anmelden zum Pizza-Service: - - - -
- Sie sind bereits Kunde? Dann einloggen. -
- - -
-
- Anmelden als Neukunde -
- -
- Bitte geben Sie mindestens Name, Anschrift und Telefonnummer ein: -
- -
-
- Bitte Ihre Daten eingeben: - -
-
- -
- -
- -
- -
-
- -
-
- -
- -
- -
- -
-
- -
-
- -
- -
- - - -
- -
-
- -
-
- -
- -
- - - -
- -
-
- -
-
- -
- -
- - - -
- -
-
- -
-
- -
- -
- - - -
- -
-
- -
-
- -
- -
- -
- -
-
- -
-
- -
- -
- - - -
- -
-
- -
-
- -
- -
- -
- -
-
- -
-
- -
- -
- -
- -
-
- -
-
- -
- -
- -
- -
-
-
-
- -
-
- Email-Adresse und Passwort: - -
-
- -
- -
- -
- -
-
- -
-
- -
- -
- -
- -
-
- -
- -
-
- -
- -
- -
- -
-
- -
-
- -
- -
- -
- -
-
- -
- Die Kundennummer wird Ihnen später vergeben. -
-
-
- -
-
- Rechtliches: - -
-
- - - -
- -
- Ja, ich habe die gelesen und - auch verstanden. -
- -
-
- -
-
- - - -
- -
- Ja, ich habe die gelesen und - auch verstanden. -
- -
-
-
-
- - -
-
-
- - - - -
- diff --git a/PizzaService-war/web/errorHandler.xhtml b/PizzaService-war/web/errorHandler.xhtml deleted file mode 100644 index 1021261..0000000 --- a/PizzaService-war/web/errorHandler.xhtml +++ /dev/null @@ -1,52 +0,0 @@ -<%-- - Document : errorHandler - Created on : 05.08.2015, 12:06:39 - Author : Roland Haeder ---%> - -<%@page import="java.io.PrintWriter"%> -<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> -<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> - - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - - - - - - - Pizza-Service - Fehler - - - - - - - -
-
-

An error occured:

-
- -
- Unfortunately an unexpected error has occurred. Below you can find the error details. -
    -
  • Timestamp:
  • -
  • Action:
  • -
  • Exception:
  • -
  • Message:
  • -
  • Status code:
  • -
  • User agent:
  • -
-
-
- - - - diff --git a/PizzaService-war/web/form_handler/add_item.jsp b/PizzaService-war/web/form_handler/add_item.jsp deleted file mode 100644 index 74d7cf4..0000000 --- a/PizzaService-war/web/form_handler/add_item.jsp +++ /dev/null @@ -1,48 +0,0 @@ -<%-- - Document : add_item - Ceated on : Aug 17, 2015, 7:03:38 PM - Author : Roland Haeder ---%> - -<%--<%@page errorPage="errorHandler.jsp" %>--%> -<%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> -<%@page import="org.mxchange.jshop.item.AddableBasketItem"%> - - - - - - -<% - // TODO: Can be removed later - controller.init(); -%> - - - - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - - - - - - - Pizza-Service - Form-Handler - - - -
-

Pizza-Service - Form-Handler

-
- - - - - - - - diff --git a/PizzaService-war/web/form_handler/admin/do_category.jsp b/PizzaService-war/web/form_handler/admin/do_category.jsp deleted file mode 100644 index 6d6d7e0..0000000 --- a/PizzaService-war/web/form_handler/admin/do_category.jsp +++ /dev/null @@ -1,40 +0,0 @@ -<%-- - Document : order - Created on : 07.08.2015, 14:58:21 - Author : Roland Haeder ---%> - -<%--<%@page errorPage="errorHandler.jsp" %>--%> -<%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> - - - - - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - -<% - // Handle forms - controller.doAdminHandleCategoryForms(); -%> - - - - - - - Pizza-Service - Form-Handler - - - -
-

Pizza-Service - Form-Handler

-
- - - - - - diff --git a/PizzaService-war/web/form_handler/admin/do_product.jsp b/PizzaService-war/web/form_handler/admin/do_product.jsp deleted file mode 100644 index a985dfc..0000000 --- a/PizzaService-war/web/form_handler/admin/do_product.jsp +++ /dev/null @@ -1,40 +0,0 @@ -<%-- - Document : order - Created on : 07.08.2015, 14:58:21 - Author : Roland Haeder ---%> - -<%--<%@page errorPage="errorHandler.jsp" %>--%> -<%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> - - - - - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - -<% - // Handle forms - controller.doAdminHandleProductForms(); -%> - - - - - - - Pizza-Service - Form-Handler - - - -
-

Pizza-Service - Form-Handler

-
- - - - - - diff --git a/PizzaService-war/web/imprint.xhtml b/PizzaService-war/web/imprint.xhtml deleted file mode 100644 index db28ca0..0000000 --- a/PizzaService-war/web/imprint.xhtml +++ /dev/null @@ -1,27 +0,0 @@ - - - - Impressum - - - - - - - Impressum - - - - Hier kommt das Impressum hin! - - - - - - - diff --git a/PizzaService-war/web/index.html b/PizzaService-war/web/index.html deleted file mode 100644 index e1d12c2..0000000 --- a/PizzaService-war/web/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - TODO supply a title - - - - -
TODO write content
- - diff --git a/PizzaService-war/web/index.xhtml b/PizzaService-war/web/index.xhtml deleted file mode 100644 index 74acebc..0000000 --- a/PizzaService-war/web/index.xhtml +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - Willkommen! - - - - - - - Eingangsseite (dummy) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Folgendes kann bestellt werden: -
- Bestellen? - - Anzahl: - - Produkt: - - Einzelpreis: - - Zwischensumme: -
- - - #{basket.item.amount} - - #{product.title} - - - - - - - - -
- - - - - - - - - - #{product.title} - - - - - - - -
-
-
- - - - -
- diff --git a/PizzaService-war/web/privacy.xhtml b/PizzaService-war/web/privacy.xhtml deleted file mode 100644 index c78c75e..0000000 --- a/PizzaService-war/web/privacy.xhtml +++ /dev/null @@ -1,27 +0,0 @@ - - - - Datenschutzbestimmungen - - - - - - - Datenschutzbestimmungen - - - - Hier kommen die Datenschutzbestimmungen hin. - - - - - - - diff --git a/PizzaService-war/web/resources/css/cssLayout.css b/PizzaService-war/web/resources/css/cssLayout.css deleted file mode 100644 index 57b5048..0000000 --- a/PizzaService-war/web/resources/css/cssLayout.css +++ /dev/null @@ -1,145 +0,0 @@ -#top { - position: relative; - background-color: #036fab; - color: #ffffff; - padding: 5px; - margin: 0px 0px 10px 0px; -} - -#footer { - position: relative; - background-color: #c2dfef; - padding: 5px; - margin: 10px 0px 0px 0px; -} - -#left { - float: left; - background-color: #ece3a5; - padding: 5px; - width: 150px; -} - -#right { - float: right; - background-color: #ece3a5; - padding: 5px; - width: 150px; -} - -.center_content { - position: relative; - background-color: #dddddd; - padding: 5px; -} - -.left_content { - background-color: #dddddd; - padding: 5px; - margin-left: 170px; -} - -.right_content { - background-color: #dddddd; - padding: 5px; - margin: 0px 170px 0px 170px; -} - -#top a:link, #top a:visited { - color: #ffffff; - font-weight : bold; - text-decoration: none; -} - -#top a:link:hover, #top a:visited:hover { - color: #000000; - font-weight : bold; - text-decoration : underline; -} - -/** -div { - border: 1px solid #ff0000; -} -/**/ - -table, .table { - margin: 0px; - padding: 0px; -} - -.table { - width: 500px; -} - -.basket_item_table { - width: 600px; -} - -.table_row { - width: 100%; - min-height: 20px; -} - -.table_left { - width: 250px; - min-height: 20px; - float: left; -} - -.table_right { - width: 200px; - min-height: 20px; - float: right; -} - -.table_left25 { - width: 20px; - min-height: 20px; - float: left; -} - -.table_right75 { - width: 430px; - min-height: 20px; - float: right; -} - -.para { - padding: 5px 5px 5px 5px; -} - -.clear { - clear: both; -} - -ul.footer_nav { - text-align: center; - width : 500px; - list-style: none; - margin: 0px; -} - -ul.footer_nav li { - float: left; - width: 100px; -} - -.menu ul { - list-style: none; - padding-left: 5px; -} - -.table_header { - text-align: center; - font-weight: bold; - font-size: 20px; -} - -.table_header_column { - width: 100px; -} - -.table_data_column { - width: 100px; -} diff --git a/PizzaService-war/web/resources/css/default.css b/PizzaService-war/web/resources/css/default.css deleted file mode 100644 index 1df064a..0000000 --- a/PizzaService-war/web/resources/css/default.css +++ /dev/null @@ -1,31 +0,0 @@ -body { - background-color: #ffffff; - font-size: 12px; - font-family: lucida; - color: #000000; - margin: 10px; -} - -h1 { - border-bottom: 1px solid #AFAFAF; - font-size: 16px; - font-weight: bold; - margin: 0px; - padding: 0px; -} - -a:link, a:visited { - color: #045491; - font-weight : bold; - text-decoration: none; -} - -a:link:hover, a:visited:hover { - color: #045491; - font-weight : bold; - text-decoration : underline; -} - -label { - vertical-align: middle; -} diff --git a/PizzaService-war/web/static/admin/admin_category_selection_box.jsp b/PizzaService-war/web/static/admin/admin_category_selection_box.jsp deleted file mode 100644 index e1d2bec..0000000 --- a/PizzaService-war/web/static/admin/admin_category_selection_box.jsp +++ /dev/null @@ -1,16 +0,0 @@ -<%-- - Document : admin_category_selection_box - Created on : 14.08.2015, 12:51:05 - Author : Roland Haeder ---%> - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> - - - diff --git a/PizzaService-war/web/static/admin/admin_footer.jsp b/PizzaService-war/web/static/admin/admin_footer.jsp deleted file mode 100644 index aa6b21b..0000000 --- a/PizzaService-war/web/static/admin/admin_footer.jsp +++ /dev/null @@ -1,16 +0,0 @@ -<%-- - Document : admin_footer - Created on : 11.08.2015, 12:28:03 - Author : Roland Haeder ---%> - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - - - -
diff --git a/PizzaService-war/web/static/admin/admin_menu.jsp b/PizzaService-war/web/static/admin/admin_menu.jsp deleted file mode 100644 index 9250428..0000000 --- a/PizzaService-war/web/static/admin/admin_menu.jsp +++ /dev/null @@ -1,21 +0,0 @@ -<%-- - Document : admin_menu - Created on : 06.08.2015, 12:41:44 - Author : Roland Haeder ---%> - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - - - diff --git a/PizzaService-war/web/static/admin/admin_parent_category_selection_box.jsp b/PizzaService-war/web/static/admin/admin_parent_category_selection_box.jsp deleted file mode 100644 index c00a925..0000000 --- a/PizzaService-war/web/static/admin/admin_parent_category_selection_box.jsp +++ /dev/null @@ -1,17 +0,0 @@ -<%-- - Document : admin_parent_category_selection_box - Created on : 14.08.2015, 12:51:05 - Author : Roland Haeder ---%> - -<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> - - - diff --git a/PizzaService-war/web/static/error/direct_call.jsp b/PizzaService-war/web/static/error/direct_call.jsp deleted file mode 100644 index 37dab2c..0000000 --- a/PizzaService-war/web/static/error/direct_call.jsp +++ /dev/null @@ -1,14 +0,0 @@ -<%-- - Document : direct_call - Created on : 11.08.2015, 12:28:03 - Author : Roland Haeder ---%> -
-
-

Bitte nicht direkt aufrufen:

-
- -
- Bitte rufen Sie diese Seite nicht direkt auf. -
-
diff --git a/PizzaService-war/web/terms.xhtml b/PizzaService-war/web/terms.xhtml deleted file mode 100644 index e84f73f..0000000 --- a/PizzaService-war/web/terms.xhtml +++ /dev/null @@ -1,27 +0,0 @@ - - - - Allgemeine Geschäftsbedingungen - - - - - - - Allgemeine Geschäftsbedingungen - - - - Hier kommen die allgemeinen Geschäftsbedingungen hin. - - - - - - -