├── .gitignore ├── .idea ├── dbnavigator.xml ├── encodings.xml ├── jsLibraryMappings.xml ├── libraries │ ├── Dart_Packages.xml │ └── Dart_SDK.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ ├── All_Tests.xml │ ├── All_Tests__PRODUCTION_.xml │ ├── All_Tests__for_coverage_.xml │ ├── Controller_Tests.xml │ ├── DI_Tests.xml │ ├── Hooked_Tests.xml │ ├── Match_routes__even_with_query_params_in_routing_test_dart.xml │ ├── Middleware_via_metadata_in_routing_test_dart.xml │ ├── Routing_Tests.xml │ ├── can_fetch_data_in_services_test_dart.xml │ ├── cannot_write_after_close_in_streaming_test_dart.xml │ ├── encoding_in_encoders_buffer_test_dart.xml │ ├── encoding_in_streaming_test_dart.xml │ ├── handle_error_dart.xml │ ├── injects_header_or_throws_in_parameter_meta_test_dart.xml │ ├── injects_session_or_throws_in_parameter_meta_test_dart.xml │ ├── json_dart.xml │ ├── main_dart.xml │ ├── metadata_in_hooked_test_dart.xml │ ├── only_match_route_with_matching_method_in_routing_test_dart.xml │ ├── performance__hello__DEV_.xml │ ├── performance__hello__PRODUCTION_.xml │ ├── performance__hello__raw.xml │ ├── tests_in_find_one_test_dart.xml │ ├── tests_in_framework.xml │ ├── tests_in_framework__PRODUCTION_.xml │ ├── tests_in_server_test_dart__PRODUCTION_.xml │ └── view_dart.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── analysis_options.yaml ├── dev.key ├── dev.pem ├── example ├── controller.dart ├── handle_error.dart ├── hostname.dart ├── http2 │ ├── body_parsing.dart │ ├── common.dart │ ├── dev.key │ ├── dev.pem │ ├── main.dart │ ├── pretty_logging.dart │ ├── public │ │ ├── app.js │ │ ├── body_parsing.html │ │ ├── index.html │ │ └── style.css │ └── server_push.dart ├── json.dart ├── main.dart ├── map_service.dart ├── status.dart ├── view.dart └── views │ └── index.jl ├── lib ├── angel_framework.dart ├── http.dart ├── http2.dart └── src │ ├── core │ ├── anonymous_service.dart │ ├── controller.dart │ ├── core.dart │ ├── driver.dart │ ├── env.dart │ ├── hooked_service.dart │ ├── hostname_parser.dart │ ├── hostname_router.dart │ ├── injection.dart │ ├── map_service.dart │ ├── metadata.dart │ ├── request_context.dart │ ├── response_context.dart │ ├── routable.dart │ ├── server.dart │ └── service.dart │ ├── fast_name_from_symbol.dart │ ├── http │ ├── angel_http.dart │ ├── http.dart │ ├── http_request_context.dart │ └── http_response_context.dart │ ├── http2 │ ├── angel_http2.dart │ ├── http2_request_context.dart │ └── http2_response_context.dart │ ├── safe_stream_controller.dart │ └── util.dart ├── performance └── hello │ ├── angel.md │ ├── main.dart │ ├── raw.dart │ └── raw.md ├── pubspec.yaml ├── test ├── 404_hole_test.dart ├── accepts_test.dart ├── all.dart ├── anonymous_service_test.dart ├── body_test.dart ├── common.dart ├── controller_test.dart ├── detach_test.dart ├── di_test.dart ├── encoders_buffer_test.dart ├── env_test.dart ├── exception_test.dart ├── extension_test.dart ├── find_one_test.dart ├── general_test.dart ├── hm.dart ├── hooked_test.dart ├── http2 │ ├── adapter_test.dart │ └── http2_client.dart ├── jsonp_test.dart ├── parameter_meta_test.dart ├── parse_id_test.dart ├── precontained_test.dart ├── pretty_log.dart ├── primitives_test.dart ├── repeat_request_test.dart ├── req_shutdown_test.dart ├── routing_test.dart ├── serialize_test.dart ├── server_test.dart ├── service_map_test.dart ├── services_test.dart ├── streaming_test.dart └── view_generator_test.dart └── tool └── travis.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/libraries/Dart_Packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/libraries/Dart_Packages.xml -------------------------------------------------------------------------------- /.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/All_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/All_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/All_Tests__PRODUCTION_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/All_Tests__PRODUCTION_.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/All_Tests__for_coverage_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/All_Tests__for_coverage_.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Controller_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/Controller_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/DI_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/DI_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Hooked_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/Hooked_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Match_routes__even_with_query_params_in_routing_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/Match_routes__even_with_query_params_in_routing_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Middleware_via_metadata_in_routing_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/Middleware_via_metadata_in_routing_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Routing_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/Routing_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/can_fetch_data_in_services_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/can_fetch_data_in_services_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/cannot_write_after_close_in_streaming_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/cannot_write_after_close_in_streaming_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/encoding_in_encoders_buffer_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/encoding_in_encoders_buffer_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/encoding_in_streaming_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/encoding_in_streaming_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/handle_error_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/handle_error_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/injects_header_or_throws_in_parameter_meta_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/injects_header_or_throws_in_parameter_meta_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/injects_session_or_throws_in_parameter_meta_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/injects_session_or_throws_in_parameter_meta_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/json_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/json_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/main_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/metadata_in_hooked_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/metadata_in_hooked_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/only_match_route_with_matching_method_in_routing_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/only_match_route_with_matching_method_in_routing_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/performance__hello__DEV_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/performance__hello__DEV_.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/performance__hello__PRODUCTION_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/performance__hello__PRODUCTION_.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/performance__hello__raw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/performance__hello__raw.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/tests_in_find_one_test_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/tests_in_find_one_test_dart.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/tests_in_framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/tests_in_framework.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/tests_in_framework__PRODUCTION_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/tests_in_framework__PRODUCTION_.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/tests_in_server_test_dart__PRODUCTION_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/tests_in_server_test_dart__PRODUCTION_.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/view_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/runConfigurations/view_dart.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/TODO.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /dev.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/dev.key -------------------------------------------------------------------------------- /dev.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/dev.pem -------------------------------------------------------------------------------- /example/controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/controller.dart -------------------------------------------------------------------------------- /example/handle_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/handle_error.dart -------------------------------------------------------------------------------- /example/hostname.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/hostname.dart -------------------------------------------------------------------------------- /example/http2/body_parsing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/body_parsing.dart -------------------------------------------------------------------------------- /example/http2/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/common.dart -------------------------------------------------------------------------------- /example/http2/dev.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/dev.key -------------------------------------------------------------------------------- /example/http2/dev.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/dev.pem -------------------------------------------------------------------------------- /example/http2/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/main.dart -------------------------------------------------------------------------------- /example/http2/pretty_logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/pretty_logging.dart -------------------------------------------------------------------------------- /example/http2/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/public/app.js -------------------------------------------------------------------------------- /example/http2/public/body_parsing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/public/body_parsing.html -------------------------------------------------------------------------------- /example/http2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/public/index.html -------------------------------------------------------------------------------- /example/http2/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/public/style.css -------------------------------------------------------------------------------- /example/http2/server_push.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/http2/server_push.dart -------------------------------------------------------------------------------- /example/json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/json.dart -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/main.dart -------------------------------------------------------------------------------- /example/map_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/map_service.dart -------------------------------------------------------------------------------- /example/status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/status.dart -------------------------------------------------------------------------------- /example/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/view.dart -------------------------------------------------------------------------------- /example/views/index.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/example/views/index.jl -------------------------------------------------------------------------------- /lib/angel_framework.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/angel_framework.dart -------------------------------------------------------------------------------- /lib/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/http.dart -------------------------------------------------------------------------------- /lib/http2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/http2.dart -------------------------------------------------------------------------------- /lib/src/core/anonymous_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/anonymous_service.dart -------------------------------------------------------------------------------- /lib/src/core/controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/controller.dart -------------------------------------------------------------------------------- /lib/src/core/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/core.dart -------------------------------------------------------------------------------- /lib/src/core/driver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/driver.dart -------------------------------------------------------------------------------- /lib/src/core/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/env.dart -------------------------------------------------------------------------------- /lib/src/core/hooked_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/hooked_service.dart -------------------------------------------------------------------------------- /lib/src/core/hostname_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/hostname_parser.dart -------------------------------------------------------------------------------- /lib/src/core/hostname_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/hostname_router.dart -------------------------------------------------------------------------------- /lib/src/core/injection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/injection.dart -------------------------------------------------------------------------------- /lib/src/core/map_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/map_service.dart -------------------------------------------------------------------------------- /lib/src/core/metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/metadata.dart -------------------------------------------------------------------------------- /lib/src/core/request_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/request_context.dart -------------------------------------------------------------------------------- /lib/src/core/response_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/response_context.dart -------------------------------------------------------------------------------- /lib/src/core/routable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/routable.dart -------------------------------------------------------------------------------- /lib/src/core/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/server.dart -------------------------------------------------------------------------------- /lib/src/core/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/core/service.dart -------------------------------------------------------------------------------- /lib/src/fast_name_from_symbol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/fast_name_from_symbol.dart -------------------------------------------------------------------------------- /lib/src/http/angel_http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/http/angel_http.dart -------------------------------------------------------------------------------- /lib/src/http/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/http/http.dart -------------------------------------------------------------------------------- /lib/src/http/http_request_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/http/http_request_context.dart -------------------------------------------------------------------------------- /lib/src/http/http_response_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/http/http_response_context.dart -------------------------------------------------------------------------------- /lib/src/http2/angel_http2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/http2/angel_http2.dart -------------------------------------------------------------------------------- /lib/src/http2/http2_request_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/http2/http2_request_context.dart -------------------------------------------------------------------------------- /lib/src/http2/http2_response_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/http2/http2_response_context.dart -------------------------------------------------------------------------------- /lib/src/safe_stream_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/safe_stream_controller.dart -------------------------------------------------------------------------------- /lib/src/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/lib/src/util.dart -------------------------------------------------------------------------------- /performance/hello/angel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/performance/hello/angel.md -------------------------------------------------------------------------------- /performance/hello/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/performance/hello/main.dart -------------------------------------------------------------------------------- /performance/hello/raw.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/performance/hello/raw.dart -------------------------------------------------------------------------------- /performance/hello/raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/performance/hello/raw.md -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/404_hole_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/404_hole_test.dart -------------------------------------------------------------------------------- /test/accepts_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/accepts_test.dart -------------------------------------------------------------------------------- /test/all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/all.dart -------------------------------------------------------------------------------- /test/anonymous_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/anonymous_service_test.dart -------------------------------------------------------------------------------- /test/body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/body_test.dart -------------------------------------------------------------------------------- /test/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/common.dart -------------------------------------------------------------------------------- /test/controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/controller_test.dart -------------------------------------------------------------------------------- /test/detach_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/detach_test.dart -------------------------------------------------------------------------------- /test/di_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/di_test.dart -------------------------------------------------------------------------------- /test/encoders_buffer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/encoders_buffer_test.dart -------------------------------------------------------------------------------- /test/env_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/env_test.dart -------------------------------------------------------------------------------- /test/exception_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/exception_test.dart -------------------------------------------------------------------------------- /test/extension_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/extension_test.dart -------------------------------------------------------------------------------- /test/find_one_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/find_one_test.dart -------------------------------------------------------------------------------- /test/general_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/general_test.dart -------------------------------------------------------------------------------- /test/hm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/hm.dart -------------------------------------------------------------------------------- /test/hooked_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/hooked_test.dart -------------------------------------------------------------------------------- /test/http2/adapter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/http2/adapter_test.dart -------------------------------------------------------------------------------- /test/http2/http2_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/http2/http2_client.dart -------------------------------------------------------------------------------- /test/jsonp_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/jsonp_test.dart -------------------------------------------------------------------------------- /test/parameter_meta_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/parameter_meta_test.dart -------------------------------------------------------------------------------- /test/parse_id_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/parse_id_test.dart -------------------------------------------------------------------------------- /test/precontained_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/precontained_test.dart -------------------------------------------------------------------------------- /test/pretty_log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/pretty_log.dart -------------------------------------------------------------------------------- /test/primitives_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/primitives_test.dart -------------------------------------------------------------------------------- /test/repeat_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/repeat_request_test.dart -------------------------------------------------------------------------------- /test/req_shutdown_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/req_shutdown_test.dart -------------------------------------------------------------------------------- /test/routing_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/routing_test.dart -------------------------------------------------------------------------------- /test/serialize_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/serialize_test.dart -------------------------------------------------------------------------------- /test/server_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/server_test.dart -------------------------------------------------------------------------------- /test/service_map_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/service_map_test.dart -------------------------------------------------------------------------------- /test/services_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/services_test.dart -------------------------------------------------------------------------------- /test/streaming_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/streaming_test.dart -------------------------------------------------------------------------------- /test/view_generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/test/view_generator_test.dart -------------------------------------------------------------------------------- /tool/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angel-dart-archive/framework/HEAD/tool/travis.sh --------------------------------------------------------------------------------