|
Revision 7801, 0.8 kB
(checked in by bergius, 4 years ago)
|
The classic "MidCOM Example Site" table layout adapted to the Site Wizard world
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
PACKAGE_NAME="layout-table" |
|---|
| 8 |
VERSION="0.1" |
|---|
| 9 |
PACKAGES="layout-table" |
|---|
| 10 |
OTHER_FILES="" |
|---|
| 11 |
|
|---|
| 12 |
ALL_COMMANDS="xml package" |
|---|
| 13 |
|
|---|
| 14 |
REPLIGARD="/usr/local/bin/repligard" |
|---|
| 15 |
REPLIGARD_PARAM="-p -a" |
|---|
| 16 |
REPLIGARD_CONFIG="-c" |
|---|
| 17 |
|
|---|
| 18 |
CVS="cvs" |
|---|
| 19 |
|
|---|
| 20 |
CONFIG_VERSION=1 |
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
extractcustomop() { |
|---|
| 25 |
if [ $ |
|---|
| 26 |
echo "YAMP $VERSION ERROR:" |
|---|
| 27 |
echo "Usage: extract-custom-op {xml file}" |
|---|
| 28 |
exit 127 |
|---|
| 29 |
fi |
|---|
| 30 |
|
|---|
| 31 |
case "$1" in |
|---|
| 32 |
*) |
|---|
| 33 |
sort_by_guid.pl $1 |
|---|
| 34 |
clean_linefeeds.pl $1 |
|---|
| 35 |
clean_user_references.pl $1 |
|---|
| 36 |
remove_grps.pl $1 |
|---|
| 37 |
remove_persons.pl $1 |
|---|
| 38 |
;; |
|---|
| 39 |
esac |
|---|
| 40 |
} |
|---|
| 41 |
|
|---|