|
From: <ei...@us...> - 2006-10-20 22:25:00
|
Revision: 224
http://svn.sourceforge.net/mp3roaster/?rev=224&view=rev
Author: eim
Date: 2006-10-20 15:24:54 -0700 (Fri, 20 Oct 2006)
Log Message:
-----------
Removed obsolete README file.
Removed Paths:
-------------
trunk/website/README
Deleted: trunk/website/README
===================================================================
--- trunk/website/README 2006-10-20 22:23:42 UTC (rev 223)
+++ trunk/website/README 2006-10-20 22:24:54 UTC (rev 224)
@@ -1,69 +0,0 @@
-#
-# MP3Roaster website README
-#
-# $Id$
-#
-
-0. Index
---------
-
- 0. Index
- 1. Website under CVS control
- 2. Update website from CVS
-
-
-1. Website under CVS control
-----------------------------
-
- This website is under CVS control, the CVS module is called website and is
- available for project developers in the MP3Roaster CVS tree:
-
- http://cvs.sourceforge.net/viewcvs.py/mp3roaster/website/
-
-
-2. Update website from CVS
---------------------------
-
- In order to update the online website http://mp3roaster.sourceforge.net from
- the CVS tree we need to perform a CVS checkout of the module website once
- commited our changes to the website, to do this easily from my development
- workstation at home I use a little shell alias called website_mp3roaster:
-
- alias website_mp3roaster='ssh shell1.sourceforge.net ./contrib/update-website-from-cvs.sh mp3roaster'
-
- Of course this shell alias, as you can see, requires a remote BASH script:
-
- ~/contrib/update-website-from-cvs.sh
-
- Which actually is installed in my remote SourceForge shell account, here is
- the complete script:
-
- --- START CODE -------------------------------------------------------------
-
- #! /bin/bash
-
- CVS_SERVER=cvs1.sourceforge.net # The CVS server
- PROJECT=$1; # The project name, eg: "foo"
- I1=${PROJECT:0:1}; # Index 1, eg: "f" of "foo"
- I2=${PROJECT:0:2}; # Index 2, eg: "fo" of "foo"
- MODULE="website"; # The website CVS module
-
- if [ $PROJECT ]
- then
- cvs -d :pserver:anonymous\@cvs1.sourceforge.net:/cvsroot/$PROJECT -z 3 checkout $MODULE
- if [ $? == 0 ]
- then
- rm -r /home/groups/$I1/$I2/$PROJECT/htdocs
- mv website /home/groups/$I1/$I2/$PROJECT/htdocs
- else
- echo -e "\nCVS returned error code $?.\n"
- fi
- else
- echo -e "\nYou must specify a module name.\n"
- fi
-
- ---------------------------------------------------------------- END CODE ---
-
- This script may have been changed in the future so consider it just some kind
- of reference to build your own script or check on the Internet for other
- versions or use this.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|