On Wed, Nov 17, 2010 at 2:33 AM, Dag Sverre Seljebotn <[email protected]> wrote: > > - Static web site content (you just create a repository which it > serves as static content, e.g, http://cournape.github.com/Bento/)
If you go down the github route, I'd suggest a slightly different alternative than github's default for the creation of static content. Their approach uses a hidden DAG in the repo called gh-pages, which eternally pollutes your repo with all static html you generate. It's easy with a tiny bit of scripting to create instead the gh-pages content in a *separate repo* completely decoupled from the main one. That's what we do here: https://github.com/fperez/datarray # main repo http://fperez.github.com/datarray-doc/ # gh-pages in separate repo. The tool that does the job is this trivial script: https://github.com/fperez/datarray/blob/master/doc/gh-pages.py I'll be happy to provide pointers if you want them. I just wanted to let you know so that you avoid what I think is a poor, but easy to work around, design choice of github's pages implementation. Regards, f _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
