Quote:
Originally Posted by Motofreak75
the only problem I'm having is just Strong Sexual Content error in the error.log when importing into sage. But I'll figure it out when I have more time,or someone else can.
|
This is a peculiarity in Java properties files. Excerp from the J2SDK Api:
Quote:
Originally Posted by java.util.Properties#load
The key consists of all the characters in the line starting with the first non-whitespace character and up to, but not including, the first ASCII =, :, or whitespace character.
|
This means that the line
rating.advisory.Strong Sexual Content=AO is actually read as though it said
rating.advisory.Strong=Sexual Content=AO.
To remedy this you'll have to place a backslash before every space in the key:
rating.advisory.Strong\ Sexual\ Content=AO.
The same goes for your translation of Crime drama and Science fiction:
translate.category.Science\ fiction=Movie
B.t.w. you can keep the information about the show being a Science fiction by adding categories to the value (delimited by '/'):
translate.category.Science fiction=Movie/Science fiction
Quote:
Originally Posted by Motofreak75
rating.advisory.Language=PG-13
rating.advisory.Adult Situations=PG-13
rating.advisory.Brief Nudity=PG-13
rating.advisory.Graphic Violence=PG-13
rating.advisory.Mild Violence=PG-13
rating.advisory.Strong Sexual Content=AO
|
You might want to add the expanded-rating:
rating.advisory.Language=PG-13
rating.advisory.Adult Situations=PG-13, Adult Situations
rating.advisory.Brief Nudity=PG-13, Brief Nudity
rating.advisory.Graphic Violence=PG-13, Graphic Violence
rating.advisory.Mild Violence=PG-13, Mild Violence
rating.advisory.Strong Sexual Content=AO, Strong Sexual Content
If your feed specifies regular ratings with these advisory ratings like this:
<rating><value>AO</value></rating>
<rating system="advisory"><value>Strong Sexual Content</value></rating>
You might not even want to specify those regular ratings in your configuration:
rating.advisory.Language=PG-13
rating.advisory.Adult Situations=, Adult Situations
rating.advisory.Brief Nudity=, Brief Nudity
rating.advisory.Graphic Violence=, Graphic Violence
rating.advisory.Mild Violence=, Mild Violence
rating.advisory.Strong Sexual Content=, Strong Sexual Content
Maybe I should add those settings to the defaults...
Quote:
Originally Posted by Motofreak75
-------------------------------------------------------
(xmltv2.properties) ZAPIT data
-------------------------------------------------------
configurations=xmltv2.properties
|
I'm afraid that the configurations key is only processed from the xmltv.properties file. In xmltv2.properties it has no effect.
Quote:
Originally Posted by rsagetv99
include=xmltv.properties
include=ROGERSxmltv_channel_ids.txt
|
I'm afraid that there can be only one occurrence for every key. In order to specify multiple inclusions you'll have to supply them on the same key separated by comma's:
include=xmltv.properties, ROGERSxmltv_channel_ids.txt