Imbolc
Imbolc
would be great to have it moving one side endlessly without rewind - first slide after the last one
I think it will look better as a separate package because it brings some dependencies like `aiohttp_jinja2` for context_processor implementation.
Because flash messages doesn't make much sense without templates. And I think there is not so much code to split it into parts. Exactly it took 22 loc in my...
Also, this approach has benefits of brevity: ``` flash(request, ('error', 'Foo error')) ``` instead of ``` session = await get_session(request) session.flash(request, ('error', 'Foo error')) ```
Why not substitute links during parsing to make it absolute? Eg ``` base_path = /foo/ app_path = /bar/ link: baz => /foo/bar/baz link: /spam/ => /foo/spam ``` It won't solve...
> neither way of doing this (with or without trailing slash) is completely satisfactory, as each is more convenient in certain situations I won't call having two urls pointing to...
Можно у requests посмотреть. Оно ж и urllib не работает с юникодом: ``` >>> urllib.quote(u'тест') Traceback (most recent call last): File "", line 1, in File "/usr/lib/python2.6/urllib.py", line 1224, in...
Была идея при добавлении connection_timeout или response_timeout в урл-параметры запроса делать соответствующие таймауты. Ну, чтобы таймауты работали во всех существующих запросах. Глянул торнадо и чего-то ума не приложу как на...
> 1) an &str name (this is new) or 2) a Cookie (as it is today). Am I understanding correctly? Exactly > user thinks a cookie will be removed but,...
At the first glance, these crates meant to work with ajax and fetch requests. I don't see how would we use them, as all the data go through websocket. It...