--
You received this message because you are subscribed to the Google Groups "clojurebridge-curriculum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojurebridge-curr...@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurebridge-curriculum.
For more options, visit https://groups.google.com/d/optout.
The source is in the slides folder (on master of curriculum). It needs copying to the gh-pages branch root folder and pushing in order to republish.
If you open files of gh-pages by web browser, those are exactly the same as http://clojurebridge.github.io/curriculum. But, if you open the files by editor, master branch's slides/*.html and gh-pages' *.html are totally different ones. In gh-pages branch, hoplon (generated?) pages are. I guess we need to run some command to re-generate hoplon pages to sync changes in master. Unfortunately, I'm not sure what is the command or tool for converting code.
On Dec 15, 2014, at 5:58 PM, Yoko Harada <yo...@cognitect.com> wrote:If you open files of gh-pages by web browser, those are exactly the same as http://clojurebridge.github.io/curriculum. But, if you open the files by editor, master branch's slides/*.html and gh-pages' *.html are totally different ones. In gh-pages branch, hoplon (generated?) pages are. I guess we need to run some command to re-generate hoplon pages to sync changes in master. Unfortunately, I'm not sure what is the command or tool for converting code.Ah, I see what happened. Yes, originally the gh-pages branch was generated from Hoplon and the slides folder on the master branch was the Hoplon source code. The slides (on master) were replaced by generated HTML (from the Hoplon app) and all the Hoplon source removed), but the gh-pages branch was never updated from the (new) slides.Since then, folks have modified the slides folder - cleaning up the HTML structure and simplifying the navigation - but, again, never updated gh-pages from the updated slides.So I just went ahead and did that (and cleaned up the top-level cruft that was left behind - the updated slides folder has all the assets neatly tucked away in a folder).In future, we can re-publish the online slides as follows:git checkout mastercd slideszip -r /tmp/slides.zip *cd ..git checkout gh-pagesunzip /tmp/slides.zip(type A to replace all files)Then git commit and push any changes.
Sean Corfield -- (904) 302-SEANAn Architect's View -- http://corfield.org/
"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)