Walter Friedensburg

Karl Walter Friedensburg (6 March 1855 in Hamburg – 19 February 1938 in Wernigerode) was a German historian and archivist.

He studied history at the Universities of Göttingen and Breslau, obtaining his habilitation at the University of Marburg in 1878. From 1880 he served as an archivist in Marburg, later working as a university lecturer in Marburg and Göttingen. From 1888 to 1901 he was associated with the Deutsches Historisches Institut Rom (German Historical Institute in Rome).

In 1901 he was appointed director of the Staatsarchiv Stettin (National Archives in Stettin), and in 1913 succeeded Georg Winter (18561912) as director of the State Archives of Magdeburg. Here he was co-author of Geschichte des Staatsarchiv Magdeburg (History of the State Archives of Magdeburg). He entered into retirement in 1923, relocating to Wernigerode during the following year.

From 1913 he was a member of the Historischen Kommission für die Provinz Sachsen und für Anhalt (Historical Commission for the Province of Saxony and for Anhalt), serving as its chairman in 192223.

Written works

Friedensburg's prime area of research involved the history of the Reformation. The following are a few of his better known publications:

  • Der Reichstag zu Speier 1526, im Zusammenhang der politischen und kirchlichen Entwicklung Deutschlands im Reformationzeitalte, 1887 - The Diet of Speyer in 1526, in the context of political and religious development in Germany.
  • Die chronik des Cerbonio Besozzi, 1548-1563, 1904 (edition) - Chronicles of Cerbonio Besozzi.
  • Geschichte der Universität Wittenberg, 1917 - History of the University of Wittenberg.
  • Die Protokolle der Kirchenvisitationen im Stift Merseburg von 1562 und 1578, 1931
  • Kaiser Karl v. und papst Paul III. (1534-1549), 1932 - Emperor Charles V and Pope Paul III.
  • Johannes Sleidanus, der geschichtsschreiber und die schicksalsmächte der reformationszeit, 1935 - book on historian Johannes Sleidanus (1506-1556).[1]
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```
gollark: <@332271551481118732> Expression parsing is done, I think.
gollark: I wonder if AQA pseudocode *does* have operator precedence. We may need to harvest exam papers.

References

  1. WorldCat Identities (list of publications)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.