diff options
author | jaubourg <j@ubourg.net> | 2011-01-06 01:17:31 +0100 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-01-06 01:17:31 +0100 |
commit | c43b078c6911027fd4124d542446ad0098662f6a (patch) | |
tree | 4f24c342ae9cf5dac0dfc6e38c5112c9c545957a | |
parent | e56de77df90e50b9999a02e57241b1cf498b0fe4 (diff) | |
download | jquery-c43b078c6911027fd4124d542446ad0098662f6a.tar.gz jquery-c43b078c6911027fd4124d542446ad0098662f6a.zip |
Renamed src/transports to src/ajax (in case we need prefilters in the future and to avoid a separate prefilters directory).
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | Rakefile | 6 | ||||
-rw-r--r-- | build.xml | 6 | ||||
-rw-r--r-- | src/ajax/jsonp.js (renamed from src/transports/jsonp.js) | 0 | ||||
-rw-r--r-- | src/ajax/script.js (renamed from src/transports/script.js) | 0 | ||||
-rw-r--r-- | src/ajax/xhr.js (renamed from src/transports/xhr.js) | 0 | ||||
-rw-r--r-- | test/index.html | 6 |
7 files changed, 12 insertions, 12 deletions
@@ -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 @@ -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 @@ -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" /> diff --git a/src/transports/jsonp.js b/src/ajax/jsonp.js index 5cfb7834a..5cfb7834a 100644 --- a/src/transports/jsonp.js +++ b/src/ajax/jsonp.js diff --git a/src/transports/script.js b/src/ajax/script.js index 0db0de6c7..0db0de6c7 100644 --- a/src/transports/script.js +++ b/src/ajax/script.js diff --git a/src/transports/xhr.js b/src/ajax/xhr.js index 7d7140259..7d7140259 100644 --- a/src/transports/xhr.js +++ b/src/ajax/xhr.js diff --git a/test/index.html b/test/index.html index accd349f9..bbeda63a6 100644 --- a/test/index.html +++ b/test/index.html @@ -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> |