Maximillian Dornseif

Results 11 comments of Maximillian Dornseif

That's a bunch of different changes. Some seem to break existing sessions. May I suggest breaking them down into separate pull requests? 6fced82 seems to be the most obvious candidate...

I mean that this actually consists of 1. allow storing of ndb Objects in Sessions 6fced82 2. switches to ndb for session storage d3fdc17 3. allow to support old db...

Did you enable sessions in appengine_config.py? ``` python def webapp_add_wsgi_middleware(app): """Called with each WSGI handler initialisation""" app = gaetk.gaesessions.SessionMiddleware(app, cookie_key=COOKIE_KEY) return app ```

Probably you are better of with different Middlewares, e.g. https://github.com/klmitch/turnstile https://github.com/simonw/ratelimitcache http://forrst.com/posts/Limiting_number_of_requests_in_a_given_timeframe-0BW I think adding login functionality or Captchas to a session library would be out of scope of this...

Seems to me related to #584. It also seems to me that there is no way to add Documentation to the auto-generated **Properties** (only the Parameters): ``` /** KvStore implements...

Possible workarounds: Configure the transport in the DSN: raven.Client('sync+https://public_key:[email protected]/project_id') Or provide the Transport during instantiation. raven.Client( 'https://public_key:[email protected]/project_id' transport=raven.transport.http.HTTPTransport) Perhaps ist enough to update documentation and revert https://github.com/getsentry/raven-python/commit/83984a2ad4853e1689b0aee1a800aa42618ace90 to get rid...

@ashwoods I assume you have seen https://github.com/getsentry/raven-python/pull/1193/commits/4a147f08df0f435763c39d168d27a29fab8a0cff ?

You have to write your own WSGI application. https://github.com/graphql-python/graphene-gae/blob/master/tests/_webapp2/test_graphql_handler.py gives some hints. eg mygraphql.py: import webapp2 from graphene_gae.webapp2 import graphql_application, GraphQLHandler [define query etc] schema = graphene.Schema(query=QueryRoot) graphql_application.config['graphql_schema'] = schema...