Hello Guest, if you are reading this it means you have not registered yet. Please take a second, Click here to register, and in a few simple steps you will be able to enjoy our community and use our OpenViX support section.
Page 1 of 2 12 LastLast
Results 1 to 15 of 20

Thread: Ask for support plugin "AtileHD" to view multiple choices from skin component

  1. #1

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post

    Ask for support plugin "AtileHD" to view multiple choices from skin component

    Dear developers

    Thank you for all image team for continuous efforts to serve Enigma users

    I had a query..

    Now I am modifying the skins with some simple additions by adding posters or data on the different screens in the skin, and some of them are based on separate renderers or renderers using the xtraEvent plugin

    There are plugin with the name "AtileHD" present in the image, openatv - vti.
    It allows making a list of choices to display differently according to the user's taste by showing one or more posters. (attached)

    c+.jpg

    Is it possible to support the presence of this plugin to work in full with the openvix image - as I installed it by moving the plugin folder to /usr/lib/enigma2/python/Plugins/Extensions/ and it did not appear and the list of options did not work
    Thank you to the team for their continuous support
    I attached the plugin link on the github

    https://github.com/linuxbox10/enigma...nsions/AtileHD

  2. #2
    Huevos's Avatar
    Title
    Administrator
    Join Date
    Jun 2010
    Location
    38.5N, 0.5W
    Posts
    13,632
    Thanks
    2,007
    Thanked 4,955 Times in 3,276 Posts
    Which version of ATV?

    The plugin you have linked is Python 2.
    Help keep OpenViX servers online.Please donate!

  3. The Following User Says Thank You to Huevos For This Useful Post:

    biko_73 (30-11-21)

  4. #3

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post
    Quote Originally Posted by Huevos View Post
    Which version of ATV?

    The plugin you have linked is Python 2.


    Thank you for your interest in replying

    The version is available and upgraded to Python3 on openatv 7.0 and i already use it
    I was inquiring about accepting support for the idea
    Meaning the work of the plugin on the vix image
    I did not mean to refer to a specific version

    attached py3 version
    Attached Files Attached Files
    Last edited by biko_73; 30-11-21 at 10:15.

  5. #4
    Huevos's Avatar
    Title
    Administrator
    Join Date
    Jun 2010
    Location
    38.5N, 0.5W
    Posts
    13,632
    Thanks
    2,007
    Thanked 4,955 Times in 3,276 Posts
    The plugin does not load because it is looking for a module called "Tools.WeatherID". So you need to try loading that module into your OpenViX install.
    Help keep OpenViX servers online.Please donate!

  6. The Following User Says Thank You to Huevos For This Useful Post:

    biko_73 (30-11-21)

  7. #5

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post
    Quote Originally Posted by Huevos View Post
    The plugin does not load because it is looking for a module called "Tools.WeatherID". So you need to try loading that module into your OpenViX install.
    Thank you for your interest in responding

    I didn't understand what the plugin had to do with the weather!!
    what related connection
    The plugins belong to the skins and activate the pro menus
    To display the choices of the screen components

    but i will look for tool as your advise on feed
    Last edited by biko_73; 30-11-21 at 12:05.

  8. #6

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post
    i looking for "Tools.WeatherID".
    i just find python file named as you mention , couldn't know how it work or what need to install
    Attached Files Attached Files
    Last edited by biko_73; 30-11-21 at 12:30.

  9. #7
    twol's Avatar
    Title
    Moderator
    Join Date
    Apr 2012
    Posts
    8,417
    Thanks
    997
    Thanked 2,894 Times in 2,247 Posts
    Um, weather ID is part of the ATV image(tools/weatherID) so could be non py3 import thats failing
    Gigablue Quad 4K & UE 4K
    .........FBC Tuners:
    ------------------> GT-Sat unicable LNB to 1.5M dish(28.2E)
    ------------------> Gigablue unicable LNB to 80 cm dish(19.2E)
    .......................> FBC & DVB-S2X into 90cm dish (27.5W) Opticum robust Unicable LNB
    AX HD61, Edision Osmio 4K+, Zgemma H9Combo, Octagon SF8008 , gbtrio4k, h9se using unicable ports
    Zgemma H9 C/S into Giga4K

  10. The Following User Says Thank You to twol For This Useful Post:

    biko_73 (30-11-21)

  11. #8

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post
    it mean can only use on openatv image only

  12. #9
    Huevos's Avatar
    Title
    Administrator
    Join Date
    Jun 2010
    Location
    38.5N, 0.5W
    Posts
    13,632
    Thanks
    2,007
    Thanked 4,955 Times in 3,276 Posts
    Quote Originally Posted by biko_73 View Post
    Thank you for your interest in responding

    I didn't understand what the plugin had to do with the weather!!
    what related connection
    The plugins belong to the skins and activate the pro menus
    To display the choices of the screen components

    but i will look for tool as your advise on feed
    No idea why someone thought it would be a good idea to add weather functions to this tool but they did.

    Code:
    	def keyOk(self):
    		sel = self["config"].getCurrent()
    		if sel is not None and sel == self.set_new_skin:
    			self.openSkinSelector()
    		elif sel is not None and sel == self.find_woeid:
    			self.session.openWithCallback(self.search_weather_id_callback, InputBox, title=_("Please enter search string for your location"), text="")
    		else:
    			self.keyGreen()
    
    	def openSkinSelector(self):
    		self.session.openWithCallback(self.skinChanged, SkinSelector)
    
    	def openSkinSelectorDelayed(self):
    		self.delaytimer = eTimer()
    		self.delaytimer.callback.append(self.openSkinSelector)
    		self.delaytimer.start(200, True)
    
    	def search_weather_id_callback(self, res):
    		if res:
    			id_dic = get_woeid_from_yahoo(res)
    			if 'error' in id_dic:
    				error_txt = id_dic['error']
    				self.session.open(MessageBox, _("Sorry, there was a problem:") + "\n%s" % error_txt, MessageBox.TYPE_ERROR)
    			elif 'count' in id_dic:
    				result_no = int(id_dic['count'])
    				location_list = []
    				for i in list(range(0, result_no)):
    					location_list.append(id_dic[i])
    				self.session.openWithCallback(self.select_weather_id_callback, WeatherLocationChoiceList, location_list)
    
    	def select_weather_id_callback(self, res):
    		if res and isInteger(res):
    			print(res)
    			config.plugins.AtileHD.woeid.value = int(res)
    Help keep OpenViX servers online.Please donate!

  13. The Following User Says Thank You to Huevos For This Useful Post:

    biko_73 (30-11-21)

  14. #10
    Huevos's Avatar
    Title
    Administrator
    Join Date
    Jun 2010
    Location
    38.5N, 0.5W
    Posts
    13,632
    Thanks
    2,007
    Thanked 4,955 Times in 3,276 Posts
    Quote Originally Posted by biko_73 View Post
    it mean can only use on openatv image only
    No. It means if you want the plugin to work you will have to uploaded all the needed modules to your box.

    Or delete the requirement in the plugin.
    Help keep OpenViX servers online.Please donate!

  15. The Following User Says Thank You to Huevos For This Useful Post:

    biko_73 (30-11-21)

  16. #11

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post
    ----------
    Last edited by biko_73; 30-11-21 at 15:45.

  17. #12

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post
    Could you supplement your generosity by advise how to do it?
    by delete the requirement in the plugin or get all component to work

    Yes, I hope doing that to have choices selection menu for the components of the skin work on the wonderful image vix

  18. #13
    Huevos's Avatar
    Title
    Administrator
    Join Date
    Jun 2010
    Location
    38.5N, 0.5W
    Posts
    13,632
    Thanks
    2,007
    Thanked 4,955 Times in 3,276 Posts
    I have no clue what this plugin is supposed to do, but, I have commented out the weather stuff and now at least it starts.
    Attached Files Attached Files
    Help keep OpenViX servers online.Please donate!

  19. The Following 2 Users Say Thank You to Huevos For This Useful Post:

    Andy_Hazza (30-11-21),biko_73 (01-12-21)

  20. #14

    Title
    Junior Member
    Join Date
    Nov 2019
    Posts
    11
    Thanks
    12
    Thanked 1 Time in 1 Post
    Last edited by biko_73; 01-12-21 at 14:31.

  21. #15
    Huevos's Avatar
    Title
    Administrator
    Join Date
    Jun 2010
    Location
    38.5N, 0.5W
    Posts
    13,632
    Thanks
    2,007
    Thanked 4,955 Times in 3,276 Posts
    Quote Originally Posted by biko_73 View Post
    is that sure same plugin which on github
    It is the plugin you posted in post #3.
    Help keep OpenViX servers online.Please donate!

  22. The Following User Says Thank You to Huevos For This Useful Post:

    biko_73 (02-12-21)

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.