Jacob Brown
Jacob Brown
For example, I want to create a route like: #[get("/.json")] pub fn name_as_json() { /* ... */ } Currently this fails to compile with: ``` error: malformed parameter --> src/web/mod.rs:3:9...
There is some part of the backend that is logging at the `INFO` level, despite the fact that I have set the log level to `error`: AppConfig[:backend_log_level] = "error" My...
Recent versions of ArchivesSpace have made it increasingly difficult to effectively control how web crawlers index an ArchivesSpace site (e.g. by providing search functionality at numerous endpoints and combining search/browse...
## Expected Behavior Upon installation, the tool should load as depicted here: https://www.youtube.com/watch?v=V85_97G7VA4&feature=youtu.be. ## Current Behavior Upon installation, the tool shows up in "Script Lab" sidebar, with loading animation (chasing...
If I put some unsafe usage behind a (not default) feature flag: ```rust #[cfg(feature = "foo")] pub mod foo { pub fn bar() -> &'static [i32] { let address =...
This PR is a first draft at passing local data from the HTTP request to the handlers.
I'm getting the following error when I try to reference a `Spira::Base` in a Rails (3.2.14) controller: ``` Spira::NoRepositoryError ``` I'm using the current `master` version of this gem. I'm...
Do you plan on supporting LDAP over SSL in this crate? I tried swapping out the `TcpStream` for `SslStream` in the connection setup, but am getting `Error: Unexpected end of...
Most of the regexes used for sanitization here are simple, and I'm pretty sure all could be replaced with custom handler functions without too much trouble. If we did so,...