Index: trunk/tools/who_is_using_the_cluster/deploy.sh
===================================================================
--- trunk/tools/who_is_using_the_cluster/deploy.sh	(revision 34328)
+++ trunk/tools/who_is_using_the_cluster/deploy.sh	(revision 34328)
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+BIN_TARGET_DIRECTORY=$HOME/operations/who_is_using_the_cluster
+HTML_TARGET_DIRECTORY=$HOME/htdocs/clusterMonitor2
+
+MKDIR="/usr/bin/mkdir -p"
+CP="/usr/bin/cp -f"
+CAT=/usr/bin/cat
+SED=/bin/sed
+CHMOD=/usr/bin/chmod
+
+echo "Getting SVN revision"
+SVNREVISION=`/usr/bin/svn up . | cut -f3 -d' '`
+
+echo "Copying executables"
+$MKDIR $BIN_TARGET_DIRECTORY
+$CP update_all_nodes.py $BIN_TARGET_DIRECTORY/
+$CHMOD 755 $BIN_TARGET_DIRECTORY/update_all_nodes.py
+$CP get_processes_information.py $BIN_TARGET_DIRECTORY/
+$CHMOD 755 $BIN_TARGET_DIRECTORY/update_all_nodes.py
+$CP documentation/README $BIN_TARGET_DIRECTORY/
+$CHMOD 644 $BIN_TARGET_DIRECTORY/README
+
+echo "Copying html and php files"
+$MKDIR $HTML_TARGET_DIRECTORY/
+$CAT html/help.html | $SED "s/__SVN_REVISION__/$SVNREVISION/g" > $HTML_TARGET_DIRECTORY/help.html
+$CP html/index.php $HTML_TARGET_DIRECTORY/
+$CP html/header.html $HTML_TARGET_DIRECTORY/
+$CP documentation/README $HTML_TARGET_DIRECTORY/
+$CHMOD 644 $HTML_TARGET_DIRECTORY/README
+
+echo "Creating html files for each node"
+$MKDIR $HTML_TARGET_DIRECTORY/nodes
+for node in `cat $HOME/common/share/ipp/AllNodesNames`; do
+  echo "$node not updated yet" > $HTML_TARGET_DIRECTORY/nodes/$node.html
+  $CHMOD 644 $HTML_TARGET_DIRECTORY/nodes/$node.html
+done
+
Index: trunk/tools/who_is_using_the_cluster/documentation/README
===================================================================
--- trunk/tools/who_is_using_the_cluster/documentation/README	(revision 34328)
+++ trunk/tools/who_is_using_the_cluster/documentation/README	(revision 34328)
@@ -0,0 +1,12 @@
+Do not edit the executables in this directory
+
+Checkout the sources from
+https://svn.pan-starrs.ifa.hawaii.edu/repo/ipp/trunk/tools/who_is_using_the_cluster
+
+Modify them, test them, commit them and use
+./deploy.sh
+as the ippm user on the cluster to deploy them on the cluster.
+
+--
+update_all_nodes.py is run from ippc18 crontab as the ippm user.
+
Index: trunk/tools/who_is_using_the_cluster/html/help.html
===================================================================
--- trunk/tools/who_is_using_the_cluster/html/help.html	(revision 34327)
+++ trunk/tools/who_is_using_the_cluster/html/help.html	(revision 34328)
@@ -35,3 +35,6 @@
 Feel free to correct this documentation and to send me your suggestions and comments.<br/>
 
-Serge
+Serge <br/>
+<hr/>
+SVN Revision: __SVN_REVISION__
+
Index: trunk/tools/who_is_using_the_cluster/html/index.php
===================================================================
--- trunk/tools/who_is_using_the_cluster/html/index.php	(revision 34327)
+++ trunk/tools/who_is_using_the_cluster/html/index.php	(revision 34328)
@@ -55,5 +55,5 @@
 print("  </tr>\n</table>\n");
 print("</td><td>&nbsp;</td><td>\n");
-print("Some help goes here");
+print(file_get_contents("help.html"));
 print("</td></tr>\n</table>\n");
 
