<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Kommentare f&#252;r sixserv blog</title>
	<atom:link href="http://sixserv.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sixserv.org</link>
	<description>A Blog about Linux, Networking, Development and Security.</description>
	<lastBuildDate>Fri, 25 Jun 2010 09:50:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Kommentar zu mtget: ZDF Mediathek Download/Stream von apoc</title>
		<link>http://sixserv.org/2009/12/21/mtgetzdf-mediathek-downloadstream/comment-page-1/#comment-13115</link>
		<dc:creator>apoc</dc:creator>
		<pubDate>Fri, 25 Jun 2010 09:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=565#comment-13115</guid>
		<description>@sebi:
Also das Skript selbst, sollte auch Heute noch funktionieren. Ich arbeite da allerdings seit einiger Zeit an einer Bibliothek, auf die mtget in Zukunft aufbauen soll. Ich bin mir allerdings noch nicht ganz sicher wann das fertig wird.</description>
		<content:encoded><![CDATA[<p>@sebi:<br />
Also das Skript selbst, sollte auch Heute noch funktionieren. Ich arbeite da allerdings seit einiger Zeit an einer Bibliothek, auf die mtget in Zukunft aufbauen soll. Ich bin mir allerdings noch nicht ganz sicher wann das fertig wird.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu mtget: ZDF Mediathek Download/Stream von sebi</title>
		<link>http://sixserv.org/2009/12/21/mtgetzdf-mediathek-downloadstream/comment-page-1/#comment-13091</link>
		<dc:creator>sebi</dc:creator>
		<pubDate>Wed, 23 Jun 2010 17:44:12 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=565#comment-13091</guid>
		<description>Wurde das Projekt inzwischen aufgegeben, oder wird es noch entwickelt?</description>
		<content:encoded><![CDATA[<p>Wurde das Projekt inzwischen aufgegeben, oder wird es noch entwickelt?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Web scraping mit Ruby/Mechanize von apoc</title>
		<link>http://sixserv.org/2009/05/27/webscripting-mit-ruby-und-mechanize/comment-page-1/#comment-12041</link>
		<dc:creator>apoc</dc:creator>
		<pubDate>Tue, 27 Apr 2010 16:02:42 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=398#comment-12041</guid>
		<description>@RiPr:

Für Radiobuttons gibt es die Methoden check/uncheck bzw. click (als toggle). Das wird aber auch im &lt;a href=&quot;http://mechanize.rubyforge.org/mechanize/GUIDE_rdoc.html&quot; rel=&quot;nofollow&quot;&gt;GUIDE&lt;/a&gt; erwähnt (unter Advanced Form Techniques).</description>
		<content:encoded><![CDATA[<p>@RiPr:</p>
<p>Für Radiobuttons gibt es die Methoden check/uncheck bzw. click (als toggle). Das wird aber auch im <a href="http://mechanize.rubyforge.org/mechanize/GUIDE_rdoc.html" rel="nofollow">GUIDE</a> erwähnt (unter Advanced Form Techniques).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu JavaScript: onMouseMove Google Translation von apoc</title>
		<link>http://sixserv.org/2010/02/10/javascript-onmousemove-google-translation/comment-page-1/#comment-12040</link>
		<dc:creator>apoc</dc:creator>
		<pubDate>Tue, 27 Apr 2010 15:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=590#comment-12040</guid>
		<description>@Bate Zarko:
This is a experimental solution and I&#039;ve assumed that only people with javascript knowledge adopt this into own applications and sites. However there many possible ways to make this feature enabled/disabled, depending on the nature of the application or website. One solution would be to create a checkbox for disable/enable:

&lt;pre lang=&quot;html&quot; line=&quot;0&quot;&gt;&lt; input type=&quot;checkbox&quot; id=&quot;translation_mode&quot; value=&quot;1&quot; /&gt; activate translation&lt;/pre&gt;

and then begin the mousemove callback function (onMoveTranslate()) with the following statement:

&lt;pre lang=&quot;javascript&quot; line=&quot;0&quot;&gt;if (document.getElementById(&#039;translation_mode&#039;).checked == false) {
return;
}&lt;/pre&gt;

This is untested code but should (in general) work. A more feasible solution would be to remove and add the mousemove event listener depending on the state of the checkbox.</description>
		<content:encoded><![CDATA[<p>@Bate Zarko:<br />
This is a experimental solution and I&#8217;ve assumed that only people with javascript knowledge adopt this into own applications and sites. However there many possible ways to make this feature enabled/disabled, depending on the nature of the application or website. One solution would be to create a checkbox for disable/enable:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt; input type=&quot;checkbox&quot; id=&quot;translation_mode&quot; value=&quot;1&quot; /&gt; activate translation</pre></div></div>

<p>and then begin the mousemove callback function (onMoveTranslate()) with the following statement:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'translation_mode'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">checked</span> <span style="color: #339933;">==</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000066; font-weight: bold;">return</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>This is untested code but should (in general) work. A more feasible solution would be to remove and add the mousemove event listener depending on the state of the checkbox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu JavaScript: onMouseMove Google Translation von Bate Zarko</title>
		<link>http://sixserv.org/2010/02/10/javascript-onmousemove-google-translation/comment-page-1/#comment-12013</link>
		<dc:creator>Bate Zarko</dc:creator>
		<pubDate>Mon, 26 Apr 2010 03:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=590#comment-12013</guid>
		<description>How to enable/disable translation.</description>
		<content:encoded><![CDATA[<p>How to enable/disable translation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Ivacy VPN unter Linux: PPTP/OpenVPN und Socks5-Gateway von Chris</title>
		<link>http://sixserv.org/2009/01/24/ivacy-vpn-unter-linux-pptp-und-socks5/comment-page-1/#comment-11628</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 12 Apr 2010 02:57:33 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=171#comment-11628</guid>
		<description>Hi, vielen Dank fuer diese lehrreiche Anleitung. Ich bin gerade darauf gestoßen und werde den Teil mit der extra VM und dem Sockes 5 Gateway umsetzen.

Das betreiben der VPN-Verbindungen (auch per Script) direkt auf dem Host ist nicht flexibel genug, was mich auch im Moment sehr stört. Auf die Idee mit der VM hätte ich auch kommen können. :-P

Vielen Dank für die Arbeit.</description>
		<content:encoded><![CDATA[<p>Hi, vielen Dank fuer diese lehrreiche Anleitung. Ich bin gerade darauf gestoßen und werde den Teil mit der extra VM und dem Sockes 5 Gateway umsetzen.</p>
<p>Das betreiben der VPN-Verbindungen (auch per Script) direkt auf dem Host ist nicht flexibel genug, was mich auch im Moment sehr stört. Auf die Idee mit der VM hätte ich auch kommen können. <img src='http://sixserv.org/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>Vielen Dank für die Arbeit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Web scraping mit Ruby/Mechanize von RiPr</title>
		<link>http://sixserv.org/2009/05/27/webscripting-mit-ruby-und-mechanize/comment-page-1/#comment-11159</link>
		<dc:creator>RiPr</dc:creator>
		<pubDate>Wed, 17 Mar 2010 16:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=398#comment-11159</guid>
		<description>Hallo!
Für die, die es interessiert:
So kann man sich ebenfalls ein Element über seine ID holen:

target_form = (page/:form).find { &#124;elem&#124; elem[&#039;id&#039;] == &#039;id_name&#039; }

Eine weitere Frage hätte ich jedoch noch:
Wie kann ich einen Radiobutton checken?</description>
		<content:encoded><![CDATA[<p>Hallo!<br />
Für die, die es interessiert:<br />
So kann man sich ebenfalls ein Element über seine ID holen:</p>
<p>target_form = (page/:form).find { |elem| elem['id'] == &#8216;id_name&#8217; }</p>
<p>Eine weitere Frage hätte ich jedoch noch:<br />
Wie kann ich einen Radiobutton checken?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Web scraping mit Ruby/Mechanize von apoc</title>
		<link>http://sixserv.org/2009/05/27/webscripting-mit-ruby-und-mechanize/comment-page-1/#comment-9938</link>
		<dc:creator>apoc</dc:creator>
		<pubDate>Tue, 02 Feb 2010 18:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=398#comment-9938</guid>
		<description>@RiPr: Mithilfe von X-Path Ausdrücken ist so gut wie alles möglich. Hier gibt es eine Einführung: http://www.w3schools.com/Xpath/ Beispiele:

&lt;pre lang=&quot;ruby&quot; line=&quot;1&quot;&gt;
page.search &quot;//a[@class=&#039;eine_klasse&#039;]&quot; # alle Link-Elemente mit der Klasse &quot;eine_klasse&quot;

page.search &quot;//*[@id=&#039;eindeutige_id&#039;]&quot; # alle Elemente mit der ID &quot;eindeutige_id&quot;

# (das geht auch abgekürzt über die funktion id:)
page.search &quot;id(&#039;eindeutige_id&#039;)&quot;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@RiPr: Mithilfe von X-Path Ausdrücken ist so gut wie alles möglich. Hier gibt es eine Einführung: <a href="http://www.w3schools.com/Xpath/" rel="nofollow">http://www.w3schools.com/Xpath/</a> Beispiele:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;">page.<span style="color:#9900CC;">search</span> <span style="color:#996600;">&quot;//a[@class='eine_klasse']&quot;</span> <span style="color:#008000; font-style:italic;"># alle Link-Elemente mit der Klasse &quot;eine_klasse&quot;</span>
&nbsp;
page.<span style="color:#9900CC;">search</span> <span style="color:#996600;">&quot;//*[@id='eindeutige_id']&quot;</span> <span style="color:#008000; font-style:italic;"># alle Elemente mit der ID &quot;eindeutige_id&quot;</span>
&nbsp;
<span style="color:#008000; font-style:italic;"># (das geht auch abgekürzt über die funktion id:)</span>
page.<span style="color:#9900CC;">search</span> <span style="color:#996600;">&quot;id('eindeutige_id')&quot;</span></pre></td></tr></table></div>

]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Web scraping mit Ruby/Mechanize von RiPr</title>
		<link>http://sixserv.org/2009/05/27/webscripting-mit-ruby-und-mechanize/comment-page-1/#comment-9931</link>
		<dc:creator>RiPr</dc:creator>
		<pubDate>Tue, 02 Feb 2010 12:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=398#comment-9931</guid>
		<description>Super Beitrag!
Aber ich hätte da noch eine Frage: Ist es möglich ein Element anhand seiner styleclass oder seiner id zu holen? 
Also dass ich z.B. alle links einer Seite mit der selbe styleclass bekomme, bzw das Element mit der einen bestimmten id?

Da das, was ich im Moment brauche alles in einem div eingeschlossen ist konnte ich es mit page.search &#039;/html/body/....&#039; machen. Aber schöner wäre es anders.</description>
		<content:encoded><![CDATA[<p>Super Beitrag!<br />
Aber ich hätte da noch eine Frage: Ist es möglich ein Element anhand seiner styleclass oder seiner id zu holen?<br />
Also dass ich z.B. alle links einer Seite mit der selbe styleclass bekomme, bzw das Element mit der einen bestimmten id?</p>
<p>Da das, was ich im Moment brauche alles in einem div eingeschlossen ist konnte ich es mit page.search &#8216;/html/body/&#8230;.&#8217; machen. Aber schöner wäre es anders.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Web scraping mit Ruby/Mechanize von Nils</title>
		<link>http://sixserv.org/2009/05/27/webscripting-mit-ruby-und-mechanize/comment-page-1/#comment-9578</link>
		<dc:creator>Nils</dc:creator>
		<pubDate>Thu, 21 Jan 2010 18:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://sixserv.org/?p=398#comment-9578</guid>
		<description>Hey!

Danke für den super Artikel. Ich wühl mich grad durch die Doku, und muss sagen, die ist leider für mich nciht all zu aufschlußreich, aber dein Artikel bereinigt da die ein, oder andere Unklarheit!

Danke.

Gruß,
Nils</description>
		<content:encoded><![CDATA[<p>Hey!</p>
<p>Danke für den super Artikel. Ich wühl mich grad durch die Doku, und muss sagen, die ist leider für mich nciht all zu aufschlußreich, aber dein Artikel bereinigt da die ein, oder andere Unklarheit!</p>
<p>Danke.</p>
<p>Gruß,<br />
Nils</p>
]]></content:encoded>
	</item>
</channel>
</rss>
