remove keys
This commit is contained in:
parent
fbe84282c7
commit
dc0f8fda4d
2 changed files with 3 additions and 81 deletions
77
config.jsonc
77
config.jsonc
|
@ -521,78 +521,6 @@
|
||||||
"find": true,
|
"find": true,
|
||||||
"sort": true
|
"sort": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "format",
|
|
||||||
"title": "Format",
|
|
||||||
"type": "string",
|
|
||||||
"autocomplete": true,
|
|
||||||
"columnWidth": 120,
|
|
||||||
"filter": true,
|
|
||||||
"find": true,
|
|
||||||
"sort": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "director",
|
|
||||||
"title": "Director",
|
|
||||||
"type": ["string"],
|
|
||||||
"autocomplete": true,
|
|
||||||
"columnRequired": true,
|
|
||||||
"columnWidth": 180,
|
|
||||||
"sort": true,
|
|
||||||
"sortType": "person"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "cinematographer",
|
|
||||||
"title": "Cinematographer",
|
|
||||||
"type": ["string"],
|
|
||||||
"autocomplete": true,
|
|
||||||
"columnWidth": 180,
|
|
||||||
"poster": true,
|
|
||||||
"sort": true,
|
|
||||||
"sortType": "person"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "editor",
|
|
||||||
"title": "Editor",
|
|
||||||
"type": ["string"],
|
|
||||||
"autocomplete": true,
|
|
||||||
"columnWidth": 180,
|
|
||||||
"poster": true,
|
|
||||||
"sort": true,
|
|
||||||
"sortType": "person"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "writer",
|
|
||||||
"title": "Writer",
|
|
||||||
"type": ["string"],
|
|
||||||
"autocomplete": true,
|
|
||||||
"columnWidth": 180,
|
|
||||||
"poster": true,
|
|
||||||
"sort": true,
|
|
||||||
"sortType": "person"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "producer",
|
|
||||||
"title": "Producer",
|
|
||||||
"type": ["string"],
|
|
||||||
"autocomplete": true,
|
|
||||||
"columnWidth": 180,
|
|
||||||
"poster": true,
|
|
||||||
"sort": true,
|
|
||||||
"sortType": "person"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "featuring",
|
|
||||||
"title": "Featuring",
|
|
||||||
"type": ["string"],
|
|
||||||
"autocomplete": true,
|
|
||||||
"columnRequired": true,
|
|
||||||
"columnWidth": 180,
|
|
||||||
"filter": true,
|
|
||||||
"poster": true,
|
|
||||||
"sort": true,
|
|
||||||
"sortType": "person"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "name",
|
"id": "name",
|
||||||
"title": "People",
|
"title": "People",
|
||||||
|
@ -914,7 +842,7 @@
|
||||||
displayed at the top of the screen. This title can be customized by adding
|
displayed at the top of the screen. This title can be customized by adding
|
||||||
"/static/js/getItemTitle.SITENAME.js".
|
"/static/js/getItemTitle.SITENAME.js".
|
||||||
*/
|
*/
|
||||||
"itemTitleKeys": ["title", "director", "year"],
|
"itemTitleKeys": ["title", "year"],
|
||||||
/*
|
/*
|
||||||
"itemViews" is an ordered list of available item views. Implemented views
|
"itemViews" is an ordered list of available item views. Implemented views
|
||||||
are "info", "documents", "player", "editor", "timeline", "clips", "map",
|
are "info", "documents", "player", "editor", "timeline", "clips", "map",
|
||||||
|
@ -1217,7 +1145,6 @@
|
||||||
"editSelection": [],
|
"editSelection": [],
|
||||||
"editSort": [
|
"editSort": [
|
||||||
{"key": "index", "operator": "+"},
|
{"key": "index", "operator": "+"},
|
||||||
{"key": "director", "operator": "+"},
|
|
||||||
{"key": "title", "operator": "+"},
|
{"key": "title", "operator": "+"},
|
||||||
{"key": "position", "operator": "+"},
|
{"key": "position", "operator": "+"},
|
||||||
{"key": "duration", "operator": "+"}
|
{"key": "duration", "operator": "+"}
|
||||||
|
@ -1266,7 +1193,7 @@
|
||||||
},
|
},
|
||||||
"section": "items",
|
"section": "items",
|
||||||
"sequenceMode": "shape",
|
"sequenceMode": "shape",
|
||||||
"sequenceSort": [{"key": "director", "operator": "+"}],
|
"sequenceSort": [{"key": "title", "operator": "+"}],
|
||||||
"showAdvancedEmbedOptions": false,
|
"showAdvancedEmbedOptions": false,
|
||||||
"showAnnotations": true,
|
"showAnnotations": true,
|
||||||
"showAnnotationsCalendar": true,
|
"showAnnotationsCalendar": true,
|
||||||
|
|
|
@ -236,12 +236,7 @@ pandora.ui.infoView = function(data) {
|
||||||
|
|
||||||
// Groups ------------------------------------------------------------------
|
// Groups ------------------------------------------------------------------
|
||||||
|
|
||||||
renderGroup(['location', 'date', 'language', 'format']);
|
renderGroup(['location', 'date', 'language']);
|
||||||
|
|
||||||
renderGroup([
|
|
||||||
'director', 'cinematographer', 'editor',
|
|
||||||
'writer', 'producer', 'featuring'
|
|
||||||
]);
|
|
||||||
|
|
||||||
renderGroup(['themes']);
|
renderGroup(['themes']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue