add collectives
This commit is contained in:
parent
f0ea939b3e
commit
e4abced594
3 changed files with 16 additions and 5 deletions
14
config.jsonc
14
config.jsonc
|
@ -480,6 +480,14 @@
|
||||||
"filter": true,
|
"filter": true,
|
||||||
"find": true
|
"find": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "collectives",
|
||||||
|
"title": "Groups and Collectives",
|
||||||
|
"type": ["string"],
|
||||||
|
"autocomplete": true,
|
||||||
|
"filter": true,
|
||||||
|
"find": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "language",
|
"id": "language",
|
||||||
"title": "Language",
|
"title": "Language",
|
||||||
|
@ -763,6 +771,7 @@
|
||||||
"hasEvents": true,
|
"hasEvents": true,
|
||||||
"hasPlaces": true,
|
"hasPlaces": true,
|
||||||
"item": "Keyword",
|
"item": "Keyword",
|
||||||
|
"autocomplete": true,
|
||||||
"overlap": true,
|
"overlap": true,
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
@ -833,6 +842,7 @@
|
||||||
"id": "bakma",
|
"id": "bakma",
|
||||||
"name": "bak.ma",
|
"name": "bak.ma",
|
||||||
"url": "bak.ma",
|
"url": "bak.ma",
|
||||||
|
"public": false,
|
||||||
"videoprefix": ""
|
"videoprefix": ""
|
||||||
},
|
},
|
||||||
"sitePages": [
|
"sitePages": [
|
||||||
|
@ -923,7 +933,7 @@
|
||||||
{"id": "category", "sort": [{"key": "name", "operator": "+"}]},
|
{"id": "category", "sort": [{"key": "name", "operator": "+"}]},
|
||||||
{"id": "tag", "sort": [{"key": "items", "operator": "-"}]},
|
{"id": "tag", "sort": [{"key": "items", "operator": "-"}]},
|
||||||
{"id": "keywords", "sort": [{"key": "items", "operator": "-"}]},
|
{"id": "keywords", "sort": [{"key": "items", "operator": "-"}]},
|
||||||
{"id": "timeofday", "sort": [{"key": "items", "operator": "-"}]}
|
{"id": "collectives", "sort": [{"key": "items", "operator": "-"}]}
|
||||||
],
|
],
|
||||||
"filtersSize": 176,
|
"filtersSize": 176,
|
||||||
"find": {"conditions": [], "operator": "&"},
|
"find": {"conditions": [], "operator": "&"},
|
||||||
|
@ -1024,7 +1034,7 @@
|
||||||
},
|
},
|
||||||
"userLevels": ["guest", "member", "staff", "admin"],
|
"userLevels": ["guest", "member", "staff", "admin"],
|
||||||
"video": {
|
"video": {
|
||||||
"torrent": true,
|
"torrent": false,
|
||||||
"formats": ["webm", "mp4"],
|
"formats": ["webm", "mp4"],
|
||||||
"previewRatio": 1.3333333333,
|
"previewRatio": 1.3333333333,
|
||||||
//supported resolutions are
|
//supported resolutions are
|
||||||
|
|
|
@ -281,7 +281,7 @@ pandora.ui.home = function() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
$features.append($footer);
|
$features.append($footer);
|
||||||
$features.append($support);
|
//$features.append($support);
|
||||||
$features.animate({opacity: 1}, 250);
|
$features.animate({opacity: 1}, 250);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -302,6 +302,8 @@ pandora.ui.infoView = function(data) {
|
||||||
|
|
||||||
renderGroup(['category', 'name']);
|
renderGroup(['category', 'name']);
|
||||||
|
|
||||||
|
renderGroup(['collectives']);
|
||||||
|
|
||||||
renderGroup(['tag']);
|
renderGroup(['tag']);
|
||||||
|
|
||||||
// Summary -------------------------------------------------------------
|
// Summary -------------------------------------------------------------
|
||||||
|
@ -538,10 +540,9 @@ pandora.ui.infoView = function(data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function formatLink(key, value, linkValue) {
|
function formatLink(key, value, linkValue) {
|
||||||
linkValue = linkValue || value;
|
|
||||||
return (Ox.isArray(value) ? value : [value]).map(function(value) {
|
return (Ox.isArray(value) ? value : [value]).map(function(value) {
|
||||||
return key
|
return key
|
||||||
? '<a href="/' + key + '=' + linkValue + '">' + value + '</a>'
|
? '<a href="/' + key + '=' + pandora.escapeQueryValue(linkValue ? linkValue : value) + '">' + value + '</a>'
|
||||||
: value;
|
: value;
|
||||||
}).join(', ');
|
}).join(', ');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue