1990 IIHF European Cup
The 1990 European Cup was the 26th edition of the European Cup, IIHF's premier European club ice hockey tournament. The season started on October 19, 1990, and finished on December 30, 1990.
The tournament was won by Djurgårdens IF, who beat Dynamo Moscow in the final.
First group round
Group A
Team #1 | Score | Team #2 |
---|---|---|
Levski-Spartak Sofia |
26:1 | |
HC Steaua București |
30:0 | |
Levski-Spartak Sofia |
3:8 |
Group A standings
Rank | Team | Points |
1 | 4 | |
---|---|---|
2 | 2 | |
3 | 0 |
Group B
Team #1 | Score | Team #2 |
---|---|---|
VEU Feldkirch |
6:5 | |
HC Bolzano |
4:4 | |
KHL Medveščak Zagreb |
8:5 | |
HC Bolzano |
5:5 | |
KHL Medveščak Zagreb |
7:4 | |
HC Bolzano |
7:4 |
Group B standings
Rank | Team | Points |
1 | 5 | |
---|---|---|
2 | 4 | |
3 | 2 | |
4 | 1 |
Group C
Team #1 | Score | Team #2 |
---|---|---|
TMH Polonia Bytom |
3:0 | |
Rødovre SIK |
8:11 | |
Furuset |
9:4 | |
Rødovre SIK |
1:7 | |
TMH Polonia Bytom |
8:3 | |
Rødovre SIK |
7:2 |
Group C standings
Rank | Team | Points |
1 | 6 | |
---|---|---|
2 | 2 | |
3 | 2 | |
4 | 2 |
Group D
Team #1 | Score | Team #2 |
---|---|---|
Rouen HC |
16:2 | |
Gunco Panda's Rotterdam |
21:1 | |
Rouen HC |
8:6 |
Group D standings
Rank | Team | Points |
1 | 4 | |
---|---|---|
2 | 2 | |
3 | 0 |
Second group round
Group A
(Düsseldorf, North Rhine-Westphalia, Germany)
Team #1 | Score | Team #2 |
---|---|---|
TPS |
4:1 | |
Düsseldorfer EG |
7:4 | |
Düsseldorfer EG |
3:4 | |
KHL Medveščak Zagreb |
5:3 | |
TPS |
3:1 | |
Düsseldorfer EG |
11:3 |
Group A standings
Rank | Team | Points |
1 | 6 | |
---|---|---|
2 | 4 | |
3 | 2 | |
4 | 0 |
Group B
(Lugano, Ticino, Switzerland)
Team #1 | Score | Team #2 |
---|---|---|
HC Lugano |
7:2 | |
Sparta Praha |
8:0 | |
HC Lugano |
5:1 | |
Sparta Praha |
7:5 | |
HC Lugano |
4:4 | |
TMH Polonia Bytom |
4:2 |
Group B standings
Rank | Team | Points |
1 | 5 | |
---|---|---|
2 | 5 | |
3 | 2 | |
4 | 0 |
Final stage
(Düsseldorf, North Rhine-Westphalia, Germany)
Third round
Team #1 | Score | Team #2 |
---|---|---|
Düsseldorfer EG |
2:6 | |
TPS |
5:4 |
Fifth place match
Team #1 | Score | Team #2 |
---|---|---|
Düsseldorfer EG |
6:2 |
Semifinals
Team #1 | Score | Team #2 |
---|---|---|
Dynamo Moscow |
3:2 | |
Djurgårdens IF |
3:2 |
Third place match
Team #1 | Score | Team #2 |
---|---|---|
TPS |
4:3 |
Final
Team #1 | Score | Team #2 |
---|---|---|
Djurgårdens IF |
3:2 |
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.
gollark: What? Why is that a config file?! You should be defining routes in your code.
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.