Kodi Community Forum
[Web Interface Addon] [Eden] XWMM - XBMC Web Media Manager - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Web Interfaces (https://forum.kodi.tv/forumdisplay.php?fid=156)
+---- Thread: [Web Interface Addon] [Eden] XWMM - XBMC Web Media Manager (/showthread.php?tid=60643)



RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - sliph - 2013-04-06

This fixed the "Missing TV shows" problem for me:

in tvshows/tvshows.js line 62, change the functions to:

Code:
function bannerConvert(v, record) {
        if (v.banner !== undefined)
                return v.banner.replace(/image:\/\//g, "").slice(0,-1)
}

function fanartConvert(v, record) {
        if (v.fanart !== undefined)
                return v.fanart.replace(/image:\/\//g, "").slice(0,-1)
}

(basically, if v.banner or v.fanart were undefined, it would crash the JSON parsing)


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - un1versal - 2013-04-06

@sliph

Please open a PR against https://github.com/slash2009/XWMM Master branch

Thanks.

@slash @Zernable heads up this is your territory..

uNi


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - seawolf - 2013-04-06

(2013-04-06, 04:30)sliph Wrote: This fixed the "Missing TV shows" problem for me:

in tvshows/tvshows.js line 62, change the functions to:

Code:
function bannerConvert(v, record) {
        if (v.banner !== undefined)
                return v.banner.replace(/image:\/\//g, "").slice(0,-1)
}

function fanartConvert(v, record) {
        if (v.fanart !== undefined)
                return v.fanart.replace(/image:\/\//g, "").slice(0,-1)
}

(basically, if v.banner or v.fanart were undefined, it would crash the JSON parsing)

@sliph
thanks, it worked for me,.
kubuntu 12.10 64 bit kde 4.10.2 xbmc frodo


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - Branphma - 2013-04-06

(2013-04-06, 11:40)seawolf Wrote:
(2013-04-06, 04:30)sliph Wrote: This fixed the "Missing TV shows" problem for me:

in tvshows/tvshows.js line 62, change the functions to:

Code:
function bannerConvert(v, record) {
        if (v.banner !== undefined)
                return v.banner.replace(/image:\/\//g, "").slice(0,-1)
}

function fanartConvert(v, record) {
        if (v.fanart !== undefined)
                return v.fanart.replace(/image:\/\//g, "").slice(0,-1)
}

(basically, if v.banner or v.fanart were undefined, it would crash the JSON parsing)

@sliph
thanks, it worked for me,.
kubuntu 12.10 64 bit kde 4.10.2 xbmc frodo

Does not work for meSad


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - slash - 2013-04-06

(2013-04-06, 04:30)sliph Wrote: This fixed the "Missing TV shows" problem for me:

in tvshows/tvshows.js line 62, change the functions to:

Code:
function bannerConvert(v, record) {
        if (v.banner !== undefined)
                return v.banner.replace(/image:\/\//g, "").slice(0,-1)
}

function fanartConvert(v, record) {
        if (v.fanart !== undefined)
                return v.fanart.replace(/image:\/\//g, "").slice(0,-1)
}

(basically, if v.banner or v.fanart were undefined, it would crash the JSON parsing)

Nice work. I'll add the change as a temporary workaround. We will need to work on some better logic there
Thanks
/


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - sliph - 2013-04-06

(2013-04-06, 12:28)Branphma Wrote:
(2013-04-06, 11:40)seawolf Wrote:
(2013-04-06, 04:30)sliph Wrote: This fixed the "Missing TV shows" problem for me:

in tvshows/tvshows.js line 62, change the functions to:

Code:
function bannerConvert(v, record) {
        if (v.banner !== undefined)
                return v.banner.replace(/image:\/\//g, "").slice(0,-1)
}

function fanartConvert(v, record) {
        if (v.fanart !== undefined)
                return v.fanart.replace(/image:\/\//g, "").slice(0,-1)
}

(basically, if v.banner or v.fanart were undefined, it would crash the JSON parsing)

@sliph
thanks, it worked for me,.
kubuntu 12.10 64 bit kde 4.10.2 xbmc frodo

Does not work for meSad

I found chrome wouldn't reload the js without a cache clear. Have you tried applying the fix and then accessing the page from incognito mode?

Alternatively, if you want to actually see debug messages, edit include/xbmc.js line 811 and change it to:

Code:
//        try {
            result = o.reader.read(response);
//        }catch(e){
//
//           this.fireEvent('loadexception', this, o, response, e);
//
//           this.fireEvent('exception', this, 'response', action, o, response, e);
  //          o.request.callback.call(o.request.scope, null, o.request.arg, false);
   //         return;
    //    }
(basically comment out the error handling) and check your Tools > Javascript console for error messages.


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - Branphma - 2013-04-07

Thank you a lot! Clearing the browser cache did the trick! Works like a charm now.


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - DIOSX - 2013-04-08

I recently upgraded to xbmc 12.1 and I can´t load the movies db. I´m using win 7 ultimate 32 bit, internet explorer 9.

When I used xbmc eden XWMM work fine for me, and i could load all my movies.

Thank u for your help.


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - fredfillis - 2013-04-09

(2013-04-07, 09:19)Branphma Wrote: Thank you a lot! Clearing the browser cache did the trick! Works like a charm now.

Worked on Firefox under Ubuntu after a cache clear.


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - DIOSX - 2013-04-09

I change to firefox and runs correctly. Thanks


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - Kinematics - 2013-04-10

Just came across this. Looks interesting, and would be handy for what I'm working on right now. However, can I ask whether there's any way to handle music videos? Or at least if that's planned?


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - Preddie - 2013-04-14

I use this now with frodo 12.1 and happy with it, but where can I remotely rescan my xbmc libary? In the default webinterface this is possible and misses this feature...


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - bry - 2013-04-14

anybody else having issues managing movie sets in frodo 12.1? I can't seem to make changes to existing sets.


RE: [Web Interface Addon] XWMM - XBMC Web Media Manager - un1versal - 2013-04-14

V13 Alpha3 has a internal movie set management built in xbmc see http://forum.xbmc.org/showthread.php?tid=160517

XWMM is know issue that cant manage sets in 2.10 and other limitations, XWMM needs more developers suffice it to say.

uNi


Re: [Web Interface Addon] XWMM - XBMC Web Media Manager - bry - 2013-04-15

Thanks uni