bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/0.1
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
1 |
<!DOCTYPE html>
|
2 |
<html> |
|
3 |
<head> |
|
4 |
<title>Webbprogrammering DA330G</title> |
|
4.2.8
by c11emian
Extracted the inline-css from Parser_Test.html and created Parser_Test.css where I inserted the code. |
5 |
<link rel="stylesheet" href="Lindex.css" type="text/css" media="screen" /> |
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
6 |
</head> |
7 |
<body> |
|
8 |
<div id="sidebar"> |
|
9 |
<div id="menu"> |
|
10 |
<div id="menuHeader"> |
|
11 |
<h3>Quick links</h3> |
|
12 |
</div> |
|
13 |
<div id="menuItems"> |
|
14 |
<a href="#LectureSlides" class="menuLink">Lectures</a> |
|
15 |
<a href="#Assignments" class="menuLink">Assignments</a> |
|
16 |
<br> |
|
17 |
<a href="#PHPIntro" class="menuLink">PHP Intro</a> |
|
18 |
<a href="#SAXExamples" class="menuLink">SAX</a> |
|
19 |
<a href="#DOMExamples" class="menuLink">DOM</a> |
|
20 |
<a href="#XSLTExamples" class="menuLink">XSLT</a> |
|
21 |
<a href="#NamespaceExamples" class="menuLink">Namespaces</a> |
|
22 |
<a href="#Tips" class="menuLink">Tips</a> |
|
23 |
</div> |
|
24 |
||
25 |
</div> |
|
26 |
</div> |
|
27 |
<div id="content"> |
|
28 |
<div class="group"> |
|
29 |
<h1>Lectures and Assignments</h1> |
|
30 |
<h2 id="LectureSlides">Lecture Slides</h2> |
|
31 |
<div class="container"> |
|
32 |
</div> |
|
33 |
||
34 |
<h2 id="Assignments">Assignments</h2> |
|
35 |
<div class="container"> |
|
36 |
<a href='Assignment1a/Assignment1a.php'>Assignment 1A: PHP Forms and simple Arrays</a><br> |
|
37 |
<a href='Assignment1b/Assignment1b.php'>Assignment 1B: PHP Arrays and Tables</a><br> |
|
38 |
<a href='Assignment2/Assignment2.php'>Assignment 2: SAX API</a><br> |
|
39 |
<a href='Assignment3/Assignment3.php'>Assignment 3: DOM API</a><br> |
|
40 |
<a href='Assignment4/Assignment4.php'>Assignment 4: DOM Validation</a><br> |
|
41 |
<a href='Assignment5/Assignment5.php'>Assignment 5: DOM XPATH</a><br> |
|
42 |
<a href='Assignment6/Assignment6.php'>Assignment 6: XSLT Iteration</a><br> |
|
43 |
<a href='Assignment7/Assignment7.php'>Assignment 7: XSLT Recursive Templates</a><br> |
|
44 |
<a href='Assignment8/Assignment8.php'>Assignment 8: Main Assignment</a><br> |
|
45 |
</div> |
|
46 |
</div> <!---- End Group div ----> |
|
47 |
||
48 |
<div class="group"> |
|
49 |
<h1>Code Examples</h1> |
|
50 |
<h2 id="PHPIntro">PHP Introduction</h2> |
|
51 |
<div class="container"> |
|
52 |
<a href='IntroExample1/IntroExample1.php'>Introduction Example 1: PHP Startup</a><br> |
|
53 |
<a href='IntroExample2/IntroExample2.php'>Introduction Example 2: PHP Startup</a><br> |
|
54 |
<a href='IntroExample3/IntroExample3.php'>Introduction Example 3: PHP Variables</a><br> |
|
55 |
<a href='IntroExample4/IntroExample4.php'>Introduction Example 4: Arrays #1</a><br> |
|
56 |
<a href='IntroExample5/IntroExample5.php'>Introduction Example 5: Arrays #2</a><br> |
|
57 |
<a href='IntroExample6/IntroExample6.php'>Introduction Example 6: Arrays #3</a><br> |
|
58 |
<a href='IntroExample7/IntroExample7.php'>Introduction Example 7: Forms #1</a><br> |
|
59 |
<a href='IntroExample8/IntroExample8.php'>Introduction Example 8: Forms #2</a><br> |
|
60 |
<a href='IntroExample9/IntroExample9.php'>Introduction Example 9: Forms #3</a><br> |
|
61 |
<a href='IntroExample10/IntroExample10.php'>Introduction Example 10: Forms #4</a><br> |
|
62 |
<a href='IntroExample11/IntroExample11.php'>Introduction Example 11: Forms #5</a><br> |
|
63 |
<a href='IntroExample12/IntroExample12.php'>Introduction Example 12: Tables #1</a><br> |
|
64 |
<a href='IntroExample13/IntroExample13.php'>Introduction Example 13: Tables #2</a><br> |
|
65 |
</div> |
|
66 |
||
67 |
<h2 id="SAXExamples">SAX Examples</h2> |
|
68 |
<div class="container"> |
|
69 |
<a href='SAXExample1a/SAXExample1a.php'>SAX Example 1: Sax Initiation</a><br> |
|
70 |
<a href='SAXExample1b/SAXExample1b.php'>SAX Example 2: Removal of White Space Tags</a><br> |
|
71 |
<a href='SAXExample1c/SAXExample1c.php'>SAX Example 3: Printing of attributes </a><br> |
|
72 |
<a href='SAXExample1d/SAXExample1d.php'>SAX Example 4: Print formatting</a><br> |
|
73 |
<a href='SAXExample1e/SAXExample1e.php'>SAX Example 5: Print formatting</a><br> |
|
74 |
<a href='SAXExample1f/SAXExample1f.php'>SAX Example 6: Indentation</a><br> |
|
75 |
</div> |
|
76 |
||
77 |
<h2 id="DOMExamples">DOM Examples</h2> |
|
78 |
<div class="container"> |
|
79 |
<a href='DOMExample1/DOMExample1.php'>DOM Example 1: Initiation and simple navigation</a><br> |
|
80 |
<a href='DOMExample1b/DOMExample1b.php'>DOM Example 2: Attribute navigation</a><br> |
|
81 |
<a href='DOMExample1c/DOMExample1c.php'>DOM Example 3: Advanced navigation</a><br> |
|
82 |
<a href='DOMExample1d/DOMExample1d.php'>DOM Example 4: Advanced navigation</a><br> |
|
83 |
<a href='DOMExample2/DOMExample2.php'>DOM Example 5: Validation #1</a><br> |
|
84 |
<a href='DOMExample2b/DOMExample2b.php'>DOM Example 6: Validation #2</a><br> |
|
85 |
<a href='DOMExample2c/DOMExample2c.php'>DOM Example 7: Validation #3</a><br> |
|
86 |
<a href='DOMExample2d/DOMExample2d.php'>DOM Example 8: Validation #4</a><br> |
|
87 |
<a href='DOMExample2e/DOMExample2e.php'>DOM Example 9: Validation #5 </a><br> |
|
88 |
<a href='DOMExample3/DOMExample3.php'>DOM Example 10: XPATH #1</a><br> |
|
89 |
<a href='DOMExample3b/DOMExample3b.php'>DOM Example 11: XPATH #2 Context Nodes</a><br> |
|
90 |
</div> |
|
91 |
||
92 |
<h2 id="XSLTExamples">XSLT Examples</h2> |
|
93 |
<div class="container"> |
|
94 |
<a href='XSLTExample1/XSLTExample1.php'>XSLT Example 1: Template Match</a><br> |
|
95 |
<a href='XSLTExample2/XSLTExample2.php'>XSLT Example 2: Simple Navigation</a><br> |
|
96 |
<a href='XSLTExample3/XSLTExample3.php'>XSLT Example 3: Nested Navigation</a><br> |
|
97 |
<a href='XSLTExample4/XSLTExample4.php'>XSLT Example 4: Conditionals</a><br> |
|
98 |
<a href='XSLTExample5/XSLTExample5.php'>XSLT Example 5: Simple Template Match</a><br> |
|
99 |
<a href='XSLTExample6/XSLTExample6.php'>XSLT Example 6: Simple Template Match</a><br> |
|
100 |
<a href='XSLTExample7/XSLTExample7.php'>XSLT Example 7: Keys</a><br> |
|
101 |
<a href='XSLTExample8a/XSLTExample8a.php'>XSLT Example 8a: Simple Sorting</a><br> |
|
102 |
<a href='XSLTExample8b/XSLTExample8b.php'>XSLT Example 8b: Grouping using keys</a><br> |
|
103 |
<a href='XSLTExample9/XSLTExample9.php'>XSLT Example 9: Grouping</a><br> |
|
104 |
<a href='XSLTExample10/XSLTExample10.php'>XSLT Example 10: Variables</a><br> |
|
105 |
</div> |
|
106 |
||
107 |
<h2 id="NamespaceExamples">Namespace Examples</h2> |
|
108 |
<div class="container"> |
|
109 |
<a href='NamespaceExample1/NamespaceExample1.php'>Namespace Example 1: Sax API</a><br> |
|
110 |
<a href='NamespaceExample2/NamespaceExample2.php'>Namespace Example 2: DOM API</a><br> |
|
111 |
<a href='NamespaceExample3/NamespaceExample3.php'>Namespace Example 3: DOM API with XPATH</a><br> |
|
112 |
<a href='NamespaceExample4/NamespaceExample4.php'>Namespace Example 4: XSLT</a><br> |
|
113 |
</div> |
|
114 |
||
115 |
<h2 id="Tips">Tips and Tricks</h2> |
|
116 |
<div class="container"> |
|
117 |
</div> |
|
118 |
||
119 |
</div> <!---- End Group div ----> |
|
120 |
||
121 |
</div> |
|
122 |
</body> |
|
123 |
</html> |