
Frank Mori Hess wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Tuesday 05 August 2008 13:36 pm, Andrey Semashev wrote:
Are the docs available online somewhere? Sorry, the library is not hosted anywhere. I wonder if libraries in the Boost sandbox have some hosting for docs?
You can put your docs at http://boost-sandbox.sf.net/. Just ssh into shell.sf.net, cd to /home/groups/b/bo/boost-sandbox/htdocs, make a directory for your stuff (probably under libs/), then exit and use scp to copy your docs to the correct place. I created the following bash script that gzips xpressive's html directory, pushes it to shell.sf.net, and unzips it remotely. You might find it useful. (Obviously, you'll need to change the username.) #!/bin/sh rm html.tar.gz tar -czf html.tar.gz html scp html.tar.gz \ eric_niebler@shell.sf.net:/home/groups/b/bo/boost-sandbox/htdocs/libs/xpressive/doc ssh eric_niebler@shell.sf.net \ 'cd /home/groups/b/bo/boost-sandbox/htdocs/libs/xpressive/doc; \ rm -rf html; \ tar -xzf html.tar.gz' -- Eric Niebler BoostPro Computing http://www.boostpro.com