You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by ka...@apache.org on 2007/09/19 10:51:25 UTC

svn commit: r577202 - in /webservices/rampart/trunk/c: INSTALL sd.sh

Author: kaushalye
Date: Wed Sep 19 01:51:25 2007
New Revision: 577202

URL: http://svn.apache.org/viewvc?rev=577202&view=rev
Log:
Corrected few typos.
Updating the script tp create the src-dist

Modified:
    webservices/rampart/trunk/c/INSTALL
    webservices/rampart/trunk/c/sd.sh

Modified: webservices/rampart/trunk/c/INSTALL
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/INSTALL?rev=577202&r1=577201&r2=577202&view=diff
==============================================================================
--- webservices/rampart/trunk/c/INSTALL (original)
+++ webservices/rampart/trunk/c/INSTALL Wed Sep 19 01:51:25 2007
@@ -4,7 +4,7 @@
     |_ Getting Rampart/C binary distribution working on Linux
     |_ Getting Rampart/C source working on Win32
     |_ Getting Rampart/C binary working on Win32
-    |_ Engage Rampart/C with axis2/C
+    |_ Engaging Rampart/C with axis2/C
     |_ Try samples on Linux
     |_ Try samples on Win32
 
@@ -28,7 +28,7 @@
 ======================================================
 1. Copy modules/rampart to $AXIS2C_HOME/modules
 2. Copy samples/server/sec_echo to $AXIS2C_HOME/services/
-3. Engage rampart as described in section "Engage Rampart/C with axis2/C"
+3. Engage rampart as described in section "Engaging Rampart/C with axis2/C"
 4. Go to samples/client/sec_echo/ and deploy the client repo 
     %sh deploy_client_repo.sh
 5. Go to samples/secpolicy/ and try a scenario
@@ -90,7 +90,7 @@
 Run a scenario that you'd like to try using the script test_scen.sh
     Syntax: test_scen.sh scenario server_port
     E.g. %sh test_scen.sh scenario3 9090
-Note: You may use a TCP Monitor to see the wire content. In that case replace the server_port with the lietening port.
+Note: You may use a TCP Monitor to see the wire content. In that case replace the server_port with the target port.
 
 Try samples on Win32
 ===============================

Modified: webservices/rampart/trunk/c/sd.sh
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/sd.sh?rev=577202&r1=577201&r2=577202&view=diff
==============================================================================
--- webservices/rampart/trunk/c/sd.sh (original)
+++ webservices/rampart/trunk/c/sd.sh Wed Sep 19 01:51:25 2007
@@ -2,7 +2,7 @@
 
 
 this_dir=$PWD
-src_dist=rampartc-src-1.0.0
+src_dist=rampartc-src-1.0.0 #Make sure you set the correct directory name
 src_dist_tar_gz=$src_dist.tar.gz
 src_dist_tar_gz_md5=$src_dist_tar_gz.md5
 src_dist_tar_gz_asc=$src_dist_tar_gz.asc
@@ -23,45 +23,46 @@
 
 ls
 
-cd $src_dist
+#cd $src_dist
+
 
 echo "Removing makefiles in $src_dist"
-for i in `find . -name "Makefile"`
+for i in `find $src_dist -name "Makefile"`
 do
     echo "Deleting $i"
     rm  $i
 done
 
 echo "Removing .svn entries in $src_dist"
-for i in `find . -name ".svn"`
+for i in `find $src_dist -name ".svn"`
 do
     echo "Deleting $i"
     rm  -rf $i
 done
 
 echo "Removing .la entries in $src_dist"
-for i in `find . -name "*.la"`
+for i in `find $src_dist -name "*.la"`
 do
     echo "Deleting $i"
     rm  $i
 done
 
 echo "Removing .lo entries in $src_dist"
-for i in `find . -name "*.lo"`
+for i in `find $src_dist -name "*.lo"`
 do
     echo "Deleting $i"
     rm  $i
 done
 
 echo "Removing .libs entries in $src_dist"
-for i in `find . -name ".libs"`
+for i in `find $src_dist -name ".libs"`
 do
     echo "Deleting $i"
     rm  -rf $i
 done
 
 echo "Removing .deps entries in $src_dist"
-for i in `find . -name ".deps"`
+for i in `find $src_dist -name ".deps"`
 do
     echo "Deleting $i"
     rm  -rf $i