X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/432b6175940bcddf371c80c46e429f37ada6559f..476f5bc05232372880327aa62b3ea8c9f7dea13b:/librarian/functions.py diff --git a/librarian/functions.py b/librarian/functions.py index e91d7e1..40f06cd 100644 --- a/librarian/functions.py +++ b/librarian/functions.py @@ -115,3 +115,17 @@ def reg_texcommand(): _register_function(texcommand) +def reg_get(format_): + def get(context, *args): + obj = format_ + for arg in args: + if hasattr(obj, arg): + obj = getattr(obj, arg) + else: + try: + obj = obj[arg] + except (TypeError, KeyError), e: + # Just raise proper AttributeError. + getattr(obj, arg) + return obj + _register_function(get)