Fix bug 153, findPosX and findPosY don't take borders into account. This also fixes...
[dygraphs.git] / push-to-web.sh
index 422f0fd..00448c3 100755 (executable)
@@ -9,6 +9,7 @@ fi
 
 set -x
 site=$1
+
 # Produce dygraph-combined.js.
 ./generate-combined.sh
 
@@ -18,10 +19,14 @@ chmod a+r docs/options.html
 if [ -s docs/options.html ] ; then
   ./generate-jsdoc.sh
 
+  # Make sure everything will be readable on the web.
+  # This is like "chmod -R a+rX", but excludes the .git directory.
+  find . -path ./.git -prune -o -print | xargs chmod a+rX
+
   # Copy everything to the site.
-  rsync -avzr gallery common tests jsdoc experimental plugins $site \
+  rsync -avzr gallery strftime rgbcolor common tests jsdoc experimental plugins $site \
   && \
-  rsync -avzr dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/ $site/
+  rsync -avzr dashed-canvas.js stacktrace.js dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/* $site/
 else
   echo "generate-documentation.py failed"
 fi