Last active
December 10, 2015 10:04
-
-
Save balkian/90c0497c0b207812cbbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -lt 1 ] | |
then | |
echo "Usage: $0 <ONTO> <FORMAT> <VERSION> <DIR> <NS>" | |
echo "Example: $0 onto owl latest /tmp/Onto http://example.com/ontologies owl" | |
exit | |
else | |
ONTO=$1 | |
fi | |
if [ $# -lt 2 ] | |
then | |
FORMAT=owl | |
else | |
FORMAT=$2 | |
fi | |
if [ $# -lt 3 ] | |
then | |
VERSION=latest | |
else | |
VERSION=$3 | |
fi | |
if [ $# -lt 4 ] | |
then | |
DIR=~/Doctorado/Ontologies/$ONTO | |
else | |
DIR=$4 | |
fi | |
if [ $# -lt 5 ] | |
then | |
NS=http://www.gsi.dit.upm.es/ontologies/$ONTO/ns# | |
else | |
NS=$5 | |
fi | |
SPECPATH=~/Doctorado/tools/specgen6 | |
echo "Generating docs for $ONTO from: $DIR" | |
echo "Namespace: $NS" | |
cp -r $DIR/spec $DIR/spec_backup | |
rm -rf $VERSION/ | |
mkdir $DIR/spec/$VERSION | |
python2 $SPECPATH/specgen6.py --indir=$DIR --ns=$NS --prefix=$ONTO --ontofile=$ONTO.$FORMAT --outdir=$DIR/spec/$VERSION --templatedir=$DIR --outfile=index.html | |
cd $DIR/spec | |
cp ../$ONTO.$FORMAT $VERSION/ | |
ln -s $ONTO.$FORMAT $VERSION/ns | |
cp -R ../img $VERSION/ | |
cp ../style.css $VERSION/ | |
rm index.html img style.css ns $ONTO.$FORMAT | |
ln -s $VERSION/index.html . | |
ln -s $VERSION/$ONTO.$FORMAT $ONTO.$FORMAT | |
ln -s $VERSION/$ONTO.$FORMAT ns | |
ln -s $VERSION/img img | |
ln -s $VERSION/style.css style.css |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -lt 1 ] | |
then | |
echo "Please, specify an ontology" | |
exit 0 | |
else | |
ONTO=$1 | |
fi | |
if [ $# -lt 2 ] | |
then | |
DIR=~/Doctorado/Ontologies/$ONTO/spec/ | |
else | |
DIR=$2 | |
fi | |
if [ $# -lt 3 ] | |
then | |
[email protected]:$ONTO/ | |
else | |
REMOTE=$3 | |
fi | |
echo "Uploading to $REMOTE" | |
#scp -r $DIR $REMOTE | |
sftp $REMOTE -b <<EOF | |
mput -r $DIR | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment