├── .gitignore ├── LICENSE ├── README.md ├── licenses ├── LICENSE.akka.txt ├── LICENSE.concurrentlinkedhashmap.txt ├── LICENSE.netty.txt └── README.md ├── project ├── build.properties ├── build.scala ├── plugins.sbt └── unidoc.scala ├── sbt ├── README.md ├── npn-boot-1.0.0.v20120402.jar ├── npn-boot-1.1.0.v20120525.jar ├── npn-boot-1.1.1.v20121030.jar ├── npn-boot-1.1.6.v20130911.jar ├── npn-boot-1.7_u25.jar ├── sbt └── sbt-launch-0.12.1.jar ├── socko-buildtools ├── .gitignore └── src │ ├── main │ └── scala │ │ └── org │ │ └── mashupbots │ │ └── socko │ │ └── buildtools │ │ ├── BuildRunner.scala │ │ ├── Builder.scala │ │ ├── DirectoryWatcher.scala │ │ └── package.scala │ └── test │ └── scala │ └── org │ └── mashupbots │ └── socko │ └── buildtools │ ├── BuildRunnerSpec.scala │ ├── BuilderSpec.scala │ └── DirectoryWatcherSpec.scala ├── socko-docs ├── docs │ ├── guides │ │ ├── basics.markdown │ │ ├── build-tool.markdown │ │ ├── configuration.markdown │ │ ├── dynamic-content.markdown │ │ ├── quick-start.markdown │ │ ├── static-content.markdown │ │ └── user-guide.markdown │ └── publishing_docs.markdown └── synch_docs.sh ├── socko-examples ├── .gitignore └── src │ └── main │ ├── resources │ ├── application.conf │ ├── foo.html │ ├── logback.xml │ ├── swaggerui │ │ ├── css │ │ │ ├── hightlight.default.css │ │ │ └── screen.css │ │ ├── images │ │ │ ├── logo_small.png │ │ │ ├── pet_store_api.png │ │ │ ├── throbber.gif │ │ │ └── wordnik_api.png │ │ ├── index.html │ │ ├── lib │ │ │ ├── backbone-min.js │ │ │ ├── handlebars-1.0.rc.1.js │ │ │ ├── highlight.7.3.pack.js │ │ │ ├── jquery-1.8.0.min.js │ │ │ ├── jquery.ba-bbq.min.js │ │ │ ├── jquery.slideto.min.js │ │ │ ├── jquery.wiggle.min.js │ │ │ ├── swagger.js │ │ │ └── underscore-min.js │ │ ├── swagger-ui.js │ │ └── swagger-ui.min.js │ └── testKeyStore │ └── scala │ └── org │ └── mashupbots │ └── socko │ └── examples │ ├── benchmark │ ├── BenchmarkApp.scala │ ├── DynamicBenchmarkHandler.scala │ └── package.scala │ ├── builder │ ├── BuilderApp.scala │ └── package.scala │ ├── config │ ├── AkkaConfigApp.scala │ ├── CodedConfigApp.scala │ └── package.scala │ ├── fileupload │ ├── FileUploadApp.scala │ ├── FileUploadHandler.scala │ └── package.scala │ ├── package.scala │ ├── querystring_post │ ├── QueryStringPostApp.scala │ ├── QueryStringPostHandler.scala │ └── package.scala │ ├── quickstart │ ├── HelloApp.scala │ ├── HelloHandler.scala │ └── package.scala │ ├── rest │ ├── Pet.scala │ ├── RestApp.scala │ ├── Store.scala │ ├── User.scala │ └── package.scala │ ├── routes │ ├── RouteApp.scala │ ├── TimeHandler.scala │ └── package.scala │ ├── secure │ ├── SecureApp.scala │ ├── SecureHelloHandler.scala │ └── package.scala │ ├── snoop │ ├── SnoopApp.scala │ └── package.scala │ ├── spdy │ ├── DynamicHandler.scala │ ├── SpdyApp.scala │ └── package.scala │ ├── streaming │ ├── StreamingApp.scala │ ├── StreamingHandler.scala │ └── package.scala │ ├── weblog │ ├── CustomWebLogApp.scala │ ├── HelloHandler.scala │ └── WebLogApp.scala │ └── websocket │ ├── AutobahnApp.scala │ ├── AutobahnHandler.scala │ ├── ChatApp.scala │ ├── ChatHandler.scala │ ├── WebSocketApp.scala │ ├── WebSocketHandler.scala │ └── package.scala ├── socko-rest ├── .gitignore └── src │ ├── main │ └── scala │ │ └── org │ │ └── mashupbots │ │ └── socko │ │ └── rest │ │ ├── RestConfig.scala │ │ ├── RestEndPoint.scala │ │ ├── RestExceptions.scala │ │ ├── RestHandler.scala │ │ ├── RestHttpWorker.scala │ │ ├── RestModelMetaData.scala │ │ ├── RestOperation.scala │ │ ├── RestRegistration.scala │ │ ├── RestRegistry.scala │ │ ├── RestRequest.scala │ │ ├── RestRequestContext.scala │ │ ├── RestRequestDeserializer.scala │ │ ├── RestRequestEvents.scala │ │ ├── RestResponse.scala │ │ ├── RestResponseContext.scala │ │ ├── RestResponseSerializer.scala │ │ ├── SwaggerApiDocs.scala │ │ ├── SwaggerReflector.scala │ │ └── package.scala │ └── test │ ├── resources │ └── logback-test.xml │ └── scala │ └── org │ └── mashupbots │ └── socko │ └── rest │ ├── RestApiDocsSpec.scala │ ├── RestConfigSpec.scala │ ├── RestDeleteSpec.scala │ ├── RestEndPointSpec.scala │ ├── RestGetSpec.scala │ ├── RestPostSpec.scala │ ├── RestPutSpec.scala │ ├── RestRegistrySpec.scala │ ├── RestRequestContextSpec.scala │ ├── RestRequestDeserializerSpec.scala │ ├── RestResponseSerializerSpec.scala │ ├── TestHttpClient.scala │ ├── delete │ ├── DeleteBytes.scala │ ├── DeleteObject.scala │ ├── DeletePrimitive.scala │ ├── DeleteStreamUrl.scala │ └── DeleteVoid.scala │ ├── get │ ├── GetBytes.scala │ ├── GetObject.scala │ ├── GetPrimitive.scala │ ├── GetStreamUrl.scala │ ├── GetVoid.scala │ └── GetWithErrors.scala │ ├── petshop │ ├── Pet.scala │ ├── Store.scala │ └── User.scala │ ├── post │ ├── PostBytes.scala │ ├── PostCustom.scala │ ├── PostObject.scala │ ├── PostPrimitive.scala │ └── PostVoid.scala │ ├── put │ ├── PutBytes.scala │ ├── PutCustom.scala │ ├── PutObject.scala │ ├── PutPrimitive.scala │ └── PutVoid.scala │ ├── test1 │ └── Requests.scala │ └── test2 │ └── DuplicateAddress.scala └── socko-webserver ├── .gitignore └── src ├── main ├── java │ └── org │ │ └── mashupbots │ │ └── socko │ │ └── netty │ │ ├── HttpChunkedFile.java │ │ └── SpdyServerProvider.java ├── resources │ └── META-INF │ │ └── mime.types └── scala │ └── org │ └── mashupbots │ └── socko │ ├── events │ ├── EndPoint.scala │ ├── HttpChunkEvent.scala │ ├── HttpEvent.scala │ ├── HttpEventConfig.scala │ ├── HttpHeaders.scala │ ├── HttpLastChunkEvent.scala │ ├── HttpRequestEvent.scala │ ├── HttpRequestMessage.scala │ ├── HttpResponseMessage.scala │ ├── SockoEvent.scala │ ├── WebSocketEventConfig.scala │ ├── WebSocketFrameEvent.scala │ ├── WebSocketHandshakeEvent.scala │ └── package.scala │ ├── handlers │ ├── SnoopHandler.scala │ ├── StaticContentHandler.scala │ └── package.scala │ ├── infrastructure │ ├── CharsetUtil.scala │ ├── ConfigUtil.scala │ ├── DateUtil.scala │ ├── HashUtil.scala │ ├── IOUtil.scala │ ├── LocalCache.scala │ ├── Logger.scala │ ├── MimeTypes.scala │ ├── ReflectUtil.scala │ ├── WebLogEvent.scala │ ├── WebLogFormat.scala │ ├── WebLogWriter.scala │ └── package.scala │ ├── package.scala │ ├── routes │ ├── Routes.scala │ └── package.scala │ └── webserver │ ├── PipelineFactory.scala │ ├── ProtocolNegoitationHandler.scala │ ├── RequestHandler.scala │ ├── SslManager.scala │ ├── WebServer.scala │ ├── WebServerConfig.scala │ ├── WebSocketConnections.scala │ └── package.scala └── test ├── resources └── logback-test.xml └── scala └── org └── mashupbots └── socko ├── events ├── EndPointSpec.scala └── HttpHeadersSpec.scala ├── handlers ├── SnoopSpec.scala ├── StaticContentSpec.scala ├── TestHttpClient.scala ├── TestWebSocketClient.scala ├── WebSocketBroadcastSpec.scala ├── WebSocketIdleTimeoutSpec.scala └── WebSocketSpec.scala ├── infrastructure ├── LocalCacheSpec.scala ├── UtilSpec.scala └── WebLogEventSpec.scala ├── routes ├── ConcatenateRouteSpec.scala ├── HostRouteSpec.scala ├── MethodRouteSpec.scala ├── PathRouteSpec.scala ├── QueryStringRouteSpec.scala └── TestProcessingContext.scala └── webserver └── WebServerConfigSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/README.md -------------------------------------------------------------------------------- /licenses/LICENSE.akka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/licenses/LICENSE.akka.txt -------------------------------------------------------------------------------- /licenses/LICENSE.concurrentlinkedhashmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/licenses/LICENSE.concurrentlinkedhashmap.txt -------------------------------------------------------------------------------- /licenses/LICENSE.netty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/licenses/LICENSE.netty.txt -------------------------------------------------------------------------------- /licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/licenses/README.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.1 2 | -------------------------------------------------------------------------------- /project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/project/build.scala -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /project/unidoc.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/project/unidoc.scala -------------------------------------------------------------------------------- /sbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/README.md -------------------------------------------------------------------------------- /sbt/npn-boot-1.0.0.v20120402.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/npn-boot-1.0.0.v20120402.jar -------------------------------------------------------------------------------- /sbt/npn-boot-1.1.0.v20120525.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/npn-boot-1.1.0.v20120525.jar -------------------------------------------------------------------------------- /sbt/npn-boot-1.1.1.v20121030.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/npn-boot-1.1.1.v20121030.jar -------------------------------------------------------------------------------- /sbt/npn-boot-1.1.6.v20130911.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/npn-boot-1.1.6.v20130911.jar -------------------------------------------------------------------------------- /sbt/npn-boot-1.7_u25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/npn-boot-1.7_u25.jar -------------------------------------------------------------------------------- /sbt/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/sbt -------------------------------------------------------------------------------- /sbt/sbt-launch-0.12.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/sbt/sbt-launch-0.12.1.jar -------------------------------------------------------------------------------- /socko-buildtools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/.gitignore -------------------------------------------------------------------------------- /socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/BuildRunner.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/BuildRunner.scala -------------------------------------------------------------------------------- /socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/Builder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/Builder.scala -------------------------------------------------------------------------------- /socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/DirectoryWatcher.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/DirectoryWatcher.scala -------------------------------------------------------------------------------- /socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/src/main/scala/org/mashupbots/socko/buildtools/package.scala -------------------------------------------------------------------------------- /socko-buildtools/src/test/scala/org/mashupbots/socko/buildtools/BuildRunnerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/src/test/scala/org/mashupbots/socko/buildtools/BuildRunnerSpec.scala -------------------------------------------------------------------------------- /socko-buildtools/src/test/scala/org/mashupbots/socko/buildtools/BuilderSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/src/test/scala/org/mashupbots/socko/buildtools/BuilderSpec.scala -------------------------------------------------------------------------------- /socko-buildtools/src/test/scala/org/mashupbots/socko/buildtools/DirectoryWatcherSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-buildtools/src/test/scala/org/mashupbots/socko/buildtools/DirectoryWatcherSpec.scala -------------------------------------------------------------------------------- /socko-docs/docs/guides/basics.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/guides/basics.markdown -------------------------------------------------------------------------------- /socko-docs/docs/guides/build-tool.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/guides/build-tool.markdown -------------------------------------------------------------------------------- /socko-docs/docs/guides/configuration.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/guides/configuration.markdown -------------------------------------------------------------------------------- /socko-docs/docs/guides/dynamic-content.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/guides/dynamic-content.markdown -------------------------------------------------------------------------------- /socko-docs/docs/guides/quick-start.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/guides/quick-start.markdown -------------------------------------------------------------------------------- /socko-docs/docs/guides/static-content.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/guides/static-content.markdown -------------------------------------------------------------------------------- /socko-docs/docs/guides/user-guide.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/guides/user-guide.markdown -------------------------------------------------------------------------------- /socko-docs/docs/publishing_docs.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/docs/publishing_docs.markdown -------------------------------------------------------------------------------- /socko-docs/synch_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-docs/synch_docs.sh -------------------------------------------------------------------------------- /socko-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/.gitignore -------------------------------------------------------------------------------- /socko-examples/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/application.conf -------------------------------------------------------------------------------- /socko-examples/src/main/resources/foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/foo.html -------------------------------------------------------------------------------- /socko-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/css/hightlight.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/css/hightlight.default.css -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/css/screen.css -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/images/logo_small.png -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/images/pet_store_api.png -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/images/throbber.gif -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/images/wordnik_api.png -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/index.html -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/backbone-min.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/handlebars-1.0.rc.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/handlebars-1.0.rc.1.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/highlight.7.3.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/highlight.7.3.pack.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/jquery.ba-bbq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/jquery.ba-bbq.min.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/jquery.slideto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/jquery.slideto.min.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/jquery.wiggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/jquery.wiggle.min.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/swagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/swagger.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/lib/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/lib/underscore-min.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/swagger-ui.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/swaggerui/swagger-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/swaggerui/swagger-ui.min.js -------------------------------------------------------------------------------- /socko-examples/src/main/resources/testKeyStore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/resources/testKeyStore -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/benchmark/BenchmarkApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/benchmark/BenchmarkApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/benchmark/DynamicBenchmarkHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/benchmark/DynamicBenchmarkHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/benchmark/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/benchmark/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/builder/BuilderApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/builder/BuilderApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/builder/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/builder/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/config/AkkaConfigApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/config/AkkaConfigApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/config/CodedConfigApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/config/CodedConfigApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/config/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/config/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/fileupload/FileUploadApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/fileupload/FileUploadApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/fileupload/FileUploadHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/fileupload/FileUploadHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/fileupload/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/fileupload/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/querystring_post/QueryStringPostApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/querystring_post/QueryStringPostApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/querystring_post/QueryStringPostHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/querystring_post/QueryStringPostHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/querystring_post/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/querystring_post/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/quickstart/HelloApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/quickstart/HelloApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/quickstart/HelloHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/quickstart/HelloHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/quickstart/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/quickstart/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/Pet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/Pet.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/RestApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/RestApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/Store.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/Store.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/User.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/rest/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/routes/RouteApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/routes/RouteApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/routes/TimeHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/routes/TimeHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/routes/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/routes/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/secure/SecureApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/secure/SecureApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/secure/SecureHelloHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/secure/SecureHelloHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/secure/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/secure/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/snoop/SnoopApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/snoop/SnoopApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/snoop/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/snoop/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/spdy/DynamicHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/spdy/DynamicHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/spdy/SpdyApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/spdy/SpdyApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/spdy/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/spdy/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/streaming/StreamingApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/streaming/StreamingApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/streaming/StreamingHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/streaming/StreamingHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/streaming/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/streaming/package.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/weblog/CustomWebLogApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/weblog/CustomWebLogApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/weblog/HelloHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/weblog/HelloHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/weblog/WebLogApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/weblog/WebLogApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/AutobahnApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/AutobahnApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/AutobahnHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/AutobahnHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/ChatApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/ChatApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/ChatHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/ChatHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/WebSocketApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/WebSocketApp.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/WebSocketHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/WebSocketHandler.scala -------------------------------------------------------------------------------- /socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-examples/src/main/scala/org/mashupbots/socko/examples/websocket/package.scala -------------------------------------------------------------------------------- /socko-rest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/.gitignore -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestConfig.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestEndPoint.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestEndPoint.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestExceptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestExceptions.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestHandler.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestHttpWorker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestHttpWorker.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestModelMetaData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestModelMetaData.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestOperation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestOperation.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRegistration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRegistration.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRegistry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRegistry.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequest.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequestContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequestContext.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequestDeserializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequestDeserializer.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequestEvents.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestRequestEvents.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestResponse.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestResponseContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestResponseContext.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/RestResponseSerializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/RestResponseSerializer.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/SwaggerApiDocs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/SwaggerApiDocs.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/SwaggerReflector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/SwaggerReflector.scala -------------------------------------------------------------------------------- /socko-rest/src/main/scala/org/mashupbots/socko/rest/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/main/scala/org/mashupbots/socko/rest/package.scala -------------------------------------------------------------------------------- /socko-rest/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestApiDocsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestApiDocsSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestConfigSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestConfigSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestDeleteSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestDeleteSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestEndPointSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestEndPointSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestGetSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestGetSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestPostSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestPostSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestPutSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestPutSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestRegistrySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestRegistrySpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestRequestContextSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestRequestContextSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestRequestDeserializerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestRequestDeserializerSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/RestResponseSerializerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/RestResponseSerializerSpec.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/TestHttpClient.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/TestHttpClient.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteBytes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteBytes.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteObject.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeletePrimitive.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeletePrimitive.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteStreamUrl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteStreamUrl.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteVoid.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/delete/DeleteVoid.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetBytes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetBytes.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetObject.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetPrimitive.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetPrimitive.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetStreamUrl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetStreamUrl.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetVoid.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetVoid.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetWithErrors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/get/GetWithErrors.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/petshop/Pet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/petshop/Pet.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/petshop/Store.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/petshop/Store.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/petshop/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/petshop/User.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostBytes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostBytes.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostCustom.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostCustom.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostObject.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostPrimitive.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostPrimitive.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostVoid.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/post/PostVoid.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutBytes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutBytes.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutCustom.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutCustom.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutObject.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutPrimitive.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutPrimitive.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutVoid.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/put/PutVoid.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/test1/Requests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/test1/Requests.scala -------------------------------------------------------------------------------- /socko-rest/src/test/scala/org/mashupbots/socko/rest/test2/DuplicateAddress.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-rest/src/test/scala/org/mashupbots/socko/rest/test2/DuplicateAddress.scala -------------------------------------------------------------------------------- /socko-webserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/.gitignore -------------------------------------------------------------------------------- /socko-webserver/src/main/java/org/mashupbots/socko/netty/HttpChunkedFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/java/org/mashupbots/socko/netty/HttpChunkedFile.java -------------------------------------------------------------------------------- /socko-webserver/src/main/java/org/mashupbots/socko/netty/SpdyServerProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/java/org/mashupbots/socko/netty/SpdyServerProvider.java -------------------------------------------------------------------------------- /socko-webserver/src/main/resources/META-INF/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/resources/META-INF/mime.types -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/EndPoint.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/EndPoint.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpChunkEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpChunkEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpEventConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpEventConfig.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpHeaders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpHeaders.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpLastChunkEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpLastChunkEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpRequestEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpRequestEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpRequestMessage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpRequestMessage.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpResponseMessage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/HttpResponseMessage.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/SockoEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/SockoEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/WebSocketEventConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/WebSocketEventConfig.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/WebSocketFrameEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/WebSocketFrameEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/WebSocketHandshakeEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/WebSocketHandshakeEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/events/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/events/package.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/handlers/SnoopHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/handlers/SnoopHandler.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/handlers/StaticContentHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/handlers/StaticContentHandler.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/handlers/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/handlers/package.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/CharsetUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/CharsetUtil.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/ConfigUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/ConfigUtil.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/DateUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/DateUtil.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/HashUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/HashUtil.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/IOUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/IOUtil.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/LocalCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/LocalCache.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/Logger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/Logger.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/MimeTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/MimeTypes.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/ReflectUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/ReflectUtil.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/WebLogEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/WebLogEvent.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/WebLogFormat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/WebLogFormat.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/WebLogWriter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/WebLogWriter.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/infrastructure/package.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/package.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/routes/Routes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/routes/Routes.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/routes/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/routes/package.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/PipelineFactory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/PipelineFactory.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/ProtocolNegoitationHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/ProtocolNegoitationHandler.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/RequestHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/RequestHandler.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/SslManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/SslManager.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/WebServer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/WebServer.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/WebServerConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/WebServerConfig.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/WebSocketConnections.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/WebSocketConnections.scala -------------------------------------------------------------------------------- /socko-webserver/src/main/scala/org/mashupbots/socko/webserver/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/main/scala/org/mashupbots/socko/webserver/package.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/events/EndPointSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/events/EndPointSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/events/HttpHeadersSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/events/HttpHeadersSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/handlers/SnoopSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/handlers/SnoopSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/handlers/StaticContentSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/handlers/StaticContentSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/handlers/TestHttpClient.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/handlers/TestHttpClient.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/handlers/TestWebSocketClient.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/handlers/TestWebSocketClient.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/handlers/WebSocketBroadcastSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/handlers/WebSocketBroadcastSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/handlers/WebSocketIdleTimeoutSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/handlers/WebSocketIdleTimeoutSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/handlers/WebSocketSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/handlers/WebSocketSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/infrastructure/LocalCacheSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/infrastructure/LocalCacheSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/infrastructure/UtilSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/infrastructure/UtilSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/infrastructure/WebLogEventSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/infrastructure/WebLogEventSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/routes/ConcatenateRouteSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/routes/ConcatenateRouteSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/routes/HostRouteSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/routes/HostRouteSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/routes/MethodRouteSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/routes/MethodRouteSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/routes/PathRouteSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/routes/PathRouteSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/routes/QueryStringRouteSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/routes/QueryStringRouteSpec.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/routes/TestProcessingContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/routes/TestProcessingContext.scala -------------------------------------------------------------------------------- /socko-webserver/src/test/scala/org/mashupbots/socko/webserver/WebServerConfigSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mashupbots/socko/HEAD/socko-webserver/src/test/scala/org/mashupbots/socko/webserver/WebServerConfigSpec.scala --------------------------------------------------------------------------------