diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-07 19:09:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-10 22:03:18 +0300 |
commit | 21033565488f6c63b4c40962cccfdc8b6ca32b2a (patch) | |
tree | 44732ab7e1c7a7b25e64b82bf61d293f6cff2f86 /mod/mod-repository-details.cxx | |
parent | 026377d0c145277b24b3af5fdcf707222e854bd3 (diff) |
Add support for package submission
Diffstat (limited to 'mod/mod-repository-details.cxx')
-rw-r--r-- | mod/mod-repository-details.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/mod-repository-details.cxx b/mod/mod-repository-details.cxx index 6043328..36d5508 100644 --- a/mod/mod-repository-details.cxx +++ b/mod/mod-repository-details.cxx @@ -41,7 +41,7 @@ repository_details (const repository_details& r) void brep::repository_details:: init (scanner& s) { - MODULE_DIAG; + HANDLER_DIAG; options_ = make_shared<options::repository_details> ( s, unknown_mode::fail, unknown_mode::fail); @@ -57,7 +57,7 @@ handle (request& rq, response& rs) { using namespace web::xhtml; - MODULE_DIAG; + HANDLER_DIAG; const dir_path& root (options_->root ()); @@ -65,7 +65,7 @@ handle (request& rq, response& rs) // try { - name_value_scanner s (rq.parameters ()); + name_value_scanner s (rq.parameters (1024)); params::repository_details (s, unknown_mode::fail, unknown_mode::fail); } catch (const cli::exception& e) |