From 843baa11c05f0fe29d07c43ef39cea03fe7e506f Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Sat, 9 Feb 2013 15:11:19 -0800 Subject: [PATCH] graph -> core This matches how it's described in ARCHITECTURE.md. --- Makefile | 2 +- combobox.html | 12 +++++------ index.html | 14 ++++++------- js/id/{graph => core}/difference.js | 0 js/id/{graph => core}/entity.js | 0 js/id/{graph => core}/graph.js | 0 js/id/{graph => core}/history.js | 0 js/id/{graph => core}/node.js | 0 js/id/{graph => core}/relation.js | 0 js/id/{graph => core}/way.js | 0 test/index.html | 28 ++++++++++++------------- test/index_packaged.html | 14 ++++++------- test/rendering.html | 12 +++++------ test/spec/{graph => core}/difference.js | 0 test/spec/{graph => core}/entity.js | 0 test/spec/{graph => core}/graph.js | 0 test/spec/{graph => core}/history.js | 0 test/spec/{graph => core}/node.js | 0 test/spec/{graph => core}/relation.js | 0 test/spec/{graph => core}/way.js | 0 20 files changed, 41 insertions(+), 41 deletions(-) rename js/id/{graph => core}/difference.js (100%) rename js/id/{graph => core}/entity.js (100%) rename js/id/{graph => core}/graph.js (100%) rename js/id/{graph => core}/history.js (100%) rename js/id/{graph => core}/node.js (100%) rename js/id/{graph => core}/relation.js (100%) rename js/id/{graph => core}/way.js (100%) rename test/spec/{graph => core}/difference.js (100%) rename test/spec/{graph => core}/entity.js (100%) rename test/spec/{graph => core}/graph.js (100%) rename test/spec/{graph => core}/history.js (100%) rename test/spec/{graph => core}/node.js (100%) rename test/spec/{graph => core}/relation.js (100%) rename test/spec/{graph => core}/way.js (100%) diff --git a/Makefile b/Makefile index 30c179741..826337109 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ all: \ js/id/modes/*.js \ js/id/operations.js \ js/id/operations/*.js \ - js/id/graph/*.js \ + js/id/core/*.js \ js/id/renderer/*.js \ js/id/svg.js \ js/id/svg/*.js \ diff --git a/combobox.html b/combobox.html index 92949ecfa..63a2c9757 100644 --- a/combobox.html +++ b/combobox.html @@ -114,12 +114,12 @@ - - - - - - + + + + + + diff --git a/index.html b/index.html index 0701835f3..40a424899 100644 --- a/index.html +++ b/index.html @@ -130,13 +130,13 @@ - - - - - - - + + + + + + + diff --git a/js/id/graph/difference.js b/js/id/core/difference.js similarity index 100% rename from js/id/graph/difference.js rename to js/id/core/difference.js diff --git a/js/id/graph/entity.js b/js/id/core/entity.js similarity index 100% rename from js/id/graph/entity.js rename to js/id/core/entity.js diff --git a/js/id/graph/graph.js b/js/id/core/graph.js similarity index 100% rename from js/id/graph/graph.js rename to js/id/core/graph.js diff --git a/js/id/graph/history.js b/js/id/core/history.js similarity index 100% rename from js/id/graph/history.js rename to js/id/core/history.js diff --git a/js/id/graph/node.js b/js/id/core/node.js similarity index 100% rename from js/id/graph/node.js rename to js/id/core/node.js diff --git a/js/id/graph/relation.js b/js/id/core/relation.js similarity index 100% rename from js/id/graph/relation.js rename to js/id/core/relation.js diff --git a/js/id/graph/way.js b/js/id/core/way.js similarity index 100% rename from js/id/graph/way.js rename to js/id/core/way.js diff --git a/test/index.html b/test/index.html index ca610d714..52e13f03d 100644 --- a/test/index.html +++ b/test/index.html @@ -124,13 +124,13 @@ - - - - - - - + + + + + + + @@ -163,13 +163,13 @@ - - - - - - - + + + + + + + diff --git a/test/index_packaged.html b/test/index_packaged.html index 1102336d9..cd3451357 100644 --- a/test/index_packaged.html +++ b/test/index_packaged.html @@ -43,13 +43,13 @@ - - - - - - - + + + + + + + diff --git a/test/rendering.html b/test/rendering.html index ff624305a..cd75a848b 100644 --- a/test/rendering.html +++ b/test/rendering.html @@ -26,12 +26,12 @@ - - - - - - + + + + + +
diff --git a/test/spec/graph/difference.js b/test/spec/core/difference.js similarity index 100% rename from test/spec/graph/difference.js rename to test/spec/core/difference.js diff --git a/test/spec/graph/entity.js b/test/spec/core/entity.js similarity index 100% rename from test/spec/graph/entity.js rename to test/spec/core/entity.js diff --git a/test/spec/graph/graph.js b/test/spec/core/graph.js similarity index 100% rename from test/spec/graph/graph.js rename to test/spec/core/graph.js diff --git a/test/spec/graph/history.js b/test/spec/core/history.js similarity index 100% rename from test/spec/graph/history.js rename to test/spec/core/history.js diff --git a/test/spec/graph/node.js b/test/spec/core/node.js similarity index 100% rename from test/spec/graph/node.js rename to test/spec/core/node.js diff --git a/test/spec/graph/relation.js b/test/spec/core/relation.js similarity index 100% rename from test/spec/graph/relation.js rename to test/spec/core/relation.js diff --git a/test/spec/graph/way.js b/test/spec/core/way.js similarity index 100% rename from test/spec/graph/way.js rename to test/spec/core/way.js