From: Robert Sesek Date: Tue, 3 Apr 2012 12:51:02 +0000 (-0400) Subject: Move files around to organize along packages X-Git-Tag: 0.9.656.0~36 X-Git-Url: https://src.bluestatic.org/?a=commitdiff_plain;h=e494bb6e15c91329655e1718c8914aa7bf53f0ad;p=armadillo.git Move files around to organize along packages --- diff --git a/build.py b/build.py index 74acfd3..86950a8 100755 --- a/build.py +++ b/build.py @@ -22,7 +22,7 @@ SRC_PATH = os.path.join(ROOT, 'src') PROD_PATH = os.path.join(ROOT, 'out') FE_PATH = os.path.join(ROOT, 'web_frontend') -CLOSURE_COMPILER = os.path.join(ROOT, 'closure-compiler.jar') +CLOSURE_COMPILER = os.path.join(ROOT, 'build', 'closure-compiler.jar') VERSION_FILE = os.path.join(FE_PATH, 'version.js.proto') diff --git a/src/config.go b/config/config.go similarity index 100% rename from src/config.go rename to config/config.go diff --git a/config.sample.json b/config/config.sample.json similarity index 100% rename from config.sample.json rename to config/config.sample.json diff --git a/web_frontend/actor.js b/frontend/actor.js similarity index 100% rename from web_frontend/actor.js rename to frontend/actor.js diff --git a/web_frontend/file.js b/frontend/file.js similarity index 100% rename from web_frontend/file.js rename to frontend/file.js diff --git a/web_frontend/index.html b/frontend/index.html similarity index 100% rename from web_frontend/index.html rename to frontend/index.html diff --git a/web_frontend/jquery-1.7.1.js b/frontend/jquery-1.7.1.js similarity index 100% rename from web_frontend/jquery-1.7.1.js rename to frontend/jquery-1.7.1.js diff --git a/web_frontend/main.js b/frontend/main.js similarity index 100% rename from web_frontend/main.js rename to frontend/main.js diff --git a/web_frontend/path_control.js b/frontend/path_control.js similarity index 100% rename from web_frontend/path_control.js rename to frontend/path_control.js diff --git a/web_frontend/reset.css b/frontend/reset.css similarity index 100% rename from web_frontend/reset.css rename to frontend/reset.css diff --git a/web_frontend/screen.css b/frontend/screen.css similarity index 100% rename from web_frontend/screen.css rename to frontend/screen.css diff --git a/web_frontend/tv_renamer.js b/frontend/tv_renamer.js similarity index 100% rename from web_frontend/tv_renamer.js rename to frontend/tv_renamer.js diff --git a/web_frontend/utils.js b/frontend/utils.js similarity index 100% rename from web_frontend/utils.js rename to frontend/utils.js diff --git a/web_frontend/version.js b/frontend/version.js similarity index 100% rename from web_frontend/version.js rename to frontend/version.js diff --git a/src/main.go b/main.go similarity index 100% rename from src/main.go rename to main.go diff --git a/src/paths.go b/server/paths.go similarity index 100% rename from src/paths.go rename to server/paths.go diff --git a/src/server.go b/server/server.go similarity index 100% rename from src/server.go rename to server/server.go diff --git a/src/tv_rename.go b/server/tv_rename.go similarity index 100% rename from src/tv_rename.go rename to server/tv_rename.go