ericabouaf / wireit

A javascript wiring library to create web wirable interfaces for dataflow applications, visual programming languages or graphical modeling.
http://neyric.github.io/wireit/docs/
Other
520 stars 90 forks source link

Fix HTTPS #98

Closed flaviut closed 7 years ago

flaviut commented 7 years ago

I basically just did

sed -i 's/http:\/\/yui.yahooapis.com/https:\/\/yui-s.yahooapis.com/g' $(git ls-files)
sed -i 's/http:\/\/www.gnu.org/https:\/\/www.gnu.org/g' $(git ls-files)
sed -i 's/http:\/\/github.com/https:\/\/github.com/g' $(git ls-files)
sed -i 's/http:\/\/twitter.com/https:\/\/twitter.com/g' $(git ls-files)
sed -i 's/http:\/\/axosoft.github.com/https:\/\/axosoft.github.com/g' $(git ls-files)
sed -i 's/http:\/\/www.google-analytics.com/https:\/\/www.google-analytics.com/g' $(git ls-files)
sed -i 's/http:\/\/fonts.googleapis.com/https:\/\/fonts.googleapis.com/g' $(git ls-files)
sed -i 's/http:\/\/yuilibrary.com/https:\/\/yuilibrary.com/g' $(git ls-files)
sed -i 's/http:\/\/html5shim.googlecode.com/https:\/\/html5shim.googlecode.com/g' $(git ls-files)

This fixes mixed content, but some of the examples are still broken for other reasons.