├── .gitattributes ├── .gitignore ├── .settings └── com.google.dart.tools.core.prefs ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin └── rspc.dart ├── example ├── hello-ajax │ ├── README.md │ ├── favicon.ico │ ├── hello.dart │ ├── hello.dart.js │ ├── index.html │ ├── theme.css │ └── webapp │ │ └── main.dart ├── hello-mvc │ ├── README.md │ ├── directory.png │ ├── favicon.ico │ ├── file.png │ ├── listView.rsp.html │ ├── theme.css │ └── webapp │ │ ├── listView.rsp.dart │ │ └── main.dart ├── hello-rsp │ ├── README.md │ ├── favicon.ico │ ├── helloView.rsp.html │ ├── theme.css │ └── webapp │ │ ├── helloView.rsp.dart │ │ └── main.dart ├── hello-static │ ├── README.md │ ├── favicon.ico │ ├── index.html │ ├── theme.css │ └── webapp │ │ └── main.dart └── hello-templating │ ├── README.md │ ├── classic.rsp.html │ ├── footer.html │ ├── header.html │ ├── home.rsp.html │ ├── sidebar.rsp.html │ ├── theme.css │ └── webapp │ ├── classic.rsp.dart │ ├── home.rsp.dart │ ├── main.dart │ └── sidebar.rsp.dart ├── lib ├── plugin.dart ├── proxy.dart ├── rspc.dart ├── src │ ├── connect.dart │ ├── connect_impl.dart │ ├── plugin │ │ ├── loader.dart │ │ ├── loader_impl.dart │ │ └── router.dart │ ├── rsp_util.dart │ ├── rspc │ │ ├── build.dart │ │ ├── compiler.dart │ │ ├── main.dart │ │ ├── tag.dart │ │ └── tag_util.dart │ ├── server.dart │ ├── server_impl.dart │ └── version.dart └── stream.dart ├── pubspec.yaml ├── test ├── features │ ├── 404.html │ ├── forwardee.html │ ├── forwarderView.rsp.html │ ├── frag.html │ ├── fragView.rsp.html │ ├── includerView.rsp.html │ ├── index.html │ ├── json.rsp.html │ ├── lastModified.rsp.html │ ├── search.html │ ├── searchResult.rsp.html │ ├── stack box │ │ └── space here.txt │ ├── theme.css │ └── webapp │ │ ├── forwarderView.rsp.dart │ │ ├── fragView.rsp.dart │ │ ├── includerView.rsp.dart │ │ ├── json.rsp.dart │ │ ├── lastModified.rsp.dart │ │ ├── main.dart │ │ └── searchResult.rsp.dart ├── issue29 │ ├── static │ │ └── index.html │ └── webapp │ │ └── main.dart ├── issue30 │ ├── test.html │ └── webapp │ │ └── main.dart ├── issue45 │ └── app.dart ├── regex_performance.dart ├── run.sh └── syntax │ ├── Issue4.rsp.dart │ ├── Issue4.rsp.html │ ├── include.rsp.dart │ ├── include.rsp.html │ ├── lastModified1.rsp.dart │ ├── lastModified1.rsp.html │ ├── lastModified2.rsp.dart │ ├── lastModified2.rsp.html │ ├── syntax.rsp.dart │ └── syntax.rsp.html └── tool ├── d2j └── rspc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.settings/com.google.dart.tools.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 30 17:28:29 CST 2013 2 | dart2jsFlags=--minify 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/rspc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/bin/rspc.dart -------------------------------------------------------------------------------- /example/hello-ajax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-ajax/README.md -------------------------------------------------------------------------------- /example/hello-ajax/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-ajax/favicon.ico -------------------------------------------------------------------------------- /example/hello-ajax/hello.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-ajax/hello.dart -------------------------------------------------------------------------------- /example/hello-ajax/hello.dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-ajax/hello.dart.js -------------------------------------------------------------------------------- /example/hello-ajax/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-ajax/index.html -------------------------------------------------------------------------------- /example/hello-ajax/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-ajax/theme.css -------------------------------------------------------------------------------- /example/hello-ajax/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-ajax/webapp/main.dart -------------------------------------------------------------------------------- /example/hello-mvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/README.md -------------------------------------------------------------------------------- /example/hello-mvc/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/directory.png -------------------------------------------------------------------------------- /example/hello-mvc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/favicon.ico -------------------------------------------------------------------------------- /example/hello-mvc/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/file.png -------------------------------------------------------------------------------- /example/hello-mvc/listView.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/listView.rsp.html -------------------------------------------------------------------------------- /example/hello-mvc/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/theme.css -------------------------------------------------------------------------------- /example/hello-mvc/webapp/listView.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/webapp/listView.rsp.dart -------------------------------------------------------------------------------- /example/hello-mvc/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-mvc/webapp/main.dart -------------------------------------------------------------------------------- /example/hello-rsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-rsp/README.md -------------------------------------------------------------------------------- /example/hello-rsp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-rsp/favicon.ico -------------------------------------------------------------------------------- /example/hello-rsp/helloView.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-rsp/helloView.rsp.html -------------------------------------------------------------------------------- /example/hello-rsp/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-rsp/theme.css -------------------------------------------------------------------------------- /example/hello-rsp/webapp/helloView.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-rsp/webapp/helloView.rsp.dart -------------------------------------------------------------------------------- /example/hello-rsp/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-rsp/webapp/main.dart -------------------------------------------------------------------------------- /example/hello-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-static/README.md -------------------------------------------------------------------------------- /example/hello-static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-static/favicon.ico -------------------------------------------------------------------------------- /example/hello-static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-static/index.html -------------------------------------------------------------------------------- /example/hello-static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-static/theme.css -------------------------------------------------------------------------------- /example/hello-static/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-static/webapp/main.dart -------------------------------------------------------------------------------- /example/hello-templating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/README.md -------------------------------------------------------------------------------- /example/hello-templating/classic.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/classic.rsp.html -------------------------------------------------------------------------------- /example/hello-templating/footer.html: -------------------------------------------------------------------------------- 1 | Copyright © Superdog Inc. 2 | -------------------------------------------------------------------------------- /example/hello-templating/header.html: -------------------------------------------------------------------------------- 1 |

Superdog Inc.

2 | -------------------------------------------------------------------------------- /example/hello-templating/home.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/home.rsp.html -------------------------------------------------------------------------------- /example/hello-templating/sidebar.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/sidebar.rsp.html -------------------------------------------------------------------------------- /example/hello-templating/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/theme.css -------------------------------------------------------------------------------- /example/hello-templating/webapp/classic.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/webapp/classic.rsp.dart -------------------------------------------------------------------------------- /example/hello-templating/webapp/home.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/webapp/home.rsp.dart -------------------------------------------------------------------------------- /example/hello-templating/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/webapp/main.dart -------------------------------------------------------------------------------- /example/hello-templating/webapp/sidebar.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/example/hello-templating/webapp/sidebar.rsp.dart -------------------------------------------------------------------------------- /lib/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/plugin.dart -------------------------------------------------------------------------------- /lib/proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/proxy.dart -------------------------------------------------------------------------------- /lib/rspc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/rspc.dart -------------------------------------------------------------------------------- /lib/src/connect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/connect.dart -------------------------------------------------------------------------------- /lib/src/connect_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/connect_impl.dart -------------------------------------------------------------------------------- /lib/src/plugin/loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/plugin/loader.dart -------------------------------------------------------------------------------- /lib/src/plugin/loader_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/plugin/loader_impl.dart -------------------------------------------------------------------------------- /lib/src/plugin/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/plugin/router.dart -------------------------------------------------------------------------------- /lib/src/rsp_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/rsp_util.dart -------------------------------------------------------------------------------- /lib/src/rspc/build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/rspc/build.dart -------------------------------------------------------------------------------- /lib/src/rspc/compiler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/rspc/compiler.dart -------------------------------------------------------------------------------- /lib/src/rspc/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/rspc/main.dart -------------------------------------------------------------------------------- /lib/src/rspc/tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/rspc/tag.dart -------------------------------------------------------------------------------- /lib/src/rspc/tag_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/rspc/tag_util.dart -------------------------------------------------------------------------------- /lib/src/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/server.dart -------------------------------------------------------------------------------- /lib/src/server_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/server_impl.dart -------------------------------------------------------------------------------- /lib/src/version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/src/version.dart -------------------------------------------------------------------------------- /lib/stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/lib/stream.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/features/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/404.html -------------------------------------------------------------------------------- /test/features/forwardee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/forwardee.html -------------------------------------------------------------------------------- /test/features/forwarderView.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/forwarderView.rsp.html -------------------------------------------------------------------------------- /test/features/frag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/frag.html -------------------------------------------------------------------------------- /test/features/fragView.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/fragView.rsp.html -------------------------------------------------------------------------------- /test/features/includerView.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/includerView.rsp.html -------------------------------------------------------------------------------- /test/features/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/index.html -------------------------------------------------------------------------------- /test/features/json.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/json.rsp.html -------------------------------------------------------------------------------- /test/features/lastModified.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/lastModified.rsp.html -------------------------------------------------------------------------------- /test/features/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/search.html -------------------------------------------------------------------------------- /test/features/searchResult.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/searchResult.rsp.html -------------------------------------------------------------------------------- /test/features/stack box/space here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/stack box/space here.txt -------------------------------------------------------------------------------- /test/features/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/theme.css -------------------------------------------------------------------------------- /test/features/webapp/forwarderView.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/webapp/forwarderView.rsp.dart -------------------------------------------------------------------------------- /test/features/webapp/fragView.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/webapp/fragView.rsp.dart -------------------------------------------------------------------------------- /test/features/webapp/includerView.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/webapp/includerView.rsp.dart -------------------------------------------------------------------------------- /test/features/webapp/json.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/webapp/json.rsp.dart -------------------------------------------------------------------------------- /test/features/webapp/lastModified.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/webapp/lastModified.rsp.dart -------------------------------------------------------------------------------- /test/features/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/webapp/main.dart -------------------------------------------------------------------------------- /test/features/webapp/searchResult.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/features/webapp/searchResult.rsp.dart -------------------------------------------------------------------------------- /test/issue29/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/issue29/static/index.html -------------------------------------------------------------------------------- /test/issue29/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/issue29/webapp/main.dart -------------------------------------------------------------------------------- /test/issue30/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/issue30/test.html -------------------------------------------------------------------------------- /test/issue30/webapp/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/issue30/webapp/main.dart -------------------------------------------------------------------------------- /test/issue45/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/issue45/app.dart -------------------------------------------------------------------------------- /test/regex_performance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/regex_performance.dart -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/syntax/Issue4.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/Issue4.rsp.dart -------------------------------------------------------------------------------- /test/syntax/Issue4.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/Issue4.rsp.html -------------------------------------------------------------------------------- /test/syntax/include.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/include.rsp.dart -------------------------------------------------------------------------------- /test/syntax/include.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/include.rsp.html -------------------------------------------------------------------------------- /test/syntax/lastModified1.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/lastModified1.rsp.dart -------------------------------------------------------------------------------- /test/syntax/lastModified1.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/lastModified1.rsp.html -------------------------------------------------------------------------------- /test/syntax/lastModified2.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/lastModified2.rsp.dart -------------------------------------------------------------------------------- /test/syntax/lastModified2.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/lastModified2.rsp.html -------------------------------------------------------------------------------- /test/syntax/syntax.rsp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/syntax.rsp.dart -------------------------------------------------------------------------------- /test/syntax/syntax.rsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/test/syntax/syntax.rsp.html -------------------------------------------------------------------------------- /tool/d2j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/tool/d2j -------------------------------------------------------------------------------- /tool/rspc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/stream/HEAD/tool/rspc --------------------------------------------------------------------------------