My Blue Panel / created for UR Panel, based on Hydra Panel sources.

ToneDeff

Inactive User
Joined
Jul 30, 2009
Messages
996
Reaction score
41
Location
127.0.0.1
Here's all the options i've figured out for the UR Hydra Panel, pretty sure everything i use is done by the Hydra Panel basics, only thing i think UR have done is added a "samba" restart option for tar installer

<directory> #start

<category name="Category name..."> #start category
<category name="Category name..."> #start subcategory
</category> #end subcategory

<tarball name="Download name..." url="http://www.url/file_name.tar.gz" target="/"/> #grab extract a "pczf" tar.gz zipped file to root
<tarball name="Download name..." url="http://www.url/file_name.tar.gz" target="/var/"/> #grab extract a "pczf" tar.gz zipped file to /var/

<file name="Download/Replace File" url="http://www.url/file" target="/var/etc/file> #download "file" to /var/file
<file name="Download/Replace File" url="http://www.url/file" target="/var/etc/file.renamed> #download "file" and rename it into /var/file.renamed

<separator/> #line...

<execute name="Name binary/script file..." target="/var/bin/runme" #executing a binary/script
<execute name="Name binary/script file..." target="/var/bin/runme.sh" confirmation="true"/> #executing a binary/script file with confirmation first

<execute name="Stop Crond" target="killall -q crond"/> #kill all crond processes via command

</category> #end of category

<plugin name="Plugin name..." configFile="plugin.cfg"/> #not looked into this
<softcam name="Emu name..." url="http://www_url/emu_name.tar.gz" target="/"/> #not looked into this guess it's basically the same as tarball but possibly adds entry into Hydra Based CAM manager ?

</directory> #end


Few things i think are quite vital would be to be able to use multiple commands

e.g
<execute name="Restart Crond" target="killall -q crond ; crond"/> #restated crond in two commands
at the moment anything that takes more then a single command i have to run it through a script.

and also by adding multiple commands you could add an echo feedback, at the moment running a single command that would show no output in telnet brings up a window to diisplay the execute results but stays empty
<execute name="Stop Crond" target="killall -q crond ; echo Cron Stopped"/>

also the ability to execute a command without the output window being brought up would be usefull..
e.g.
<execute name="BBC 1 London" echo="no" target="wget -q -O /dev/null http://localhost/cgi-bin/zapTo?path=1:0:1:189d:7fd:2:11a0000:0:0:0:"/>

Think most of this is already on the PLi Panel which is a very heavy modified version of the Hydra Soure afaik...

Here's link to my Panel .xml if anyone wants to have a look
http://tonedeff.cz.cc/blue/cpanel.xml
 
Is that the actual code ?

What is all the ... for ?

or is this snippets of the code, It follows basic standards ie opening and closing statements.

I see you put a wget in for bbc 1 london - so I take it you can make the blue panel execute shell commands ?

I do not like wget sometimes because you set it -O to not output and it will still stick a log in root... which is a right pain.

But if you can make the cpanel execute shell commands you could do some really cool stuff.

Mick
 
Is that the actual code ?

What is all the ... for ?

or is this snippets of the code, It follows basic standards ie opening and closing statements.

I see you put a wget in for bbc 1 london - so I take it you can make the blue panel execute shell commands ?

I do not like wget sometimes because you set it -O to not output and it will still stick a log in root... which is a right pain.

But if you can make the cpanel execute shell commands you could do some really cool stuff.

Mick

i wrote this up to send to TM to ask if i was missing any options on the UR panel. thought i'd post it in here aswell for refrence

it's all the xml tags used by a Hydra Based cpanel "cpanel.xml" to create the Blue Panel listing.

and yes any shell commands can be executed but on the standard Hydra Panel i think you can only execute one command per entry, or atleast it seems to be that way on the UR panel thats based on it.
 
Last edited:
so this is for technomate and not for dreambox ?

I like the fact you can use XML to make the menu that will be nice and easy to manipulate.

Is dreambox the same ?

Could you dump your panel in the code tag ]code[ brackets other way round ]/code[

Mick
 
yes
enigma is enigma on any box most things are transferable.
I believe tone deff has even used dm500 lib files on his tm box.
 
The fact that the dreambox can use wget is a massive bonus, you could sync almost anything into a file then pull that into the dreambox and then run it as a cron.

Cron and Wget are very powerful!

I run the whole football section via crons and wget - and if there is a preg replace available in c+ then you can also manipulate anything you can pull from the internet.
 
yes
enigma is enigma on any box most things are transferable.
I believe tone deff has even used dm500 lib files on his tm box.

i manage to run all sorts of things on my tm,

dm500/600/7020, probably shouldn't but it's not broken it yet... :D

and also some stuff that was meant for fritzbox found it by mistake looking for "ds" files :banana:
Index of /
 
Could you dump your panel in the code tag ]code[ brackets other way round ]/code[

1. The text that you have entered is too long (66278 characters). Please shorten it to 40000 characters long.

here's it with all my channel list section removed apart from one chan

Code:
You don't have permission to view the code content. Log in or register now.
 
Thank you very much :)

Please could you take some screen shots of your blue panel so I can cross reference it.

But I like the look of that panel, and you have coded it very neat and tidy.

Regards
Mick
 
Thank you very much :)

Please could you take some screen shots of your blue panel so I can cross reference it.

But I like the look of that panel, and you have coded it very neat and tidy.

Regards
Mick

had to get up for work crazy early :/

only just got back.. i use notedpad++ in xml mode to be able to collapse "catergories"


UMmqh.png

#####
yvHEC.png

#####
Code:
You don't have permission to view the code content. Log in or register now.
AuTIw.png

#####
echo output window for my chanList update script.
Code:
You don't have permission to view the code content. Log in or register now.
aD9lv.png

#####
cron section
Y9cRg.png

#####
Code:
You don't have permission to view the code content. Log in or register now.
MVMkF.png

#####
echo output from comand execute on Panel
Code:
You don't have permission to view the code content. Log in or register now.
tSQ0V.png
 
Back
Top