Index: releases/bedework-3.7/build/quickstart/linux/bw =================================================================== --- releases/bedework-3.7/build/quickstart/linux/bw (revision 3190) +++ releases/bedework-3.7/build/quickstart/linux/bw (revision 3253) @@ -40,8 +40,7 @@ echo " deployed application. ACTION may be one of" echo " -updateall Does an svn update of all projects" - echo " -reindex runs the indexer directly out of the quickstart bedework" - echo " dist directory to rebuild the lucene indexes" echo " -zoneinfo builds zoneinfo data for the timezones server" - echo " requires -version and -tzdata parameters. NOTE: build depends on glib2" + echo " requires -version and -tzdata parameters. " + echo " NOTE: build depends on glib2 and only works on Linux/Unix" echo " -buildwebcache builds webcache" echo " -deploywebcache deploys webcache" @@ -69,15 +68,20 @@ echo " target Ant target to execute" echo "" - echo " PROJECT optionally defines the package to build and is none or more of" + echo " PROJECT optionally defines the package to build and is one of" + echo " the core, ancillary or experimental targets below:" + echo "" + echo " Core projects: required for a functioning system" echo " -bwxml Target is for the Bedework XML schemas build" + echo " (usually built automatically be dependent projects" echo " -carddav Target is for the CardDAV build" + echo " -carddav deploy-addrbook To deploy the Javascript Addressbook client." + echo " -tzsvr Target is for the timezones server build" + echo " Ancillary projects: not required" + echo " -monitor Target is for the bedework monitor application" + echo " Experimental projects: no guarantees" + echo " -client Target is for the bedework client application build" echo " -exsynch Target is for the Exchange synch build" - echo " -client Target is for the bedework client application build" - echo " -monitor Target is for the bedework monitor application" echo " -naming Target is for the abstract naming api" - echo " -tzsvr Target is for the timezones server build" echo " The default is a calendar build" - echo "" - echo " -carddav deploy-addrbook To deploy the Javascript Addressbook client." echo "" echo " Invokes ant to build or deploy the Bedework system. Uses a configuration" @@ -116,21 +120,4 @@ svn update $project done - - exit 0 -} - -# ---------------------------------------------------------------------------- -# Reindex the data -# ---------------------------------------------------------------------------- -actionReindex() { - INDEXER=$QUICKSTART_HOME/bedework/dist/temp/shellscr/indexer - - if [ ! -d "$INDEXER" ] ; then - errorUsage "The indexer directory $INDEXER does not exist. You probably need to do a rebuild." - fi - - cd $INDEXER - chmod +x bwrun - ./bwrun reindex-nostart -user admin -indexlocprefix ../../../../../ exit 0 @@ -286,8 +273,4 @@ fi -if [ "$1" = "-reindex" ] ; then - actionReindex -fi - if [ "$1" = "-zoneinfo" ] ; then actionZoneinfo $* Index: releases/bedework-3.7/build/quickstart/windows/bw.bat =================================================================== --- releases/bedework-3.7/build/quickstart/windows/bw.bat (revision 3202) +++ releases/bedework-3.7/build/quickstart/windows/bw.bat (revision 3253) @@ -179,18 +179,4 @@ GOTO:EOF -:reindex - ECHO Calling the reindexer - SET INDEXER=%QUICKSTART_HOME%\bedework\dist\temp\shellscr\indexer - - if exist %INDEXER% goto indexerok - ECHO The indexer directory %INDEXER% does not exist. You probably need to do a rebuild. - GOTO:EOF - - :indexerok - cd %INDEXER% - bwrun.bat reindex-nostart -user admin -indexlocprefix ..\..\..\..\..\ - - GOTO:EOF - :zoneinfo ECHO zoneinfo target is not supported on Windows @@ -294,5 +280,4 @@ IF "%1" == "-offline" GOTO offline IF "%1" == "-updateall" GOTO updateall -IF "%1" == "-reindex" GOTO reindex IF "%1" == "-zoneinfo" GOTO zoneinfo IF "%1" == "-buildwebcache" GOTO buildwebcache @@ -329,6 +314,4 @@ ECHO deployed application. ACTION may be one of ECHO -updateall Does an svn update of all projects" - ECHO -reindex runs the indexer directly out of the quickstart bedework - ECHO dist directory to rebuild the lucene indexes REM Don't support zoneinfo command on Windows for now REM ECHO -zoneinfo - builds zoneinfo data for the timezones server @@ -351,14 +334,19 @@ ECHO target Ant target to execute (e.g. "start") ECHO. - ECHO. - ECHO. - ECHO PROJECT optionally defines the package to build and is none or more of + ECHO PROJECT optionally defines the package to build and is one of + ECHO the core, ancillary or experimental targets below: + ECHO. + ECHO Core projects: required for a functioning system ECHO -bwxml Target is for the Bedework XML schemas build + ECHO (usually built automatically be dependent projects ECHO -carddav Target is for the CardDAV build + ECHO -carddav deploy-addrbook To deploy the Javascript Addressbook client. + ECHO -tzsvr Target is for the timezones server build + ECHO Ancillary projects: not required + ECHO -monitor Target is for the bedework monitor application + ECHO Experimental projects: no guarantees + ECHO -client Target is for the bedework client application build ECHO -exsynch Target is for the Exchange synch build - ECHO -client Target is for the bedework client application build - ECHO -monitor Target is for the bedework monitor application ECHO -naming Target is for the abstract naming api - ECHO -tzsvr Target is for the timezones server build ECHO The default is a calendar build ECHO.