| 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 | # build | 
| 11 | target_all=$target_base/build/all | 
| 12 | target_sources=$target_base/build/sources | 
| 13 | target_compiled=$target_base/build/compiled | 
| 14 | target_rdf=$target_base/meta/rdf | 
| 15 | $cp_deep --symlink --force $source/computing/sysadmin/linux/* $target_all | 
| 16 | $cp_deep --symlink --force $source/computing/sysadmin/linux/*.pod $target_sources | 
| 17 | $cp_deep --symlink --force $source/computing/sysadmin/linux/*.html $target_compiled | 
| 18 |  | 
| 19 | # ------------------------------------------------------------------- | 
| 20 | # topics | 
| 21 | ./topics/.publishrc | 
| 22 |  | 
| 23 |  | 
| 24 | # ------------------------------------------------------------------- | 
| 25 | # meta | 
| 26 | # TODO: build rdf-file (e.g. 'index.xml' from all resources) | 
| 27 | # e.g.: | 
| 28 | #         <command>   <to>        <use>       <use>           <use> | 
| 29 | #         buildrdf.pl $target_rdf $target_all $target_sources $target_compiled | 
| 30 | # | 
| 31 | # make <modes> possible: content=merge|seperate|both, layout=flat|deep | 
| 32 | # | 
| 33 | # hmmm.... | 
| 34 |  | 
| 35 |  |