├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── author └── releng.pl ├── cmd └── gae-dispatcher-emulator │ └── main.go ├── common_test.go ├── config.go ├── config_loader.go ├── config_loader_test.go ├── dispatcher.go ├── dispatcher_test.go ├── host_matcher.go ├── host_path_matcher.go ├── host_path_matcher_test.go ├── http_handler.go ├── http_handler_test.go ├── path_matcher.go ├── service.go ├── string_matcher.go ├── testdata ├── dispatch.xml ├── dispatch.yaml ├── invalid-dispatch.xml └── invalid-dispatch.yaml ├── version.go ├── version_gen.go ├── xml_config_loader.go ├── xml_config_loader_test.go ├── yaml_config_loader.go └── yaml_config_loader_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.0 -------------------------------------------------------------------------------- /author/releng.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/author/releng.pl -------------------------------------------------------------------------------- /cmd/gae-dispatcher-emulator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/cmd/gae-dispatcher-emulator/main.go -------------------------------------------------------------------------------- /common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/common_test.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/config.go -------------------------------------------------------------------------------- /config_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/config_loader.go -------------------------------------------------------------------------------- /config_loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/config_loader_test.go -------------------------------------------------------------------------------- /dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/dispatcher.go -------------------------------------------------------------------------------- /dispatcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/dispatcher_test.go -------------------------------------------------------------------------------- /host_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/host_matcher.go -------------------------------------------------------------------------------- /host_path_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/host_path_matcher.go -------------------------------------------------------------------------------- /host_path_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/host_path_matcher_test.go -------------------------------------------------------------------------------- /http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/http_handler.go -------------------------------------------------------------------------------- /http_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/http_handler_test.go -------------------------------------------------------------------------------- /path_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/path_matcher.go -------------------------------------------------------------------------------- /service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/service.go -------------------------------------------------------------------------------- /string_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/string_matcher.go -------------------------------------------------------------------------------- /testdata/dispatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/testdata/dispatch.xml -------------------------------------------------------------------------------- /testdata/dispatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/testdata/dispatch.yaml -------------------------------------------------------------------------------- /testdata/invalid-dispatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/testdata/invalid-dispatch.xml -------------------------------------------------------------------------------- /testdata/invalid-dispatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/testdata/invalid-dispatch.yaml -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/version.go -------------------------------------------------------------------------------- /version_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/version_gen.go -------------------------------------------------------------------------------- /xml_config_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/xml_config_loader.go -------------------------------------------------------------------------------- /xml_config_loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/xml_config_loader_test.go -------------------------------------------------------------------------------- /yaml_config_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/yaml_config_loader.go -------------------------------------------------------------------------------- /yaml_config_loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karupanerura/gae-dispatcher-emulator/HEAD/yaml_config_loader_test.go --------------------------------------------------------------------------------