Renamed src/transports to src/ajax (in case we need prefilters in the future and...
authorjaubourg <j@ubourg.net>
Thu, 6 Jan 2011 00:17:31 +0000 (01:17 +0100)
committerjaubourg <j@ubourg.net>
Thu, 6 Jan 2011 00:17:31 +0000 (01:17 +0100)
Makefile
Rakefile
build.xml
src/ajax/jsonp.js [moved from src/transports/jsonp.js with 100% similarity]
src/ajax/script.js [moved from src/transports/script.js with 100% similarity]
src/ajax/xhr.js [moved from src/transports/xhr.js with 100% similarity]
test/index.html

index cf98554..6a71722 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,9 +24,9 @@ BASE_FILES = ${SRC_DIR}/core.js\
        ${SRC_DIR}/manipulation.js\
        ${SRC_DIR}/css.js\
        ${SRC_DIR}/ajax.js\
-       ${SRC_DIR}/transports/jsonp.js\
-       ${SRC_DIR}/transports/script.js\
-       ${SRC_DIR}/transports/xhr.js\
+       ${SRC_DIR}/ajax/jsonp.js\
+       ${SRC_DIR}/ajax/script.js\
+       ${SRC_DIR}/ajax/xhr.js\
        ${SRC_DIR}/effects.js\
        ${SRC_DIR}/offset.js\
        ${SRC_DIR}/dimensions.js
index fd5fc18..bf7ee2b 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -22,9 +22,9 @@ base_files = %w{
   manipulation
   css
   ajax
-  transports/jsonp
-  transports/script
-  transports/xhr
+  ajax/jsonp
+  ajax/script
+  ajax/xhr
   effects
   offset
   dimensions
index d4cd39d..87b31e1 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -63,9 +63,9 @@
                        <fileset file="src/manipulation.js" />
                        <fileset file="src/css.js" />
                        <fileset file="src/ajax.js" />
-                       <fileset file="src/transports/jsonp.js" />
-                       <fileset file="src/transports/script.js" />
-                       <fileset file="src/transports/xhr.js" />
+                       <fileset file="src/ajax/jsonp.js" />
+                       <fileset file="src/ajax/script.js" />
+                       <fileset file="src/ajax/xhr.js" />
                        <fileset file="src/effects.js" />
                        <fileset file="src/offset.js" />
                        <fileset file="src/dimensions.js" />
similarity index 100%
rename from src/transports/jsonp.js
rename to src/ajax/jsonp.js
similarity index 100%
rename from src/transports/script.js
rename to src/ajax/script.js
similarity index 100%
rename from src/transports/xhr.js
rename to src/ajax/xhr.js
index accd349..bbeda63 100644 (file)
@@ -20,9 +20,9 @@
        <script src="../src/manipulation.js"></script>
        <script src="../src/css.js"></script>
        <script src="../src/ajax.js"></script>
-       <script src="../src/transports/jsonp.js"></script>
-       <script src="../src/transports/script.js"></script>
-       <script src="../src/transports/xhr.js"></script>
+       <script src="../src/ajax/jsonp.js"></script>
+       <script src="../src/ajax/script.js"></script>
+       <script src="../src/ajax/xhr.js"></script>
        <script src="../src/effects.js"></script>
        <script src="../src/offset.js"></script>
        <script src="../src/dimensions.js"></script>