Update for SS18

This commit is contained in:
2018-04-19 00:01:46 +02:00
parent b772cc6ce3
commit dfd344346f
2 changed files with 361 additions and 174 deletions

531
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,6 +12,8 @@ pub static ALIASES: &[(&str, CatalogDefinition)] = &[
("GAD_SS17", ("17s-grundlagen-algorithmen-und-datenstrukturen", None)), ("GAD_SS17", ("17s-grundlagen-algorithmen-und-datenstrukturen", None)),
("LA_SS17", ("17s-lineare-algebra-fuer-informatik", None)), ("LA_SS17", ("17s-lineare-algebra-fuer-informatik", None)),
// EIST is on a Nextcloud // EIST is on a Nextcloud
// SS18
("DWT_SS18", ("dwt-2018", None)),
]; ];
pub static ALIAS_ALIASES: &[(&str, &str)] = &[ pub static ALIAS_ALIASES: &[(&str, &str)] = &[
@@ -22,6 +24,8 @@ pub static ALIAS_ALIASES: &[(&str, &str)] = &[
// SS17 // SS17
("GAD", "GAD_SS17"), ("GAD", "GAD_SS17"),
("LA", "LA_SS17"), ("LA", "LA_SS17"),
// SS18
("DWT", "DWT_SS18"),
]; ];
pub fn resolve_alias(mut query: &str) -> Option<CatalogDefinition> { pub fn resolve_alias(mut query: &str) -> Option<CatalogDefinition> {