summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-03-20 19:14:31 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-03-20 19:14:31 +0100
commitd32db68aaf295dbabcbc5487d9f565161ba4875b (patch)
tree3fde5fb02c2bcc0d50f3c37e1e19eabe7b154879
downloadInternetTechnologien-d32db68aaf295dbabcbc5487d9f565161ba4875b.tar.gz
InternetTechnologien-d32db68aaf295dbabcbc5487d9f565161ba4875b.zip
First task added.
-rw-r--r--.buildpath5
-rw-r--r--.project28
-rw-r--r--.settings/org.eclipse.php.core.prefs2
-rw-r--r--.settings/org.eclipse.wst.common.project.facet.core.xml7
-rw-r--r--Aufgabe01/index.html59
-rw-r--r--Aufgabe01/test.php3
6 files changed, 104 insertions, 0 deletions
diff --git a/.buildpath b/.buildpath
new file mode 100644
index 0000000..8bcb4b5
--- /dev/null
+++ b/.buildpath
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<buildpath>
+ <buildpathentry kind="src" path=""/>
+ <buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
+</buildpath>
diff --git a/.project b/.project
new file mode 100644
index 0000000..c84eff8
--- /dev/null
+++ b/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>InternetTechnologien</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.wst.validation.validationbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.dltk.core.scriptbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.wst.common.project.facet.core.builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.wst.common.project.facet.core.nature</nature>
+ <nature>org.eclipse.php.core.PHPNature</nature>
+ </natures>
+</projectDescription>
diff --git a/.settings/org.eclipse.php.core.prefs b/.settings/org.eclipse.php.core.prefs
new file mode 100644
index 0000000..4f9563f
--- /dev/null
+++ b/.settings/org.eclipse.php.core.prefs
@@ -0,0 +1,2 @@
+eclipse.preferences.version=1
+include_path=0;/InternetTechnologien
diff --git a/.settings/org.eclipse.wst.common.project.facet.core.xml b/.settings/org.eclipse.wst.common.project.facet.core.xml
new file mode 100644
index 0000000..fe725be
--- /dev/null
+++ b/.settings/org.eclipse.wst.common.project.facet.core.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<faceted-project>
+ <fixed facet="php.component"/>
+ <fixed facet="php.core.component"/>
+ <installed facet="php.core.component" version="1"/>
+ <installed facet="php.component" version="5.6"/>
+</faceted-project>
diff --git a/Aufgabe01/index.html b/Aufgabe01/index.html
new file mode 100644
index 0000000..47e28a7
--- /dev/null
+++ b/Aufgabe01/index.html
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8">
+<title>Meine Hallo Welt</title>
+<style type="text/css">
+<!--
+td {
+ padding: 12px;
+}
+-->
+</style>
+</head>
+<body>
+<table border="1" contenteditable="true">
+ <tr contenteditable="false">
+ <th>Montag</th>
+ <th>Dienstag</th>
+ <th>Mittwoch</th>
+ <th>Donnerstag</th>
+ <th>Freitag</th>
+ <th>Samstag</th>
+ </tr>
+ <tr>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ </tr>
+ <tr>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ </tr>
+ <tr>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ </tr>
+ <tr>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ <td>Row 1: Col 1</td>
+ <td>Row 1: Col 2</td>
+ </tr>
+</table>
+
+</body>
+</html> \ No newline at end of file
diff --git a/Aufgabe01/test.php b/Aufgabe01/test.php
new file mode 100644
index 0000000..968c8df
--- /dev/null
+++ b/Aufgabe01/test.php
@@ -0,0 +1,3 @@
+<?php
+phpinfo();
+?> \ No newline at end of file