Skip to content

Commit

Permalink
STW - last little changes for release train 1 (#422)
Browse files Browse the repository at this point in the history
* fix archive semester in script

* rename Overview tab to The Project for Projects with just one page

* little things in semester archetype

* add missing subtitles in b2 and b5

* b5: found claim in card_description, moved abstract to front matter

* fair starts at 11:30, proper rendering of > 1 supervisors in schedule

* don't run project checks on STW PR
  • Loading branch information
bkleinen authored Jan 23, 2025
1 parent 468f692 commit b52c2a7
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-project-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
workflow_dispatch:

jobs:

check-pr-title:
if: ${{ ! startsWith(github.event.pull_request.title, 'STW') }}
runs-on: ubuntu-latest
env:
PR_TITLE: ${{ github.event.pull_request.title }}
Expand Down
2 changes: 1 addition & 1 deletion content/ws24/bachelor/b2-voisum/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
project_id = "B2"
title = "VoiSum"
subtitle = ""
subtitle = "Use AI to summarize voice messages"
claim = "Voice In, Clarity Out"
abstract = """Ever get those super long voice messages from friends or family and think "ugh, not another one"? Sure, you can blast through them at 2x speed, but let's be real - who wants to sit through all those "umm"s and random stories? That's where our project comes in handy: we're building this cool product that takes those rambling voice messages, uses AI to cut out all the fluff, and gives you back a clean, short summary. No more wasting time on voice messages that could've been much shorter!"""

Expand Down
12 changes: 5 additions & 7 deletions content/ws24/bachelor/b5-holocms/_index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
+++
project_id = "B5"
title = "HoloCMS"
subtitle = "FROM QR TO AR: A NEW DIMENSION OF CONTENT DELIVERY"
claim = ""
abstract = ""
subtitle ="Integrate Augmented Reality via QR-Codes"
subtitle_old = "FROM QR TO AR: A NEW DIMENSION OF CONTENT DELIVERY"
claim = "Experience the future of digital content with HoloCMS, where a simple QR scan opens up augmented reality adventures filled with engaging media."

abstract = "HoloCMS is a mixed reality app for the Microsoft HoloLens 2 that lets users scan custom QR codes to view dynamic content from a web based content management system (CMS) in augmented reality (AR). Developed for the Research and Education Center for Culture and Information Technology (FKI), HoloCMS allows users to explore points of interest enriched with visual and interactive displays. "

# Properties for displaying the project in the project list
card_image = "holo_logo.png"
# card_description is deprecated, will be replaced by abstract/and or claim
card_description = "Experience the future of digital content with HoloCMS, where a simple QR scan opens up augmented reality adventures filled with engaging media."

# Names are optional, team size is sufficient
team = ["Sarah", "Vivian", "Bernd"]
Expand All @@ -24,8 +24,6 @@ study_focus = ['Game Technology']

+++

HoloCMS is a mixed reality app for the Microsoft HoloLens 2 that lets users scan custom QR codes to view dynamic content from a web based content management system (CMS) in augmented reality (AR). Developed for the Research and Education Center for Culture and Information Technology (FKI), HoloCMS allows users to explore points of interest enriched with visual and interactive displays.

{{<section title="Our Goal">}}
The main goal of HoloCMS is to create an interactive and user friendly platform that leverages AR for educational and cultural experiences. By combining QR code technology with the Microsoft HoloLens 2, we aim to offer an immersive way for users to discover and explore detailed information intuitively.
{{</section>}}
Expand Down
2 changes: 1 addition & 1 deletion data/schedule.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ title = "Lunch Break"
class = "general"

[[slot]]
time = "ca. 11:30-15:00"
time = "11:30-15:00"
title = "Project Fair"
text = "Project Booths in H001"
class = "general"
Expand Down
2 changes: 1 addition & 1 deletion new_semester.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lastsem=$2
sed -e "s/current_semester = [ws]s[0-9]\{2\}/current_semester = $1/" -i "" config/_default/config.toml

# Update the semester set in the config file
sed -e "s/archive_path = [ws]s[0-9]\{2\}/archive_path = $1/" -i "" config/_default/config.toml
sed -e "s/archive_path = [ws]s[0-9]\{2\}/archive_path = $2/" -i "" config/_default/config.toml


# emtpy the schedule
Expand Down
7 changes: 6 additions & 1 deletion themes/showtime-theme-2024/layouts/_default/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,13 @@ <h4>Supervision</h4>
</section>
</header>
</div>

{{ $label := cond (eq 0 (len .CurrentSection.Pages) ) "The Project" "Overview"}}

<div class="project-menu desktop-menu background {{ .Type | lower }}">
<ul>
<li {{if .IsNode }}class="active"{{ end }}><a href="{{ .CurrentSection.RelPermalink }}">Overview</a></li>
<li {{if .IsNode }}class="active"{{ end }}>
<a href="{{ .CurrentSection.RelPermalink }}">{{ $label}}</a></li>
{{ range .CurrentSection.Pages }}
<li {{if eq . $ }}class="active"{{ end }}><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
Expand All @@ -64,6 +68,7 @@ <h4>Supervision</h4>
</ul>
</div>
</div>

<main class="project">
{{ if .IsNode }}
{{ with .CurrentSection.Params.demo_link }}
Expand Down
12 changes: 9 additions & 3 deletions themes/showtime-theme-2024/layouts/_default/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,16 @@ <h1>
{{ $slot_text = printf "%s - %s" $slot_text . | lower }}
{{ end }}
{{ with .Params.Supervisor }}
{{ $slot_text = printf "%s %s" $slot_text . }}
{{ end }}

{{ if eq "string" (printf "%T" . ) }}
{{ $slot_text = printf "%s %s" $slot_text . }}
{{ else }}
{{ $slot_text = delimit . ", " }}

{{ end }}
{{ end }}
{{ end }}



{{ if in .project_id "B" }}
{{ $slot_class = "bachelor" }}
Expand Down

0 comments on commit b52c2a7

Please sign in to comment.