Add Other events collection

This commit is contained in:
tree 2023-02-03 03:23:01 +01:00
rodič a40210307f
revize 0154b061ea
7 změnil soubory, kde provedl 103 přidání a 1 odebrání

Zobrazit soubor

@ -0,0 +1,27 @@
name = "I Hate Models /FR"
types = ["other"]
status = "published"
org = ""
dri = ""
poc = ""
date = "2023-06-09"
days = 1
times = "23:00-04:00"
venueName = "Roxy"
venueAddress = "Dlouhá 33, 110 00 Staré Město"
venueUrl = "https://goo.gl/maps/1trUQWd24gcVap1W7"
languages = ["english"]
attendees = 750
tags = ["music", "concert", "culture", "techno"]
logo = "photo.jpg"
description = '''
The energy of club music serves as a vessel for his own feelings and a tool to manipulate others with. The spectrum of moods expressed in his productions, DJ sets and on his label Disco Inferno veers from nostalgia and passion to loneliness, melancholia and brutality, often juxtaposing darkness and light in the same pulse as an authentic conduit of his own artistic self-assessment. I Hate Models will shock #ROXYprague for the first time on Friday 9/6.
'''
[registration]
type = "tickets"
link = "https://goout.net/en/i-hate-models/szffnvu/"
price = "631 CZK"
[links]
web = "https://www.roxy.cz/en/events/detail/3437/i-hate-models"

Binární soubor nebyl zobrazen.

Za

Šířka:  |  Výška:  |  Velikost: 26 KiB

Zobrazit soubor

@ -0,0 +1,37 @@
name = "Maker Faire Prague 2023"
shortname = "Maker Faire"
types = ["other"]
status = "published"
org = "[Make More](https://makerfaire.cz/o-nas/#kontakt)"
dri = ""
poc = ""
date = "2023-06-10"
days = 2
times = "23:00-04:00"
venueName = "Výstaviště Praha Holešovice"
venueAddress = "Holešovice, 170 00 Prague 7"
venueUrl = "https://goo.gl/maps/HKYc4gj959Pi6EhZ7"
languages = ["english"]
attendees = 2000
tags = ["technology", "science", "design"]
logo = "logo.jpg"
description = '''
Maker Faire is a festival full of workshops, interactive activities and above all enthusiastic and curious people. Almost everything can be experienced first-hand and much can be made. Makers present their projects and prototypes.
The festival brings together enthusiasts and experts, but also promises smart entertainment for the whole family combining modern technology, traditional crafts, science and design.
'''
[registration]
type = "tickets"
[links]
web = "https://makerfaire.cz/en/"
twitter = "https://twitter.com/makerfaire"
[[segments]]
date = "2023-06-10"
times = "10:00-18:00"
[[segments]]
date = "2023-06-11"
times = "10:00-16:00"

Binární soubor nebyl zobrazen.

Za

Šířka:  |  Výška:  |  Velikost: 36 KiB

Zobrazit soubor

@ -0,0 +1,37 @@
name = "Wax Tailor /FR"
types = ["other"]
status = "published"
org = ""
dri = ""
poc = ""
date = "2023-06-08"
days = 1
times = "19:30-22:00"
venueName = "Palác Akropolis"
venueAddress = "Kubelíkova 1548, 130 00 Praha 3-Žižkov"
venueUrl = "https://goo.gl/maps/F9Rs96yUMdBs3Eay8"
languages = ["english"]
attendees = 700
tags = ["music", "concert", "culture", "trip-hop"]
logo = "photo.jpg"
description = '''
Wax Tailor announces the release of his new album Fishing For Accidents on February 10th, 2023, accompanied by a new international tour.
The starting point of this record is a quote from the film director Orson Welles, which evokes the notion of accident in the creative process. I always thought that accidents were an integral part of creation and the job of a film or music director is also to know how to capture them in order to make the accident an artistic intention. I decided not to follow a well established concept but this more instinctive guideline and to go fishing for accidents.
In this new opus, Wax Tailor explores with his sampler a world of vinyls and cinematographic references, brandishing as a flag a stamped musical culture and multiplying references to the 7th art in a music written in 33 rpm and 24 images seconds. After the dark The Shadow Of Their Suns released in 2021, Wax Tailor takes us with Fishing For Accidents, on a brighter and more colorful side without ever betraying his universe and his convictions.
A multi-recidivist talent scout, he gathers around him a prestigious cast ranging from hip hop (Mick Jenkins, Mr. Lif, Kuf Knotz, Lojii, Napoleon Da Legend, Ill Conscious, Voice Monet, David Bars, Mattic) to the indie rock scene (Jennifer Charles, singer of the legendary band Elysian Fields and Victoria Bigelow).
With one eye on the past and the other on the horizon, Wax Tailor instills the incandescence of an organic sound and distills his art of sound anachronism in a wide gap between nostalgia and modernity that has made him one of the leaders of the international electro hip hop scene for over 20 years.
With 7 studio albums, more than 800 concerts worldwide, numerous international awards and prestigious collaborations: Ghostface Killah (Wu Tang Clan), Del The Funky Homosapien (Gorillaz), Mark Lanegan, Mick Jenkins, Aloe Blacc, D-Smoke, Tricky, Sharon Jones, Lee Fields etc. The French independent producer Wax Tailor confirms, despite his media discretion, his influence for more than 20 years on the international electro hip hop scene.
'''
[registration]
type = "tickets"
link = "https://goout.net/en/wax-tailor/szebfvu/"
price = "560 CZK"
[links]
web = "https://www.palacakropolis.com/work/33298/?event_id=35843&lng=en&no=62&page_id=33824"

Binární soubor nebyl zobrazen.

Za

Šířka:  |  Výška:  |  Velikost: 12 KiB

Zobrazit soubor

@ -110,6 +110,7 @@ class DeConf_Package {
benefits: "benefit",
unions: "union",
chains: "chain",
"other-events": "event",
};
this.collections = Object.keys(this.colMapper);
}
@ -197,7 +198,7 @@ class DeConf_Collection {
const data = {
index: { id: this.id, hash, ...efIndex },
};
if (this.type === "events") {
if (["events", "other-events"].includes(this.type)) {
// add Event Segments
if (!data.index.segments) {
data.index.segments = [];