mizzao / meteor-sharejs

Meteor smart package for transparently adding ShareJS editors to an app
MIT License
225 stars 53 forks source link

GET http://ajaxorg.github.com/ace/build/src/ace.js 503 (Connection timed out) #3

Closed nikolaygit closed 10 years ago

nikolaygit commented 10 years ago

this is the message I see in my JS console in Chrome

GET http://ajaxorg.github.com/ace/build/src/ace.js 503 (Connection timed out) 

the request comes from:

<!-- This always gets latest version of Ace editor -->
    <script src="http://ajaxorg.github.com/ace/build/src/ace.js"></script>

If I try to open the http://ajaxorg.github.com/ace/build/src/ace.js in a separate tab I get the error:

Error 503 Backend is unhealthy
mizzao commented 10 years ago

@ngeorgiev this looks like a temporary problem with the GitHub CDN. Sorry for the slow response as I've been traveling.

Ideally, this file should be downloaded once during the build process and then served directly by the Meteor server instead of having clients grab via the <script> tag. This was just a quick and dirty way of doing it without having to include distributions of ace.js in the repository.

It's on my to-do list to figure out how to download and serve files as part of the build process.

nikolaygit commented 10 years ago

Thanks @mizzao