Monks, Girls and Hungarian Soldiers
Monks, Girls and Hungarian Soldiers (German: Mönche, Mädchen und Panduren) is a 1952 West German historical adventure comedy film directed by Ferdinand Dörfler and starring Joe Stöckel, Paul Hartmann and Rudolf Fernau.[1]
Monks, Girls and Hungarian Soldiers | |
---|---|
Directed by | Ferdinand Dörfler |
Produced by | Ferdinand Dörfler |
Written by | Hans Fitz |
Starring | |
Music by | Emil Ferstl |
Cinematography | Georg Krause |
Edited by | Walter Boos |
Production company | Dörfler-Filmproduktion |
Distributed by | Allianz Filmverleih |
Release date |
|
Running time | 88 minutes |
Country | West Germany |
Language | German |
It was made at the Bavaria Studios in Munich. The film's sets were designed by Ludwig Reiber. Some shooting was also done at Nymphenburg Palace.
Cast
- Joe Stöckel as Barnabas, Laienbruder-Braumeister des Klosters
- Paul Hartmann as Kurfürst von Bayern
- Rudolf Fernau as Megerle, kurfürstlicher Geheimsekretarius
- Petra Peters as Gustl
- Hans Reiser as Johannes, Laienbruder-Novize
- Marianne Schönauer as Prinzessin Adelgunde
- Lucie Englisch as Rosalinde von Klettenheim
- Jaspar von Oertzen as Michael von Walden
- Albert Hehn as Erzherzog Anton von Österreich
- Rudolf Vogel as Stops, Hofnarr
- Beppo Brem as Korbinian, Paulaner-Mönch
- Gustav Waldau as Ignatius, Paulaner-Mönch
- Erich Ponto as Fellerer, Goldschmied
- Hans Carl Mueller as Prior des Paulaner-Klosters
- Otto Brüggemann as Laurentius, Paulaner-Mönch
- Franz Loskarn as Urban, Paulaner-Mönch
- Karl-Heinz Peters as Schufterle, Schreiber
- Wolf Harro as Polizei-Offizier
- Otto Schmidt-Bertsch as Polizei-Offizier
- Hans Stadtmüller as Baptist, Paulaner-Mönch
gollark: Then your application is wrong.
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.
See also
References
- Klossner p. 262
Bibliography
- Klossner, Michael (2002). The Europe of 1500–1815 on Film and Television. Jefferson, NC: McFarland & Co. ISBN 978-0-7864-1223-5.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.