Aribo (archbishop of Mainz)

Multi tool use
Aribo |
Archbishop of Mainz |
Church |
Catholic Church |
Diocese |
Electorate of Mainz |
In office |
1021–1031 |
Personal details |
Died |
1031 |
Aribo (died 1031) was the Archbishop of Mainz from 1021 until his death. He was Primate of Germany during the succession of Conrad II.
Aribo disputed with the Diocese of Hildesheim the jurisdictional right over Gandersheim Abbey, but Pope Benedict VIII found in favour of Hildesheim, a ruling which Aribo further disputed and ignored, without however denying the pope's right to judge. Aribo also grieved the cathedral chapter of the Diocese of Worms after they elected and the new king appointed a bishop without his (Aribo's) approval in 1025. Aribo also disapproved of Conrad's marriage to Gisela on the basis of consanguinity, challenging its legality.
Aribo expanded the economy of Thuringia by minting coinage at Erfurt, the oldest market and trading centre in the province.
Aribo had consecrated Saint Gotthard as bishop of Hildesheim on December 2, 1022.[1]
References
^ San Gottardo di Hildesheim
Sources
Reuter, Timothy. Germany in the Early Middle Ages 800–1056. New York: Longman, 1991.
- Bernhardt, John William. Itinerant Kingship and Royal Monasteries in Early Medieval Germany, c. 936–1075. Cambridge: Cambridge University Press, 1993.
Preceded by Erkanbald
|
Archbishop of Mainz 1021–1031
|
Succeeded by Bardo
|
Authority control 
|
- GND: 118650084
- VIAF: 40171969
- WorldCat Identities (via VIAF): 40171969
|
D,MASzv96bT1qIzxyDYu1Ohr,fiw4IGcVgW4WTGCgB,Cgva,iRvlGxOf,GC5OSIiF2jM2EAIId99N
這個網誌中的熱門文章
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I'm trying to build a Chat app UI, the idea of the Layout was pretty simple: When the input bar is focused, keyboard show up and "push" up the chat bar, as it's a grid, the ListView will resize to fit the screen: I update the input bar's margin to "push" it up: NSValue result = (NSValue)args.Notification.UserInfo.ObjectForKey(new NSString(UIKeyboard.FrameEndUserInfoKey)); CGSize keyboardSize = result.RectangleFValue.Size; if (Element != null){ Element.Margin = new Thickness(0, 0, 0,keyboardSize.Height); //push the entry up to keyboard height when keyboard is activated } And this is ...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
2
Can someone explain to me how to implement the post-redirect-get pattern in Spring WebFlux and Thymeleaf? What subscribes on the database save method? @GetMapping("/register") public String showRegisterForm(Model model) { model.addAttribute("user", new User()); return "register"; } @PostMapping public String processRegisterForm(@Valid User user, BindingResult bindingResult) { if (bindingResult.hasErrors()) { return "register"; } else { userRepository.save(user); //what subscribes on this? //how to redirect on e.g. "/login"? ...
-2
I am building a railway station model. I want a train to depart when I click a button. I want to call stopDelay() for that but I am not sure how to do that and from which place.
anylogic
share | improve this question
asked Nov 23 '18 at 10:12
Anupam Singh Anupam Singh
1
Hi Anupam, welcome to SOF. Please check how to ask good questions, see link below. Your question is...