Claudio Ridolfi

Claudio Ridolfi (15601644) was an Italian painter of the Renaissance period.

Claudio Ridolfi
Born1560
Died1644
NationalityItalian
Known forPainting
MovementBaroque
Flogging - Sant'Anastasia (Verona)
Mary Magdalene at the foot of the Cross. Santa Maria in Portuno, Corinaldo

Ridolfi was born in Verona, and was active mainly in Rome and Urbino. He was a pupil of the painters Dario Pozzo and Paolo Veronese. A friend of Federico Barocci, he established himself in Corinaldo in the region of Ancona, where he died. Simone Cantarini, Girolamo Cialdieri, Benedetto Marini, and two painters named Patanazzi and Urbinelli were pupils or followers of Ridolfi.[1]

Works

  • Birth of John the Baptist for the church of Santa Lucia in Urbino
  • Presentation of the virgin in the temple for a church in Santo Spirito
  • Deposition for a church in Rimini
  • Santa Giustina, St Benedict presenting rules to the principal Benedictines for a church in Padua
gollark: Your config can be a programming language too, since it's useful for specifying some things without having to repeat yourself, but it should be separate from the code.
gollark: Application code is stuff which should be the same across deployments. Config is stuff which shouldn't.
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.

References

Notes
  1. Memoirs of the Dukes of Urbino, illustrating the arms, arts, and ... Volume 3, by James Dennistoun, (1851) page 361.
Sources
  • Farquhar, Maria (1855). Ralph Nicholson Wornum (ed.). Biographical catalogue of the principal Italian painters. Woodfall & Kinder, Angel Court, Skinner Street, London; Digitized by Googlebooks from Oxford University copy on Jun 27, 2006. p. 147.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.