Changeset 3253
- Timestamp:
- 04/22/11 10:56:57
- Files:
-
- releases/bedework-3.7/build/quickstart/linux/bw (modified) (4 diffs)
- releases/bedework-3.7/build/quickstart/windows/bw.bat (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
releases/bedework-3.7/build/quickstart/linux/bw
r3190 r3253 40 40 echo " deployed application. ACTION may be one of" 41 41 echo " -updateall Does an svn update of all projects" 42 echo " -reindex runs the indexer directly out of the quickstart bedework"43 echo " dist directory to rebuild the lucene indexes"44 42 echo " -zoneinfo builds zoneinfo data for the timezones server" 45 echo " requires -version and -tzdata parameters. NOTE: build depends on glib2" 43 echo " requires -version and -tzdata parameters. " 44 echo " NOTE: build depends on glib2 and only works on Linux/Unix" 46 45 echo " -buildwebcache builds webcache" 47 46 echo " -deploywebcache deploys webcache" … … 69 68 echo " target Ant target to execute" 70 69 echo "" 71 echo " PROJECT optionally defines the package to build and is none or more of" 70 echo " PROJECT optionally defines the package to build and is one of" 71 echo " the core, ancillary or experimental targets below:" 72 echo "" 73 echo " Core projects: required for a functioning system" 72 74 echo " -bwxml Target is for the Bedework XML schemas build" 75 echo " (usually built automatically be dependent projects" 73 76 echo " -carddav Target is for the CardDAV build" 77 echo " -carddav deploy-addrbook To deploy the Javascript Addressbook client." 78 echo " -tzsvr Target is for the timezones server build" 79 echo " Ancillary projects: not required" 80 echo " -monitor Target is for the bedework monitor application" 81 echo " Experimental projects: no guarantees" 82 echo " -client Target is for the bedework client application build" 74 83 echo " -exsynch Target is for the Exchange synch build" 75 echo " -client Target is for the bedework client application build"76 echo " -monitor Target is for the bedework monitor application"77 84 echo " -naming Target is for the abstract naming api" 78 echo " -tzsvr Target is for the timezones server build"79 85 echo " The default is a calendar build" 80 echo ""81 echo " -carddav deploy-addrbook To deploy the Javascript Addressbook client."82 86 echo "" 83 87 echo " Invokes ant to build or deploy the Bedework system. Uses a configuration" … … 116 120 svn update $project 117 121 done 118 119 exit 0120 }121 122 # ----------------------------------------------------------------------------123 # Reindex the data124 # ----------------------------------------------------------------------------125 actionReindex() {126 INDEXER=$QUICKSTART_HOME/bedework/dist/temp/shellscr/indexer127 128 if [ ! -d "$INDEXER" ] ; then129 errorUsage "The indexer directory $INDEXER does not exist. You probably need to do a rebuild."130 fi131 132 cd $INDEXER133 chmod +x bwrun134 ./bwrun reindex-nostart -user admin -indexlocprefix ../../../../../135 122 136 123 exit 0 … … 286 273 fi 287 274 288 if [ "$1" = "-reindex" ] ; then289 actionReindex290 fi291 292 275 if [ "$1" = "-zoneinfo" ] ; then 293 276 actionZoneinfo $* releases/bedework-3.7/build/quickstart/windows/bw.bat
r3202 r3253 179 179 GOTO:EOF 180 180 181 :reindex182 ECHO Calling the reindexer183 SET INDEXER=%QUICKSTART_HOME%\bedework\dist\temp\shellscr\indexer184 185 if exist %INDEXER% goto indexerok186 ECHO The indexer directory %INDEXER% does not exist. You probably need to do a rebuild.187 GOTO:EOF188 189 :indexerok190 cd %INDEXER%191 bwrun.bat reindex-nostart -user admin -indexlocprefix ..\..\..\..\..\192 193 GOTO:EOF194 195 181 :zoneinfo 196 182 ECHO zoneinfo target is not supported on Windows … … 294 280 IF "%1" == "-offline" GOTO offline 295 281 IF "%1" == "-updateall" GOTO updateall 296 IF "%1" == "-reindex" GOTO reindex297 282 IF "%1" == "-zoneinfo" GOTO zoneinfo 298 283 IF "%1" == "-buildwebcache" GOTO buildwebcache … … 329 314 ECHO deployed application. ACTION may be one of 330 315 ECHO -updateall Does an svn update of all projects" 331 ECHO -reindex runs the indexer directly out of the quickstart bedework332 ECHO dist directory to rebuild the lucene indexes333 316 REM Don't support zoneinfo command on Windows for now 334 317 REM ECHO -zoneinfo - builds zoneinfo data for the timezones server … … 351 334 ECHO target Ant target to execute (e.g. "start") 352 335 ECHO. 353 ECHO. 354 ECHO. 355 ECHO PROJECT optionally defines the package to build and is none or more of 336 ECHO PROJECT optionally defines the package to build and is one of 337 ECHO the core, ancillary or experimental targets below: 338 ECHO. 339 ECHO Core projects: required for a functioning system 356 340 ECHO -bwxml Target is for the Bedework XML schemas build 341 ECHO (usually built automatically be dependent projects 357 342 ECHO -carddav Target is for the CardDAV build 343 ECHO -carddav deploy-addrbook To deploy the Javascript Addressbook client. 344 ECHO -tzsvr Target is for the timezones server build 345 ECHO Ancillary projects: not required 346 ECHO -monitor Target is for the bedework monitor application 347 ECHO Experimental projects: no guarantees 348 ECHO -client Target is for the bedework client application build 358 349 ECHO -exsynch Target is for the Exchange synch build 359 ECHO -client Target is for the bedework client application build360 ECHO -monitor Target is for the bedework monitor application361 350 ECHO -naming Target is for the abstract naming api 362 ECHO -tzsvr Target is for the timezones server build363 351 ECHO The default is a calendar build 364 352 ECHO.
