Dmitry Chaplinsky
Dmitry Chaplinsky
#73 here ya go
``` diff index 829bdb7..5287a9d 100644 --- a/jquery.jscroll.js +++ b/jquery.jscroll.js @@ -43,6 +43,10 @@ _$scroll = _isWindow ? _$window : $e, _nextHref = $.trim(_$next.attr('href') + ' ' + _options.contentSelector); + if...
@pklauzinski please take a look onto proposed patch.
https://github.com/cyberdelia/django-pipeline/blob/master/pipeline/templatetags/ext.py Check this out.
Here is how I do it: ``` class FoobarSpider(scrapy.Spider): def __init__(self, *args, **kwargs): self.session_id = "create" def parse(self, response): if 'X-Crawlera-Session' in response.headers: self.session_id = response.headers['X-Crawlera-Session'] new_url = .... yield...
Well, I'm also not a big fan to use sessions but for some sites it's the only option I have.
@brooj095 , to be honest, I barely remember the issue I've been working on.
Hmm, works with latest code from github. Maybe it's time to update the page?
@toastdriven @acdha could you please take a look into it?
I'm working on various HandlerSocket components for django framework (http://bitbucket.org/dchaplinsky/django-hs-cache, http://bitbucket.org/dchaplinsky/django-hs-sessions) and also started to implement monkey patch for django ORM which will route all suitable requests via HandlerSocket. Absence...