1 |
root |
1.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/*.schema $target_base/schemas |
12 |
|
|
|
13 |
|
|
# ------------------------------------------------------------------- |
14 |
|
|
# meta |
15 |
|
|
# TODO: build rdf-file (e.g. 'index.xml' from all resources) |
16 |
|
|
# e.g.: |
17 |
|
|
# <command> <to> <use> <use> <use> |
18 |
|
|
# buildrdf.pl $target_rdf $target_all $target_sources $target_compiled |
19 |
|
|
# |
20 |
|
|
# make <modes> possible: content=merge|seperate|both, layout=flat|deep |
21 |
|
|
# |
22 |
|
|
# hmmm.... |
23 |
|
|
|
24 |
|
|
|