Networked Media Tank
[HTML SKIN] Unique Black Glas 3.3 (06.04.2012) - 8 and 18 Covers HD and 8 Covers SD - Printable Version

+- Networked Media Tank (http://www.networkedmediatank.com)
+-- Forum: Community Jukebox, Themes, & UserApps Section (/forumdisplay.php?fid=106)
+--- Forum: YAMJ - Yet another Movie Jukebox (/forumdisplay.php?fid=70)
+---- Forum: YAMJ (Releases, official News,...) - Skins - Tools - Guides (/forumdisplay.php?fid=112)
+---- Thread: [HTML SKIN] Unique Black Glas 3.3 (06.04.2012) - 8 and 18 Covers HD and 8 Covers SD (/showthread.php?tid=29952)



RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Mr.M - 06-03-2011 09:43 AM

@blublu06

I check this.......So, please wait.


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Gangel - 06-06-2011 02:35 PM

Yes this works Smile +1

Quote:Ok thank you for your help. I solve my problem by this Smile :

The solution is :

Replace $homePage with
$mjb.homePage
in files (in the skin directory):
"detail.xsl",
"index.xsl",



RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Tijntje - 06-06-2011 06:33 PM

After changing the detail.xsl and index.xsl as described in the previous posts.
I get the following error:
Code:
Error at xsl:param on line 314 column 81 of preferences.xsl:
  XTSE0020: Variable name is not a valid QName:
  ?######################################################
Error at xsl:param on line 314 column 81 of preferences.xsl:
  XTSE0020: Variable name is not a valid QName:
  ?######################################################

In the moviejukebox.ERROR.log I get the following error:
Code:
[19:40:12 - Thread-14] ERROR moviejukebox  - javax.xml.transform.TransformerConfigurationException: Failed to compile stylesheet. 1 error detected.
    at net.sf.saxon.PreparedStylesheet.prepare(PreparedStylesheet.java:199)
    at net.sf.saxon.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:132​)
    at net.sf.saxon.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:8​7)
    at com.moviejukebox.writer.MovieJukeboxHTMLWriter.getTransformer(MovieJukeboxHTMLWr​iter.java:666)
    at com.moviejukebox.writer.MovieJukeboxHTMLWriter.generateMovieDetailsHTML(MovieJuk​eboxHTMLWriter.java:140)
    at com.moviejukebox.MovieJukebox$7.call(MovieJukebox.java:1372)
    at com.moviejukebox.MovieJukebox$7.call(MovieJukebox.java:1354)
    at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
    at java.util.concurrent.FutureTask.run(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    at com.moviejukebox.tools.ThreadExecutor$ScheduledThread.run(ThreadExecutor.java:11​4)



RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Boulder - 06-06-2011 06:36 PM

Please copy-paste the contents of that line that is mentioned in the error message so we can take a look.


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Tijntje - 06-06-2011 06:47 PM

The preferences.xsl is modified when YAMJ runs and the line in question is after YAMJ has run:
Code:
<xsl:param name="######################################################" />

Somehow after reinstalling YAMJ and the skin and setting the options again it seems to work.


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Nvious1 - 06-08-2011 02:05 AM

I just upgraded to the 3.1 and I am trying to get the unwatched to work correctly. I regen'd my jukebox from scratch and every movie is showing as unwatched which is expected however, when I watch something I don't see anything created in my jukebox folder like I am thinking should happen. I have the following configured.

Code:
In options.xls

<xsl:variable name="EnableWatchTag">true</xsl:variable>

In skins.properties I have set this (unsure if it should go here to jukebox props)

mjb.watchedLocation=withJukebox

In the moviejukebox.properties I have this set.

# Parameter to enable/disable the watched scanner.
watched.scanner.enable=true

If anyone has this working, can they tell me what they did to get it working. I poked through the generated html and playlists for each title and I don't see any code that would create some kind of "watched" file that would trigger yamj to overright the xml watched tag and set it to true. Please help. I would love to get this working.


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Omertron - 06-08-2011 08:30 AM

Watched is NOT automatic. You will need to currently create a watched file for your movie.
http://code.google.com/p/moviejukebox/wiki/Watched

We are working on a solution to add this to a skin so that you can press a button and have the movie marked as watched, but the PCH does not provide us with the ability to automark movies as watched


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Nvious1 - 06-09-2011 12:28 AM

(06-08-2011 08:30 AM)Omertron Wrote:  Watched is NOT automatic. You will need to currently create a watched file for your movie.
http://code.google.com/p/moviejukebox/wiki/Watched

We are working on a solution to add this to a skin so that you can press a button and have the movie marked as watched, but the PCH does not provide us with the ability to automark movies as watched

The wiki shows you how to setup the skin.properties but makes no mention of what format/name to create watched files. Is it something as similar as <movie_file_name>.watched or something like that? That is the part that isn't documented. Maybe there is something I am missing in the wiki?


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Omertron - 06-09-2011 09:40 AM

name the file the same as the FULL video filename (including the extension, .avi, .mkv, etc.) + ".watched"


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Nvious1 - 06-09-2011 05:43 PM

(06-09-2011 09:40 AM)Omertron Wrote:  name the file the same as the FULL video filename (including the extension, .avi, .mkv, etc.) + ".watched"

Thanks for that guidance. So I did as suggested and ran a yamj scan. I didn't see the xml file for that movie updated to reflect the element to be true. From my previous post up above, do I have to right property elements in the right files? BTW, I am running 2.4 YAMJ and not a nightly build.


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Omertron - 06-09-2011 06:07 PM

It's not in the base 2.4 version. You'll have to wait for 2.5 which should be out soon (< 2 weeks)


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - Nvious1 - 06-09-2011 11:08 PM

(06-09-2011 06:07 PM)Omertron Wrote:  It's not in the base 2.4 version. You'll have to wait for 2.5 which should be out soon (< 2 weeks)

I will give the most recent update build a run and see how it works. Thanks for the info.


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - midnighttuck - 06-11-2011 06:34 PM

hi all.


This is my first time trying this skin, after moving from using Aeon.

I'm using the v3.1 and the latest YAMJ version (have corrected the $homepage lines)

In Aeon when I would import the data, it would only give the movie a non-english name if it happened to be the main name of the movie as listed on IMDB.

But now some foreign movies are coming up with the asian name instead, even if imdb lists it with the english name as default......for example "I Saw The Devil" is coming up "Akmareul boatda"

Does anyone know what I'm doing wrong and how to set it to English as default? IMDB is still set to labs in the moviejukebox.properties
hmmm odd....


so I tried changing

imdb.site=labs to imdb.site=us

removing the I Saw The Devil imported files from the jukebox folder, and running it again.

This time, it lists the name correctly as "I Saw The Devil", however on the drive it is placed alphabetically between "Undisputed III : Redemption" and "Unknown"

Why would it do that?


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - rpotcoava - 06-13-2011 02:51 PM

I usually found on other skins that the "Eject" key on the remote works as "exit" button so you can quit YAMJ and browse the files & folders. I couldn't find this functionality here, either on Eject or any other key. Is this function missing here?
Thanks


RE: Unique Black Glas 3.1 - 8 and 18 Covers HD and 8 Covers SD - midnighttuck - 06-16-2011 04:18 PM

somethings definately not right here.

Just added 2 more movies (5 days of August, and Vanishing Of The Bees), and again they've appeared in random places, both at the back, before the movie "Unknown"

Noone else have issues with either the non-english name selected (despite being the main imdb listed name), or titles appearing at the wrong areas relevant in the list?

FWIW the names given are correct (imdb.site=us) but still appear in the wrong location
update....

I noticed that somehow I Saw The Devil then moved itself to the correct place in the list?

So I just reran YAMJ (no changing any files on the drive), and then loaded and both the above movies are also back into the correct place.

What gives?