aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorIgor Minar2012-08-20 08:28:04 -0700
committerIgor Minar2012-08-24 14:54:35 -0700
commit4a4b28dbf3af9a1871f00dfeded6da9eda557412 (patch)
tree9ff84de1b3636193a95e161b271067e8b403c2c2 /lib
parent3e12bc481d7a6b089c32e79b45991294d046872f (diff)
downloadangular.js-4a4b28dbf3af9a1871f00dfeded6da9eda557412.tar.bz2
chore(docs): use GAE and Google CDN for docs
Short summary: if you use local node server everything should work as before, if you use GAE, everything should work now as well, but we pull assets from CDN. - GAE doesn't support ':' in filenames, so I had to replace it with '_' but only in the filename, all servers were reconfigured to rewrite the urls from : to _ when doing file lookup - We now pull angular assets from google CDN when deployed on GAE (locally or in production). When running on a non GAE server we pull assets from ../ directory as before - Since only certain versions of Angular are available on CDN and we want to be able to autodeploy docs, I had to pin down the Angular files to a "stable" version when running on GAE
Diffstat (limited to 'lib')
-rw-r--r--lib/nodeserver/server.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/nodeserver/server.js b/lib/nodeserver/server.js
index ab79c299..f4f9457a 100644
--- a/lib/nodeserver/server.js
+++ b/lib/nodeserver/server.js
@@ -108,6 +108,10 @@ StaticServlet.prototype.handleRequest = function(req, res) {
path = path.replace(match[0], '/index.html');
sys.puts('Rewrite to ' + path);
}
+
+ // rewrite : to _ to be GAE-friendly
+ path = path.replace(':', '_');
+
// end of docs rewriting
fs.stat(path, function(err, stat) {