ronie Wrote:cool, we're ready then ;-)
available in our repo as of now:
http://mirrors.xbmc.org/addons/eden-pre/...playlists/
Great! And many thanks.
pecinko
Donor Joined: Dec 2008 Reputation: 27 Location: Prague / Belgrade |
2011-11-08 01:44
Post: #31
ronie Wrote:cool, we're ready then ;-) Great! And many thanks.
|
| find quote |
union1mc
Junior Member Posts: 22 Joined: Jan 2012 Reputation: 1 |
2012-03-16 14:29
Post: #32
I've been getting 'script failed' messages when trying to add them to the aeon nox skin. Posted my logs there, but was told I might get better help here as I guess this is a problem with the script. I'm basically unable to add any playlists to the menu because of this. Here's the log:
http://pastebin.com/ExvCH8Aj Thanks for any help you can give me |
| find quote |
The_Dogg
Fan Posts: 375 Joined: Feb 2004 Reputation: 3 Location: Canada |
2012-03-16 14:38
Post: #33
I'm using path substitution in advancedsettings.xml for the playlist folder location. I have a problem where when using the script to retreive the playlist (using aeon nox) it looks in the local folder instead of using path substitution location (which is a smb share on another computer)
Is it possible that the script uses the path substitution if present in advancedsettings.xml? Thanks
(This post was last modified: 2012-03-16 14:39 by The_Dogg.)
|
| find quote |
ronie
Team-XBMC Member Joined: Jan 2009 Reputation: 108 |
2012-03-16 19:50
Post: #34
(2012-03-16 14:29)union1mc Wrote: I've been getting 'script failed' messages when trying to add them to the aeon nox skin. Posted my logs there, but was told I might get better help here as I guess this is a problem with the script. I'm basically unable to add any playlists to the menu because of this. Here's the log: according to the error, one of your playlists contains invalid xml. did you manually create them? the safest way would be to use the smart playlist editor in xbmc to create playlists. (2012-03-16 14:38)The_Dogg Wrote: I'm using path substitution in advancedsettings.xml for the playlist folder location. I have a problem where when using the script to retreive the playlist (using aeon nox) it looks in the local folder instead of using path substitution location (which is a smb share on another computer) i'm not entirely sure if xbmc also applies the pathsubstitution rules to addons. mind testing if this rule works: Code: <pathsubstitution>Always read the XBMC online-manual, FAQ and search the forum before posting. Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first.
(This post was last modified: 2012-03-16 20:02 by ronie.)
|
| find quote |
union1mc
Junior Member Posts: 22 Joined: Jan 2012 Reputation: 1 |
2012-03-16 20:41
Post: #35
(2012-03-16 19:50)ronie Wrote:(2012-03-16 14:29)union1mc Wrote: I've been getting 'script failed' messages when trying to add them to the aeon nox skin. Posted my logs there, but was told I might get better help here as I guess this is a problem with the script. I'm basically unable to add any playlists to the menu because of this. Here's the log: Thanks Ronie, that was the problem. I usually make my own, since I have the system down,but there was 1 bad one in there that I had been experimenting with. The other 25 were good. |
| find quote |
kaburke
Junior Member Posts: 18 Joined: Mar 2012 Reputation: 0 |
2012-03-24 08:37
Post: #36
I'm encountering the same problem as The_Dogg. My advancedsettings.xml contains:
Code: <substitute>Code: 00:19:56 T:7096 DEBUG: Thread XBPyThread start, auto delete: 0Code: <substitute>Code: <substitute>Code: <substitute> |
| find quote |
ronie
Team-XBMC Member Joined: Jan 2009 Reputation: 108 |
2012-03-24 15:46
Post: #37
as far as i can tell, xbmc does not apply the path substitution rules to special:// paths used in addons.
i can't think of any way fixing this in the script. edit: i'll push an update to make sure the script at least doesn't crash when pathsubstitution is used. Always read the XBMC online-manual, FAQ and search the forum before posting. Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first.
(This post was last modified: 2012-03-24 16:14 by ronie.)
|
| find quote |
kaburke
Junior Member Posts: 18 Joined: Mar 2012 Reputation: 0 |
2012-03-24 18:21
Post: #38
Thanks! Should a bug report or feature request be filed to resolve this?
[edit] One workaround would be for the script to look at advancedsettings.xml and perform the substitutions itself. I'm not familliar with python, but I'll try to take a look at the script later today. [/edit]
(This post was last modified: 2012-03-24 18:23 by kaburke.)
|
| find quote |
ronie
Team-XBMC Member Joined: Jan 2009 Reputation: 108 |
2012-03-24 18:37
Post: #39
(2012-03-24 18:21)kaburke Wrote: One workaround would be for the script to look at advancedsettings.xml and perform the substitutions itself. I'm not familliar with python, but I'll try to take a look at the script later today. even if path substitution would work, the script will most probably fail on the next step, ie. listing the contents of the directory. afaik there's no way to do this from python on smb shares. Always read the XBMC online-manual, FAQ and search the forum before posting. Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first. |
| find quote |
paddycarey
Senior Member Joined: Sep 2009 Reputation: 8 |
2012-03-28 20:22
Post: #40
(2012-03-24 18:37)ronie Wrote:(2012-03-24 18:21)kaburke Wrote: One workaround would be for the script to look at advancedsettings.xml and perform the substitutions itself. I'm not familliar with python, but I'll try to take a look at the script later today. I wrote a couple of little functions for my mmabrowser addon which work as sort of a replacement for os.walk and support (afaik) any local or remote share type that xbmc understands. Maybe they'd be useful for you in this case? Code: def getDirList(path):Add-ons: Artwork Downloader, MMA Browser, MMAFighting.com, The Joe Rogan Experience, FightCasts, Deathsquad.tv, Vice.com |
| find quote |