Jacob Brown

Results 9 issues of 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...

request

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...

logging

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...

JIRA ticket too

## 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...

needs more info

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 =...

enhancement

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...

help wanted

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,...