| 1 | #!/bin/sh | 
| 2 |  | 
| 3 | cp_deep=/data/opt/tools/shortcuts/cp_deep | 
| 4 |  | 
| 5 | source=`pwd` | 
| 6 |  | 
| 7 | target_base=/data/www/virtual/netfrag/sites/public/docs | 
| 8 |  | 
| 9 | # ------------------------------------------------------------------- | 
| 10 | # topics | 
| 11 | $cp_deep --symlink --force $source/oef/*.html $target_base/topics/oef | 
| 12 | $cp_deep --symlink --force $source/caesar/*.html $target_base/topics/caesar | 
| 13 |  | 
| 14 | # dispatchmail, 2003-02-10 | 
| 15 | $cp_deep --symlink --force $source/dispatchmail/*.html $target_base/topics/dispatchmail | 
| 16 |  | 
| 17 | # perl-libs, 2003-02-11 | 
| 18 | $cp_deep --symlink --force $source/perl-libs/*.html $target_base/topics/perl-libs | 
| 19 |  | 
| 20 | # ------------------------------------------------------------------- | 
| 21 | # meta | 
| 22 | # TODO: build rdf-file (e.g. 'index.xml' from all resources) | 
| 23 | # e.g.: | 
| 24 | #         <command>   <to>        <use>       <use>           <use> | 
| 25 | #         buildrdf.pl $target_rdf $target_all $target_sources $target_compiled | 
| 26 | # | 
| 27 | # make <modes> possible: content=merge|seperate|both, layout=flat|deep | 
| 28 | # | 
| 29 | # hmmm.... | 
| 30 |  | 
| 31 |  |