Commit 89f6f2be1dc38822e6bcc3eeee937c346d6748bc

Authored by kevin_fourie
1 parent 88a36287

KTS-2519

"Move periodic scripts out of web tree to install root"
Done.

Committed By: Kevin Fourie
Reviewed By: Conrad Vermeulen

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7419 c91229c3-7414-0410-bfa2-8a42b809f60b
bin/registerExtractorTypes.bat deleted
1   -@echo off
2   -
3   -SET PATH=%PATH%;..\..\php;..\..\php\bin
4   -setlocal
5   -cd "@@BITROCK_INSTALLDIR@@\knowledgeTree\search2\indexing\bin"
6   -
7   -php -Cq registerTypes.php
8 0 \ No newline at end of file
bin/registerExtractorTypes.sh deleted
1   -#!/bin/sh
2   -
3   -# SETUP PATH TO FIND PHP
4   -PATH=$PATH:../../php/bin:../../php:
5   -
6   -# WORK OUT DIRECTORIES
7   -USER_DIR=`pwd`
8   -SCRIPT_DIR=$USER_DIR/`dirname $0`
9   -PHP_SCRIPT_DIR=$SCRIPT_DIR/../search2/indexing/bin
10   -
11   -# EXECUTE SCRIPT IN THE SCRIPT DIRECTORY
12   -cd $PHP_SCRIPT_DIR
13   -php -Cq registerTypes.php
14 0 \ No newline at end of file
bin/savedSearchTask.bat deleted
1   -@echo off
2   -
3   -SET PATH=%PATH%;..\..\php;..\..\php\bin
4   -setlocal
5   -cd "@@BITROCK_INSTALLDIR@@\knowledgeTree\search2\search\bin"
6   -
7   -php -Cq cronSavedSearch.php
8 0 \ No newline at end of file
bin/savedSearchTask.sh deleted
1   -#!/bin/sh
2   -
3   -# SETUP PATH TO FIND PHP
4   -PATH=$PATH:../../php/bin:../../php:
5   -
6   -# WORK OUT DIRECTORIES
7   -USER_DIR=`pwd`
8   -SCRIPT_DIR=$USER_DIR/`dirname $0`
9   -PHP_SCRIPT_DIR=$SCRIPT_DIR/../search2/search/bin
10   -
11   -# EXECUTE SCRIPT IN THE SCRIPT DIRECTORY
12   -cd $PHP_SCRIPT_DIR
13   -php -Cq cronSavedSearch.php
14 0 \ No newline at end of file
bin/schedulerTask.bat deleted
1   -@echo off
2   -
3   -SET PATH=%PATH%;..\..\php;..\..\php\bin
4   -setlocal
5   -cd "@@BITROCK_INSTALLDIR@@\knowledgeTree\bin"
6   -
7   -php -Cq scheduler.php
8 0 \ No newline at end of file
bin/schedulerTask.sh deleted
1   -#!/bin/sh
2   -
3   -# SETUP PATH TO FIND PHP
4   -PATH=$PATH:../../php/bin:../../php:
5   -
6   -# WORK OUT DIRECTORIES
7   -USER_DIR=`pwd`
8   -SCRIPT_DIR=$USER_DIR/`dirname $0`
9   -PHP_SCRIPT_DIR=$SCRIPT_DIR/
10   -
11   -# EXECUTE SCRIPT IN THE SCRIPT DIRECTORY
12   -cd $PHP_SCRIPT_DIR
13   -php -Cq scheduler.php
14 0 \ No newline at end of file