During one of the gearup preso's, some gripes were made about having to be in the "customer_src" directory before you can perform a rebuild. That got old really fast for me so I wrote a shell script to get around this issue. Below is a simple shell script that I use to rebuild the UI from any dir on the server. This works on solaris, and it should work on linux and maybe AIX as well. (Is there a TeamSite 6.x for AIX?) As for the windows folks, you are own your own...
Instructions:
1. Copy and paste the code below into a new file on the TeamSite server somewhere such as: $iwhome/local/bin/rebuild-ui.sh
2. chmod 775 <script-name>
#!/bin/sh
# This will rebuild the TeamSite UI from any directory.
# The make_tookit.pl comamnd must be run from the customer_src
# directory which in my opinion is a real pain in the **** and
# not friendly, but that is just one man's opinion.
# Ok--done ranting....
IWHOME=`iwgethome`
cd $IWHOME/local/config/lib/content_center/customer_src
$IWHOME/bin/make_toolkit.ipl
--
Jed Michnowicz
jedm@sun.comContent Management Engineering
Sun Microsystems