Index: ipk/source/browsers_elektro/CONTROL/control
===================================================================
--- ipk/source/browsers_elektro/CONTROL/control	(revision 11200)
+++ ipk/source/browsers_elektro/CONTROL/control	(revision 11200)
@@ -0,0 +1,10 @@
+Package: enigma2-plugin-browsers-elektro
+Version: 3.3.4
+Architecture: sh4
+OE: Elektro v3.3.4
+Section: extra
+Priority: optional
+Maintainer: AAF
+Homepage: http://www.aaf-digital.info
+Source: http://www.aaf-digital.info
+Description: The Elektro Power Save Plugin puts the box from stand by to Deep Standby at certain times (if the box is in standby and no recording is running or sheduled in the next 20 minutes).
Index: ipk/source/browsers_elektro/CONTROL/postinst
===================================================================
--- ipk/source/browsers_elektro/CONTROL/postinst	(revision 11200)
+++ ipk/source/browsers_elektro/CONTROL/postinst	(revision 11200)
@@ -0,0 +1,12 @@
+#!/bin/sh
+TMP=/tmp/.browsers
+
+echo "successfully installed"
+echo "syncing disk"
+sync
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 100`
+	echo new freespace size $FREE kb
+fi
+exit 0
Index: ipk/source/browsers_elektro/CONTROL/postrm
===================================================================
--- ipk/source/browsers_elektro/CONTROL/postrm	(revision 11200)
+++ ipk/source/browsers_elektro/CONTROL/postrm	(revision 11200)
@@ -0,0 +1,14 @@
+#!/bin/sh
+TMP=/tmp/.browsers
+PLUGINDIR=/usr/lib/enigma2/python/Plugins/Extensions/Elektro
+rm -r $PLUGINDIR > /dev/null 2>&1
+
+echo "successfully removed"
+echo "syncing disk"
+sync
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 100`
+	echo new freespace size $FREE kb
+fi
+exit 0
Index: ipk/source/browsers_elektro/CONTROL/preinst
===================================================================
--- ipk/source/browsers_elektro/CONTROL/preinst	(revision 11200)
+++ ipk/source/browsers_elektro/CONTROL/preinst	(revision 11200)
@@ -0,0 +1,44 @@
+#!/bin/sh
+#
+TMP=/tmp/.browsers
+echo "syncing disk"
+sync
+
+model=`cat /etc/model`
+echo""
+echo "Checking your Boxtype...."
+echo "Some Plugins will not work correctly on your $model!"
+echo ""
+if [ "$model" = "" ]; then
+	echo "Sorry! This Plugin is not available for your $model because it will not work correctly!!!"
+	echo "Aborting installation..."
+	exit 1
+else
+	echo "Boxtype: $model OK"
+fi
+
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 50`
+	SIZE=40
+	echo "checking freespace"
+	echo packege size $SIZE kb
+	echo freespace size $FREE kb
+	if  [ "$FREE" -lt "$SIZE" ]; then
+		echo "sorry no freespace left on device"
+		exit 1
+	else
+		echo ok
+	fi
+fi   
+echo "installing Elektro v3.3.4 ..."
+echo "checking OS"
+if  [ `cat /etc/motd | grep AAF | grep M | grep rev | wc -l` -eq 0 ]; then                      
+	echo ---------------------------
+	echo DONT USE this IPK Package!!
+	echo ---
+	echo Only for AAF Image!!
+	echo ---------------------------
+	exit 1
+fi
+exit 0
Index: ipk/source/browsers_elektro/CONTROL/prerm
===================================================================
--- ipk/source/browsers_elektro/CONTROL/prerm	(revision 11200)
+++ ipk/source/browsers_elektro/CONTROL/prerm	(revision 11200)
@@ -0,0 +1,11 @@
+#!/bin/sh
+TMP=/tmp/.browsers
+echo "syncing disk"
+sync
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 100`
+	echo freespace size $FREE kb
+fi
+echo "removing Elektro v3.3.4"
+exit 0
Index: ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/PluginComponent.py.patch
===================================================================
--- ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/PluginComponent.py.patch	(revision 11200)
+++ ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/PluginComponent.py.patch	(revision 11200)
@@ -0,0 +1,11 @@
+--- /usr/lib/enigma2/python/Components/PluginComponent.py	2009-03-31 19:32:46.000000000 +0200
++++ /usr/lib/enigma2/python/Components/PluginComponent.py	2009-07-20 20:02:32.000000000 +0200
+@@ -121,7 +121,7 @@
+ 		wakeup = -1
+ 		for p in self.pluginList:
+ 			current = p.getWakeupTime()
+-			if current > -1 and wakeup < current:
++			if current > -1 and (wakeup > current or wakeup == -1):
+ 				wakeup = current
+ 		return int(wakeup)
+ 
Index: ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/de/LC_MESSAGES/elektro.po
===================================================================
--- ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/de/LC_MESSAGES/elektro.po	(revision 11200)
+++ ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/de/LC_MESSAGES/elektro.po	(revision 11200)
@@ -0,0 +1,110 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Elektro Power Save\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-04-26 11:35+0100\n"
+"PO-Revision-Date: 2009-04-26 11:35+0100\n"
+"Last-Translator: Moritz 'Morty' Strübe <morty@gmx.net>\n"
+"Language-Team: Morty <morty@gmx.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: German\n"
+"X-Poedit-Country: GERMANY\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Basepath: ../../..\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: plugin.py:110
+msgid "Monday"
+msgstr "Montag"
+
+#: plugin.py:111
+msgid "Tuesday"
+msgstr "Dienstag"
+
+#: plugin.py:112
+msgid "Wednesday"
+msgstr "Mittwoch"
+
+#: plugin.py:113
+msgid "Thursday"
+msgstr "Donnerstag"
+
+#: plugin.py:114
+msgid "Friday"
+msgstr "Freitag"
+
+#: plugin.py:115
+msgid "Saturday"
+msgstr "Samstag"
+
+#: plugin.py:116
+msgid "Sunday"
+msgstr "Sonntag"
+
+#: plugin.py:195
+msgid "Enable Elektro Power Save"
+msgstr "Elektro Power Save aktivieren"
+
+#: plugin.py:196
+#: plugin.py:300
+msgid "Standby on boot"
+msgstr "Nach dem Booten in den Standby"
+
+#: plugin.py:197
+msgid "Standby on manual boot"
+msgstr "Nach dem manuellen Booten in den Standby"
+
+#: plugin.py:198
+msgid "Standby on boot screen timeout"
+msgstr "In-den-Standby-Bildschirm Anzeigezeit"
+
+#: plugin.py:199
+msgid "Force sleep (even when not in standby)"
+msgstr "Erzwinge Ruhezustand (auch wenn nicht im Standby)"
+
+#: plugin.py:200
+msgid "Dont wake up"
+msgstr "Nicht aufwachen"
+
+#: plugin.py:201
+msgid "Holiday mode (experimental)"
+msgstr "Urlaubsmodus (Experimentell)"
+
+#: plugin.py:203
+msgid "Next day starts at"
+msgstr "Die nächste Tag beginnt um"
+
+#: plugin.py:206
+msgid "Wakeup"
+msgstr "Aufwachen"
+
+#: plugin.py:207
+msgid "Sleep"
+msgstr "Ruhezustand"
+
+#: plugin.py:211
+msgid "Cancel"
+msgstr "Abbruch"
+
+#: plugin.py:212
+msgid "Ok"
+msgstr "OK"
+
+#: plugin.py:213
+msgid "Help"
+msgstr "Hilfe"
+
+#: plugin.py:237
+msgid "Showing Elektro readme.txt"
+msgstr "Zeige Electro Readme.txt"
+
+#: plugin.py:323
+msgid "Go to Standby now?"
+msgstr "Jetzt in den Standby gehen?"
+
+#: plugin.py:465
+msgid "Go to sleep now?"
+msgstr "Jetzt in den Ruhezustand gehen?"
+
Index: ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/it/LC_MESSAGES/elektro.po
===================================================================
--- ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/it/LC_MESSAGES/elektro.po	(revision 11200)
+++ ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/it/LC_MESSAGES/elektro.po	(revision 11200)
@@ -0,0 +1,107 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: enigma2 - elektropowersaver\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-03-28 16:15+0100\n"
+"PO-Revision-Date: 2009-03-28 16:32+0100\n"
+"Last-Translator: Spaeleus <spaeleus@croci.org>\n"
+"Language-Team: www.linsat.net <spaeleus@croci.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-Language: Italian\n"
+"X-Poedit-Country: ITALY\n"
+"X-Poedit-SourceCharset: iso-8859-1\n"
+"X-Poedit-Basepath: /home/dario/Plugins/elektro\n"
+"X-Poedit-SearchPath-0: /home/dario/Plugins/elektro\n"
+
+#: /home/dario/Plugins/elektro/plugin.py:108
+msgid "Monday"
+msgstr "Lunedì"
+
+#: /home/dario/Plugins/elektro/plugin.py:109
+msgid "Tuesday"
+msgstr "Martedì"
+
+#: /home/dario/Plugins/elektro/plugin.py:110
+msgid "Wednesday"
+msgstr "Mercoledì"
+
+#: /home/dario/Plugins/elektro/plugin.py:111
+msgid "Thursday"
+msgstr "Giovedì"
+
+#: /home/dario/Plugins/elektro/plugin.py:112
+msgid "Friday"
+msgstr "Venerdì"
+
+#: /home/dario/Plugins/elektro/plugin.py:113
+msgid "Saturday"
+msgstr "Sabato"
+
+#: /home/dario/Plugins/elektro/plugin.py:114
+msgid "Sunday"
+msgstr "Domenica"
+
+#: /home/dario/Plugins/elektro/plugin.py:182
+msgid "Enable Elektro Power Save"
+msgstr "Abilitare \"Elektro Power Save\""
+
+#: /home/dario/Plugins/elektro/plugin.py:183
+#: /home/dario/Plugins/elektro/plugin.py:269
+msgid "Standby on boot"
+msgstr "Standby all'avvio"
+
+#: /home/dario/Plugins/elektro/plugin.py:184
+msgid "Standby on boot screen timeout"
+msgstr "Timeout standby su schermata di avvio"
+
+#: /home/dario/Plugins/elektro/plugin.py:185
+msgid "Force sleep (even when not in standby)"
+msgstr "Forzare spegnimento (anche se non in standby)"
+
+#: /home/dario/Plugins/elektro/plugin.py:186
+msgid "Dont wake up"
+msgstr "Non accendere"
+
+#: /home/dario/Plugins/elektro/plugin.py:187
+msgid "Holiday mode (experimental)"
+msgstr "Modalità \"vacanza\" (sperimentale)"
+
+#: /home/dario/Plugins/elektro/plugin.py:189
+msgid "Next day starts at"
+msgstr "Il prossimo giorno inizia alle"
+
+#: /home/dario/Plugins/elektro/plugin.py:192
+msgid "Wakeup"
+msgstr "Accendere"
+
+#: /home/dario/Plugins/elektro/plugin.py:193
+msgid "Sleep"
+msgstr "Spegnere"
+
+#: /home/dario/Plugins/elektro/plugin.py:197
+msgid "Cancel"
+msgstr "Annull."
+
+#: /home/dario/Plugins/elektro/plugin.py:198
+msgid "Ok"
+msgstr "Ok"
+
+#: /home/dario/Plugins/elektro/plugin.py:199
+msgid "Help"
+msgstr "Aiuto"
+
+#: /home/dario/Plugins/elektro/plugin.py:223
+msgid "Showing Elektro readme.txt"
+msgstr "Elektro readme.txt"
+
+#: /home/dario/Plugins/elektro/plugin.py:292
+msgid "Go to Standby now?"
+msgstr "Standby?"
+
+#: /home/dario/Plugins/elektro/plugin.py:434
+msgid "Go to sleep now?"
+msgstr "Spegenere?"
+
Index: ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/tr/LC_MESSAGES/Elektro-tr.po
===================================================================
--- ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/tr/LC_MESSAGES/Elektro-tr.po	(revision 11200)
+++ ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/tr/LC_MESSAGES/Elektro-tr.po	(revision 11200)
@@ -0,0 +1,108 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Enigma2 Elektro Power Save Plugin Turkish Locale\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-04-26 11:35+0100\n"
+"PO-Revision-Date: 2009-09-22 14:05+0200\n"
+"Last-Translator: Zülfikar VEYİSOĞLU <z.veyisoglu@hobiagaci.com>\n"
+"Language-Team: http://hobiagaci.com <z.veyisoglu@hobiagaci.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Turkish\n"
+"X-Poedit-Country: TURKEY\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: plugin.py:110
+msgid "Monday"
+msgstr "Pazartesi"
+
+#: plugin.py:111
+msgid "Tuesday"
+msgstr "Salı"
+
+#: plugin.py:112
+msgid "Wednesday"
+msgstr "Çarşamba"
+
+#: plugin.py:113
+msgid "Thursday"
+msgstr "Perşembe"
+
+#: plugin.py:114
+msgid "Friday"
+msgstr "Cuma"
+
+#: plugin.py:115
+msgid "Saturday"
+msgstr "Cumartesi"
+
+#: plugin.py:116
+msgid "Sunday"
+msgstr "Pazar"
+
+#: plugin.py:195
+msgid "Enable Elektro Power Save"
+msgstr "Elektro enerji tasarrufçusunu etkinleştir"
+
+#: plugin.py:196
+#: plugin.py:300
+msgid "Standby on boot"
+msgstr "Açılışta hazırda beklet"
+
+#: plugin.py:197
+msgid "Standby on manual boot"
+msgstr "Elle açılırken hazırda beklet"
+
+#: plugin.py:198
+msgid "Standby on boot screen timeout"
+msgstr "Açılış ekranı zaman aşımı süresi"
+
+#: plugin.py:199
+msgid "Force sleep (even when not in standby)"
+msgstr "Hazırda beklemeye zorla (hazırda beklemede değilken)"
+
+#: plugin.py:200
+msgid "Dont wake up"
+msgstr "Uyanma"
+
+#: plugin.py:201
+msgid "Holiday mode (experimental)"
+msgstr "Tatil modu (deneme)"
+
+#: plugin.py:203
+msgid "Next day starts at"
+msgstr "Sonraki gün başlangıcı"
+
+#: plugin.py:206
+msgid "Wakeup"
+msgstr "Uyan"
+
+#: plugin.py:207
+msgid "Sleep"
+msgstr "Hazırda beklet"
+
+#: plugin.py:211
+msgid "Cancel"
+msgstr "Vazgeç"
+
+#: plugin.py:212
+msgid "Ok"
+msgstr "Tamam"
+
+#: plugin.py:213
+msgid "Help"
+msgstr "Yardım"
+
+#: plugin.py:237
+msgid "Showing Elektro readme.txt"
+msgstr "Elektro benioku.txt gösteriliyor"
+
+#: plugin.py:323
+msgid "Go to Standby now?"
+msgstr "Hazırda bekletme kipine şimdi geçilsin mi?"
+
+#: plugin.py:465
+msgid "Go to sleep now?"
+msgstr "Uyku kipine şimdi geçilsin mi?"
+
Index: ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/tr/LC_MESSAGES/elektro.po
===================================================================
--- ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/tr/LC_MESSAGES/elektro.po	(revision 11200)
+++ ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/locale/tr/LC_MESSAGES/elektro.po	(revision 11200)
@@ -0,0 +1,108 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Enigma2 Elektro Power Save Plugin Turkish Locale\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-04-26 11:35+0100\n"
+"PO-Revision-Date: 2009-09-22 14:05+0200\n"
+"Last-Translator: Zülfikar VEYİSOĞLU <z.veyisoglu@hobiagaci.com>\n"
+"Language-Team: http://hobiagaci.com <z.veyisoglu@hobiagaci.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Turkish\n"
+"X-Poedit-Country: TURKEY\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: plugin.py:110
+msgid "Monday"
+msgstr "Pazartesi"
+
+#: plugin.py:111
+msgid "Tuesday"
+msgstr "Salı"
+
+#: plugin.py:112
+msgid "Wednesday"
+msgstr "Çarşamba"
+
+#: plugin.py:113
+msgid "Thursday"
+msgstr "Perşembe"
+
+#: plugin.py:114
+msgid "Friday"
+msgstr "Cuma"
+
+#: plugin.py:115
+msgid "Saturday"
+msgstr "Cumartesi"
+
+#: plugin.py:116
+msgid "Sunday"
+msgstr "Pazar"
+
+#: plugin.py:195
+msgid "Enable Elektro Power Save"
+msgstr "Elektro enerji tasarrufçusunu etkinleştir"
+
+#: plugin.py:196
+#: plugin.py:300
+msgid "Standby on boot"
+msgstr "Açılışta hazırda beklet"
+
+#: plugin.py:197
+msgid "Standby on manual boot"
+msgstr "Elle açılırken hazırda beklet"
+
+#: plugin.py:198
+msgid "Standby on boot screen timeout"
+msgstr "Açılış ekranı zaman aşımı süresi"
+
+#: plugin.py:199
+msgid "Force sleep (even when not in standby)"
+msgstr "Hazırda beklemeye zorla (hazırda beklemede değilken)"
+
+#: plugin.py:200
+msgid "Dont wake up"
+msgstr "Uyanma"
+
+#: plugin.py:201
+msgid "Holiday mode (experimental)"
+msgstr "Tatil modu (deneme)"
+
+#: plugin.py:203
+msgid "Next day starts at"
+msgstr "Sonraki gün başlangıcı"
+
+#: plugin.py:206
+msgid "Wakeup"
+msgstr "Uyan"
+
+#: plugin.py:207
+msgid "Sleep"
+msgstr "Hazırda beklet"
+
+#: plugin.py:211
+msgid "Cancel"
+msgstr "Vazgeç"
+
+#: plugin.py:212
+msgid "Ok"
+msgstr "Tamam"
+
+#: plugin.py:213
+msgid "Help"
+msgstr "Yardım"
+
+#: plugin.py:237
+msgid "Showing Elektro readme.txt"
+msgstr "Elektro benioku.txt gösteriliyor"
+
+#: plugin.py:323
+msgid "Go to Standby now?"
+msgstr "Hazırda bekletme kipine şimdi geçilsin mi?"
+
+#: plugin.py:465
+msgid "Go to sleep now?"
+msgstr "Uyku kipine şimdi geçilsin mi?"
+
Index: ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/readme.txt
===================================================================
--- ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/readme.txt	(revision 11200)
+++ ipk/source/browsers_elektro/usr/lib/enigma2/python/Plugins/Extensions/Elektro/readme.txt	(revision 11200)
@@ -0,0 +1,230 @@
+====================================================
+Elektro Power Save for Dreambox 7025 
+Version 1 & 2 by gutemine
+Version 3 by Morty <morty@gmx.net>
+====================================================
+Release infos 
+====================================================
+1.0   first version, as usually completely 
+      untested - have Fun !
+1.1   now after boot the Dreambox will go 
+      immediately to normal Standby
+1.2   some bugfixes on Plugin Text and 
+      make standby on boot configurable
+2.0   make ipk kit, add info messages before standby 
+      and prevent deepstandby if timer is running
+2.1   bug fixes and support for new images with TryQuit
+      mainloop (which is since mid January 2007 in CVS)
+2.2   still alive 
+2.3   make compatible with latest CVS changes
+      probably last version by gutemine
+
+3.0   Rewritten by Morty, lots of new features
+3.0.2 It's now possible to adjust the how long to
+      show the shutdown screen
+3.0.4 Bugfix
+3.0.5 Fixed problem where the box shuts down again
+      when it boots up too fast
+3.1.0 Removed unneeded dependencies
+      Don't shut down if woken up manually
+3.2.0 Recording detection should work now
+      Holiday mode has been implemented
+3.2.1 Fixed Bug not recognizing a wakeup by Elektro 
+3.2.2 Added the Italian translation by Spaeleus     
+3.2.3 Fixed problem with auto-Timers
+3.3.0 Added an option to choose whether to go to 
+      standby on manual boot
+3.3.1 Fixed problem when the global session was not
+      available
+3.3.2 Fixed some problems shutting down on latest
+	  versions of enigma2.
+3.3.3 Added patch to installer to fix enigma2. It 
+	  should now be possible to run Elektro and 
+	  EPG refresh in parallel.
+3.3.4 Added Turkish locale by MytHoLoG	  
+====================================================
+The English Documentation follows the German one 
+====================================================
+
+1) Voraussetzung
+----------------
+Power Save sollte auf den meisten Systemen mit Enigma2
+funktionieren. Muss aber nicht.
+DM7025 + DM8000: Wird unterstützt.
+DM800: Kann nicht alleine aufwachen, wird daher nicht
+wirklich unterstützt.
+
+2) Installation
+---------------
+
+Zuerst kopiert das elektro*.ipk File vom  auf /tmp mit 
+ftp (TCP/IP muss natürlich schon funktionieren). 
+
+Wenn Ihr ein Image geflashed habt, das ein Blue 
+Pannel hat könnt Ihr damit mit Manual Install das
+ipk file installieren.
+
+Wenn nicht, dann installiert elektro mit folgenden 
+Kommandos im Telnet:
+
+cd /
+ipkg install /tmp/elektro*.ipk
+
+Damit Elektro zuverlässig funktioniert muss die Box 
+neu gestartet werden. 
+
+
+3) Funktionsweise
+-----------------
+
+Das Elektro Power Save Plugin sorgt dafür, zu die Box
+zu bestimmten Zeiten in den Ruhezustand (Deep Standby)
+heruntergefahren wird. Dies passiert nur, wenn sie
+sich in Standby befindet und keine Aufnahme läuft
+oder in den nächsten 20 Minuten gestartet wird.
+
+Zu Aufnahmen und nach Ende der Ruhezeit wacht die Box
+von alleine wieder auf, so dass man nicht ewig warten
+muss, bis sie Bereit ist.
+
+4) Optionen
+-----------
+Hauptmenü -> Erweiterungen -> Elektro Power Save
+
+ - Elektro Power Save aktivieren
+   Aktiviert das Plugin
+   
+ - Nach dem Booten in den Standby
+   Geht nach dem Booten in den Standby
+   
+ - Nach dem manuellen Booten in den Standby
+   Soll nach einem manuellen Bootvorgang in den 
+   Standby gegangen werden? Die Box geht nach 
+   einem manuellen Bootvorgang erst in der nächsten
+   den Ruhezeit in den Ruhezustand, selbst wenn
+   diese Option aktiviert ist.
+   Diese Option wird nur ausgewertet, wenn "Nach 
+   dem Booten in den Standby" aktiviert ist.
+   
+ - In-den-Standby-Bildschirm Anzeigezeit
+   Stellt ein wie lange die Stanby-Abfrge angezeigt
+   wird. Dieser Wert kann erhöht werden um sicher zu
+   stellen, dass sich die Box während der Ruhe-Zeit 
+   nicht zu schnell wieder abschaltet.
+   
+ - Erzwinge Ruhezustand
+   Erzwingt den Ruhezustand auch, wenn die Box nicht
+   im Standby ist. Auf Aufnahmen hat dies keinen Ein-
+   fluss.
+   
+ - Nicht aufwachen
+   Die Box wacht nach dem eine der Ruhe-Zeit nicht von
+   alleine auf.
+   
+ - Urlaubsmodus
+   Die Box geht immer schlafen, wenn nicht gerade
+   aufgenommen wird.
+   
+ - Die nächste Tag beginnt um und sostige Zeiten
+   Soll die Box Montag Nacht um 1 in den Ruhezustand,
+   ist es genau genommen schon Dienstag. Damit dies
+   trotzdem möglich ist, muss angegeben werden wann 
+   der nächste Tag anfängt.
+   Der Rest ist hoffentlich selbsterklärend.
+   
+
+
+
+====================================================
+Viel Spass mit dem Stromsparen und Umweltschützen
+mit dem Elektro Plugin auf der Dreambox 7025 !!!!
+====================================================
+
+
+1) Prerequisites
+----------------
+
+Should work on most systems using Enigma2, but this 
+isn't granted.
+DM7025 + DM8000: Supported.
+DM800: Can not wake up by itself. It therefore isn't
+really supported.
+
+2) Installation
+---------------
+
+First copy the elektro*.ipk file from elektro*.zip
+to /tmp with ftp (TCP/IP must be working already). 
+
+If you have flashed an image that offer in Blue 
+Pannel Manual Addon Install you can use this 
+functionality to install the ipk file.
+
+If not, then install Elektro by entering the 
+following commands in a Telnet session:
+
+cd /
+ipkg install /tmp/elektro*.ipk
+
+To ensure proper operation of Elektro please reboot
+the box. 
+
+
+3) Mode of operation    
+--------------------
+The Elektro Power Save Plugin puts the box from 
+stand by to sleep mode (Deep Standby) at certain 
+times. This only happens if the box is in standby
+and no recording is running or sheduled in the 
+next 20 minutes.
+
+The box automatically wakes up for recordings or
+at the end of the sleep time. You therefore don't
+have to wait until it is on again.
+
+4) Optiones
+-----------
+Main menu -> Extensions -> Elektro Power Save
+
+ - Enable Elektro Power Save
+   Enables the Plugin.
+   
+ - Standby on boot
+   Puts the box in standby after boot.  
+   
+ - Standby on manual boot
+   Whether to put the box in standby when booted
+   manually. On manual boot the box will not go
+   to sleep until the next sleep intervall eaven
+   when this is turned on.
+   This option is only evaluated if Standby on
+   boot is turned on.  
+   
+ - Standby on boot screen timeout
+   How long to show the standby on boot screen.
+   This value can be encreased to ensure the box
+   does not shut down again to quickly during
+   sleep times.
+   
+ - Force sleep 
+   Forces sleep, even when not in standby. This
+   has influence on sheduled recordings.
+   
+ - Dont wake up
+   Do not wake up at the end of the sleep time.
+   
+ - Holiday mode
+   The box goes to sleep when not recording   
+   
+ - Next day starts at and other times
+   If the box is supposed to go to sleep Monday night
+   at 1 it is actually already Thuesday. To make this
+   nonetheless possible, it must be known when the
+   next day Starts.
+   Hopefully the rest is self-explanatory. 
+
+
+======================================================
+Have Fun to let Elektro Save Power and the 
+Environment with your Dreambox 7025 !!!!
+======================================================
Index: ipk/source/browsers_werbezapper/CONTROL/control
===================================================================
--- ipk/source/browsers_werbezapper/CONTROL/control	(revision 11200)
+++ ipk/source/browsers_werbezapper/CONTROL/control	(revision 11200)
@@ -0,0 +1,10 @@
+Package: enigma2-plugin-browsers-werbezapper
+Version: 1.0
+Architecture: sh4
+OE: With this plugin you can set a timer. When the time is over the plugin will switch back to the channel you activated the timer. Nice for commercials!
+Section: extra
+Priority: optional
+Maintainer: AAF
+Homepage: http://www.aaf-digital.info
+Source: http://www.aaf-digital.info
+Description: WerbeZapper v1.0
Index: ipk/source/browsers_werbezapper/CONTROL/postinst
===================================================================
--- ipk/source/browsers_werbezapper/CONTROL/postinst	(revision 11200)
+++ ipk/source/browsers_werbezapper/CONTROL/postinst	(revision 11200)
@@ -0,0 +1,12 @@
+#!/bin/sh
+TMP=/tmp/.browsers
+
+echo "successfully installed"
+echo "syncing disk"
+sync
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 100`
+	echo new freespace size $FREE kb
+fi
+exit 0
Index: ipk/source/browsers_werbezapper/CONTROL/postrm
===================================================================
--- ipk/source/browsers_werbezapper/CONTROL/postrm	(revision 11200)
+++ ipk/source/browsers_werbezapper/CONTROL/postrm	(revision 11200)
@@ -0,0 +1,14 @@
+#!/bin/sh
+TMP=/tmp/.browsers
+PLUGINDIR=/usr/lib/enigma2/python/Plugins/Extensions/WerbeZapper
+rm -r $PLUGINDIR > /dev/null 2>&1
+
+echo "successfully removed"
+echo "syncing disk"
+sync
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 100`
+	echo new freespace size $FREE kb
+fi
+exit 0
Index: ipk/source/browsers_werbezapper/CONTROL/preinst
===================================================================
--- ipk/source/browsers_werbezapper/CONTROL/preinst	(revision 11200)
+++ ipk/source/browsers_werbezapper/CONTROL/preinst	(revision 11200)
@@ -0,0 +1,44 @@
+#!/bin/sh
+#
+TMP=/tmp/.browsers
+echo "syncing disk"
+sync
+
+model=`cat /etc/model`
+echo""
+echo "Checking your Boxtype...."
+echo "Some Plugins will not work correctly on your $model!"
+echo ""
+if [ "$model" = "" ]; then
+	echo "Sorry! This Plugin is not available for your $model because it will not work correctly!!!"
+	echo "Aborting installation..."
+	exit 1
+else
+	echo "Boxtype: $model OK"
+fi
+
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 50`
+	SIZE=15
+	echo "checking freespace"
+	echo packege size $SIZE kb
+	echo freespace size $FREE kb
+	if  [ "$FREE" -lt "$SIZE" ]; then
+		echo "sorry no freespace left on device"
+		exit 1
+	else
+		echo ok
+	fi
+fi   
+echo "installing WerbeZapper ..."
+echo "checking OS"
+if  [ `cat /etc/motd | grep AAF | grep M | grep rev | wc -l` -eq 0 ]; then                      
+	echo ---------------------------
+	echo DONT USE this IPK Package!!
+	echo ---
+	echo Only for AAF Image!!
+	echo ---------------------------
+	exit 1
+fi
+exit 0
Index: ipk/source/browsers_werbezapper/CONTROL/prerm
===================================================================
--- ipk/source/browsers_werbezapper/CONTROL/prerm	(revision 11200)
+++ ipk/source/browsers_werbezapper/CONTROL/prerm	(revision 11200)
@@ -0,0 +1,11 @@
+#!/bin/sh
+TMP=/tmp/.browsers
+echo "syncing disk"
+sync
+if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
+	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
+	FREE=`expr $SPACE - 100`
+	echo freespace size $FREE kb
+fi
+echo "removing WerbeZapper"
+exit 0
Index: ipk/source/browsers_werbezapper/usr/lib/enigma2/python/Plugins/Extensions/WerbeZapper/LICENSE
===================================================================
--- ipk/source/browsers_werbezapper/usr/lib/enigma2/python/Plugins/Extensions/WerbeZapper/LICENSE	(revision 11200)
+++ ipk/source/browsers_werbezapper/usr/lib/enigma2/python/Plugins/Extensions/WerbeZapper/LICENSE	(revision 11200)
@@ -0,0 +1,12 @@
+All Files of this Software are licensed under the Creative Commons 
+Attribution-NonCommercial-ShareAlike 3.0 Unported 
+License if not stated otherwise in a Files Head. To view a copy of this license, visit
+http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative
+Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
+
+Alternatively, this plugin may be distributed and executed on hardware which
+is licensed by Dream Multimedia GmbH.
+
+This plugin is NOT free software. It is open source, you are allowed to
+modify it (if you keep the license), but it may not be commercially 
+distributed other than under the conditions noted above.
Index: ipk/source/browsers_werbezapper/usr/lib/enigma2/python/Plugins/Extensions/WerbeZapper/maintainer.info
===================================================================
--- ipk/source/browsers_werbezapper/usr/lib/enigma2/python/Plugins/Extensions/WerbeZapper/maintainer.info	(revision 11200)
+++ ipk/source/browsers_werbezapper/usr/lib/enigma2/python/Plugins/Extensions/WerbeZapper/maintainer.info	(revision 11200)
@@ -0,0 +1,2 @@
+moritz.venn@freaque.net
+WerbeZapper
