Skip to content

Commit 8c04c95

Browse files
authored
feat(proceedings):Add CEUR proceedings (#374)
1 parent a3349ba commit 8c04c95

2 files changed

Lines changed: 29 additions & 28 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,37 @@
11
export const proceedings = {
22
bpm: {
33
name: 'Business Process Management',
4+
longtitle: 'BPM 2025 main proceedings',
5+
shorttitle: 'BPM 2025',
46
volume: 'LNCS 16044',
57
href: 'https://link.springer.com/book/9783032028662'
68
},
79
bpmforum: {
810
name: 'Business Process Management Forum',
11+
longtitle: 'BPM 2025 Forum',
12+
shorttitle: 'BPM Forum',
913
volume: 'LNBIP 564',
1014
href: 'https://link.springer.com/book/10.1007/978-3-032-02929-4'
1115
},
1216
forums: {
1317
name: 'Business Process Management: Responsible BPM Forum, Process Technology Forum, Educators Forum',
18+
longtitle: 'BPM 2025 Responsible BPM Forum, Process Technology Forum, Educators Forum',
19+
shorttitle: 'RBPM, PT, Educators',
1420
volume: 'LNBIP 565',
1521
href: 'https://link.springer.com/book/9783032029355'
22+
},
23+
industry: {
24+
name: 'Business Process Management: Industry & Society Forum',
25+
longtitle: 'BPM 2025 Industry & Society Forum',
26+
shorttitle: 'Industry & Society',
27+
volume: 'CEUR-WS, Vol 4033',
28+
href: 'https://ceur-ws.org/Vol-4033/'
29+
},
30+
dcdemos: {
31+
name: 'Business Process Management: Best Dissertation Award, Doctoral Consortium, and Demonstration & Resources',
32+
longtitle: 'BPM 2025 Best Dissertation Award, Doctoral Consortium, and Demonstration & Resources',
33+
shorttitle: 'Best Dissertation, DC, Demos',
34+
volume: 'CEUR-WS, Vol 4032',
35+
href: 'https://ceur-ws.org/Vol-4032/'
1636
}
1737
} as const;

packages/frontend/src/pages/proceedings/index.astro

Lines changed: 9 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ import Content from '#/components/widgets/Content.astro';
1111
}}
1212
heroProps={{
1313
subtitle: 'The Proceedings of the BPM 2025 Conference have been published at Springer and CEUR-WS.',
14-
actions: [
15-
{ variant: 'primary', text: 'BPM', href: proceedings.bpm.href },
16-
{ variant: 'primary', text: 'BPM Forum', href: proceedings.bpmforum.href },
17-
{ variant: 'primary', text: 'RBPM, PT, and Educators Forum', href: proceedings.forums.href }
18-
]
14+
actions: Object.entries(proceedings).map(([, p]) => ({ variant: 'primary', text: p.shorttitle, href: p.href }))
1915
}}>
2016
<Content>
2117
<Fragment slot="content">
@@ -25,30 +21,15 @@ import Content from '#/components/widgets/Content.astro';
2521
4 weeks through this page, starting <b>August 31</b>. Please find the proceedings here:
2622
</p>
2723
<ul class="list-disc list-inside space-y-2">
28-
<li>
29-
BPM 2025 main proceedings, {proceedings.bpm.volume}:{' '}
30-
<a href={proceedings.bpm.href} target="_blank" rel="noopener" class="text-sky-600 underline">
31-
{proceedings.bpm.href}
32-
</a>
33-
</li>
34-
<li>
35-
BPM 2025 Forum, {proceedings.bpmforum.volume}:{' '}
36-
<a href={proceedings.bpmforum.href} target="_blank" rel="noopener" class="text-sky-600 underline">
37-
{proceedings.bpmforum.href}
38-
</a>
39-
</li>
40-
<li>
41-
BPM 2025 Responsible BPM Forum, Process Technology Forum, Educators Forum,
42-
{proceedings.forums.volume}:{' '}
43-
<a href={proceedings.forums.href} target="_blank" rel="noopener" class="text-sky-600 underline">
44-
{proceedings.forums.href}
45-
</a>
46-
</li>
24+
{Object.entries(proceedings).map(([, p]) => (
25+
<li>
26+
{p.longtitle}, {p.volume}:{' '}
27+
<a href={p.href} target="_blank" rel="noopener" class="text-sky-600 underline">
28+
{p.href}
29+
</a>
30+
</li>
31+
))}
4732
</ul>
48-
<p>
49-
The Proceedings of the Best Dissertation Award, Doctoral Consortium, and Demonstration &
50-
Resources Forum will be published on CEUR-WS. They will be accessible from this webpage when available.
51-
</p>
5233
<p>
5334
The BPM Workshop Proceedings 2025 will be published as post-proceedings at Springer. They will be accessible from this webpage when available.
5435
</p>

0 commit comments

Comments
 (0)