Rocket/examples
Sergio Benitez 9b955747e4 Remove config global state. Use Responder::respond_to.
This commit includes two major changes to core:

  1. Configuration state is no longer global. The `config::active()`
     function has been removed. The active configuration can be
     retrieved via the `config` method on a `Rocket` instance.

  2. The `Responder` trait has changed. `Responder::respond(self)` has
     been removed in favor of `Responder::respond_to(self, &Request)`.
     This allows responders to dynamically adjust their response based
     on the incoming request.

Additionally, it includes the following changes to core and codegen:

  * The `Request::guard` method was added to allow for simple
    retrivial of request guards.
  * The `Request::limits` method was added to retrieve configured
    limits.
  * The `File` `Responder` implementation now uses a fixed size body
    instead of a chunked body.
  * The `Outcome::of<R: Responder>(R)` method was removed while
    `Outcome::from<R: Responder(&Request, R)` was added.
  * The unmounted and unmanaged limits are more cautious: they will only
    emit warnings when the `Rocket` receiver is known.

This commit includes one major change to contrib:

  1. To use contrib's templating, the fairing returned by
     `Template::fairing()` must be attached to the running Rocket
     instance.

Additionally, the `Display` implementation of `Template` was removed. To
directly render a template to a `String`, the new `Template::show`
method can be used.
2017-05-19 03:29:08 -07:00
..
config Remove config global state. Use Responder::respond_to. 2017-05-19 03:29:08 -07:00
content_types Upgrade dependencies to Serde 1.0. 2017-04-24 17:37:18 -07:00
cookies Remove config global state. Use Responder::respond_to. 2017-05-19 03:29:08 -07:00
errors Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
extended_validation Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
fairings Remove config global state. Use Responder::respond_to. 2017-05-19 03:29:08 -07:00
form_kitchen_sink Allow form field renaming via #[form(field = "name")] attribute. 2017-04-03 19:06:30 -07:00
forms Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
from_request Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
handlebars_templates Remove config global state. Use Responder::respond_to. 2017-05-19 03:29:08 -07:00
hello_alt_methods Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
hello_person Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
hello_ranks Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
hello_tls Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
hello_world Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
json Upgrade dependencies to Serde 1.0. 2017-04-24 17:37:18 -07:00
managed_queue Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
manual_routes Remove config global state. Use Responder::respond_to. 2017-05-19 03:29:08 -07:00
msgpack Upgrade dependencies to Serde 1.0. 2017-04-24 17:37:18 -07:00
optional_redirect Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
optional_result Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
pastebin Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
query_params Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
raw_sqlite Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
raw_upload Set examplem versions to 0.0.0. 2017-03-08 14:29:24 -08:00
redirect Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
session Rename 'session_key' config parameter to 'secret_key'. 2017-05-12 17:24:25 -07:00
state Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
static_files Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
stream Set examplem versions to 0.0.0. 2017-03-08 14:29:24 -08:00
testing Remove 'testing' feature. Close stream on network error. 2017-04-20 20:36:12 -07:00
todo Remove config global state. Use Responder::respond_to. 2017-05-19 03:29:08 -07:00
uuid Update uuid dependency to 0.5. 2017-05-05 12:20:36 -07:00