bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
1 |
<!DOCTYPE html>
|
2 |
<html> |
|
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
3 |
<head> |
4 |
<title>Webbprogrammering DA330G</title> |
|
5 |
<link rel="stylesheet" href="Lindex.css" type="text/css" media="screen" /> |
|
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 |
</div> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
25 |
</div> |
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
26 |
<div id="content"> |
27 |
<div class="group"> |
|
28 |
<h1>Lectures and Assignments</h1> |
|
29 |
<h2 id="LectureSlides">Lecture Slides</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
30 |
<div class="container"> |
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
31 |
</div> |
32 |
<h2 id="Assignments">Assignments</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
33 |
<div class="container"> |
34 |
<a href='Assignment1a/Assignment1a.php'>Assignment 1A: PHP Forms and simple Arrays</a><br> |
|
35 |
<a href='Assignment1b/Assignment1b.php'>Assignment 1B: PHP Arrays and Tables</a><br> |
|
36 |
<a href='Assignment2/Assignment2.php'>Assignment 2: SAX API</a><br> |
|
37 |
<a href='Assignment3/Assignment3.php'>Assignment 3: DOM API</a><br> |
|
38 |
<a href='Assignment4/Assignment4.php'>Assignment 4: DOM Validation</a><br> |
|
39 |
<a href='Assignment5/Assignment5.php'>Assignment 5: DOM XPATH</a><br> |
|
40 |
<a href='Assignment6/Assignment6.php'>Assignment 6: XSLT Iteration</a><br> |
|
41 |
<a href='Assignment7/Assignment7.php'>Assignment 7: XSLT Recursive Templates</a><br> |
|
42 |
<a href='Assignment8/Assignment8.php'>Assignment 8: Main Assignment</a><br> |
|
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
43 |
</div> |
|
19.2.4
by elof.bigestans at gmail
Fixed some minor validation errors |
44 |
</div> <!-- End Group div --> |
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
45 |
<div class="group"> |
46 |
<h1>Code Examples</h1> |
|
47 |
<h2 id="PHPIntro">PHP Introduction</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
48 |
<div class="container"> |
49 |
<a href='IntroExample1/IntroExample1.php'>Introduction Example 1: PHP Startup</a><br> |
|
50 |
<a href='IntroExample2/IntroExample2.php'>Introduction Example 2: PHP Startup</a><br> |
|
51 |
<a href='IntroExample3/IntroExample3.php'>Introduction Example 3: PHP Variables</a><br> |
|
52 |
<a href='IntroExample4/IntroExample4.php'>Introduction Example 4: Arrays #1</a><br> |
|
53 |
<a href='IntroExample5/IntroExample5.php'>Introduction Example 5: Arrays #2</a><br> |
|
54 |
<a href='IntroExample6/IntroExample6.php'>Introduction Example 6: Arrays #3</a><br> |
|
55 |
<a href='IntroExample7/IntroExample7.php'>Introduction Example 7: Forms #1</a><br> |
|
56 |
<a href='IntroExample8/IntroExample8.php'>Introduction Example 8: Forms #2</a><br> |
|
57 |
<a href='IntroExample9/IntroExample9.php'>Introduction Example 9: Forms #3</a><br> |
|
58 |
<a href='IntroExample10/IntroExample10.php'>Introduction Example 10: Forms #4</a><br> |
|
59 |
<a href='IntroExample11/IntroExample11.php'>Introduction Example 11: Forms #5</a><br> |
|
60 |
<a href='IntroExample12/IntroExample12.php'>Introduction Example 12: Tables #1</a><br> |
|
61 |
<a href='IntroExample13/IntroExample13.php'>Introduction Example 13: Tables #2</a><br> |
|
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
62 |
</div> |
63 |
<h2 id="SAXExamples">SAX Examples</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
64 |
<div class="container"> |
65 |
<a href='SAXExample1a/SAXExample1a.php'>SAX Example 1: Sax Initiation</a><br> |
|
66 |
<a href='SAXExample1b/SAXExample1b.php'>SAX Example 2: Removal of White Space Tags</a><br> |
|
67 |
<a href='SAXExample1c/SAXExample1c.php'>SAX Example 3: Printing of attributes </a><br> |
|
68 |
<a href='SAXExample1d/SAXExample1d.php'>SAX Example 4: Print formatting</a><br> |
|
69 |
<a href='SAXExample1e/SAXExample1e.php'>SAX Example 5: Print formatting</a><br> |
|
70 |
<a href='SAXExample1f/SAXExample1f.php'>SAX Example 6: Indentation</a><br> |
|
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
71 |
</div> |
72 |
<h2 id="DOMExamples">DOM Examples</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
73 |
<div class="container"> |
|
19.2.2
by elof.bigestans at gmail
* Fixed bug #1164524 (in LIndex.html) |
74 |
<a href='DomExample1/DomExample1.php'>DOM Example 1: Initiation and simple navigation</a><br> |
75 |
<a href='DomExample1b/DomExample1b.php'>DOM Example 2: Attribute navigation</a><br> |
|
76 |
<a href='DomExample1c/DomExample1c.php'>DOM Example 3: Advanced navigation</a><br> |
|
77 |
<a href='DomExample1d/DomExample1d.php'>DOM Example 4: Advanced navigation</a><br> |
|
78 |
<a href='DomExample2/DomExample2.php'>DOM Example 5: Validation #1</a><br> |
|
79 |
<a href='DomExample2b/DomExample2b.php'>DOM Example 6: Validation #2</a><br> |
|
80 |
<a href='DomExample2c/DomExample2c.php'>DOM Example 7: Validation #3</a><br> |
|
81 |
<a href='DomExample2d/DomExample2d.php'>DOM Example 8: Validation #4</a><br> |
|
82 |
<a href='DomExample2e/DomExample2e.php'>DOM Example 9: Validation #5 </a><br> |
|
83 |
<a href='DomExample3/DomExample3.php'>DOM Example 10: XPATH #1</a><br> |
|
84 |
<a href='DomExample3b/DomExample3b.php'>DOM Example 11: XPATH #2 Context Nodes</a><br> |
|
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
85 |
</div> |
86 |
<h2 id="XSLTExamples">XSLT Examples</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
87 |
<div class="container"> |
88 |
<a href='XSLTExample1/XSLTExample1.php'>XSLT Example 1: Template Match</a><br> |
|
89 |
<a href='XSLTExample2/XSLTExample2.php'>XSLT Example 2: Simple Navigation</a><br> |
|
90 |
<a href='XSLTExample3/XSLTExample3.php'>XSLT Example 3: Nested Navigation</a><br> |
|
91 |
<a href='XSLTExample4/XSLTExample4.php'>XSLT Example 4: Conditionals</a><br> |
|
92 |
<a href='XSLTExample5/XSLTExample5.php'>XSLT Example 5: Simple Template Match</a><br> |
|
93 |
<a href='XSLTExample6/XSLTExample6.php'>XSLT Example 6: Simple Template Match</a><br> |
|
94 |
<a href='XSLTExample7/XSLTExample7.php'>XSLT Example 7: Keys</a><br> |
|
95 |
<a href='XSLTExample8a/XSLTExample8a.php'>XSLT Example 8a: Simple Sorting</a><br> |
|
96 |
<a href='XSLTExample8b/XSLTExample8b.php'>XSLT Example 8b: Grouping using keys</a><br> |
|
97 |
<a href='XSLTExample9/XSLTExample9.php'>XSLT Example 9: Grouping</a><br> |
|
98 |
<a href='XSLTExample10/XSLTExample10.php'>XSLT Example 10: Variables</a><br> |
|
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
99 |
</div> |
100 |
<h2 id="NamespaceExamples">Namespace Examples</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
101 |
<div class="container"> |
102 |
<a href='NamespaceExample1/NamespaceExample1.php'>Namespace Example 1: Sax API</a><br> |
|
103 |
<a href='NamespaceExample2/NamespaceExample2.php'>Namespace Example 2: DOM API</a><br> |
|
104 |
<a href='NamespaceExample3/NamespaceExample3.php'>Namespace Example 3: DOM API with XPATH</a><br> |
|
105 |
<a href='NamespaceExample4/NamespaceExample4.php'>Namespace Example 4: XSLT</a><br> |
|
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
106 |
</div> |
107 |
<h2 id="Tips">Tips and Tricks</h2> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
108 |
<div class="container"> |
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
109 |
</div> |
|
19.2.4
by elof.bigestans at gmail
Fixed some minor validation errors |
110 |
</div> <!-- End Group div --> |
|
19.2.3
by elof.bigestans at gmail
* Fixed bug #1164500 |
111 |
</div> |
112 |
</body> |
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
113 |
</html> |