ソースを参照

RSS includes post text

Thomas Buck 12年前
コミット
df65dcae7a
6個のファイルの変更113行の追加116行の削除
  1. 6
    2
      macros.py
  2. バイナリ
      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 ファイルの表示

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

バイナリ
macros.pyc ファイルの表示


+ 2
- 2
output/index.de.html ファイルの表示

44
 
44
 
45
             <h1>Willkommen</h1>
45
             <h1>Willkommen</h1>
46
 <p>Hier findest du (immer mehr) Informationen zu Projekten von mir. Gerne höre ich Feedback über E-Mail. Viel Spaß!</p>
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
 <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>
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
 <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>
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
 ------END GEEK CODE BLOCK------
55
 ------END GEEK CODE BLOCK------
56
 </pre>
56
 </pre>
57
 
57
 
58
-<p><img alt="Bitcoin Donation QR" src="/img/qr.png" /></p>
59
 <p><a class="twitter-timeline" data-dnt="true" href="https://twitter.com/xythobuz" data-widget-id="318732638158471170">Tweets by @xythobuz</a>
58
 <p><a class="twitter-timeline" data-dnt="true" href="https://twitter.com/xythobuz" data-widget-id="318732638158471170">Tweets by @xythobuz</a>
60
 <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>
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 ファイルの表示

44
 
44
 
45
             <h1>Welcome</h1>
45
             <h1>Welcome</h1>
46
 <p>I'm publishing some informations about my projects here. Please give feedback and have fun!</p>
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
 <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>
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
 <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>
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
 ------END GEEK CODE BLOCK------
55
 ------END GEEK CODE BLOCK------
56
 </pre>
56
 </pre>
57
 
57
 
58
-<p><img alt="Bitcoin Donation QR" src="/img/qr.png" /></p>
59
 <p><a class="twitter-timeline" data-dnt="true" href="https://twitter.com/xythobuz" data-widget-id="318732638158471170">Tweets by @xythobuz</a>
58
 <p><a class="twitter-timeline" data-dnt="true" href="https://twitter.com/xythobuz" data-widget-id="318732638158471170">Tweets by @xythobuz</a>
60
 <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>
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 ファイルの表示

6
 <atom:link href="http://www.xythobuz.de/rss.xml" rel="self" type="application/rss+xml" />
6
 <atom:link href="http://www.xythobuz.de/rss.xml" rel="self" type="application/rss+xml" />
7
 <description>xythobuz Electronics &amp; Software Projects</description>
7
 <description>xythobuz Electronics &amp; Software Projects</description>
8
 <language>en-us</language>
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
 <docs>http://blogs.law.harvard.edu/tech/rss</docs>
11
 <docs>http://blogs.law.harvard.edu/tech/rss</docs>
12
 <generator>Poole</generator>
12
 <generator>Poole</generator>
13
 
13
 
17
     <description>Electronics &amp; Software Projects</description>
17
     <description>Electronics &amp; Software Projects</description>
18
     <pubDate>Thu, 04 Apr 2013 10:00:00 -0000</pubDate>
18
     <pubDate>Thu, 04 Apr 2013 10:00:00 -0000</pubDate>
19
     <guid>http://www.xythobuz.de/2013_04_04_html5.html</guid>
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
 </item>
24
 </item>
21
 
25
 
22
 <item>
26
 <item>
25
     <description>Electronics &amp; Software Projects</description>
29
     <description>Electronics &amp; Software Projects</description>
26
     <pubDate>Tue, 02 Apr 2013 10:00:00 -0000</pubDate>
30
     <pubDate>Tue, 02 Apr 2013 10:00:00 -0000</pubDate>
27
     <guid>http://www.xythobuz.de/2013_04_02_zaphod.html</guid>
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
 </item>
36
 </item>
29
 
37
 
30
 <item>
38
 <item>
33
     <description>Electronics &amp; Software Projects</description>
41
     <description>Electronics &amp; Software Projects</description>
34
     <pubDate>Mon, 25 Mar 2013 11:00:00 -0000</pubDate>
42
     <pubDate>Mon, 25 Mar 2013 11:00:00 -0000</pubDate>
35
     <guid>http://www.xythobuz.de/2013_03_25_doxygen.html</guid>
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
 </item>
51
 </item>
37
 
52
 
38
 <item>
53
 <item>
41
     <description>Electronics &amp; Software Projects</description>
56
     <description>Electronics &amp; Software Projects</description>
42
     <pubDate>Sat, 16 Mar 2013 11:00:00 -0000</pubDate>
57
     <pubDate>Sat, 16 Mar 2013 11:00:00 -0000</pubDate>
43
     <guid>http://www.xythobuz.de/2013_03_16_pid.html</guid>
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
 </item>
63
 </item>
45
 
64
 
46
 <item>
65
 <item>
49
     <description>Electronics &amp; Software Projects</description>
68
     <description>Electronics &amp; Software Projects</description>
50
     <pubDate>Wed, 13 Mar 2013 11:00:00 -0000</pubDate>
69
     <pubDate>Wed, 13 Mar 2013 11:00:00 -0000</pubDate>
51
     <guid>http://www.xythobuz.de/2013_03_13_test_rig.html</guid>
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
 </item>
75
 </item>
53
 
76
 
54
 <item>
77
 <item>
57
     <description>Electronics &amp; Software Projects</description>
80
     <description>Electronics &amp; Software Projects</description>
58
     <pubDate>Tue, 12 Mar 2013 11:00:00 -0000</pubDate>
81
     <pubDate>Tue, 12 Mar 2013 11:00:00 -0000</pubDate>
59
     <guid>http://www.xythobuz.de/2013_03_12_test_rig.html</guid>
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
 </item>
89
 </item>
61
 
90
 
62
 <item>
91
 <item>
65
     <description>Electronics &amp; Software Projects</description>
94
     <description>Electronics &amp; Software Projects</description>
66
     <pubDate>Sun, 10 Mar 2013 11:00:00 -0000</pubDate>
95
     <pubDate>Sun, 10 Mar 2013 11:00:00 -0000</pubDate>
67
     <guid>http://www.xythobuz.de/2013_03_10_yasab.html</guid>
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
 </item>
102
 </item>
69
 
103
 
70
 <item>
104
 <item>
73
     <description>Electronics &amp; Software Projects</description>
107
     <description>Electronics &amp; Software Projects</description>
74
     <pubDate>Tue, 05 Mar 2013 11:00:00 -0000</pubDate>
108
     <pubDate>Tue, 05 Mar 2013 11:00:00 -0000</pubDate>
75
     <guid>http://www.xythobuz.de/2013_03_05_graphview.html</guid>
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
 </item>
114
 </item>
77
 
115
 
78
 <item>
116
 <item>
81
     <description>Electronics &amp; Software Projects</description>
119
     <description>Electronics &amp; Software Projects</description>
82
     <pubDate>Mon, 25 Feb 2013 11:00:00 -0000</pubDate>
120
     <pubDate>Mon, 25 Feb 2013 11:00:00 -0000</pubDate>
83
     <guid>http://www.xythobuz.de/2013_02_25_android.html</guid>
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
 </item>
127
 </item>
85
 
128
 
86
 <item>
129
 <item>
89
     <description>Electronics &amp; Software Projects</description>
132
     <description>Electronics &amp; Software Projects</description>
90
     <pubDate>Mon, 11 Feb 2013 11:00:00 -0000</pubDate>
133
     <pubDate>Mon, 11 Feb 2013 11:00:00 -0000</pubDate>
91
     <guid>http://www.xythobuz.de/2013_02_11_motor_test.html</guid>
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
 </item>
141
 </item>
149
 
142
 
150
 </channel>
143
 </channel>

+ 53
- 53
output/sitemap.xml ファイルの表示

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

読み込み中…
キャンセル
保存