forked from 0x2620/pandora
more keys
This commit is contained in:
parent
bf8c99513b
commit
ff19404e6d
2 changed files with 34 additions and 9 deletions
|
@ -1052,6 +1052,24 @@
|
|||
"find": true,
|
||||
"sortType": "person"
|
||||
},
|
||||
{
|
||||
"id": "subtitledby",
|
||||
"title": "Subtitled by",
|
||||
"type": ["string"],
|
||||
"advanced": true,
|
||||
"columnWidth": 180,
|
||||
"find": true,
|
||||
"sortType": "person"
|
||||
},
|
||||
{
|
||||
"id": "annotatedby",
|
||||
"title": "Annotated by",
|
||||
"type": ["string"],
|
||||
"advanced": true,
|
||||
"columnWidth": 180,
|
||||
"find": true,
|
||||
"sortType": "person"
|
||||
},
|
||||
{
|
||||
"id": "songs",
|
||||
"title": "Song Titles",
|
||||
|
|
|
@ -320,6 +320,15 @@ pandora.ui.infoView = function(data) {
|
|||
|
||||
renderGroup(canSeeAllMetadata ? ['genre', 'topic'] : ['genre']);
|
||||
|
||||
renderGroup([
|
||||
'censorshipcertificatenumber',
|
||||
'dateofcensorcertificate',
|
||||
'ratingcertificate',
|
||||
'length',
|
||||
'numberofreels',
|
||||
'format'
|
||||
]);
|
||||
|
||||
renderGroup(['imdbId', 'links']);
|
||||
|
||||
if (canEdit) {
|
||||
|
@ -364,14 +373,6 @@ pandora.ui.infoView = function(data) {
|
|||
}
|
||||
|
||||
// Extra Metadata
|
||||
renderGroup([
|
||||
'censorshipcertificatenumber',
|
||||
'dateofcensorcertificate',
|
||||
'ratingcertificate',
|
||||
'length',
|
||||
'numberofreels',
|
||||
'format'
|
||||
]);
|
||||
renderGroup([
|
||||
'presentedby',
|
||||
'coproducer',
|
||||
|
@ -412,9 +413,15 @@ pandora.ui.infoView = function(data) {
|
|||
'productioncontroller',
|
||||
'stuntdirector',
|
||||
'continuity',
|
||||
'publicity',
|
||||
'publicity'
|
||||
]);
|
||||
renderGroup([
|
||||
'courtesy',
|
||||
]);
|
||||
renderGroup([
|
||||
'subtitledby',
|
||||
'annotatedby',
|
||||
]);
|
||||
|
||||
// Songs
|
||||
if (data.songs || canEdit) {
|
||||
|
|
Loading…
Reference in a new issue