raakt 0.4 → 0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/raakt.rb +346 -274
- data/tests/areadoc1.htm +12 -0
- data/tests/areadoc2.htm +12 -0
- data/tests/areadoc3.htm +12 -0
- data/tests/bdoc.htm +9 -0
- data/tests/charset_nocharset_specified.htm +8 -0
- data/tests/charset_utf8.htm +9 -0
- data/tests/embeddoc1.htm +9 -0
- data/tests/formdoc1.htm +14 -0
- data/tests/formdoc2.htm +15 -0
- data/tests/formdoc3.htm +22 -0
- data/tests/full_berg.htm +441 -0
- data/tests/inputimgdoc1.htm +14 -0
- data/tests/langinfodoc2.htm +8 -0
- data/tests/nestedtabledoc.htm +205 -0
- data/tests/raakt_test.rb +204 -144
- metadata +21 -7
- data/lib/raakt (kopia).rb +0 -495
data/tests/areadoc1.htm
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
3
|
+
<head>
|
4
|
+
<title>document with area element missing alt attribute</title>
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
<p><img src="library.gif" usemap="#map1" alt="Image map of areas in the library" /> </p>
|
8
|
+
<p><map id="map1" name="map1">
|
9
|
+
<area shape="rect" coords="0,0,50,50" href="reference.html" />
|
10
|
+
</map></p>
|
11
|
+
</body>
|
12
|
+
</html>
|
data/tests/areadoc2.htm
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
3
|
+
<head>
|
4
|
+
<title>document with area element</title>
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
<p><img src="library.gif" usemap="#map1" alt="Image map of areas in the library" /> </p>
|
8
|
+
<p><map id="map1" name="map1">
|
9
|
+
<area shape="rect" coords="0,0,50,50" href="reference.html" alt="reference section"/>
|
10
|
+
</map></p>
|
11
|
+
</body>
|
12
|
+
</html>
|
data/tests/areadoc3.htm
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
3
|
+
<head>
|
4
|
+
<title>document with area element with empty alt attribute</title>
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
<p><img src="library.gif" usemap="#map1" alt="Image map of areas in the library" /> </p>
|
8
|
+
<p><map id="map1" name="map1">
|
9
|
+
<area shape="rect" coords="0,0,50,50" ALT="" href="reference.html" />
|
10
|
+
</map></p>
|
11
|
+
</body>
|
12
|
+
</html>
|
data/tests/bdoc.htm
ADDED
data/tests/embeddoc1.htm
ADDED
data/tests/formdoc1.htm
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>A form with a fieldset without a legend</title>
|
4
|
+
</head>
|
5
|
+
<body>
|
6
|
+
<h1>A form with a fieldset without a legend</h1>
|
7
|
+
<form method="post">
|
8
|
+
<fieldset>
|
9
|
+
<label for="name">Name:</label>
|
10
|
+
<input type="text" name="name" id="name">
|
11
|
+
</fieldset>
|
12
|
+
</form>
|
13
|
+
</body>
|
14
|
+
</html>
|
data/tests/formdoc2.htm
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>A form with a fieldset with a legend</title>
|
4
|
+
</head>
|
5
|
+
<body>
|
6
|
+
<h1>A form with a fieldset with a legend</h1>
|
7
|
+
<form method="post">
|
8
|
+
<fieldset>
|
9
|
+
<legend>Personal details</legend>
|
10
|
+
<label for="name">Name:</label>
|
11
|
+
<input type="text" name="name" id="name">
|
12
|
+
</fieldset>
|
13
|
+
</form>
|
14
|
+
</body>
|
15
|
+
</html>
|
data/tests/formdoc3.htm
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>A form with fieldsets</title>
|
4
|
+
</head>
|
5
|
+
<body>
|
6
|
+
<h1>A form with fieldsets with and without legend</h1>
|
7
|
+
<form method="post">
|
8
|
+
<fieldset>
|
9
|
+
<legend>Personal details</legend>
|
10
|
+
<label for="name">Name:</label>
|
11
|
+
<input type="text" name="name" id="name">
|
12
|
+
</fieldset>
|
13
|
+
<fieldset>
|
14
|
+
<input type="radio" value="sex" name="sex">
|
15
|
+
</fieldset>
|
16
|
+
<fieldset>
|
17
|
+
<label>street</label>
|
18
|
+
<input type="text" value="street">
|
19
|
+
</fieldset>
|
20
|
+
</form>
|
21
|
+
</body>
|
22
|
+
</html>
|
data/tests/full_berg.htm
ADDED
@@ -0,0 +1,441 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?><html xmlns="http://www.w3.org/1999/xhtml">
|
2
|
+
<head>
|
3
|
+
|
4
|
+
<!-- tablecount = 26 -->
|
5
|
+
<!-- table heading count = 5 -->
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
7
|
+
<title>Bergs kommun - Startsida</title>
|
8
|
+
<meta name="description" content="Joomla - the dynamic portal engine and content management system" />
|
9
|
+
<meta name="keywords" content="Joomla, joomla" />
|
10
|
+
<meta name="Generator" content="Joomla! - Copyright (C) 2005 - 2006 Open Source Matters. All rights reserved." />
|
11
|
+
<meta name="robots" content="index, follow" />
|
12
|
+
<link rel="shortcut icon" href="http://www.berg.se/images/favicon.ico" />
|
13
|
+
<link rel="stylesheet" type="text/css" href="templates/Startsida/css/template_css.css" />
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<div align="center">
|
17
|
+
<table width="10" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="eeeeee">
|
18
|
+
<tr>
|
19
|
+
<td width="6" bgcolor="#FFFFFF"><img src="http://www.berg.se/templates/Startsida/images/pixel.png" width="1" height="1" alt="spacer" /></td>
|
20
|
+
<td width="6" bgcolor="#FFFFFF"><img src="http://www.berg.se/templates/Startsida/images/pixel.png" width="1" height="1" alt="spacer"/></td>
|
21
|
+
</tr>
|
22
|
+
</table>
|
23
|
+
<p></p>
|
24
|
+
<table width="802" border="0" cellspacing="0" cellpadding="0" bgcolor="#f1f1f1" cool="cool" gridx="16" gridy="16" height="541" showgridx showgridy="showgridy">
|
25
|
+
<tr height="8">
|
26
|
+
<td width="801" height="8" colspan="7"><spacer type="block" width="801" height="8"></td>
|
27
|
+
<td width="1" height="8"><spacer type="block" width="1" height="8"></td>
|
28
|
+
</tr>
|
29
|
+
<tr height="72">
|
30
|
+
<td width="18" height="72" colspan="4"><spacer type="block" width="18" height="72"></td>
|
31
|
+
<td width="783" height="72" colspan="3" valign="top" align="left" xpos="18"><img src="http://www.berg.se/templates/Startsida/images/webtop.jpg" width="783" height="66" alt="header" /></td>
|
32
|
+
<td width="1" height="72"><spacer type="block" width="1" height="72"></td>
|
33
|
+
</tr>
|
34
|
+
<tr height="16">
|
35
|
+
<td width="17" height="16" colspan="3"><spacer type="block" width="17" height="16"></td>
|
36
|
+
<td width="784" height="16" colspan="4" valign="top" align="left" xpos="17">
|
37
|
+
<table width="784" border="0" cellspacing="0" cellpadding="0" bgcolor="#7a0001" cool gridx="16" gridy="16" height="6" showgridx showgridy usegridx usegridy>
|
38
|
+
<tr height="5">
|
39
|
+
<td width="783" height="5"><spacer type="block" width="783" height="5"></td>
|
40
|
+
<td width="1" height="5"><spacer type="block" width="1" height="5"></td>
|
41
|
+
</tr>
|
42
|
+
<tr height="1" cntrlrow>
|
43
|
+
<td width="783" height="1"><spacer type="block" width="783" height="1"></td>
|
44
|
+
<td width="1" height="1"><spacer type="block" width="1" height="1"></td>
|
45
|
+
</tr>
|
46
|
+
</table>
|
47
|
+
</td>
|
48
|
+
<td width="1" height="16"><spacer type="block" width="1" height="16"></td>
|
49
|
+
</tr>
|
50
|
+
<tr height="410">
|
51
|
+
<td width="13" height="410" colspan="2"><spacer type="block" width="13" height="410"></td>
|
52
|
+
<td width="172" height="410" colspan="3" valign="top" align="left" xpos="13">
|
53
|
+
<table width="170" border="0" cellspacing="3" cellpadding="0" height="19%">
|
54
|
+
<tr>
|
55
|
+
<td valign="top"> <table cellpadding="0" cellspacing="0" class="moduletable">
|
56
|
+
<tr>
|
57
|
+
<td>
|
58
|
+
|
59
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
60
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_frontpage&Itemid=1" class="mainlevel" id="active_menu">Startsida</a></td></tr>
|
61
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=13&Itemid=26" class="mainlevel" >Bergs kommun</a></td></tr>
|
62
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=27&Itemid=28" class="mainlevel" >Barnomsorg</a></td></tr>
|
63
|
+
<tr align="left"><td><a href="http://www.bergsbibliotek.se" target="_blank" class="mainlevel" >Bibliotek</a></td></tr>
|
64
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=38&Itemid=30" class="mainlevel" >Blanketter</a></td></tr>
|
65
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=45&Itemid=31" class="mainlevel" >Bostäder</a></td></tr>
|
66
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=401&Itemid=85" class="mainlevel" >Bygga & Bo</a></td></tr>
|
67
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=379&Itemid=75" class="mainlevel" >Evenemang</a></td></tr>
|
68
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=342&Itemid=71" class="mainlevel" >Folkhälsa</a></td></tr>
|
69
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=51&Itemid=32" class="mainlevel" >Fritid & Natur</a></td></tr>
|
70
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=218&Itemid=61" class="mainlevel" >IT-Bredband</a></td></tr>
|
71
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=56&Itemid=33" class="mainlevel" >Jobb i Berg</a></td></tr>
|
72
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=57&Itemid=34" class="mainlevel" >Kommunarkiv</a></td></tr>
|
73
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=392&Itemid=80" class="mainlevel" >Kriswebb</a></td></tr>
|
74
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=64&Itemid=40" class="mainlevel" >Kultur</a></td></tr>
|
75
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=188&Itemid=54" class="mainlevel" >Länkregister</a></td></tr>
|
76
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=75&Itemid=42" class="mainlevel" >Miljö & Bygg</a></td></tr>
|
77
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=207&Itemid=55" class="mainlevel" >Näringsliv</a></td></tr>
|
78
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=104&Itemid=51" class="mainlevel" >Om berg.se</a></td></tr>
|
79
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=341&Itemid=50" class="mainlevel" >Protokoll</a></td></tr>
|
80
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=112&Itemid=52" class="mainlevel" >Renhållning</a></td></tr>
|
81
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=102&Itemid=49" class="mainlevel" >Räddningstjänst</a></td></tr>
|
82
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=259&Itemid=56" class="mainlevel" >Skola & Utbildning</a></td></tr>
|
83
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_search&Itemid=5" class="mainlevel" >Sök</a></td></tr>
|
84
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=269&Itemid=57" class="mainlevel" >Turism</a></td></tr>
|
85
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=330&Itemid=69" class="mainlevel" >Översiktlig planering</a></td></tr>
|
86
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=414&Itemid=86" class="mainlevel" >Upphandling</a></td></tr>
|
87
|
+
</table> </td>
|
88
|
+
</tr>
|
89
|
+
</table>
|
90
|
+
<table cellpadding="0" cellspacing="0" class="moduletable">
|
91
|
+
<tr>
|
92
|
+
<th valign="top">
|
93
|
+
Login redaktörer </th>
|
94
|
+
</tr>
|
95
|
+
<tr>
|
96
|
+
<td>
|
97
|
+
<form action="http://www.berg.se/index.php" method="post" name="login" >
|
98
|
+
|
99
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
|
100
|
+
<tr>
|
101
|
+
<td>
|
102
|
+
<label for="mod_login_username">
|
103
|
+
Användarnamn </label>
|
104
|
+
<br />
|
105
|
+
<input name="username" id="mod_login_username" type="text" class="inputbox" alt="username" size="10" />
|
106
|
+
<br />
|
107
|
+
<label for="mod_login_password">
|
108
|
+
Lösenord </label>
|
109
|
+
<br />
|
110
|
+
<input type="password" id="mod_login_password" name="passwd" class="inputbox" size="10" alt="password" />
|
111
|
+
<br />
|
112
|
+
<input type="checkbox" name="remember" id="mod_login_remember" class="inputbox" value="yes" alt="Remember Me" />
|
113
|
+
<label for="mod_login_remember">
|
114
|
+
Kom ihåg mig </label>
|
115
|
+
<br />
|
116
|
+
<input type="submit" name="Submit" class="button" value="Logga in" />
|
117
|
+
</td>
|
118
|
+
</tr>
|
119
|
+
<tr>
|
120
|
+
<td>
|
121
|
+
<a href="http://www.berg.se/index.php?option=com_registration&task=lostPassword">
|
122
|
+
Glömt ditt lösenord?</a>
|
123
|
+
</td>
|
124
|
+
</tr>
|
125
|
+
</table>
|
126
|
+
|
127
|
+
<input type="hidden" name="option" value="login" />
|
128
|
+
<input type="hidden" name="op2" value="login" />
|
129
|
+
<input type="hidden" name="lang" value="swedish" />
|
130
|
+
<input type="hidden" name="return" value="http://www.berg.se/" />
|
131
|
+
<input type="hidden" name="message" value="0" />
|
132
|
+
</form>
|
133
|
+
</td>
|
134
|
+
</tr>
|
135
|
+
</table>
|
136
|
+
<table cellpadding="0" cellspacing="0" class="moduletable">
|
137
|
+
<tr>
|
138
|
+
<th valign="top">
|
139
|
+
Statistik </th>
|
140
|
+
</tr>
|
141
|
+
<tr>
|
142
|
+
<td>
|
143
|
+
<strong>Medlemmar:</strong> 12<br />
|
144
|
+
<strong>Nyheter:</strong> 358<br />
|
145
|
+
<strong>Länkar:</strong> 5<br />
|
146
|
+
<strong>Besökare:</strong> 1541547
|
147
|
+
</td>
|
148
|
+
</tr>
|
149
|
+
</table>
|
150
|
+
</td>
|
151
|
+
</tr>
|
152
|
+
</table>
|
153
|
+
</td>
|
154
|
+
<td width="433" height="410" valign="top" align="left" xpos="185">
|
155
|
+
<table width="430" border="0" cellspacing="3" cellpadding="0" height="10%">
|
156
|
+
<tr>
|
157
|
+
<td valign="top" width="215"><table cellspacing="1" cellpadding="0" border="0" width="100%">
|
158
|
+
<tr>
|
159
|
+
<td valign="top">
|
160
|
+
<table cellpadding="0" cellspacing="0" class="moduletable_sub">
|
161
|
+
<tr>
|
162
|
+
<td>
|
163
|
+
<div align="center">
|
164
|
+
<img src="http://www.berg.se/images/random_imgs/c.jpg" border="0" width="183" height="149" alt="c.jpg" /><br />
|
165
|
+
</div>
|
166
|
+
</td>
|
167
|
+
</tr>
|
168
|
+
</table>
|
169
|
+
</td>
|
170
|
+
</tr>
|
171
|
+
</table>
|
172
|
+
<br>
|
173
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=280&Itemid=57">Bilder från Berg >></a></td>
|
174
|
+
<td><table cellspacing="1" cellpadding="0" border="0" width="100%">
|
175
|
+
<tr>
|
176
|
+
<td valign="top">
|
177
|
+
<table cellpadding="0" cellspacing="0" class="moduletable_sub">
|
178
|
+
<tr>
|
179
|
+
<th valign="top">
|
180
|
+
Senast uppdaterat </th>
|
181
|
+
</tr>
|
182
|
+
<tr>
|
183
|
+
<td>
|
184
|
+
<ul class="latestnews_sub">
|
185
|
+
<li class="latestnews">
|
186
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=341&Itemid=50" class="latestnews">
|
187
|
+
Protokoll 2006
|
188
|
+
</a>
|
189
|
+
|
190
|
+
2006-09-29<br /> <small><I> Uppd av: </I></small> </small>
|
191
|
+
</li>
|
192
|
+
<li class="latestnews">
|
193
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=393&Itemid=79" class="latestnews">
|
194
|
+
Kommunens krisberedskap
|
195
|
+
</a>
|
196
|
+
|
197
|
+
2006-09-25<br /> <small><I> Uppd av: </I></small> </small>
|
198
|
+
</li>
|
199
|
+
<li class="latestnews">
|
200
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=395&Itemid=79" class="latestnews">
|
201
|
+
Om krishantering
|
202
|
+
</a>
|
203
|
+
|
204
|
+
2006-09-25<br /> <small><I> Uppd av: </I></small> </small>
|
205
|
+
</li>
|
206
|
+
<li class="latestnews">
|
207
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=394&Itemid=79" class="latestnews">
|
208
|
+
Vad kan du göra?
|
209
|
+
</a>
|
210
|
+
|
211
|
+
2006-09-25<br /> <small><I> Uppd av: </I></small> </small>
|
212
|
+
</li>
|
213
|
+
<li class="latestnews">
|
214
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=425&Itemid=75" class="latestnews">
|
215
|
+
Draghunds VM och EM
|
216
|
+
</a>
|
217
|
+
|
218
|
+
2006-09-25<br /> <small><I> Uppd av: Administrator</I></small> </small>
|
219
|
+
</li>
|
220
|
+
</ul> </td>
|
221
|
+
</tr>
|
222
|
+
</table>
|
223
|
+
</td>
|
224
|
+
</tr>
|
225
|
+
</table>
|
226
|
+
</td>
|
227
|
+
</tr>
|
228
|
+
<tr>
|
229
|
+
<td colspan="2" align="left" valign="top"><table class="blog" cellpadding="0" cellspacing="0"><tr><td valign="top"><div> <table class="contentpaneopen">
|
230
|
+
<tr>
|
231
|
+
<td class="contentheading" width="100%">
|
232
|
+
Aktuellt och Information </td>
|
233
|
+
</tr>
|
234
|
+
</table>
|
235
|
+
|
236
|
+
<table class="contentpaneopen">
|
237
|
+
<tr>
|
238
|
+
<td valign="top" colspan="2">
|
239
|
+
<table border="0" cellspacing="4" cellpadding="1" width="435" height="393">
|
240
|
+
<tbody>
|
241
|
+
<tr align="center">
|
242
|
+
<td colspan="2"> <span style="color: #7a0001"><a href="index.php?option=com_content&task=view&id=425"><span><strong>Draghunds VM och EM till Åsarna 2008 ></strong></span></a> </span><br />
|
243
|
+
</td>
|
244
|
+
</tr>
|
245
|
+
<tr>
|
246
|
+
<td colspan="2" valign="top" bgcolor="#696969"><span style="font-size: 8pt; font-family: Verdana; color: #ffffff"><strong>Intresserad av Berg ?</strong></span> </td>
|
247
|
+
</tr>
|
248
|
+
<tr>
|
249
|
+
<td width="50%" valign="top" bgcolor="#dcdcdc"><a name="file" href="files/berg/Berg_Infoblad.pdf" title="file">Infoblad om Bergs kommun ></a></td>
|
250
|
+
<td width="210" bgcolor="#dcdcdc">Hitta i Berg med <a href="http://195.198.4.68/maps/maps.html" target="_blank">digitala kartor >></a> </td>
|
251
|
+
</tr>
|
252
|
+
<tr>
|
253
|
+
<td width="50%" bgcolor="#dcdcdc">Registrera Dig som<a href="http://195.198.4.68/doc/service/info/flytta_info.ssi" target="_blank"> "Bergsintressent ></a></td>
|
254
|
+
<td width="210" bgcolor="#dcdcdc">Om vårt <a href="index.php?option=com_content&task=view&id=205&Itemid=26">Kommunvapen >></a></td>
|
255
|
+
</tr>
|
256
|
+
<tr>
|
257
|
+
<td colspan="2" valign="top" bgcolor="#696969"><span style="font-size: 8pt; font-family: Verdana; color: #ffffff"><strong>Söker Du bostad eller lokal ?</strong></span> </td>
|
258
|
+
</tr>
|
259
|
+
<tr style="background-color: #ffffff; height: 20px">
|
260
|
+
<td colspan="2"><a href="index.php?option=com_content&task=view&id=401&Itemid=85"><img src="images/content/berg/byggabo_ico.jpg" border="0" alt="byggabo_ico.jpg" title="byggabo_ico.jpg" hspace="5" vspace="5" width="76" height="60" align="left" /></a><a href="http://195.198.4.68/doc/Infobroschyr-hck.pdf"><br />
|
261
|
+
</a><a href="index.php?option=com_content&task=view&id=401&Itemid=85">Bygga</a><a href="index.php?option=com_content&task=view&id=401&Itemid=85"> och bo i Bergs kommun ></a> <br />
|
262
|
+
</td>
|
263
|
+
</tr>
|
264
|
+
<tr>
|
265
|
+
<td width="50%"><a href="http://195.198.4.68/doc/BBAB/Default.html" target="_blank"><img src="images/content/bost/bbab_col.jpg" border="0" alt="bbab_col.jpg" title="bbab_col.jpg" width="175" height="29" /></a>
|
266
|
+
Lediga lägenheter <a href="http://195.198.4.68/doc/BBAB/Default.html" target="_blank">Just Nu >></a> </td>
|
267
|
+
<td width="210"><a href="http://195.198.4.68/doc/BHH/Default.html" target="_blank"><img src="images/content/bost/bhh_col.gif" border="0" alt="bhh_col.gif" title="bhh_col.gif" width="117" height="43" /></a><br />
|
268
|
+
Lokaler hos <a href="http://195.198.4.68/doc/BHH/Default.html" target="_blank">Berg Hyreshus >></a> </td>
|
269
|
+
</tr>
|
270
|
+
<tr>
|
271
|
+
<td colspan="2" valign="top" bgcolor="#696969"><span style="font-size: 8pt; font-family: Verdana; color: #ffffff"><strong>Bergs kommun informerar</strong></span> </td>
|
272
|
+
</tr>
|
273
|
+
<tr valign="top" bgcolor="#dcdcdc">
|
274
|
+
<td valign="top"> <a href="index.php?option=com_content&task=view&id=422">Kampanj för Världens Barn ></a>
|
275
|
+
</td>
|
276
|
+
<td><a href="index.php?option=com_content&task=view&id=414&Itemid=86">Upphandling ></a></td>
|
277
|
+
</tr>
|
278
|
+
<tr style="background-color: #dcdcdc">
|
279
|
+
<td><a href="http://www.val.se/val/val2006/valnatt/K/kommun/23/26/roster.html" target="_blank">Valresultatet i Berg ></a> </td>
|
280
|
+
<td><a href="http://www.offentligajobb.se/public_user/public_EmployerAdd.aspx?CID=491" target="_blank">Offentliga jobb - lediga platser ></a></td>
|
281
|
+
</tr>
|
282
|
+
<tr style="background-color: #dcdcdc">
|
283
|
+
<td><a href="index.php?option=com_content&task=view&id=75&Itemid=42">Resultat energitävling Älghälga 1-2/9</a></td>
|
284
|
+
<td><a href="index.php?option=com_content&task=view&id=218&Itemid=61">Bredband i Berg</a></td>
|
285
|
+
</tr>
|
286
|
+
<tr valign="top" bgcolor="#dcdcdc">
|
287
|
+
<td> <a href="index.php?option=com_content&task=view&id=412&Itemid=26">Information om Libanon ></a></td>
|
288
|
+
<td><a href="index.php?option=com_content&task=view&id=400&Itemid=55">Guldstjärnan 2006 - Nominera här ></a></td>
|
289
|
+
</tr>
|
290
|
+
<tr valign="top" bgcolor="#dcdcdc">
|
291
|
+
<td><a href="http://www.z.lst.se/cgi-bin/MsmGo.exe?grab_id=16&page_id=11804672&query=F%C3%A5gelinfluensan&hiword=F%C3%A5GELINFLUENSA+F%C3%A5gelinfluensan+" target="_blank">Information om Fågelinfluensan ></a></td>
|
292
|
+
<td><a href="http://www.iq.se/content/projects_det.aspx?projectId=142" target="_blank">IQ-projekt ></a></td>
|
293
|
+
</tr>
|
294
|
+
<tr>
|
295
|
+
<td colspan="2" valign="top" bgcolor="#696969"> <span style="font-size: 8pt; font-family: Verdana; color: #ffffff"><strong>Snabblänkar</strong></span> </td>
|
296
|
+
</tr>
|
297
|
+
<tr valign="top" bgcolor="#dcdcdc">
|
298
|
+
<td valign="top"><a href="http://www.gemeindeberg.de/" target="_blank">Gemeinde Berg - vänort ></a><br />
|
299
|
+
</td>
|
300
|
+
<td valign="top"><a href="http://nyheter.passagen.se/vader/index.cgi?place=123026" target="_blank">Vädret i Berg ></a><br />
|
301
|
+
</td>
|
302
|
+
</tr>
|
303
|
+
<tr>
|
304
|
+
<td valign="top" bgcolor="#dcdcdc"><a href="http://www.radioberg.se/" target="_blank">Radio Berg ></a><br />
|
305
|
+
</td>
|
306
|
+
<td valign="top" bgcolor="#dcdcdc"><a href="http://fc.berg.se">Bergsbasen ></a> <br />
|
307
|
+
</td>
|
308
|
+
</tr>
|
309
|
+
</tbody>
|
310
|
+
</table>
|
311
|
+
<br />
|
312
|
+
</td>
|
313
|
+
</tr>
|
314
|
+
<tr>
|
315
|
+
<td colspan="2" align="left" class="modifydate">
|
316
|
+
Senast uppdaterad ( 2006-09-26 )
|
317
|
+
</td>
|
318
|
+
</tr>
|
319
|
+
</table>
|
320
|
+
|
321
|
+
<span class="article_seperator"> </span>
|
322
|
+
|
323
|
+
</div></td></tr></table> <div class="back_button">
|
324
|
+
<a href='javascript:history.go(-1)'>
|
325
|
+
[ Tillbaka ]</a>
|
326
|
+
</div>
|
327
|
+
</td>
|
328
|
+
</tr>
|
329
|
+
</table>
|
330
|
+
</td>
|
331
|
+
<td width="183" height="410" valign="top" align="left" xpos="618">
|
332
|
+
<table width="170" border="0" cellspacing="3" cellpadding="0" height="47%">
|
333
|
+
<tr height="48">
|
334
|
+
<td align="left" valign="top" width="170" height="48">Lördag 30 September <p><a href="http://www2.berg.se/doc/eng/start.html" target="_blank"><img src="http://www.berg.se/templates/Startsida/images/flagga_eng.gif" alt="" width="21" height="13" border="0"></a> <font color="white">---- -<a href="http://www2.berg.se/doc/deutsch/start.html" target="_blank"><img src="http://www.berg.se/templates/Startsida/images/flagga_ty.gif" alt="" width="21" height="13" border="0"></a></font></p>
|
335
|
+
</td>
|
336
|
+
</tr>
|
337
|
+
<tr height="19">
|
338
|
+
<td valign="top" width="170" height="19">
|
339
|
+
<form action="index.php?option=com_search&Itemid=5" method="get">
|
340
|
+
<div class="search">
|
341
|
+
<input name="searchword" id="mod_search_searchword" maxlength="20" alt="search" class="inputbox" type="text" size="20" value="Sök..." onblur="if(this.value=='') this.value='Sök...';" onfocus="if(this.value=='Sök...') this.value='';" /><input type="submit" value="Sök" class="button"/> </div>
|
342
|
+
|
343
|
+
<input type="hidden" name="option" value="com_search" />
|
344
|
+
<input type="hidden" name="Itemid" value="5" />
|
345
|
+
</form></td>
|
346
|
+
</tr>
|
347
|
+
<tr>
|
348
|
+
<td valign="top" width="170"> <table cellpadding="0" cellspacing="0" class="moduletable">
|
349
|
+
<tr>
|
350
|
+
<td>
|
351
|
+
|
352
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
353
|
+
<tr align="left"><td><a href="http://www.berg.se/administrator/" class="mainlevel" >Administrator</a></td></tr>
|
354
|
+
<tr align="left"><td><a href="http://fc.berg.se" target="_blank" class="mainlevel" >Bergsbasen</a></td></tr>
|
355
|
+
<tr align="left"><td><a href="http://www.berg.se/index.php?option=com_content&task=view&id=345&Itemid=72" class="mainlevel" >Kontakta oss</a></td></tr>
|
356
|
+
</table> </td>
|
357
|
+
</tr>
|
358
|
+
</table>
|
359
|
+
<table cellpadding="0" cellspacing="0" class="moduletable_sub">
|
360
|
+
<tr>
|
361
|
+
<td>
|
362
|
+
<ul id="mainlevel_sub"><li><a href="mailto:tommy.mohlin@berg.se" class="mainlevel_sub" >Webbansvarig</a></li></ul> </td>
|
363
|
+
</tr>
|
364
|
+
</table>
|
365
|
+
<table cellpadding="0" cellspacing="0" class="moduletable_sub">
|
366
|
+
<tr>
|
367
|
+
<th valign="top">
|
368
|
+
Nyaste artiklar </th>
|
369
|
+
</tr>
|
370
|
+
<tr>
|
371
|
+
<td>
|
372
|
+
<ul class="latestnews_sub">
|
373
|
+
<li class="latestnews_sub">
|
374
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=425" class="latestnews_sub">
|
375
|
+
Draghunds VM och EM</a>
|
376
|
+
</li>
|
377
|
+
<li class="latestnews_sub">
|
378
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=424" class="latestnews_sub">
|
379
|
+
Mellan dröm och Verklighet</a>
|
380
|
+
</li>
|
381
|
+
<li class="latestnews_sub">
|
382
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=422" class="latestnews_sub">
|
383
|
+
Världens barn</a>
|
384
|
+
</li>
|
385
|
+
<li class="latestnews_sub">
|
386
|
+
<a href="http://www.berg.se/index.php?option=com_content&task=view&id=417" class="latestnews_sub">
|
387
|
+
Rockskola</a>
|
388
|
+
</li>
|
389
|
+
</ul> </td>
|
390
|
+
</tr>
|
391
|
+
</table>
|
392
|
+
<table cellpadding="0" cellspacing="0" class="moduletable">
|
393
|
+
<tr>
|
394
|
+
<th valign="top">
|
395
|
+
Vem är Online </th>
|
396
|
+
</tr>
|
397
|
+
<tr>
|
398
|
+
<td>
|
399
|
+
Vi har 1 gäst online </td>
|
400
|
+
</tr>
|
401
|
+
</table>
|
402
|
+
<table cellpadding="0" cellspacing="0" class="moduletable_sub">
|
403
|
+
<tr>
|
404
|
+
<td>
|
405
|
+
<a href="http://www.jhidrott.rf.se/" target="_blank"><img src="images/content/fritid/log_going.gif" border="0" alt="log_going" title="log_going" hspace="5" vspace="5" width="160" height="57" align="left" /></a>
|
406
|
+
</td>
|
407
|
+
</tr>
|
408
|
+
</table>
|
409
|
+
<br>
|
410
|
+
</td>
|
411
|
+
</tr>
|
412
|
+
</table>
|
413
|
+
</td>
|
414
|
+
<td width="1" height="410"><spacer type="block" width="1" height="410"></td>
|
415
|
+
</tr>
|
416
|
+
<tr height="34">
|
417
|
+
<td width="8" height="34"><spacer type="block" width="8" height="34"></td>
|
418
|
+
<td width="793" height="34" colspan="6" valign="top" align="left" xpos="8">
|
419
|
+
<table width="793" border="0" cellspacing="3" cellpadding="5" align="center" height="20">
|
420
|
+
<tr>
|
421
|
+
<td valign="top" bgcolor="#cccccc">Bergs kommun • Box 73 • 840 40 Svenstavik • Tel 0687-161 00 • Fax 0687-161 05 • e-post: <a href="mailto:bergs.kommun@berg.se">bergs.kommun@berg.se</a></td>
|
422
|
+
</tr>
|
423
|
+
</table>
|
424
|
+
</td>
|
425
|
+
<td width="1" height="34"><spacer type="block" width="1" height="34"></td>
|
426
|
+
</tr>
|
427
|
+
<tr height="1" cntrlrow>
|
428
|
+
<td width="8" height="1"><spacer type="block" width="8" height="1"></td>
|
429
|
+
<td width="5" height="1"><spacer type="block" width="5" height="1"></td>
|
430
|
+
<td width="4" height="1"><spacer type="block" width="4" height="1"></td>
|
431
|
+
<td width="1" height="1"><spacer type="block" width="1" height="1"></td>
|
432
|
+
<td width="167" height="1"><spacer type="block" width="167" height="1"></td>
|
433
|
+
<td width="433" height="1"><spacer type="block" width="433" height="1"></td>
|
434
|
+
<td width="183" height="1"><spacer type="block" width="183" height="1"></td>
|
435
|
+
<td width="1" height="1"><spacer type="block" width="1" height="1"></td>
|
436
|
+
</tr>
|
437
|
+
</table>
|
438
|
+
</div>
|
439
|
+
</body>
|
440
|
+
</html>
|
441
|
+
<!-- 1159645249 -->
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>A form with an image button</title>
|
4
|
+
</head>
|
5
|
+
<body>
|
6
|
+
<h1>A form with an image button</h1>
|
7
|
+
<form method="post">
|
8
|
+
<input type="image" name="1the_name" src="xyz" id="1the_id">
|
9
|
+
<input type="image" name="2the_name" src="xyz" alt="This is ok" id="2the_id">
|
10
|
+
<INPUT TYPE="IMAGE" SRC="xyz" ALT="" ID="3the_id">
|
11
|
+
<input type="text" alt="" ID="4the_id" />
|
12
|
+
</form>
|
13
|
+
</body>
|
14
|
+
</html>
|