|
Boost : |
From: Eric Niebler (eric_at_[hidden])
Date: 2008-08-05 14:54:04
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_at_[hidden]:/home/groups/b/bo/boost-sandbox/htdocs/libs/xpressive/doc
ssh eric_niebler_at_[hidden] \
'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
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk