Bläddra i källkod

RSS includes post text

Thomas Buck 12 år sedan
förälder
incheckning
df65dcae7a
6 ändrade filer med 113 tillägg och 116 borttagningar
  1. 6
    2
      macros.py
  2. Binär
      macros.pyc
  3. 2
    2
      output/index.de.html
  4. 2
    2
      output/index.html
  5. 50
    57
      output/rss.xml
  6. 53
    53
      output/sitemap.xml

+ 6
- 2
macros.py Visa fil

@@ -3,6 +3,7 @@ import itertools
3 3
 import email.utils
4 4
 import os.path
5 5
 import time
6
+import codecs
6 7
 from datetime import datetime
7 8
 
8 9
 DEFAULT_LANG = "en"
@@ -160,6 +161,7 @@ _RSS_ITEM = """
160 161
     <description>%s</description>
161 162
     <pubDate>%s</pubDate>
162 163
     <guid>%s</guid>
164
+    <content>%s</content>
163 165
 </item>
164 166
 """
165 167
 
@@ -167,13 +169,15 @@ def hook_postconvert_rss():
167 169
     items = []
168 170
     posts = [p for p in pages if "post" in p] # get all blog post pages
169 171
     posts.sort(key=lambda p: p.date, reverse=True)
172
+    posts = posts[:10]
170 173
     for p in posts:
171 174
         title = p.post
172 175
         link = "%s/%s" % (BASE_URL, p.url)
173 176
         desc = htmlspecialchars(p.get("description", "Electronics & Software Projects"))
174 177
         date = time.mktime(time.strptime("%s 12" % p.date, "%Y-%m-%d %H"))
175 178
         date = email.utils.formatdate(date)
176
-        items.append(_RSS_ITEM % (title, link, desc, date, link))
179
+        content = htmlspecialchars(p.html)
180
+        items.append(_RSS_ITEM % (title, link, desc, date, link, content))
177 181
 
178 182
     items = "".join(items)
179 183
 
@@ -185,6 +189,6 @@ def hook_postconvert_rss():
185 189
 
186 190
     rss = _RSS % (title, link, feed, desc, date, date, items)
187 191
 
188
-    fp = open(os.path.join(output, "rss.xml"), 'w')
192
+    fp = codecs.open(os.path.join(output, "rss.xml"), "w", "utf-8")
189 193
     fp.write(rss)
190 194
     fp.close()

Binär
macros.pyc Visa fil


+ 2
- 2
output/index.de.html Visa fil

@@ -44,7 +44,7 @@ t.parentNode.insertBefore(s, t);
44 44
 
45 45
             <h1>Willkommen</h1>
46 46
 <p>Hier findest du (immer mehr) Informationen zu Projekten von mir. Gerne höre ich Feedback über E-Mail. Viel Spaß!</p>
47
-<iframe src="http://githubbadge.appspot.com/badge/xythobuz?a=0" style="border: 0;height: 142px;width: 200px;overflow: hidden;"></iframe>
47
+<iframe src="http://githubbadge.appspot.com/badge/xythobuz?a=0" style="border: 0;height: 110px;width: 200px;overflow: hidden;"></iframe>
48 48
 
49 49
 <p><a href="http://en.wikipedia.org/wiki/HD_DVD_encryption_key_controversy">09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0</a></p>
50 50
 <p><a href="http://www.yalelawtech.org/trusted-computing-drm/46-dc-ea-d3-17-fe-45-d8-09-23-eb-97-e4-95-64-10-d4-cd-b2-c2/">46 DC EA D3 17 FE 45 D8 09 23 EB 97 E4 95 64 10 D4 CD B2 C2</a></p>
@@ -55,9 +55,9 @@ GCS/E/MU d-(--)>--- s:++ a-- C++++>$ UBLX+++>++++$ P+ L+ !E--- W+++ N+ !o K--? !
55 55
 ------END GEEK CODE BLOCK------
56 56
 </pre>
57 57
 
58
-<p><img alt="Bitcoin Donation QR" src="/img/qr.png" /></p>
59 58
 <p><a class="twitter-timeline" data-dnt="true" href="https://twitter.com/xythobuz" data-widget-id="318732638158471170">Tweets by @xythobuz</a>
60 59
 <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></p>
60
+<p><img alt="Bitcoin Donation QR" src="/img/qr.png" /></p>
61 61
 
62 62
         
63 63
 

+ 2
- 2
output/index.html Visa fil

@@ -44,7 +44,7 @@ t.parentNode.insertBefore(s, t);
44 44
 
45 45
             <h1>Welcome</h1>
46 46
 <p>I'm publishing some informations about my projects here. Please give feedback and have fun!</p>
47
-<iframe src="http://githubbadge.appspot.com/badge/xythobuz?a=0" style="border: 0;height: 142px;width: 200px;overflow: hidden;"></iframe>
47
+<iframe src="http://githubbadge.appspot.com/badge/xythobuz?a=0" style="border: 0;height: 110px;width: 200px;overflow: hidden;"></iframe>
48 48
 
49 49
 <p><a href="http://en.wikipedia.org/wiki/HD_DVD_encryption_key_controversy">09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0</a></p>
50 50
 <p><a href="http://www.yalelawtech.org/trusted-computing-drm/46-dc-ea-d3-17-fe-45-d8-09-23-eb-97-e4-95-64-10-d4-cd-b2-c2/">46 DC EA D3 17 FE 45 D8 09 23 EB 97 E4 95 64 10 D4 CD B2 C2</a></p>
@@ -55,9 +55,9 @@ GCS/E/MU d-(--)>--- s:++ a-- C++++>$ UBLX+++>++++$ P+ L+ !E--- W+++ N+ !o K--? !
55 55
 ------END GEEK CODE BLOCK------
56 56
 </pre>
57 57
 
58
-<p><img alt="Bitcoin Donation QR" src="/img/qr.png" /></p>
59 58
 <p><a class="twitter-timeline" data-dnt="true" href="https://twitter.com/xythobuz" data-widget-id="318732638158471170">Tweets by @xythobuz</a>
60 59
 <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></p>
60
+<p><img alt="Bitcoin Donation QR" src="/img/qr.png" /></p>
61 61
 
62 62
         
63 63
 

+ 50
- 57
output/rss.xml Visa fil

@@ -6,8 +6,8 @@
6 6
 <atom:link href="http://www.xythobuz.de/rss.xml" rel="self" type="application/rss+xml" />
7 7
 <description>xythobuz Electronics &amp; Software Projects</description>
8 8
 <language>en-us</language>
9
-<pubDate>Wed, 10 Apr 2013 12:47:30 -0000</pubDate>
10
-<lastBuildDate>Wed, 10 Apr 2013 12:47:30 -0000</lastBuildDate>
9
+<pubDate>Thu, 11 Apr 2013 16:35:42 -0000</pubDate>
10
+<lastBuildDate>Thu, 11 Apr 2013 16:35:42 -0000</lastBuildDate>
11 11
 <docs>http://blogs.law.harvard.edu/tech/rss</docs>
12 12
 <generator>Poole</generator>
13 13
 
@@ -17,6 +17,10 @@
17 17
     <description>Electronics &amp; Software Projects</description>
18 18
     <pubDate>Thu, 04 Apr 2013 10:00:00 -0000</pubDate>
19 19
     <guid>http://www.xythobuz.de/2013_04_04_html5.html</guid>
20
+    <content>&lt;h2&gt;Kein DRM in HTML5&lt;/h2&gt;
21
+&lt;p&gt;&lt;em&gt;Posted at April 04, 2013.&lt;/em&gt;&lt;/p&gt;
22
+&lt;p&gt;Habe gerade unterzeichnet. Tut es auch!&lt;/p&gt;
23
+&lt;p&gt;&lt;a href=&quot;http://www.defectivebydesign.org/no-drm-in-html5&quot;&gt;&lt;img alt=&quot;Stop the Hollyweb! No DRM in HTML5.&quot; src=&quot;http://static.fsf.org/dbd/hollywebshare.jpeg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content>
20 24
 </item>
21 25
 
22 26
 <item>
@@ -25,6 +29,10 @@
25 29
     <description>Electronics &amp; Software Projects</description>
26 30
     <pubDate>Tue, 02 Apr 2013 10:00:00 -0000</pubDate>
27 31
     <guid>http://www.xythobuz.de/2013_04_02_zaphod.html</guid>
32
+    <content>&lt;h2&gt;Neuer Webserver&lt;/h2&gt;
33
+&lt;p&gt;&lt;em&gt;Posted at April 02, 2013.&lt;/em&gt;&lt;/p&gt;
34
+&lt;p&gt;Jetzt habe ich zu einem Rundumschlag ausgeholt. Wenn du diesen Text liest, kommt er bereits von meinem neuen vServer bei Hetzner. Hostname: &lt;a href=&quot;http://en.wikipedia.org/wiki/Zaphod_Beeblebrox&quot;&gt;Zaphod&lt;/a&gt; :)&lt;/p&gt;
35
+&lt;p&gt;Außerdem siehst du dann auch schon die neue Webseite, gebaut mit &lt;a href=&quot;https://bitbucket.org/obensonne/poole&quot;&gt;Poole&lt;/a&gt;. Das ist tolle Software!&lt;/p&gt;</content>
28 36
 </item>
29 37
 
30 38
 <item>
@@ -33,6 +41,13 @@
33 41
     <description>Electronics &amp; Software Projects</description>
34 42
     <pubDate>Mon, 25 Mar 2013 11:00:00 -0000</pubDate>
35 43
     <guid>http://www.xythobuz.de/2013_03_25_doxygen.html</guid>
44
+    <content>&lt;h2&gt;xyControl Doxygen Dokumentation&lt;/h2&gt;
45
+&lt;p&gt;&lt;em&gt;Posted at March 25, 2013.&lt;/em&gt;&lt;/p&gt;
46
+&lt;p&gt;Ich hab jetzt mal eine hübsche Doxygen Dokumentation für die xyControl Firmware angelegt. Kann auch mit &quot;make doc&quot; erstellt werden. Neben HTML wird auch Latex ausgegeben, im Ordner ist ein Makefile um daraus eine PDF zu setzen. &lt;/p&gt;
47
+&lt;ul&gt;
48
+&lt;li&gt;&lt;a href=&quot;http://www.xythobuz.de/xycontrol/index.html&quot;&gt;HTML Dokumentation&lt;/a&gt;&lt;/li&gt;
49
+&lt;li&gt;&lt;a href=&quot;http://www.xythobuz.de/xycontrol.pdf&quot;&gt;PDF Dokumentation&lt;/a&gt;&lt;/li&gt;
50
+&lt;/ul&gt;</content>
36 51
 </item>
37 52
 
38 53
 <item>
@@ -41,6 +56,10 @@
41 56
     <description>Electronics &amp; Software Projects</description>
42 57
     <pubDate>Sat, 16 Mar 2013 11:00:00 -0000</pubDate>
43 58
     <guid>http://www.xythobuz.de/2013_03_16_pid.html</guid>
59
+    <content>&lt;h2&gt;xyCopter PID-Parameter&lt;/h2&gt;
60
+&lt;p&gt;&lt;em&gt;Posted at March 16, 2013.&lt;/em&gt;&lt;/p&gt;
61
+&lt;p&gt;So, jetzt fehlen hoffentlich nur noch die richtigen PID Parameter um den Quadrocopter in der Schwebe zu halten...&lt;/p&gt;
62
+&lt;p&gt;&lt;a href=&quot;img/xyCopterOsci.png&quot;&gt;&lt;img alt=&quot;Screenshot&quot; src=&quot;img/xyCopterOsci_small.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content>
44 63
 </item>
45 64
 
46 65
 <item>
@@ -49,6 +68,10 @@
49 68
     <description>Electronics &amp; Software Projects</description>
50 69
     <pubDate>Wed, 13 Mar 2013 11:00:00 -0000</pubDate>
51 70
     <guid>http://www.xythobuz.de/2013_03_13_test_rig.html</guid>
71
+    <content>&lt;h2&gt;Quadrocopter Test Rig Video&lt;/h2&gt;
72
+&lt;p&gt;&lt;em&gt;Posted at March 13, 2013.&lt;/em&gt;&lt;/p&gt;
73
+&lt;p&gt;Ja, das ist alles ganz schön wackelig. Jetzt hab ich mehr Gewicht drauf. Und die Parameter find ich irgendwann auch noch :)&lt;/p&gt;
74
+&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube-nocookie.com/embed/b5MhLgDhQ2c&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;</content>
52 75
 </item>
53 76
 
54 77
 <item>
@@ -57,6 +80,12 @@
57 80
     <description>Electronics &amp; Software Projects</description>
58 81
     <pubDate>Tue, 12 Mar 2013 11:00:00 -0000</pubDate>
59 82
     <guid>http://www.xythobuz.de/2013_03_12_test_rig.html</guid>
83
+    <content>&lt;h2&gt;Quadrocopter Testvorrichtung&lt;/h2&gt;
84
+&lt;p&gt;&lt;em&gt;Posted at March 12, 2013.&lt;/em&gt;&lt;/p&gt;
85
+&lt;p&gt;Hab mal ein bisschen mit Opa im Keller gebastelt. Ergebnis ist diese Testvorrichtung, um besser die PID-Parameter anhand einer einzelnen Achse zu bestimmen. Und Fehler im Code zu finden. Das gibts ja immer... :)&lt;/p&gt;
86
+&lt;p&gt;&lt;a href=&quot;img/quadRig1.jpg&quot;&gt;&lt;img alt=&quot;Foto 1&quot; src=&quot;img/quadRig1_small.jpg&quot; /&gt;&lt;/a&gt;
87
+&lt;a href=&quot;img/quadRig2.jpg&quot;&gt;&lt;img alt=&quot;Foto 2&quot; src=&quot;img/quadRig2_small.jpg&quot; /&gt;&lt;/a&gt;
88
+&lt;a href=&quot;img/quadRig3.jpg&quot;&gt;&lt;img alt=&quot;Foto 3&quot; src=&quot;img/quadRig3_small.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content>
60 89
 </item>
61 90
 
62 91
 <item>
@@ -65,6 +94,11 @@
65 94
     <description>Electronics &amp; Software Projects</description>
66 95
     <pubDate>Sun, 10 Mar 2013 11:00:00 -0000</pubDate>
67 96
     <guid>http://www.xythobuz.de/2013_03_10_yasab.html</guid>
97
+    <content>&lt;h2&gt;xyCopter loves YASAB&lt;/h2&gt;
98
+&lt;p&gt;&lt;em&gt;Posted at March 10, 2013.&lt;/em&gt;&lt;/p&gt;
99
+&lt;p&gt;Jetzt hat meine xyCopter App eine YASAB Implementation. So kann man per Bluetooth die Firmware des Quadrocopters vom Tablet aus neu flashen. Und woher hat die App das Firmware Hexfile? Aus Dropbox! Wenn das mal nicht geil ist... :D&lt;/p&gt; &lt;/p&gt;
100
+&lt;p&gt;&lt;a href=&quot;img/xyCopterFirmware.png&quot;&gt;&lt;img alt=&quot;Screenshot&quot; src=&quot;img/xyCopterFirmware_small.png&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
101
+&lt;p&gt;Allerdings funktioniert Dropbox Integration und OpenSource nicht so wirklich... Man muss sich also eine &lt;a href=&quot;https://www.dropbox.com/developers/apps&quot;&gt;eigene App bei Dropbox registrieren&lt;/a&gt; und den Key und das Secret dann im &lt;a href=&quot;https://github.com/xythobuz/xyControl/blob/master/tools/xyCopter/AndroidManifest.xml&quot;&gt;Manifest&lt;/a&gt; und im &lt;a href=&quot;https://github.com/xythobuz/xyControl/blob/master/tools/xyCopter/src/org/xythobuz/xycopter/MainActivity.java&quot;&gt;Code&lt;/a&gt; eintragen...&lt;/p&gt;</content>
68 102
 </item>
69 103
 
70 104
 <item>
@@ -73,6 +107,10 @@
73 107
     <description>Electronics &amp; Software Projects</description>
74 108
     <pubDate>Tue, 05 Mar 2013 11:00:00 -0000</pubDate>
75 109
     <guid>http://www.xythobuz.de/2013_03_05_graphview.html</guid>
110
+    <content>&lt;h2&gt;xyCopter mit GraphView&lt;/h2&gt;
111
+&lt;p&gt;&lt;em&gt;Posted at March 05, 2013.&lt;/em&gt;&lt;/p&gt;
112
+&lt;p&gt;Jetzt hab ich &lt;a href=&quot;https://github.com/Lauszus/GraphView&quot;&gt;GraphView&lt;/a&gt; in xyCopter eingebaut:&lt;br /&gt;
113
+&lt;a href=&quot;img/xyCopterNew.png&quot;&gt;&lt;img alt=&quot;Screenshot&quot; src=&quot;img/xyCopterNew_small.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content>
76 114
 </item>
77 115
 
78 116
 <item>
@@ -81,6 +119,11 @@
81 119
     <description>Electronics &amp; Software Projects</description>
82 120
     <pubDate>Mon, 25 Feb 2013 11:00:00 -0000</pubDate>
83 121
     <guid>http://www.xythobuz.de/2013_02_25_android.html</guid>
122
+    <content>&lt;h2&gt;xyCopter Android App&lt;/h2&gt;
123
+&lt;p&gt;&lt;em&gt;Posted at February 25, 2013.&lt;/em&gt;&lt;/p&gt;
124
+&lt;p&gt;Die erste Version meiner Quadrocopter Fernsteuerungs App für Android ist fertig und funktioniert soweit. Hier ein Screenshot:&lt;/p&gt;
125
+&lt;p&gt;&lt;a href=&quot;img/xyCopter.png&quot;&gt;&lt;img alt=&quot;xyCopter Screenshot&quot; src=&quot;img/xyCopter_small.png&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
126
+&lt;p&gt;Und natürlich auch die &lt;a href=&quot;https://github.com/xythobuz/xyControl/blob/master/tools/xyCopter-1.0.apk?raw=true&quot;&gt;unsignierte APK zum Download&lt;/a&gt;...&lt;/p&gt;</content>
84 127
 </item>
85 128
 
86 129
 <item>
@@ -89,62 +132,12 @@
89 132
     <description>Electronics &amp; Software Projects</description>
90 133
     <pubDate>Mon, 11 Feb 2013 11:00:00 -0000</pubDate>
91 134
     <guid>http://www.xythobuz.de/2013_02_11_motor_test.html</guid>
92
-</item>
93
-
94
-<item>
95
-    <title>Odys Genio USB Debugging am Mac</title>
96
-    <link>http://www.xythobuz.de/2013_01_31_odys_genio.html</link>
97
-    <description>Electronics &amp; Software Projects</description>
98
-    <pubDate>Thu, 31 Jan 2013 11:00:00 -0000</pubDate>
99
-    <guid>http://www.xythobuz.de/2013_01_31_odys_genio.html</guid>
100
-</item>
101
-
102
-<item>
103
-    <title>Quadrocopter Ueberblick</title>
104
-    <link>http://www.xythobuz.de/2013_01_20_quadrocopter.html</link>
105
-    <description>Electronics &amp; Software Projects</description>
106
-    <pubDate>Sun, 20 Jan 2013 11:00:00 -0000</pubDate>
107
-    <guid>http://www.xythobuz.de/2013_01_20_quadrocopter.html</guid>
108
-</item>
109
-
110
-<item>
111
-    <title>RC-Heli Absturz</title>
112
-    <link>http://www.xythobuz.de/2012_12_25_heli.html</link>
113
-    <description>Electronics &amp; Software Projects</description>
114
-    <pubDate>Tue, 25 Dec 2012 11:00:00 -0000</pubDate>
115
-    <guid>http://www.xythobuz.de/2012_12_25_heli.html</guid>
116
-</item>
117
-
118
-<item>
119
-    <title>Docking in Kerbal Orbit</title>
120
-    <link>http://www.xythobuz.de/2012_12_22_docking.html</link>
121
-    <description>Electronics &amp; Software Projects</description>
122
-    <pubDate>Sat, 22 Dec 2012 11:00:00 -0000</pubDate>
123
-    <guid>http://www.xythobuz.de/2012_12_22_docking.html</guid>
124
-</item>
125
-
126
-<item>
127
-    <title>Quadrocopter Motor Test</title>
128
-    <link>http://www.xythobuz.de/2012_12_22_motor_test.html</link>
129
-    <description>Electronics &amp; Software Projects</description>
130
-    <pubDate>Sat, 22 Dec 2012 11:00:00 -0000</pubDate>
131
-    <guid>http://www.xythobuz.de/2012_12_22_motor_test.html</guid>
132
-</item>
135
+    <content>&lt;h2&gt;Quadrocopter Motor Test&lt;/h2&gt;
136
+&lt;p&gt;&lt;em&gt;Posted at February 11, 2013.&lt;/em&gt;&lt;/p&gt;
137
+&lt;p&gt;Nun ist mein Quadrocopter soweit zusammengebaut...&lt;/p&gt;
138
+&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/5AOkSvRz64c&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
133 139
 
134
-<item>
135
-    <title>Mun Landing</title>
136
-    <link>http://www.xythobuz.de/2012_12_16_mun.html</link>
137
-    <description>Electronics &amp; Software Projects</description>
138
-    <pubDate>Sun, 16 Dec 2012 11:00:00 -0000</pubDate>
139
-    <guid>http://www.xythobuz.de/2012_12_16_mun.html</guid>
140
-</item>
141
-
142
-<item>
143
-    <title>xyControl PCB angekommen</title>
144
-    <link>http://www.xythobuz.de/2012_12_05_xycontrol.html</link>
145
-    <description>Electronics &amp; Software Projects</description>
146
-    <pubDate>Wed, 05 Dec 2012 11:00:00 -0000</pubDate>
147
-    <guid>http://www.xythobuz.de/2012_12_05_xycontrol.html</guid>
140
+&lt;p&gt;Das sieht doch schon ganz vielversprechend aus... :)&lt;/p&gt;</content>
148 141
 </item>
149 142
 
150 143
 </channel>

+ 53
- 53
output/sitemap.xml Visa fil

@@ -3,371 +3,371 @@
3 3
 
4 4
 <url>
5 5
     <loc>/404.html</loc>
6
-    <lastmod>2013-04-10</lastmod>
6
+    <lastmod>2013-04-11</lastmod>
7 7
     <changefreq>monthly</changefreq>
8 8
     <priority>0.5</priority>
9 9
 </url>
10 10
 
11 11
 <url>
12 12
     <loc>/blog.html</loc>
13
-    <lastmod>2013-04-10</lastmod>
13
+    <lastmod>2013-04-11</lastmod>
14 14
     <changefreq>daily</changefreq>
15 15
     <priority>0.8</priority>
16 16
 </url>
17 17
 
18 18
 <url>
19 19
     <loc>/contact.html</loc>
20
-    <lastmod>2013-04-10</lastmod>
20
+    <lastmod>2013-04-11</lastmod>
21 21
     <changefreq>monthly</changefreq>
22 22
     <priority>0.5</priority>
23 23
 </url>
24 24
 
25 25
 <url>
26 26
     <loc>/index.de.html</loc>
27
-    <lastmod>2013-04-10</lastmod>
27
+    <lastmod>2013-04-11</lastmod>
28 28
     <changefreq>monthly</changefreq>
29 29
     <priority>0.5</priority>
30 30
 </url>
31 31
 
32 32
 <url>
33 33
     <loc>/index.html</loc>
34
-    <lastmod>2013-04-10</lastmod>
34
+    <lastmod>2013-04-11</lastmod>
35 35
     <changefreq>monthly</changefreq>
36 36
     <priority>0.5</priority>
37 37
 </url>
38 38
 
39 39
 <url>
40 40
     <loc>/2012_12_05_xycontrol.html</loc>
41
-    <lastmod>2013-04-10</lastmod>
41
+    <lastmod>2013-04-11</lastmod>
42 42
     <changefreq>monthly</changefreq>
43 43
     <priority>0.5</priority>
44 44
 </url>
45 45
 
46 46
 <url>
47 47
     <loc>/2012_12_16_mun.html</loc>
48
-    <lastmod>2013-04-10</lastmod>
48
+    <lastmod>2013-04-11</lastmod>
49 49
     <changefreq>monthly</changefreq>
50 50
     <priority>0.5</priority>
51 51
 </url>
52 52
 
53 53
 <url>
54 54
     <loc>/2012_12_22_docking.html</loc>
55
-    <lastmod>2013-04-10</lastmod>
55
+    <lastmod>2013-04-11</lastmod>
56 56
     <changefreq>monthly</changefreq>
57 57
     <priority>0.5</priority>
58 58
 </url>
59 59
 
60 60
 <url>
61 61
     <loc>/2012_12_22_motor_test.html</loc>
62
-    <lastmod>2013-04-10</lastmod>
62
+    <lastmod>2013-04-11</lastmod>
63 63
     <changefreq>monthly</changefreq>
64 64
     <priority>0.5</priority>
65 65
 </url>
66 66
 
67 67
 <url>
68 68
     <loc>/2012_12_25_heli.html</loc>
69
-    <lastmod>2013-04-10</lastmod>
69
+    <lastmod>2013-04-11</lastmod>
70 70
     <changefreq>monthly</changefreq>
71 71
     <priority>0.5</priority>
72 72
 </url>
73 73
 
74 74
 <url>
75 75
     <loc>/2013_01_20_quadrocopter.html</loc>
76
-    <lastmod>2013-04-10</lastmod>
76
+    <lastmod>2013-04-11</lastmod>
77 77
     <changefreq>monthly</changefreq>
78 78
     <priority>0.5</priority>
79 79
 </url>
80 80
 
81 81
 <url>
82 82
     <loc>/2013_01_31_odys_genio.html</loc>
83
-    <lastmod>2013-04-10</lastmod>
83
+    <lastmod>2013-04-11</lastmod>
84 84
     <changefreq>monthly</changefreq>
85 85
     <priority>0.5</priority>
86 86
 </url>
87 87
 
88 88
 <url>
89 89
     <loc>/2013_02_11_motor_test.html</loc>
90
-    <lastmod>2013-04-10</lastmod>
90
+    <lastmod>2013-04-11</lastmod>
91 91
     <changefreq>monthly</changefreq>
92 92
     <priority>0.5</priority>
93 93
 </url>
94 94
 
95 95
 <url>
96 96
     <loc>/2013_02_25_android.html</loc>
97
-    <lastmod>2013-04-10</lastmod>
97
+    <lastmod>2013-04-11</lastmod>
98 98
     <changefreq>monthly</changefreq>
99 99
     <priority>0.5</priority>
100 100
 </url>
101 101
 
102 102
 <url>
103 103
     <loc>/2013_03_05_graphview.html</loc>
104
-    <lastmod>2013-04-10</lastmod>
104
+    <lastmod>2013-04-11</lastmod>
105 105
     <changefreq>monthly</changefreq>
106 106
     <priority>0.5</priority>
107 107
 </url>
108 108
 
109 109
 <url>
110 110
     <loc>/2013_03_10_yasab.html</loc>
111
-    <lastmod>2013-04-10</lastmod>
111
+    <lastmod>2013-04-11</lastmod>
112 112
     <changefreq>monthly</changefreq>
113 113
     <priority>0.5</priority>
114 114
 </url>
115 115
 
116 116
 <url>
117 117
     <loc>/2013_03_12_test_rig.html</loc>
118
-    <lastmod>2013-04-10</lastmod>
118
+    <lastmod>2013-04-11</lastmod>
119 119
     <changefreq>monthly</changefreq>
120 120
     <priority>0.5</priority>
121 121
 </url>
122 122
 
123 123
 <url>
124 124
     <loc>/2013_03_13_test_rig.html</loc>
125
-    <lastmod>2013-04-10</lastmod>
125
+    <lastmod>2013-04-11</lastmod>
126 126
     <changefreq>monthly</changefreq>
127 127
     <priority>0.5</priority>
128 128
 </url>
129 129
 
130 130
 <url>
131 131
     <loc>/2013_03_16_pid.html</loc>
132
-    <lastmod>2013-04-10</lastmod>
132
+    <lastmod>2013-04-11</lastmod>
133 133
     <changefreq>monthly</changefreq>
134 134
     <priority>0.5</priority>
135 135
 </url>
136 136
 
137 137
 <url>
138 138
     <loc>/2013_03_25_doxygen.html</loc>
139
-    <lastmod>2013-04-10</lastmod>
139
+    <lastmod>2013-04-11</lastmod>
140 140
     <changefreq>monthly</changefreq>
141 141
     <priority>0.5</priority>
142 142
 </url>
143 143
 
144 144
 <url>
145 145
     <loc>/2013_04_02_zaphod.html</loc>
146
-    <lastmod>2013-04-10</lastmod>
146
+    <lastmod>2013-04-11</lastmod>
147 147
     <changefreq>monthly</changefreq>
148 148
     <priority>0.5</priority>
149 149
 </url>
150 150
 
151 151
 <url>
152 152
     <loc>/2013_04_04_html5.html</loc>
153
-    <lastmod>2013-04-10</lastmod>
153
+    <lastmod>2013-04-11</lastmod>
154 154
     <changefreq>monthly</changefreq>
155 155
     <priority>0.5</priority>
156 156
 </url>
157 157
 
158 158
 <url>
159 159
     <loc>/avrnetstack.html</loc>
160
-    <lastmod>2013-04-10</lastmod>
160
+    <lastmod>2013-04-11</lastmod>
161 161
     <changefreq>monthly</changefreq>
162 162
     <priority>0.5</priority>
163 163
 </url>
164 164
 
165 165
 <url>
166 166
     <loc>/avrserial.de.html</loc>
167
-    <lastmod>2013-04-10</lastmod>
167
+    <lastmod>2013-04-11</lastmod>
168 168
     <changefreq>monthly</changefreq>
169 169
     <priority>0.5</priority>
170 170
 </url>
171 171
 
172 172
 <url>
173 173
     <loc>/avrserial.html</loc>
174
-    <lastmod>2013-04-10</lastmod>
174
+    <lastmod>2013-04-11</lastmod>
175 175
     <changefreq>monthly</changefreq>
176 176
     <priority>0.5</priority>
177 177
 </url>
178 178
 
179 179
 <url>
180 180
     <loc>/c250.de.html</loc>
181
-    <lastmod>2013-04-10</lastmod>
181
+    <lastmod>2013-04-11</lastmod>
182 182
     <changefreq>monthly</changefreq>
183 183
     <priority>0.5</priority>
184 184
 </url>
185 185
 
186 186
 <url>
187 187
     <loc>/c250.html</loc>
188
-    <lastmod>2013-04-10</lastmod>
188
+    <lastmod>2013-04-11</lastmod>
189 189
     <changefreq>monthly</changefreq>
190 190
     <priority>0.5</priority>
191 191
 </url>
192 192
 
193 193
 <url>
194 194
     <loc>/ledcube.de.html</loc>
195
-    <lastmod>2013-04-10</lastmod>
195
+    <lastmod>2013-04-11</lastmod>
196 196
     <changefreq>monthly</changefreq>
197 197
     <priority>0.5</priority>
198 198
 </url>
199 199
 
200 200
 <url>
201 201
     <loc>/ledcube.html</loc>
202
-    <lastmod>2013-04-10</lastmod>
202
+    <lastmod>2013-04-11</lastmod>
203 203
     <changefreq>monthly</changefreq>
204 204
     <priority>0.5</priority>
205 205
 </url>
206 206
 
207 207
 <url>
208 208
     <loc>/ledmatrix.de.html</loc>
209
-    <lastmod>2013-04-10</lastmod>
209
+    <lastmod>2013-04-11</lastmod>
210 210
     <changefreq>monthly</changefreq>
211 211
     <priority>0.5</priority>
212 212
 </url>
213 213
 
214 214
 <url>
215 215
     <loc>/ledmatrix.html</loc>
216
-    <lastmod>2013-04-10</lastmod>
216
+    <lastmod>2013-04-11</lastmod>
217 217
     <changefreq>monthly</changefreq>
218 218
     <priority>0.5</priority>
219 219
 </url>
220 220
 
221 221
 <url>
222 222
     <loc>/nas.de.html</loc>
223
-    <lastmod>2013-04-10</lastmod>
223
+    <lastmod>2013-04-11</lastmod>
224 224
     <changefreq>monthly</changefreq>
225 225
     <priority>0.5</priority>
226 226
 </url>
227 227
 
228 228
 <url>
229 229
     <loc>/nas.html</loc>
230
-    <lastmod>2013-04-10</lastmod>
230
+    <lastmod>2013-04-11</lastmod>
231 231
     <changefreq>monthly</changefreq>
232 232
     <priority>0.5</priority>
233 233
 </url>
234 234
 
235 235
 <url>
236 236
     <loc>/serialdebug.de.html</loc>
237
-    <lastmod>2013-04-10</lastmod>
237
+    <lastmod>2013-04-11</lastmod>
238 238
     <changefreq>monthly</changefreq>
239 239
     <priority>0.5</priority>
240 240
 </url>
241 241
 
242 242
 <url>
243 243
     <loc>/serialdebug.html</loc>
244
-    <lastmod>2013-04-10</lastmod>
244
+    <lastmod>2013-04-11</lastmod>
245 245
     <changefreq>monthly</changefreq>
246 246
     <priority>0.5</priority>
247 247
 </url>
248 248
 
249 249
 <url>
250 250
     <loc>/serialhelper.de.html</loc>
251
-    <lastmod>2013-04-10</lastmod>
251
+    <lastmod>2013-04-11</lastmod>
252 252
     <changefreq>monthly</changefreq>
253 253
     <priority>0.5</priority>
254 254
 </url>
255 255
 
256 256
 <url>
257 257
     <loc>/serialhelper.html</loc>
258
-    <lastmod>2013-04-10</lastmod>
258
+    <lastmod>2013-04-11</lastmod>
259 259
     <changefreq>monthly</changefreq>
260 260
     <priority>0.5</priority>
261 261
 </url>
262 262
 
263 263
 <url>
264 264
     <loc>/ssop28.de.html</loc>
265
-    <lastmod>2013-04-10</lastmod>
265
+    <lastmod>2013-04-11</lastmod>
266 266
     <changefreq>monthly</changefreq>
267 267
     <priority>0.5</priority>
268 268
 </url>
269 269
 
270 270
 <url>
271 271
     <loc>/ssop28.html</loc>
272
-    <lastmod>2013-04-10</lastmod>
272
+    <lastmod>2013-04-11</lastmod>
273 273
     <changefreq>monthly</changefreq>
274 274
     <priority>0.5</priority>
275 275
 </url>
276 276
 
277 277
 <url>
278 278
     <loc>/ultimatenotifier.de.html</loc>
279
-    <lastmod>2013-04-10</lastmod>
279
+    <lastmod>2013-04-11</lastmod>
280 280
     <changefreq>monthly</changefreq>
281 281
     <priority>0.5</priority>
282 282
 </url>
283 283
 
284 284
 <url>
285 285
     <loc>/ultimatenotifier.html</loc>
286
-    <lastmod>2013-04-10</lastmod>
286
+    <lastmod>2013-04-11</lastmod>
287 287
     <changefreq>monthly</changefreq>
288 288
     <priority>0.5</priority>
289 289
 </url>
290 290
 
291 291
 <url>
292 292
     <loc>/yasab.de.html</loc>
293
-    <lastmod>2013-04-10</lastmod>
293
+    <lastmod>2013-04-11</lastmod>
294 294
     <changefreq>monthly</changefreq>
295 295
     <priority>0.5</priority>
296 296
 </url>
297 297
 
298 298
 <url>
299 299
     <loc>/yasab.html</loc>
300
-    <lastmod>2013-04-10</lastmod>
300
+    <lastmod>2013-04-11</lastmod>
301 301
     <changefreq>monthly</changefreq>
302 302
     <priority>0.5</priority>
303 303
 </url>
304 304
 
305 305
 <url>
306 306
     <loc>/bluetooth.de.html</loc>
307
-    <lastmod>2013-04-10</lastmod>
307
+    <lastmod>2013-04-11</lastmod>
308 308
     <changefreq>monthly</changefreq>
309 309
     <priority>0.5</priority>
310 310
 </url>
311 311
 
312 312
 <url>
313 313
     <loc>/bluetooth.html</loc>
314
-    <lastmod>2013-04-10</lastmod>
314
+    <lastmod>2013-04-11</lastmod>
315 315
     <changefreq>monthly</changefreq>
316 316
     <priority>0.5</priority>
317 317
 </url>
318 318
 
319 319
 <url>
320 320
     <loc>/k6x4008.de.html</loc>
321
-    <lastmod>2013-04-10</lastmod>
321
+    <lastmod>2013-04-11</lastmod>
322 322
     <changefreq>monthly</changefreq>
323 323
     <priority>0.5</priority>
324 324
 </url>
325 325
 
326 326
 <url>
327 327
     <loc>/k6x4008.html</loc>
328
-    <lastmod>2013-04-10</lastmod>
328
+    <lastmod>2013-04-11</lastmod>
329 329
     <changefreq>monthly</changefreq>
330 330
     <priority>0.5</priority>
331 331
 </url>
332 332
 
333 333
 <url>
334 334
     <loc>/rremote.de.html</loc>
335
-    <lastmod>2013-04-10</lastmod>
335
+    <lastmod>2013-04-11</lastmod>
336 336
     <changefreq>monthly</changefreq>
337 337
     <priority>0.5</priority>
338 338
 </url>
339 339
 
340 340
 <url>
341 341
     <loc>/rremote.html</loc>
342
-    <lastmod>2013-04-10</lastmod>
342
+    <lastmod>2013-04-11</lastmod>
343 343
     <changefreq>monthly</changefreq>
344 344
     <priority>0.5</priority>
345 345
 </url>
346 346
 
347 347
 <url>
348 348
     <loc>/xyrobot.de.html</loc>
349
-    <lastmod>2013-04-10</lastmod>
349
+    <lastmod>2013-04-11</lastmod>
350 350
     <changefreq>monthly</changefreq>
351 351
     <priority>0.5</priority>
352 352
 </url>
353 353
 
354 354
 <url>
355 355
     <loc>/xyrobot.html</loc>
356
-    <lastmod>2013-04-10</lastmod>
356
+    <lastmod>2013-04-11</lastmod>
357 357
     <changefreq>monthly</changefreq>
358 358
     <priority>0.5</priority>
359 359
 </url>
360 360
 
361 361
 <url>
362 362
     <loc>/xyrobotremote.de.html</loc>
363
-    <lastmod>2013-04-10</lastmod>
363
+    <lastmod>2013-04-11</lastmod>
364 364
     <changefreq>monthly</changefreq>
365 365
     <priority>0.5</priority>
366 366
 </url>
367 367
 
368 368
 <url>
369 369
     <loc>/xyrobotremote.html</loc>
370
-    <lastmod>2013-04-10</lastmod>
370
+    <lastmod>2013-04-11</lastmod>
371 371
     <changefreq>monthly</changefreq>
372 372
     <priority>0.5</priority>
373 373
 </url>

Laddar…
Avbryt
Spara