From 7a3973a09749f8f102d1f2d5fadd5f8b968f111d Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sat, 30 Jul 2016 06:07:46 -0400 Subject: [PATCH] Move syndicate-monolithic to new historical directory. --- historical/README.md | 4 ++++ {racket => historical}/syndicate-monolithic/README.md | 0 {racket => historical}/syndicate-monolithic/core.rkt | 0 .../syndicate-monolithic/demand-matcher.rkt | 0 {racket => historical}/syndicate-monolithic/drivers/tcp.rkt | 0 {racket => historical}/syndicate-monolithic/drivers/timer.rkt | 0 {racket => historical}/syndicate-monolithic/drivers/udp.rkt | 0 .../syndicate-monolithic/drivers/websocket.rkt | 0 .../syndicate-monolithic/examples/.gitignore | 0 {racket => historical}/syndicate-monolithic/examples/Makefile | 0 .../syndicate-monolithic/examples/bank-account.rkt | 0 .../syndicate-monolithic/examples/box-and-client.rkt | 0 .../syndicate-monolithic/examples/chat-client.rkt | 0 .../examples/chat-no-quit-world-no-nesting.rkt | 0 {racket => historical}/syndicate-monolithic/examples/echo.rkt | 0 .../syndicate-monolithic/examples/example-lang.rkt | 0 .../syndicate-monolithic/examples/example-layer.rkt | 0 .../syndicate-monolithic/examples/example-meta-echo.rkt | 0 .../syndicate-monolithic/examples/example-meta-echo2.rkt | 0 .../syndicate-monolithic/examples/example-plain.rkt | 0 .../syndicate-monolithic/examples/example-quit-world.rkt | 0 .../syndicate-monolithic/examples/mini-echo.rkt | 0 .../syndicate-monolithic/examples/tcp-hello.rkt | 0 .../syndicate-monolithic/examples/udp-hello-plain.rkt | 0 .../syndicate-monolithic/examples/ws-hello-ssl.rkt | 0 .../syndicate-monolithic/examples/ws-hello.rkt | 0 {racket => historical}/syndicate-monolithic/ground.rkt | 0 {racket => historical}/syndicate-monolithic/lang.rkt | 0 {racket => historical}/syndicate-monolithic/lang/reader.rkt | 0 {racket => historical}/syndicate-monolithic/main.rkt | 0 {racket => historical}/syndicate-monolithic/mux.rkt | 0 {racket => historical}/syndicate-monolithic/scn.rkt | 0 {racket => historical}/syndicate-monolithic/trace/stderr.rkt | 0 racket/Makefile | 2 +- racket/README.md | 3 --- 35 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 historical/README.md rename {racket => historical}/syndicate-monolithic/README.md (100%) rename {racket => historical}/syndicate-monolithic/core.rkt (100%) rename {racket => historical}/syndicate-monolithic/demand-matcher.rkt (100%) rename {racket => historical}/syndicate-monolithic/drivers/tcp.rkt (100%) rename {racket => historical}/syndicate-monolithic/drivers/timer.rkt (100%) rename {racket => historical}/syndicate-monolithic/drivers/udp.rkt (100%) rename {racket => historical}/syndicate-monolithic/drivers/websocket.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/.gitignore (100%) rename {racket => historical}/syndicate-monolithic/examples/Makefile (100%) rename {racket => historical}/syndicate-monolithic/examples/bank-account.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/box-and-client.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/chat-client.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/chat-no-quit-world-no-nesting.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/echo.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/example-lang.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/example-layer.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/example-meta-echo.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/example-meta-echo2.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/example-plain.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/example-quit-world.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/mini-echo.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/tcp-hello.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/udp-hello-plain.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/ws-hello-ssl.rkt (100%) rename {racket => historical}/syndicate-monolithic/examples/ws-hello.rkt (100%) rename {racket => historical}/syndicate-monolithic/ground.rkt (100%) rename {racket => historical}/syndicate-monolithic/lang.rkt (100%) rename {racket => historical}/syndicate-monolithic/lang/reader.rkt (100%) rename {racket => historical}/syndicate-monolithic/main.rkt (100%) rename {racket => historical}/syndicate-monolithic/mux.rkt (100%) rename {racket => historical}/syndicate-monolithic/scn.rkt (100%) rename {racket => historical}/syndicate-monolithic/trace/stderr.rkt (100%) diff --git a/historical/README.md b/historical/README.md new file mode 100644 index 0000000..e9be82c --- /dev/null +++ b/historical/README.md @@ -0,0 +1,4 @@ +# Historical implementations of Syndicate and its predecessors + + - `syndicate-monolithic` is an implementation of the "monolithic + state change notification" dialect of Syndicate for Racket. diff --git a/racket/syndicate-monolithic/README.md b/historical/syndicate-monolithic/README.md similarity index 100% rename from racket/syndicate-monolithic/README.md rename to historical/syndicate-monolithic/README.md diff --git a/racket/syndicate-monolithic/core.rkt b/historical/syndicate-monolithic/core.rkt similarity index 100% rename from racket/syndicate-monolithic/core.rkt rename to historical/syndicate-monolithic/core.rkt diff --git a/racket/syndicate-monolithic/demand-matcher.rkt b/historical/syndicate-monolithic/demand-matcher.rkt similarity index 100% rename from racket/syndicate-monolithic/demand-matcher.rkt rename to historical/syndicate-monolithic/demand-matcher.rkt diff --git a/racket/syndicate-monolithic/drivers/tcp.rkt b/historical/syndicate-monolithic/drivers/tcp.rkt similarity index 100% rename from racket/syndicate-monolithic/drivers/tcp.rkt rename to historical/syndicate-monolithic/drivers/tcp.rkt diff --git a/racket/syndicate-monolithic/drivers/timer.rkt b/historical/syndicate-monolithic/drivers/timer.rkt similarity index 100% rename from racket/syndicate-monolithic/drivers/timer.rkt rename to historical/syndicate-monolithic/drivers/timer.rkt diff --git a/racket/syndicate-monolithic/drivers/udp.rkt b/historical/syndicate-monolithic/drivers/udp.rkt similarity index 100% rename from racket/syndicate-monolithic/drivers/udp.rkt rename to historical/syndicate-monolithic/drivers/udp.rkt diff --git a/racket/syndicate-monolithic/drivers/websocket.rkt b/historical/syndicate-monolithic/drivers/websocket.rkt similarity index 100% rename from racket/syndicate-monolithic/drivers/websocket.rkt rename to historical/syndicate-monolithic/drivers/websocket.rkt diff --git a/racket/syndicate-monolithic/examples/.gitignore b/historical/syndicate-monolithic/examples/.gitignore similarity index 100% rename from racket/syndicate-monolithic/examples/.gitignore rename to historical/syndicate-monolithic/examples/.gitignore diff --git a/racket/syndicate-monolithic/examples/Makefile b/historical/syndicate-monolithic/examples/Makefile similarity index 100% rename from racket/syndicate-monolithic/examples/Makefile rename to historical/syndicate-monolithic/examples/Makefile diff --git a/racket/syndicate-monolithic/examples/bank-account.rkt b/historical/syndicate-monolithic/examples/bank-account.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/bank-account.rkt rename to historical/syndicate-monolithic/examples/bank-account.rkt diff --git a/racket/syndicate-monolithic/examples/box-and-client.rkt b/historical/syndicate-monolithic/examples/box-and-client.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/box-and-client.rkt rename to historical/syndicate-monolithic/examples/box-and-client.rkt diff --git a/racket/syndicate-monolithic/examples/chat-client.rkt b/historical/syndicate-monolithic/examples/chat-client.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/chat-client.rkt rename to historical/syndicate-monolithic/examples/chat-client.rkt diff --git a/racket/syndicate-monolithic/examples/chat-no-quit-world-no-nesting.rkt b/historical/syndicate-monolithic/examples/chat-no-quit-world-no-nesting.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/chat-no-quit-world-no-nesting.rkt rename to historical/syndicate-monolithic/examples/chat-no-quit-world-no-nesting.rkt diff --git a/racket/syndicate-monolithic/examples/echo.rkt b/historical/syndicate-monolithic/examples/echo.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/echo.rkt rename to historical/syndicate-monolithic/examples/echo.rkt diff --git a/racket/syndicate-monolithic/examples/example-lang.rkt b/historical/syndicate-monolithic/examples/example-lang.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/example-lang.rkt rename to historical/syndicate-monolithic/examples/example-lang.rkt diff --git a/racket/syndicate-monolithic/examples/example-layer.rkt b/historical/syndicate-monolithic/examples/example-layer.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/example-layer.rkt rename to historical/syndicate-monolithic/examples/example-layer.rkt diff --git a/racket/syndicate-monolithic/examples/example-meta-echo.rkt b/historical/syndicate-monolithic/examples/example-meta-echo.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/example-meta-echo.rkt rename to historical/syndicate-monolithic/examples/example-meta-echo.rkt diff --git a/racket/syndicate-monolithic/examples/example-meta-echo2.rkt b/historical/syndicate-monolithic/examples/example-meta-echo2.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/example-meta-echo2.rkt rename to historical/syndicate-monolithic/examples/example-meta-echo2.rkt diff --git a/racket/syndicate-monolithic/examples/example-plain.rkt b/historical/syndicate-monolithic/examples/example-plain.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/example-plain.rkt rename to historical/syndicate-monolithic/examples/example-plain.rkt diff --git a/racket/syndicate-monolithic/examples/example-quit-world.rkt b/historical/syndicate-monolithic/examples/example-quit-world.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/example-quit-world.rkt rename to historical/syndicate-monolithic/examples/example-quit-world.rkt diff --git a/racket/syndicate-monolithic/examples/mini-echo.rkt b/historical/syndicate-monolithic/examples/mini-echo.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/mini-echo.rkt rename to historical/syndicate-monolithic/examples/mini-echo.rkt diff --git a/racket/syndicate-monolithic/examples/tcp-hello.rkt b/historical/syndicate-monolithic/examples/tcp-hello.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/tcp-hello.rkt rename to historical/syndicate-monolithic/examples/tcp-hello.rkt diff --git a/racket/syndicate-monolithic/examples/udp-hello-plain.rkt b/historical/syndicate-monolithic/examples/udp-hello-plain.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/udp-hello-plain.rkt rename to historical/syndicate-monolithic/examples/udp-hello-plain.rkt diff --git a/racket/syndicate-monolithic/examples/ws-hello-ssl.rkt b/historical/syndicate-monolithic/examples/ws-hello-ssl.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/ws-hello-ssl.rkt rename to historical/syndicate-monolithic/examples/ws-hello-ssl.rkt diff --git a/racket/syndicate-monolithic/examples/ws-hello.rkt b/historical/syndicate-monolithic/examples/ws-hello.rkt similarity index 100% rename from racket/syndicate-monolithic/examples/ws-hello.rkt rename to historical/syndicate-monolithic/examples/ws-hello.rkt diff --git a/racket/syndicate-monolithic/ground.rkt b/historical/syndicate-monolithic/ground.rkt similarity index 100% rename from racket/syndicate-monolithic/ground.rkt rename to historical/syndicate-monolithic/ground.rkt diff --git a/racket/syndicate-monolithic/lang.rkt b/historical/syndicate-monolithic/lang.rkt similarity index 100% rename from racket/syndicate-monolithic/lang.rkt rename to historical/syndicate-monolithic/lang.rkt diff --git a/racket/syndicate-monolithic/lang/reader.rkt b/historical/syndicate-monolithic/lang/reader.rkt similarity index 100% rename from racket/syndicate-monolithic/lang/reader.rkt rename to historical/syndicate-monolithic/lang/reader.rkt diff --git a/racket/syndicate-monolithic/main.rkt b/historical/syndicate-monolithic/main.rkt similarity index 100% rename from racket/syndicate-monolithic/main.rkt rename to historical/syndicate-monolithic/main.rkt diff --git a/racket/syndicate-monolithic/mux.rkt b/historical/syndicate-monolithic/mux.rkt similarity index 100% rename from racket/syndicate-monolithic/mux.rkt rename to historical/syndicate-monolithic/mux.rkt diff --git a/racket/syndicate-monolithic/scn.rkt b/historical/syndicate-monolithic/scn.rkt similarity index 100% rename from racket/syndicate-monolithic/scn.rkt rename to historical/syndicate-monolithic/scn.rkt diff --git a/racket/syndicate-monolithic/trace/stderr.rkt b/historical/syndicate-monolithic/trace/stderr.rkt similarity index 100% rename from racket/syndicate-monolithic/trace/stderr.rkt rename to historical/syndicate-monolithic/trace/stderr.rkt diff --git a/racket/Makefile b/racket/Makefile index b073420..158413e 100644 --- a/racket/Makefile +++ b/racket/Makefile @@ -1,5 +1,5 @@ PACKAGENAME=syndicate -COLLECTS=syndicate syndicate-monolithic syndicate-gl +COLLECTS=syndicate syndicate-gl all: setup diff --git a/racket/README.md b/racket/README.md index eea6edf..f5c7cf8 100644 --- a/racket/README.md +++ b/racket/README.md @@ -20,9 +20,6 @@ implementation of Syndicate in `syndicate`, which includes - `syndicate-gl` is a Syndicate interface to 2D OpenGL based graphics - - `syndicate-monolithic` is an implementation of the "monolithic - state change notification" dialect of Syndicate - ## Compiling and running the code You will need Racket version 6.4.0.14 or later.