Skip to content

Commit b23521d

Browse files
Added EXPCFP tag
This tag is to separate events for which event details are available, but not the CFP.
1 parent 2da7671 commit b23521d

4 files changed

Lines changed: 17 additions & 1 deletion

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,16 @@ For an event that has been **announced** but the Call for Papers is **not yet av
105105
- Fill in details based on the **previous year’s** event.
106106
- This will internally set some of the fields to default placeholder values (e.g., `comment: "CFP yet to be announced"`).
107107

108+
#### 🔥 Special Case: `EXPCFP` Tag
109+
110+
Sometimes, an event is already **confirmed** and has public details like **dates, location, and venue**, but the **CFP hasn't been published yet**. In this case, use the `EXPCFP` tag.
111+
112+
- This is a more specific version of the `EXP` tag.
113+
- Use `EXPCFP` when the event is definitely happening, but the CFP is **not yet available**.
114+
- As with `EXP`, base your entry on the most recent available details.
115+
116+
This helps signal to others that the event is expected, even though submission details are still pending. 🔍
117+
108118
🔥 **Let's make MPC deadlines easy to track—together!** 🚀
109119

110120

_data/conferences.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@
832832
date: October 13-17
833833
place: Taipei, Taiwan
834834
comment: Notifications - August 29. Has proceedings.
835-
tags: [PRACT, PS, EXP]
835+
tags: [PRACT, PS, EXPCFP]
836836

837837
- name: ACSAC
838838
description: Annual Computer Security Applications Conference

_data/filters.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ filter3:
4444
filter4:
4545
- name: Expected
4646
tag: EXP
47+
- name: Expected CFP
48+
tag: EXPCFP

static/js/main.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ $(function() {
135135
conf.find(".conf-rebut").text("TBA");
136136
confComment.text("CFP yet to be announced");
137137
},
138+
"EXPCFP": () => {
139+
confTitle.text(confTitle.text() + " (Expected)");
140+
confComment.text("CFP yet to be announced");
141+
},
138142
"JRN": () => {
139143
confTitle.text("(Journal) " + confTitle.text());
140144
let portalLink = conf.data("portal") || confTitle.attr("href");

0 commit comments

Comments
 (0)