Results 71 issues of Jeremy Whitlock

It would be nice to have a clearable cache so that multiple loads of the same path do not duplicate efforts. Might even make sense to allow for disabling cache...

The [swagger-validator middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-validator) was probably the most useful middleware in swagger-tools. This middleware would do request validation based on your Swagger document, as well as response validation if...

With Sway, the structure of `req.sway` will likely be much simpler than in swagger-tools. As of right now, this is what I've implemented: - `api`: This is the `SwaggerApi` object...

The [swagger-router middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-router) was really useful for spinning up a server and prototyping an API. Not only that but this middleware also handled the mocking functionality of swagger-tools'...

The [swagger-metadata middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-metadata) was the entry point to Swagger integrations using swagger-tools. The reason it is its own middleware is because there is a lot going implemented in...

The [swagger-security middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-security) was originally created to drive [a127](https://github.com/apigee-127/a127) but the idea was simple enough: allow the API author to register security handlers that would be consulted based...

The [swagger-router middleware in swagger-tools](https://github.com/apigee-127/swagger-tools/blob/master/docs/Middleware.md#swagger-router) not only did routing but it also is where the mocking support in swagger-tools was written. The original idea behind this decision was this: If...

_"Simply remove line 189: elif (len(user) > 1): I suppose that len(user) with nested groups returns 0 Cheers, Vassil Vassilev"_ Do not remove line 189, just reverse `>` to `

`print_group_model` throws unhandled exceptions under Windows because the OS thinks that the temp file is open at the time you're trying to rename or delete it.

The mod_authz_svn authz file is case sensitive which presents a problem in AD environments since user names are case insensitive. Depending on how their username was entered in AD and...