<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>gulli:board - Programmierung</title>
		<link>http://board.gulli.com/</link>
		<description>Programmiersprachen, Coden, Projekte. Kein PHP/Javascript oä.</description>
		<language>de</language>
		<lastBuildDate>Wed, 19 Jun 2013 02:49:46 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://board.gulli.com/userimages/misc/rss.png</url>
			<title>gulli:board - Programmierung</title>
			<link>http://board.gulli.com/</link>
		</image>
		<item>
			<title>Taschenrechner: TI-83 Plus Mathe - Programmierung</title>
			<link>http://board.gulli.com/thread/1733207-taschenrechner-ti-83-plus-mathe-programmierung/?goto=newpost</link>
			<pubDate>Tue, 18 Jun 2013 12:40:53 GMT</pubDate>
			<description>Hallo zusammen. 
Ich besitze einen TI 83 Plus Taschenrechner. 
Nun wollte ich mal nachfragen, ob mir jemand schnell helfen kann etwas zu...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen.<br />
Ich besitze einen TI 83 Plus Taschenrechner.<br />
Nun wollte ich mal nachfragen, ob mir jemand schnell helfen kann etwas zu programmieren (bzw. download-Link oder so oder hier nur den Code hinschreiben reicht auch).<br />
<br />
Und zwar (ich weiß gar nicht ob das überhaupt möglich ist) geht es um Scheitelform - Produktform - Hauptform.<br />
<br />
Sprich, ich gebe eine Formel als Produktform ein und sie kann mir in Scheitelform / Hauptform angezeigt werden. Und das eben mit allen verschiedenen Formen in die jeweils anderen beiden Formen.<br />
Ich denke ihr habt schon verstanden was ich mein. :)<br />
<br />
Ich wäre demjenigen wirklich sehr dankbar der mir hier weiterhelfen kann. :)</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>itunes1995</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1733207-taschenrechner-ti-83-plus-mathe-programmierung/</guid>
		</item>
		<item>
			<title>Python Syntax Hilfe erbeten</title>
			<link>http://board.gulli.com/thread/1733081-python-syntax-hilfe-erbeten/?goto=newpost</link>
			<pubDate>Sun, 16 Jun 2013 12:01:32 GMT</pubDate>
			<description>Hallo Leute! 
 
Ich komme nicht weiter. 
Ich möchte eine Klasse haben, in der dann alle Widget mit TKinter erstellt werden. Also 
class HauptGUI(): 
...</description>
			<content:encoded><![CDATA[<div>Hallo Leute!<br />
<br />
Ich komme nicht weiter.<br />
Ich möchte eine Klasse haben, in der dann alle Widget mit TKinter erstellt werden. Also<br />
class HauptGUI():<br />
<br />
    def __init__(self, root, tk):<br />
    #Ur Frame<br />
        w, h = root.winfo_screenwidth(), root.winfo_screenheight()                                                              <br />
        Frame_Ur_weite = w<br />
        Frame_Ur_hoehe = h - 120<br />
        Frame_Ur =tk. Frame(root, bg=&quot;red&quot;, borderwidth=&quot;8&quot;)    <br />
        Frame_Ur.place(x=0,y=h/20+5, width=Frame_Ur_weite,height=Frame_Ur_hoehe)<br />
<br />
    def Farbe(self,  color):<br />
        Frame_Ur.config(bg=color)<br />
<br />
Ich rufe dann mit HauptGui(root,tk) den Konstruktor auf und das Frame wird angezeigt.<br />
Später muß ich dann aber Eigenschaften ändern, z.B. die Farbe.Aber wenn ich <br />
HauptGui.Farbe(&quot;white&quot;) aufrufe, kommt der Fehler das er den globalen Namen Frame_Ur nicht kennt.<br />
Wieso also, kennt er das Frame_Ur nicht, obwohl es in der selben Klasse mit dessen Konstruktor erstellt wurde? Ich kapiere es nicht.<br />
Danke an Euch!!</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>Formica66</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1733081-python-syntax-hilfe-erbeten/</guid>
		</item>
		<item>
			<title><![CDATA[[C++] 16 Bit PCM Audio in 32 Bit PCM Audio konvertieren]]></title>
			<link>http://board.gulli.com/thread/1733058-c-16-bit-pcm-audio-in-32-bit-pcm-audio-konvertieren/?goto=newpost</link>
			<pubDate>Sat, 15 Jun 2013 23:31:16 GMT</pubDate>
			<description>Hallo Leute, 
 
ich habe rohe Audiodateien in einem int16 Array vorliegen. Die muss ich in ein int32 umschreiben. Bei meinem bisherigen Versuch...</description>
			<content:encoded><![CDATA[<div>Hallo Leute,<br />
<br />
ich habe rohe Audiodateien in einem int16 Array vorliegen. Die muss ich in ein int32 umschreiben. Bei meinem bisherigen Versuch erhalte ich einen Sound, der viel schneller (etwa doppelt so schnell) und verzerrter abspielt, als das Original. Ich bin mir nicht ganz sicher, was passiert, wenn ich zwei int16 über ein bitweises or verknüpfe – bekomme ich dann ein int32, das die Audiosignale nicht komplett zerstört? Mein Code:<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB">int&nbsp;data_length&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">m_ByteArray</span><span style="color: #007700">.</span><span style="color: #0000BB">size</span><span style="color: #007700">();&nbsp;</span><span style="color: #FF8000">//&nbsp;8&nbsp;bit&nbsp;array<br /></span><span style="color: #0000BB">buffersize&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">data_length</span><span style="color: #007700">/</span><span style="color: #0000BB">2</span><span style="color: #007700">;&nbsp;</span><span style="color: #FF8000">//&nbsp;16&nbsp;bit&nbsp;<br /></span><span style="color: #0000BB">int&nbsp;pcmsize&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">buffersize</span><span style="color: #007700">/</span><span style="color: #0000BB">2</span><span style="color: #007700">;&nbsp;</span><span style="color: #FF8000">//&nbsp;32&nbsp;bit&nbsp;<br /><br /></span><span style="color: #0000BB">qint16&nbsp;</span><span style="color: #007700">*</span><span style="color: #0000BB">adbuf&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">static_cast</span><span style="color: #007700">&lt;</span><span style="color: #0000BB">qint16</span><span style="color: #007700">*&gt;(</span><span style="color: #0000BB">m_ByteArray</span><span style="color: #007700">.</span><span style="color: #0000BB">data</span><span style="color: #007700">());&nbsp;<br /></span><span style="color: #FF8000">//&nbsp;im&nbsp;byte&nbsp;array&nbsp;liegen&nbsp;16&nbsp;bit&nbsp;daten,&nbsp;diese&nbsp;aktion&nbsp;ist&nbsp;allso&nbsp;völlig&nbsp;ok<br /><br /></span><span style="color: #0000BB">FLAC__int32&nbsp;pcm</span><span style="color: #007700">&#91;</span><span style="color: #0000BB">pcmsize</span><span style="color: #007700">&#93;;<br /><br />for(</span><span style="color: #0000BB">int&nbsp;i&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">i&nbsp;</span><span style="color: #007700">&lt;&nbsp;</span><span style="color: #0000BB">pcmsize</span><span style="color: #007700">-</span><span style="color: #0000BB">1</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">i</span><span style="color: #007700">++)&nbsp;{&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">pcm</span><span style="color: #007700">&#91;</span><span style="color: #0000BB">i</span><span style="color: #007700">&#93;&nbsp;=&nbsp;(</span><span style="color: #0000BB">adbuf</span><span style="color: #007700">&#91;(</span><span style="color: #0000BB">i</span><span style="color: #007700">*</span><span style="color: #0000BB">2</span><span style="color: #007700">)+</span><span style="color: #0000BB">1</span><span style="color: #007700">&#93;&nbsp;&lt;&lt;&nbsp;</span><span style="color: #0000BB">16</span><span style="color: #007700">)&nbsp;|&nbsp;</span><span style="color: #0000BB">adbuf</span><span style="color: #007700">&#91;</span><span style="color: #0000BB">i</span><span style="color: #007700">*</span><span style="color: #0000BB">2</span><span style="color: #007700">&#93;;<br />}&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>Habt ihr eine Idee?<br />
Vielen Dank<br />
Max</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>kmax36</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1733058-c-16-bit-pcm-audio-in-32-bit-pcm-audio-konvertieren/</guid>
		</item>
		<item>
			<title><![CDATA[Aus JDownloader Reconnect -> BATCH Datei machen (Speedport HSPA / Huawei B390)]]></title>
			<link>http://board.gulli.com/thread/1732941-aus-jdownloader-reconnect-gt-batch-datei-machen-speedport-hspa-huawei-b390-/?goto=newpost</link>
			<pubDate>Fri, 14 Jun 2013 08:18:29 GMT</pubDate>
			<description>Hallo,  
 
ich habe mit dem JDownloader für ein ungewöhnliches Modem den (Telekom Speedport HSPA) ein funktionierendes Reconnect Script erstellt....</description>
			<content:encoded><![CDATA[<div>Hallo, <br />
<br />
ich habe mit dem JDownloader für ein ungewöhnliches Modem den (Telekom Speedport HSPA) ein funktionierendes Reconnect Script erstellt.<br />
Natürlich funktioniert dieses NUR im JDownloader, wie erstelle ich jetzt hieraus eine Batch Datei? <br />
<br />
Quelltext auf den JDownloader:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">[[[HSRC]]]<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET / HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/conn_login.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/logo_sim_s.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/login.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/menu_sim_s.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/footer.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/w_hiden.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/logo_sim_s.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/sim_status.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/menu_sim_s.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/footer.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/err_info.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/content.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/content.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/content.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/conn.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/first.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/logo.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/w_hiden.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/menu.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/footer.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/conn.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/logo.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/basic_status.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/menu.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/err_info.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/footer.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/basic_status.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; POST /en/ppp.cgi HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; content-type: application/x-www-form-urlencoded<br />
&nbsp; &nbsp; &nbsp; &nbsp; content-length: 39<br />
<br />
action=disconnect&amp;page=basic_status.asp<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/conn.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; cache-control: max-age=0<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; cache-control: max-age=0<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/conn.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; cache-control: max-age=0<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/basic_status.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/basic_status.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; POST /en/ppp.cgi HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; content-type: application/x-www-form-urlencoded<br />
&nbsp; &nbsp; &nbsp; &nbsp; content-length: 36<br />
<br />
action=connect&amp;page=basic_status.asp<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/conn.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; cache-control: max-age=0<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/conn.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; cache-control: max-age=0<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/basic_status.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/conn.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; cache-control: max-age=0<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; cache-control: max-age=0<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /index.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/conn_login.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/menu_sim_s.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/logo_sim_s.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/footer.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/login.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /en/w_hiden.asp HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/menu_sim_s.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/logo_sim_s.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/footer.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/err_info.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /res/sim_status.res HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
&nbsp; &nbsp; [[[STEP]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[REQUEST raw=&quot;true&quot;]]]<br />
&nbsp; &nbsp; &nbsp; &nbsp; GET /js/help.js HTTP/1.1<br />
&nbsp; &nbsp; &nbsp; &nbsp; Host: %%%routerip%%%<br />
&nbsp; &nbsp; &nbsp; &nbsp; user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept: */*<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3<br />
&nbsp; &nbsp; &nbsp; &nbsp; accept-encoding: gzip, deflate<br />
&nbsp; &nbsp; &nbsp; &nbsp; cookie: Basic=admin:NDBEOUJF:0<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection: keep-alive<br />
&nbsp; &nbsp; &nbsp; &nbsp; [[[/REQUEST]]]<br />
&nbsp; &nbsp; [[[/STEP]]]<br />
<br />
[[[/HSRC]]]</code><hr />
</div>PS: Der Speedport HSPA ist kein normaler Speedport sondern eigentlich ein Huawei B390 (UMTS Modem) für den es nach meinen recherchen noch kein ReconnectScript gibt.</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>suppenkasper</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732941-aus-jdownloader-reconnect-gt-batch-datei-machen-speedport-hspa-huawei-b390-/</guid>
		</item>
		<item>
			<title><![CDATA[[Delphi] Automatische Installation erstellen]]></title>
			<link>http://board.gulli.com/thread/1732931-delphi-automatische-installation-erstellen/?goto=newpost</link>
			<pubDate>Thu, 13 Jun 2013 23:17:10 GMT</pubDate>
			<description>Hallo zusammen, ich habe derzeit in AutoIT und mal in Sikuli ein paar automatische Installationen erstellt, wie z.b bei Avast oder AVG. Also die...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen, ich habe derzeit in AutoIT und mal in Sikuli ein paar automatische Installationen erstellt, wie z.b bei Avast oder AVG. Also die Programme, welche andere Programme unbeaufsichtigt Installieren.<br />
<br />
Da ich damals mal etwas mit Delphi erfolgreich rumgebastelt habe und mir Delphi gut gefällt wollte ich es dort auch machen. Habe keine Delphi Lizenz und verwende Lazarus.<br />
<br />
Kann mir jemand ein Denkanstoß bzw Funktionen nennen mit denen ich das Realisieren kann? Habe an Handels gedacht, allerdings ändern diese sich ja immer.<br />
<br />
Würde gerne quasi mehrere Programme im hintergrund Installieren, ohne das diese Sichtbar sind, ähnlich wie man es bei ninite.com hat.<br />
<br />
Mag mir jemand helfen? Finde da echt keinen Anfang irgendwie ^^</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>kelsow</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732931-delphi-automatische-installation-erstellen/</guid>
		</item>
		<item>
			<title>Java Programm Hilfe</title>
			<link>http://board.gulli.com/thread/1732928-java-programm-hilfe/?goto=newpost</link>
			<pubDate>Thu, 13 Jun 2013 22:25:16 GMT</pubDate>
			<description>Hallo Leute, 
 
ich studiere im 2. Semester Wirtschaftsinformatik und bräuchte dringend Hilfe bei einer Aufgabe.  
 
Es handelt sich hierbei um ein...</description>
			<content:encoded><![CDATA[<div>Hallo Leute,<br />
<br />
ich studiere im 2. Semester Wirtschaftsinformatik und bräuchte dringend Hilfe bei einer Aufgabe. <br />
<br />
Es handelt sich hierbei um ein Programm das grob gesagt 2 Strings miteinander vergleicht, in dem aber 5 Fehler eingebaut sind. Da ich im Fehler finden eine Niete bin wäre es wirklich sehr nett, wenn mir jemande helfen könnte.<br />
<br />
Das Programm sieht folgendermaßen aus:<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">public class Aufgabef <br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; static boolean passt(String a, String b) <br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int i = 0, j = 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; while (i &lt; a.length() &amp;&amp; j &lt; b.length() &amp;&amp; a.charAt(i) == b.charAt(j)) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i++; j++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (i == a.length() &amp;&amp; i == b.length()) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return true;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else if (j == a.length() || j == b.length()) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else if (b.charAt(j) != '*') <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; j++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int ii = a.length() - 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int jj = b.length() - 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; while (ii &gt;= i &amp;&amp; jj &gt;= j &amp;&amp; a.charAt(ii) == b.charAt(jj)) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ii--; jj--;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return jj &gt; j;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; public static void main(String args[]) <br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Out.print(&quot;Zeichenkette a: &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String a = In.readWord();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; while (In.done()) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Out.print(&quot;Zeichenkette b: &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String b = In.readWord();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Out.print(b + &quot; passt zu &quot; + a);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (passt(b, a)) Out.println(); <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else Out.println(&quot; nicht&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a = In.readWord();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}</code><hr />
</div>Es wäre toll wenn mir jemand helfen könnte, danke ;)</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>Bomber100</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732928-java-programm-hilfe/</guid>
		</item>
		<item>
			<title>Verkettete Liste mit Assembler</title>
			<link>http://board.gulli.com/thread/1732796-verkettete-liste-mit-assembler/?goto=newpost</link>
			<pubDate>Tue, 11 Jun 2013 23:29:35 GMT</pubDate>
			<description>Hallo Leute, 
 
ich brauche euer Hilfe bei Verkettete Liste mit Assembler. 
ich weiß leider nicht wie ich angehen soll. 
Wäre für jede auch so kleine...</description>
			<content:encoded><![CDATA[<div>Hallo Leute,<br />
<br />
ich brauche euer Hilfe bei Verkettete Liste mit Assembler.<br />
ich weiß leider nicht wie ich angehen soll.<br />
Wäre für jede auch so kleine Hilfe Dankbar.<br />
VG,<br />
Sina<br />
<br />
Legen Sie in der Datensektion eine verkettete Liste mit vier Elementen (Senderspeicher1 .. 4) mit <br />
folgender Struktur an.<br />
• Zeiger auf die nächste Senderspeicherstelle<br />
• Zeiger auf eine 32 Bit große vorzeichenlose Zahl für Senderfrequenz <br />
• Zeiger auf einen String für Sendername<br />
• Zeiger auf ASCII-Zeichen für Speichertaste<br />
Reservieren Sie im uninitialisierten Bereich (.comm) Speicher für ein weiteres Element <br />
(Senderspeicher5) mit der beschriebenen Struktur.<br />
Schreiben Sie in Assembler ein Programm, welches das neue Element Senderspeicher5 mit den <br />
folgenden Werten initialisiert.<br />
• Zeiger auf Senderspeicher1<br />
• Zeiger auf Frequenz (500)<br />
• Zeiger auf Sendername („Mein Sender“)<br />
• Zeiger auf Zeichen der Speichertaste („E“)<br />
Fügen Sie das neue Element dann an die verkettete Liste an/ein</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>sina1368</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732796-verkettete-liste-mit-assembler/</guid>
		</item>
		<item>
			<title><![CDATA[[JAVA] Zahlen aus einer text Datei in ein zweidimensionales int Array schreiben]]></title>
			<link>http://board.gulli.com/thread/1732764-java-zahlen-aus-einer-text-datei-in-ein-zweidimensionales-int-array-schreiben/?goto=newpost</link>
			<pubDate>Tue, 11 Jun 2013 13:45:13 GMT</pubDate>
			<description>Hallo alle zusammen, 
 
da ich nun Stunden mit der Suche und probieren verbrachte habe, hoffe ich nun, dass ihr mir weiter helfen könnt. 
 
Ich hatte...</description>
			<content:encoded><![CDATA[<div>Hallo alle zusammen,<br />
<br />
da ich nun Stunden mit der Suche und probieren verbrachte habe, hoffe ich nun, dass ihr mir weiter helfen könnt.<br />
<br />
Ich hatte mal folgenden Code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">private int[][] map = {<br />
&nbsp; &nbsp; &nbsp; &nbsp; {13,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,9,9,9,9,9,9,9,9,9,9,9,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,17,17,17,17,17,17,17,17,17,17,17,0,5,0,17,17,17,17,16,17,17,17,17,0,5,0,17,17,17,17,17,17,17,17,17,17,17,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,0,0,0,0,17,0,5,0,17,0,0,0,0,0,0,0,17,0,5,0,17,0,0,0,0,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,16,0,2,3,0,17,0,2,4,3,0,17,0,7,0,17,0,18,11,11,11,20,0,17,0,7,0,17,0,2,4,3,0,17,0,2,3,0,16,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,0,0,0,0,17,0,0,0,17,0,10,0,0,0,8,0,17,0,0,0,17,0,0,0,0,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,21,9,9,9,19,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,0,0,17,0,0,0,0,0,17,0,0,0,0,0,0,0,17,0,0,0,0,0,17,0,0,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,2,3,0,17,0,6,0,17,0,2,4,3,0,17,17,17,17,17,17,17,17,17,0,2,4,3,0,17,0,6,0,17,0,2,3,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,5,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,5,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,17,17,17,17,17,0,5,0,17,17,17,17,0,18,11,11,20,0,17,0,18,11,11,20,0,17,17,17,17,0,5,0,17,17,17,17,17,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,0,0,0,0,0,17,0,5,0,0,0,0,17,0,10,0,0,8,0,17,0,10,0,0,8,0,17,0,0,0,0,5,0,17,0,0,0,0,0,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,11,11,11,11,20,0,17,0,10,4,4,3,0,17,0,21,9,9,19,0,17,0,21,9,9,19,0,17,0,2,4,4,8,0,17,0,18,11,11,11,11,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,5,0,0,0,0,17,0,0,0,0,0,0,17,0,0,0,0,0,0,17,0,0,0,0,5,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,7,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,7,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,17,17,17,17,0,6,0,0,0,6,22,22,22,22,22,22,22,6,0,0,0,6,0,17,17,17,17,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {9,9,9,9,9,19,0,17,0,2,4,4,4,19,0,0,0,5,0,23,0,0,0,24,0,5,0,0,0,21,4,4,4,3,0,17,0,21,9,9,9,9,9},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,5,0,0,0,27,0,0,0,5,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {11,11,11,11,11,20,0,17,0,2,4,4,4,20,0,0,0,5,0,25,0,0,0,26,0,5,0,0,0,18,4,4,4,3,0,17,0,18,11,11,11,11,11},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,17,17,17,17,0,7,0,0,0,21,4,4,4,4,4,4,4,19,0,0,0,7,0,17,17,17,17,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,6,0,17,17,17,17,17,17,17,17,17,17,1,17,17,17,17,17,17,17,17,17,17,0,6,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,0,0,0,0,8,0,17,0,5,0,0,0,0,17,0,0,0,0,0,0,17,0,0,0,0,0,0,17,0,0,0,0,5,0,17,0,10,0,0,0,0,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {0,9,9,9,9,19,0,17,0,10,4,4,3,0,17,0,18,11,11,20,0,17,0,18,11,11,20,0,17,0,2,4,4,8,0,17,0,21,9,9,9,9,0},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,0,0,0,0,0,17,0,5,0,0,0,0,17,0,10,0,0,8,0,17,0,10,0,0,8,0,17,0,0,0,0,5,0,17,0,0,0,0,0,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,17,17,17,17,17,0,5,0,17,17,17,17,0,21,9,9,19,0,17,0,21,9,9,19,0,17,17,17,17,0,5,0,17,17,17,17,17,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,5,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,5,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,2,3,0,17,0,7,0,17,0,2,4,3,0,17,17,17,17,17,17,17,17,17,0,2,4,3,0,17,0,7,0,17,0,2,3,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,0,0,17,0,0,0,0,0,17,0,0,0,0,0,0,0,17,0,0,0,0,0,17,0,0,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,18,11,11,11,20,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,0,0,0,0,17,0,0,0,17,0,10,0,0,0,8,0,17,0,0,0,17,0,0,0,0,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,16,0,2,3,0,17,0,2,4,3,0,17,0,6,0,17,0,21,9,9,9,19,0,17,0,6,0,17,0,2,4,3,0,17,0,2,3,0,16,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,0,0,0,0,17,0,0,0,0,0,17,0,5,0,17,0,0,0,0,0,0,0,17,0,5,0,17,0,0,0,0,0,17,0,0,0,0,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,17,17,17,17,17,17,17,17,17,17,17,17,0,5,0,17,17,17,17,16,17,17,17,17,0,5,0,17,17,17,17,17,17,17,17,17,17,17,17,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10},<br />
&nbsp; &nbsp; &nbsp; &nbsp; {12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,11,11,11,11,11,11,11,11,11,11,11,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,15},<br />
&nbsp; &nbsp; &nbsp; &nbsp; };</code><hr />
</div>Nun soll später sowas hier mit dem Array gemacht werden:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">for (int x = 0; x &lt; map.length; x++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (int y = 0; y &lt; map[x].length; y++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mapReader(map[x][y], x, y);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (map[x][y] == 1) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new Pacman(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
public void mapReader(int map, int x, int y) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (map &lt; 1) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (map &lt; 2) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (map &lt; 23) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (map == 16) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new Powerpill(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (map == 17) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new Food(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new Wall(map), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switch (map) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 23:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new GhostBlue(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 24:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new GhostGreen(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 25:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new GhostOrange(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 26:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new GhostPink(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 27:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addObject(new GhostRed(), y * 15 + 50, x * 15 + 50);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div>Also je nach dem welche Zahl , wird etwas anderes als Bild genommen und somit dann letzten Endes eine Map erzeugt. Nun soll aber dieser große Array Block in eine extra txt Datei ausgelagert werden. Ich habe ihn nun einfach genommen und alle Klammer gelöscht, so dass nur noch die Zeilen untereinander und die Zahlen mit Komma getrennt vorhanden sind, also so: (Beispiel)<br />
<br />
13,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,9,9,9,9,9,9,9,9,9 ,9,9,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14<br />
8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0, 0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10<br />
8,0,17,17,17,17,17,17,17,17,17,17,17,17,0,5,0,17,1 7,17,17,16,17,17,17,17,0,5,0,17,17,17,17,17,17,17, 17,17,17,17,17,0,10<br />
8,0,17,0,0,0,0,17,0,0,0,0,0,17,0,5,0,17,0,0,0,0,0, 0,0,17,0,5,0,17,0,0,0,0,0,17,0,0,0,0,17,0,10<br />
<br />
Nun meine Frage:<br />
<br />
Wie schaffe ich es, dass ich das txt File so einlesen kann, dass ich dieses als zwei Dimensionales Array vorhanden habe und es für meine weiteren Operationen nutzen kann. Bitte helft mir. Ich verzweifle.<br />
<br />
Beste Grüße und Vielen Dank<br />
<br />
--------------------------------<br />
Edit:<br />
<br />
Ich wollte das bis Morgen haben und habe ich aber schon 7 Stunden rumprobiert und daher eine richtige Matschscheibe . Würde mich also über eine Codelösung sehr sehr freuen.<br />
<br />
ps. Die Namen müssen ja nicht passen, aber dass der Code so stimmt, dass ich den gewünschten Effekt erziele</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>pedasy</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732764-java-zahlen-aus-einer-text-datei-in-ein-zweidimensionales-int-array-schreiben/</guid>
		</item>
		<item>
			<title>Camelus Online Vorstellung</title>
			<link>http://board.gulli.com/thread/1732735-camelus-online-vorstellung/?goto=newpost</link>
			<pubDate>Tue, 11 Jun 2013 03:47:36 GMT</pubDate>
			<description>Hallo liebe Community! 
Heute will euch euch auch hir auf unser Projekt aufmerksam machen. Es hatte sich die letzten Wochen einiges getan und sind...</description>
			<content:encoded><![CDATA[<div>Hallo liebe Community!<br />
Heute will euch euch auch hir auf unser Projekt aufmerksam machen. Es hatte sich die letzten Wochen einiges getan und sind gut vor ran gekommen.<br />
<br />
Da wir aber einen Mangel an Grafikern haben, könnten wir und möchten wir euch noch nicht die Homepage Präsentieren. Dennoch wollten wir euch einen Anlaufpunkt geben, wo Ihr euch Informieren könnt und immer Aktuell die Arbeit verfolgen könnt.<br />
<br />
Auch haben wir uns überlegt, Leuten die keine Zeit oder Lust auf Teamarbeit haben, die Möglichkeit zu geben dennoch irgendwie mithelfen zu können. Alle Infos dazu gibt es auf unserer Seite.<br />
<br />
Dazu natürlich alle aktuellen Infos zum Game mit Bildern und Videos.<br />
Natürlich suchen wir auch weiter nach aktiven festen Mitarbeitern.<br />
Schaut doch einfach einmal bei uns vorbei und überzeugt euch selbst:<br />
<br />
<b><a href="http://dontknow.me/at/?http://board.camelus-online.de/index.php%3Fpage=Index" target="_blank">http://board.camelus-online.de/index.php?page=Index</a></b><br />
<br />
Mit Freundlichen Grüßen.<br />
Euer Antiker90</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>Antiker90</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732735-camelus-online-vorstellung/</guid>
		</item>
		<item>
			<title><![CDATA[[C++] Defintion für statiches Datenmember bei dllimport]]></title>
			<link>http://board.gulli.com/thread/1732706-c-defintion-fuer-statiches-datenmember-bei-dllimport/?goto=newpost</link>
			<pubDate>Mon, 10 Jun 2013 16:19:52 GMT</pubDate>
			<description><![CDATA[Hallo Leute, 
 
ich habe mir auf qt-apps.org dieses Widget hier herunter gelden ( http://qt-apps.org/content/show.php?content=50717&forumpage=1 )....]]></description>
			<content:encoded><![CDATA[<div>Hallo Leute,<br />
<br />
ich habe mir auf qt-apps.org dieses Widget hier herunter gelden ( <a href="http://dontknow.me/at/?http://qt-apps.org/content/show.php%3Fcontent=50717%26amp;forumpage=1" target="_blank">http://qt-apps.org/content/show.php?...17&amp;forumpage=1</a> ). Als ich es compilieren wollte, also hier erstmal eine .lib erstellen, habe ich ziehmlich oft den Fehler: &quot;Defintion von statischen Datenmember für dllimport nicht zulässig&quot;. Die Google-Suche ergab, dass ich die Klasse in der ich dieses Aufrufe verwende mit &quot;__declspec(dllimport)&quot; deklarieren muss. Das habe ich auch gemacht bzw. das ist da schon gemacht. Da ich C++11 verwende habe ich mir gedacht, dass ich diese Defintionen ( sofern ich das richtig verstanden habe ) auch direkt in der .h-Datei also direkt in der Klasse selbst machen kann. Allerdings sagt er mir dass nur statisch konstante Datenmember direkt definiert werden können.<br />
<br />
Wie kann ich dieses lib jetzt compilieren ?<br />
<br />
Nightrush0179</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>Nightrush0179</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732706-c-defintion-fuer-statiches-datenmember-bei-dllimport/</guid>
		</item>
		<item>
			<title><![CDATA[[SQL] Zwei JOINS auf zwei Tabellen]]></title>
			<link>http://board.gulli.com/thread/1732695-sql-zwei-joins-auf-zwei-tabellen/?goto=newpost</link>
			<pubDate>Mon, 10 Jun 2013 13:10:27 GMT</pubDate>
			<description>Guten Tag liebe Gulli-Gemeinde. 
 
Seit einiger Zeit sitze ich nun schon vor einem Problem. 
Zur Thematik: 
Es gibt in der Firma in der ich arbeite...</description>
			<content:encoded><![CDATA[<div>Guten Tag liebe Gulli-Gemeinde.<br />
<br />
Seit einiger Zeit sitze ich nun schon vor einem Problem.<br />
Zur Thematik:<br />
Es gibt in der Firma in der ich arbeite Gruppen, Gruppenleiter und vertretende Gruppenleiter.<br />
Eine Gruppe lässt sich über die Kostenstelle identifizieren.<br />
Es gibt pro Gruppe jeweils einen Gruppenleiter und einen vertretenden Gruppenleiter, aber mehrere Mitarbeiter.<br />
Ich habe bis jetzt 2 Tabellen, die ich nun versuche zusammen auszugeben.<br />
<br />
Tabelle 1: Mitarbeiter<br />
<br />
<div class="cms_table"><table width="500" class="cms_table_grid"><tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">Personalnummer</td>
<td class="cms_table_grid_td">MName</td>
<td class="cms_table_grid_td">MVorname</td>
<td class="cms_table_grid_td">Kostenstelle</td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">1111</td>
<td class="cms_table_grid_td">Mustermann</td>
<td class="cms_table_grid_td">Max</td>
<td class="cms_table_grid_td">10</td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2222</td>
<td class="cms_table_grid_td">Mustermann</td>
<td class="cms_table_grid_td">Moritz</td>
<td class="cms_table_grid_td">20</td>
</tr>
</table></div>
<br />
<br />
Tabelle 2: Gruppen<br />
<br />
<div class="cms_table"><table width="500" class="cms_table_grid"><tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">Kostenstelle</td>
<td class="cms_table_grid_td">Gruppenbezeichnung</td>
<td class="cms_table_grid_td">Gruppenleiter</td>
<td class="cms_table_grid_td">GruppenleiterVT</td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">10</td>
<td class="cms_table_grid_td">IT-Service</td>
<td class="cms_table_grid_td">1111</td>
<td class="cms_table_grid_td">2222</td>
</tr>
</table></div>
<br />
Mit meiner Abfrage habe ich es bis jetzt nur geschafft den Gruppenleiter jeweils mit Namen anzuzeigen.<br />
Wie bekomme ich das hin, dass auch der vertretende Gruppenleiter mit Namen angezeigt wird?<br />
<br />
Meine bisherige Abfrage [MS ACCESS]:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">SELECT<br />
<div style="margin-left:40px">Gruppen.Gruppenbezeichnung, <br />
Mitarbeiter.MVorname &amp; &quot; &quot; &amp; Mitarbeiter.MName AS Gruppenleiter,<br />
Mitarbeiter.Personalnummer, <br />
Gruppen.Kostenstelle</div>FROM <br />
<div style="margin-left:40px">Gruppen LEFT JOIN Mitarbeiter <br />
ON Gruppen.Gruppenleiter = Mitarbeiter.Personalnummer</div>;</code><hr />
</div>Die Ausgabe:<br />
<br />
<div class="cms_table"><table width="500" class="cms_table_grid"><tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">Gruppenbezeichnung</td>
<td class="cms_table_grid_td">Gruppenleiter</td>
<td class="cms_table_grid_td">Personalnummer</td>
<td class="cms_table_grid_td">Kostenstelle</td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">IT-Service</td>
<td class="cms_table_grid_td">Max Mustermann</td>
<td class="cms_table_grid_td">1111</td>
<td class="cms_table_grid_td">10</td>
</tr>
</table></div>
</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>chiefmasterone</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732695-sql-zwei-joins-auf-zwei-tabellen/</guid>
		</item>
		<item>
			<title><![CDATA[[Java] Done]]></title>
			<link>http://board.gulli.com/thread/1732681-java-done/?goto=newpost</link>
			<pubDate>Mon, 10 Jun 2013 09:14:52 GMT</pubDate>
			<description>done</description>
			<content:encoded><![CDATA[<div>done</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>Leppes</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732681-java-done/</guid>
		</item>
		<item>
			<title>Voting Wp Poll Hilfe</title>
			<link>http://board.gulli.com/thread/1732640-voting-wp-poll-hilfe/?goto=newpost</link>
			<pubDate>Sun, 09 Jun 2013 14:02:10 GMT</pubDate>
			<description>Hey Leute, wir machen bei einer Ausschreibung für das beste mixtape mit. Leider geht es nicht mehr um das beste Tape, sondern darum wer am besten...</description>
			<content:encoded><![CDATA[<div>Hey Leute, wir machen bei einer Ausschreibung für das beste mixtape mit. Leider geht es nicht mehr um das beste Tape, sondern darum wer am besten bescheißt.<br />
Nun meine frage:<br />
<br />
Kann man einen direkten link bauen der nur beim klicken schon für phonatics Sound votet?<br />
<br />
Das Poll speichert die IP und gibt einen Hash (davon hab ich leider keine große Ahnung)<br />
Kann man das umgehen (Proxy Server bringen da leider nicht die gewünschte Quantität... )<br />
Kann man das irgendwie automatisieren?<br />
Um es Bsp. Mit Tor (IP change Programm) zu automatisieren bräuchte man ja erstmal den direkten link...<br />
Kann jemand ein Tool schreiben?<br />
<br />
Hier geht's zur Abstimmung:<br />
<br />
<a href="http://dontknow.me/at/?http://www.jugglerz.de/2013/06/die-abstimmung-road-to-summerjam-2013-selecta-competition/" target="_blank">http://www.jugglerz.de/2013/06/die-a...a-competition/</a><br />
<br />
Und gevotet werden soll für phonatics Sound <br />
<br />
<br />
Danke schonmal!<br />
Erik</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>LiftedErik</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732640-voting-wp-poll-hilfe/</guid>
		</item>
		<item>
			<title><![CDATA[[C] Time von ptb abholen]]></title>
			<link>http://board.gulli.com/thread/1732604-c-time-von-ptb-abholen/?goto=newpost</link>
			<pubDate>Sat, 08 Jun 2013 20:25:46 GMT</pubDate>
			<description>Hallo, 
 
ich bin seit einigen Tagen mit der Socketprogrammierung beschäftigt und weiß an einer Stelle nicht mehr weiter. Mein Programm verbindet...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
ich bin seit einigen Tagen mit der Socketprogrammierung beschäftigt und weiß an einer Stelle nicht mehr weiter. Mein Programm verbindet sich über UDP auf ptbtime1.ptb.de auf Timeport 37 und sendet ein leeres Datagramm. Danach warte ich auf die Antwort vom Server, der liefert mir allerdings das Jahr 2083... Habe mir schon das RFC 868 durchgelesen sowie bei Google nachgeschlagen, aber bisher keine Lösung gefunden. Die Lösung besteht irgendwo darin, dass ich die empfangenen 4 Bytes in host order noch modifizieren muss, weil da was mit der Unix Zeit nicht passt... Irgendjemand einen Ratschlag? <br />
Hier der Code:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">int main()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; int s;<br />
&nbsp; &nbsp; &nbsp; &nbsp; char hostname[20] = &quot;ptbtime1.ptb.de&quot;; <br />
&nbsp; &nbsp; &nbsp; &nbsp; char Buffer[1500];<br />
&nbsp; &nbsp; &nbsp; &nbsp; struct hostent *phost = gethostbyname(hostname);<br />
&nbsp; &nbsp; &nbsp; &nbsp; struct sockaddr_in server;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int recvlen;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int valueofret;<br />
&nbsp; &nbsp; &nbsp; &nbsp; unsigned long int servtime=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; time_t loctime;<br />
&nbsp; &nbsp; &nbsp; &nbsp; struct tm *tmconv;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; s=socket(PF_INET,SOCK_DGRAM,0);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(s==ERROR_IN_SOCKET)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;cant create socket!&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; server.sin_port=htons(37);&nbsp; &nbsp; &nbsp; &nbsp;  // time port = 37<br />
&nbsp; &nbsp; &nbsp; &nbsp; server.sin_family=AF_INET;<br />
&nbsp; &nbsp; &nbsp; &nbsp; server.sin_addr=*(struct in_addr*)phost-&gt;h_addr;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //send one udp packet for triggering with the ptb timeserver<br />
&nbsp; &nbsp; &nbsp; &nbsp; valueofret=sendto(s,&quot;&quot;,0,0,(struct sockaddr*)&amp;server,sizeof(server));<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; recvlen = sizeof(server);<br />
&nbsp; &nbsp; &nbsp; &nbsp; valueofret = recvfrom(s, &amp;servtime, sizeof(servtime), 0, 0, 0); //receive from anyone<br />
&nbsp; &nbsp; &nbsp; &nbsp; servtime = ntohl(servtime);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; tmconv = localtime(&amp;servtime);<br />
&nbsp; &nbsp; &nbsp; &nbsp; strftime(Buffer, 1500, &quot;%d.%m.%Y %T\n&quot;, tmconv);<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;servertime: %s&quot;, Buffer);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // read the systemtime to show the difference<br />
&nbsp; &nbsp; &nbsp; &nbsp; loctime = time(NULL);<br />
&nbsp; &nbsp; &nbsp; &nbsp; tmconv = localtime(&amp;loctime);<br />
&nbsp; &nbsp; &nbsp; &nbsp; strftime(Buffer, 1500, &quot;%d.%m.%Y %T\n&quot;, tmconv);<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;localtime: %s&quot;, Buffer);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; close(s);<br />
&nbsp; &nbsp; &nbsp; &nbsp; return 0;<br />
}</code><hr />
</div>Als Output kommt raus:<br />
servertime: 08.06.2083 22:23:26<br />
localtime: 08.06.2013 22:24:02<br />
<br />
in Dezimal: servertime: 3579711730, localtime:1370722991<br />
da liegt die Differenz -2208988739... Die kann ich doch nicht beim Empfang des Datagramms aus heiterem Himmel einfach abziehen ...<br />
<br />
MfG<br />
someone_cry<br />
<br />
//Edit: Habs raus, muss von der empfangenen Zeit 2208988800 abziehen, weiß aber immer noch nicht wieso. Habe diesen Wert einfach mal aus der RFC 868 rausgenommen und ausprobiert...</div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>someone_cry</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732604-c-time-von-ptb-abholen/</guid>
		</item>
		<item>
			<title>C# - Musikplayer//Klasse richtig einbinden (Anfänger)</title>
			<link>http://board.gulli.com/thread/1732578-c-musikplayer-klasse-richtig-einbinden-anfaenger-/?goto=newpost</link>
			<pubDate>Sat, 08 Jun 2013 12:41:31 GMT</pubDate>
			<description><![CDATA[Hallo, 
ich arbeite zurzeit an einem Projekt um schnell eine Musikdatei anzuhören zu können (.mp3's). 
 
Ich habe mir mithilfe des...]]></description>
			<content:encoded><![CDATA[<div>Hallo,<br />
ich arbeite zurzeit an einem Projekt um schnell eine Musikdatei anzuhören zu können (.mp3's).<br />
<br />
Ich habe mir mithilfe des WindowsMediaPlayers -Plugins das Abspielen möglich gemacht, dann habe ich verschiedene Funktionionen des WindowsMediaPlayers ausprogrammiert und sie in einen Button verpackt, damit das ganze etwas selbstgemachter aussieht.<br />
<br />
Mein Problem ist jetzt aber, dass ich keine Tracks erneut bei geöffneten Pogrammfenster hineinladen kann. Der einzige Weg das Problem zu beheben, so wurde mir gesagt funktioniert mit einer zusätzlichen Klasse.<br />
<br />
Die Klasse hätte ich soweit, aber ich weiß nicht wie ich sie verwenden kann. Leider kenne ich mich mit Klassen noch nicht so aus, vielleicht wäre es möglich mir die Verwendung und den Weg wie ich es einbaue zu erklären.<br />
<br />
Hier ist ein Teil meiner Hauptfenster.cs, der Teil wo das ganze rein gehören sollte:<br />
<div class="bbcode_container">
<p>Spoiler:&nbsp;</p><div class="bbcode_spoiler">
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">public partial class frm_Hauptfenster : Form<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; public frm_Hauptfenster()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; InitializeComponent();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; static int rem = 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; static int temp = new int();<br />
&nbsp; &nbsp; &nbsp; &nbsp; string[] m_datei, m_pfad;<br />
&nbsp; &nbsp; &nbsp; &nbsp; bool m_messagewiederholung = false;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; private void btn_Oeffnen_Click(object sender, EventArgs e)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  // m_datei = openFileDialog1.SafeFileNames; // Speichert nur den Namen der Datei<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  // m_pfad = openFileDialog1.FileNames; // Speichert den vollen Pfad<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //for (int i = 0; i &lt; m_datei.Length; i++)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //&nbsp;  lbx_Abspielliste.Items.Add(einlesen); // Fügt Lieder zu der Liste hinzu<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cls_Einlesen einlesen = new cls_Einlesen();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lbx_Abspielliste.Items.Add(einlesen);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div>
</div><script type="text/javascript">make_spoiler();</script>
</div><br />
<br />
Hier ist meine Klasse:<br />
<div class="bbcode_container">
<p>Spoiler:&nbsp;</p><div class="bbcode_spoiler">
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">using System;<br />
using ...<br />
<br />
namespace Quicksound<br />
{<br />
&nbsp; &nbsp; class cls_Einlesen<br />
&nbsp; &nbsp; { <br />
&nbsp; &nbsp; &nbsp; &nbsp; private string m_Pfad;<br />
&nbsp; &nbsp; &nbsp; &nbsp; private string m_Datei;<br />
&nbsp; &nbsp; &nbsp; &nbsp; public cls_Einlesen(string datei, string pfad)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; m_Pfad = pfad;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; m_Datei = datei;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public cls_Einlesen()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // TODO: Complete member initialization<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public string Datei<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; get<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return m_Datei;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public string Pfad<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; get<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return m_Pfad;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public override string ToString()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return m_Datei;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div>
</div><script type="text/javascript">make_spoiler();</script>
</div><br />
<br />
Hier ist noch einmal das ganze Programm, falls es benötigt wird...<br />
Passwort: photoplayer<br />
<a href="https://www.dropbox.com/s/weem9tz83qaaaxm/Quicksound.rar" target="_blank">https://www.dropbox.com/s/weem9tz83q...Quicksound.rar</a><br />
<br />
Mit freundlichen Grüßen <i>photoplayer</i></div>

]]></content:encoded>
			<category domain="http://board.gulli.com/forum/19-programmierung/">Programmierung</category>
			<dc:creator>photoplayer</dc:creator>
			<guid isPermaLink="true">http://board.gulli.com/thread/1732578-c-musikplayer-klasse-richtig-einbinden-anfaenger-/</guid>
		</item>
	</channel>
</rss>
