<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://familien-hartvig.dk/wiki/index.php?action=history&amp;feed=atom&amp;title=HaserlCode</id>
	<title>HaserlCode - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://familien-hartvig.dk/wiki/index.php?action=history&amp;feed=atom&amp;title=HaserlCode"/>
	<link rel="alternate" type="text/html" href="http://familien-hartvig.dk/wiki/index.php?title=HaserlCode&amp;action=history"/>
	<updated>2026-06-16T23:15:21Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.31.15</generator>
	<entry>
		<id>http://familien-hartvig.dk/wiki/index.php?title=HaserlCode&amp;diff=416&amp;oldid=prev</id>
		<title>Lars: Protected &quot;HaserlCode&quot; ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]</title>
		<link rel="alternate" type="text/html" href="http://familien-hartvig.dk/wiki/index.php?title=HaserlCode&amp;diff=416&amp;oldid=prev"/>
		<updated>2012-02-22T18:57:35Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/wiki/index.php?title=HaserlCode&quot; title=&quot;HaserlCode&quot;&gt;HaserlCode&lt;/a&gt;&amp;quot; ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 18:57, 22 February 2012&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Lars</name></author>
		
	</entry>
	<entry>
		<id>http://familien-hartvig.dk/wiki/index.php?title=HaserlCode&amp;diff=70&amp;oldid=prev</id>
		<title>Lars: Created page with &quot;You can download haserl for stage2 [http://stage2.ath.cx/haserl here]  This is just a sneak preview for the new Webconsole. Please test haserl and find out how simple it is to...&quot;</title>
		<link rel="alternate" type="text/html" href="http://familien-hartvig.dk/wiki/index.php?title=HaserlCode&amp;diff=70&amp;oldid=prev"/>
		<updated>2012-02-03T09:05:54Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;You can download haserl for stage2 [http://stage2.ath.cx/haserl here]  This is just a sneak preview for the new Webconsole. Please test haserl and find out how simple it is to...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;You can download haserl for stage2 [http://stage2.ath.cx/haserl here]&lt;br /&gt;
&lt;br /&gt;
This is just a sneak preview for the new Webconsole.&lt;br /&gt;
Please test haserl and find out how simple it is to script with haserl.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Upload background=&lt;br /&gt;
With this little script you can upload an image to the player. You have to set your background as: mypic!!!&lt;br /&gt;
&lt;br /&gt;
bgup.cgi&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
#!/hdd/stage2/bin/haserl --upload-limit=4096 --upload-dir=/hdd/stage2/img --shell='/bin/hush'&lt;br /&gt;
content-type: text/html&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;form action=&amp;quot;&amp;lt;? echo -n $SCRIPT_NAME ?&amp;gt;&amp;quot; method=POST enctype=&amp;quot;multipart/form-data&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;input type=file name=uploadfile&amp;gt;&lt;br /&gt;
&amp;lt;input type=submit value=GO&amp;gt; &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;?if test -n &amp;quot;$FORM_uploadfile&amp;quot; ?&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;&lt;br /&gt;
 You uploaded a background named &amp;lt;b&amp;gt;&amp;lt;? echo -n $FORM_uploadfile_name ?&amp;gt;&amp;lt;/b&amp;gt;, and it is&lt;br /&gt;
 stored on the server as &amp;lt;i&amp;gt;&amp;lt;? echo &amp;quot;/hdd/stage2/img/my.jpg&amp;quot; ?&amp;gt;&amp;lt;/i&amp;gt;  &lt;br /&gt;
    &amp;lt;? rm -f &amp;quot;/hdd/stage2/img/my.jpg&amp;quot;  ?&amp;gt; &lt;br /&gt;
 &amp;lt;? mv -f &amp;quot;$FORM_uploadfile&amp;quot; &amp;quot;/hdd/stage2/img/my.jpg&amp;quot;  ?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&amp;lt;?el?&amp;gt;&lt;br /&gt;
 You haven't uploaded a background yet.&lt;br /&gt;
&amp;lt;?fi?&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lars</name></author>
		
	</entry>
</feed>