Sponsored links


Go Back   Sat Industry Forums > Dreambox > Dreambox Hardware > DM7025
Register FAQ Members List Calendar Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-13-2006
Registered User
 
Join Date: Sep 2004
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
vangos75 is on a distinguished road
7025 web browser

Any news for 7025 web browser?
Reply With Quote
Sponsored links
  #2 (permalink)  
Old 07-15-2006
Registered User
 
Join Date: Jan 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
jeepcook is on a distinguished road
Re: 7025 web browser

Hello,

It seems that next da Vinci will propose a web interface (not very sure , must be confimed).

Since today, enigma2 team begins the developpement of web interface .. so just be a little patient:

Message: 6
Date: Fri, 14 Jul 2006 18:56:31 +0200
From: "CVS User tmbinc" <enigma2-cvs@lists.elitedvb.net>
Subject: [enigma2-cvs] CVS
enigma2/lib/python/Plugins/Extensions/WebInterface
To: enigma2-cvs@lists.elitedvb.net
Message-ID: <20060714165630.427051C800A@mail.multimedia-labs.de>

Update of /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface
In directory pepe:/tmp/cvs-serv28381/lib/python/Plugins/Extensions/WebInterface

Modified Files:
plugin.py Makefile.am
Added Files:
webif.py test.xml
Log Message:
add proof-of-concept web interface

--- /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/plugin.py 2006/03/05 21:43:49 1.2
+++ /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/plugin.py 2006/07/14 16:56:31 1.3
@@ -1,14 +1,41 @@
from Plugins.Plugin import PluginDescriptor

+sessions = [ ]
+
def startWebserver():
from twisted.internet import reactor
- from twisted.web2 import server, http, static
- toplevel = static.File("/hdd")
- site = server.Site(toplevel)
+ from twisted.web2 import server, http, static, resource, stream
+ import webif
+
+ class ScreenPage(resource.Resource):
+ def render(self, req):
+ global sessions
+ if sessions == [ ]:
+ return http.Response("please wait until enigma has booted")
+
+ s = stream.ProducerStream()
+ webif.renderPage(s, req, sessions[0]) # login?
+ return http.Response(stream=s)
+
+ class Toplevel(resource.Resource):
+ addSlash = True
+
+ def render(self, req):
+ return 'Hello! you want probably go to <a href="/test">the test</a> instead.'
+
+ child_test = ScreenPage() # "/test"
+ child_hdd = static.File("/hdd")
+
+ site = server.Site(Toplevel())

reactor.listenTCP(80, http.HTTPFactory(site))

def autostart(reason, **kwargs):
+ if "session" in kwargs:
+ global sessions
+ sessions.append(kwargs["session"])
+ return
+
if reason == 0:
try:
startWebserver()
@@ -16,4 +43,4 @@
print "twisted not available, not starting web services"

def Plugins(**kwargs):
- return PluginDescriptor(where = PluginDescriptor.WHERE_AUTOSTART, fnc = autostart)
+ return PluginDescriptor(where = [PluginDescriptor.WHERE_SESSIONSTART, PluginDescriptor.WHERE_AUTOSTART], fnc = autostart)
--- /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/Makefile.am 2006/02/22 23:30:34 1.3
+++ /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/Makefile.am 2006/07/14 16:56:31 1.4
@@ -2,6 +2,4 @@

install_PYTHON = \
__init__.py \
- plugin.py
-
-
\ No newline at end of file
+ plugin.py xmlrpc.py webif.py *.xml
Reply With Quote
  #3 (permalink)  
Old 07-17-2006
Registered User
 
Join Date: Sep 2004
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
vangos75 is on a distinguished road
Re: 7025 web browser

i appreciate your great help









Quote:
Originally Posted by jeepcook
Hello,

It seems that next da Vinci will propose a web interface (not very sure , must be confimed).

Since today, enigma2 team begins the developpement of web interface .. so just be a little patient:

Message: 6
Date: Fri, 14 Jul 2006 18:56:31 +0200
From: "CVS User tmbinc" <enigma2-cvs@lists.elitedvb.net>
Subject: [enigma2-cvs] CVS
enigma2/lib/python/Plugins/Extensions/WebInterface
To: enigma2-cvs@lists.elitedvb.net
Message-ID: <20060714165630.427051C800A@mail.multimedia-labs.de>

Update of /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface
In directory pepe:/tmp/cvs-serv28381/lib/python/Plugins/Extensions/WebInterface

Modified Files:
plugin.py Makefile.am
Added Files:
webif.py test.xml
Log Message:
add proof-of-concept web interface

--- /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/plugin.py 2006/03/05 21:43:49 1.2
+++ /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/plugin.py 2006/07/14 16:56:31 1.3
@@ -1,14 +1,41 @@
from Plugins.Plugin import PluginDescriptor

+sessions = [ ]
+
def startWebserver():
from twisted.internet import reactor
- from twisted.web2 import server, http, static
- toplevel = static.File("/hdd")
- site = server.Site(toplevel)
+ from twisted.web2 import server, http, static, resource, stream
+ import webif
+
+ class ScreenPage(resource.Resource):
+ def render(self, req):
+ global sessions
+ if sessions == [ ]:
+ return http.Response("please wait until enigma has booted")
+
+ s = stream.ProducerStream()
+ webif.renderPage(s, req, sessions[0]) # login?
+ return http.Response(stream=s)
+
+ class Toplevel(resource.Resource):
+ addSlash = True
+
+ def render(self, req):
+ return 'Hello! you want probably go to <a href="/test">the test</a> instead.'
+
+ child_test = ScreenPage() # "/test"
+ child_hdd = static.File("/hdd")
+
+ site = server.Site(Toplevel())

reactor.listenTCP(80, http.HTTPFactory(site))

def autostart(reason, **kwargs):
+ if "session" in kwargs:
+ global sessions
+ sessions.append(kwargs["session"])
+ return
+
if reason == 0:
try:
startWebserver()
@@ -16,4 +43,4 @@
print "twisted not available, not starting web services"

def Plugins(**kwargs):
- return PluginDescriptor(where = PluginDescriptor.WHERE_AUTOSTART, fnc = autostart)
+ return PluginDescriptor(where = [PluginDescriptor.WHERE_SESSIONSTART, PluginDescriptor.WHERE_AUTOSTART], fnc = autostart)
--- /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/Makefile.am 2006/02/22 23:30:34 1.3
+++ /cvs/enigma2/lib/python/Plugins/Extensions/WebInterface/Makefile.am 2006/07/14 16:56:31 1.4
@@ -2,6 +2,4 @@

install_PYTHON = \
__init__.py \
- plugin.py
-
-
\ No newline at end of file
+ plugin.py xmlrpc.py webif.py *.xml
Reply With Quote
  #4 (permalink)  
Old 08-03-2006
astakona73's Avatar
Registered User
 
Join Date: Dec 2005
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
astakona73 is on a distinguished road
Re: 7025 web browser

The new Closseum image 1.3 has a web interface and works fine.
Reply With Quote
  #5 (permalink)  
Old 08-03-2006
kosmo's Avatar
Registered User
 
Join Date: Oct 2003
Posts: 183
Thanks: 0
Thanked 0 Times in 0 Posts
kosmo is on a distinguished road
Re: 7025 web browser

[quote=astakona73]The new Closseum image 1.3 has a web interface and works fine.[/QUOTE
where ??
I use coloseum 1.3 and dont have WI

kosmo
Reply With Quote
  #6 (permalink)  
Old 08-04-2006
astakona73's Avatar
Registered User
 
Join Date: Dec 2005
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
astakona73 is on a distinguished road
Re: 7025 web browser

[quote=kosmo]
Quote:
Originally Posted by astakona73
The new Closseum image 1.3 has a web interface and works fine.[/QUOTE
where ??
I use coloseum 1.3 and dont have WI

kosmo
Dear use smart streaming and zapping program which came with the closseum

and u can zap and stream channels into your pc,

Greeting

Reply With Quote
  #7 (permalink)  
Old 08-04-2006
kosmo's Avatar
Registered User
 
Join Date: Oct 2003
Posts: 183
Thanks: 0
Thanked 0 Times in 0 Posts
kosmo is on a distinguished road
Re: 7025 web browser

Yes ,but that is not web interface,you can not acces your box with your browser.
kosmo
Reply With Quote
  #8 (permalink)  
Old 08-04-2006
astakona73's Avatar
Registered User
 
Join Date: Dec 2005
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
astakona73 is on a distinguished road
Re: 7025 web browser

What do u mean by mean by web interface??

do u mean log into the box and reconfiguring it ??? or do u mean streaming channels , zapping and recording through PC???
Reply With Quote
  #9 (permalink)  
Old 08-05-2006
Registered User
 
Join Date: Oct 2004
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
zerocoolno is on a distinguished road
Re: 7025 web browser

Web interface will be out in Colosseum 1.4.....it should be soon
Reply With Quote
  #10 (permalink)  
Old 09-04-2006
Registered User
 
Join Date: Sep 2004
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
vangos75 is on a distinguished road
Re: 7025 web browser

exactly that

Quote:
Originally Posted by astakona73
What do u mean by mean by web interface??

do u mean log into the box and reconfiguring it ??? or do u mean streaming channels , zapping and recording through PC???
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Browser nkanganiekan DM-7020s 1 12-07-2005 01:03 AM
Gemini 2.20 and Web browser ebmaster DM-500s 3 10-13-2005 04:57 PM
Here is the Browser ebagnoli The_Hydra Images 19 12-27-2004 06:32 AM
WAP browser plug-in rick73au DM-500s 1 10-06-2004 09:25 AM
Any Browser ???żż ice Plugins 2 01-13-2004 08:14 AM


All times are GMT +10. The time now is 12:58 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Page generated in 0.61984 seconds with 10 queries