[Swift-commit] r4580 - in trunk/docs: . userguide

davidk at ci.uchicago.edu davidk at ci.uchicago.edu
Tue Jun 7 17:07:37 CDT 2011


Author: davidk
Date: 2011-06-07 17:07:37 -0500 (Tue, 07 Jun 2011)
New Revision: 4580

Removed:
   trunk/docs/userguide/overview.txt
Modified:
   trunk/docs/build_docs.sh
Log:
Fix for group permissions in build_docs.sh
Removed duplicate chapter from userguide


Modified: trunk/docs/build_docs.sh
===================================================================
--- trunk/docs/build_docs.sh	2011-06-07 20:47:31 UTC (rev 4579)
+++ trunk/docs/build_docs.sh	2011-06-07 22:07:37 UTC (rev 4580)
@@ -8,6 +8,9 @@
     exit 1
 }
 
+# Change file permissions to values set below
+CHMOD_VALUE="664"
+
 # Verify correct arguments
 if [ -n "$1" ]; then
    INSTALLATION_DIRECTORY=$1
@@ -53,6 +56,7 @@
    for copyfile in `ls * 2>/dev/null`
    do
       cp $copyfile $INSTALLATION_DIRECTORY/$VERSION/$directory || crash "Unable to copy $copyfile to $INSTALLATION_DIRECTORY/$VERSION/$directory"
+      chmod $CHMOD_VALUE $INSTALLATION_DIRECTORY/$VERSION/$directory/$copyfile > /dev/null 2>&1
    done
 
    popd > /dev/null 2>&1

Deleted: trunk/docs/userguide/overview.txt
===================================================================
--- trunk/docs/userguide/overview.txt	2011-06-07 20:47:31 UTC (rev 4579)
+++ trunk/docs/userguide/overview.txt	2011-06-07 22:07:37 UTC (rev 4580)
@@ -1,20 +0,0 @@
-Overview
---------
-This manual provides reference material for Swift: the SwiftScript
-language and the Swift runtime system. For introductory material,
-consult the Swift tutorial
-<http://www.ci.uchicago.edu/swift/guides/tutorial.php>.
-
-Swift is a data-oriented coarse grained scripting language that supports
-dataset typing and mapping, dataset iteration, conditional branching,
-and procedural composition.
-
-Swift programs (or workflows) are written in a language called
-SwiftScript.
-
-SwiftScript programs are dataflow oriented - they are primarily
-concerned with processing (possibly large) collections of data files, by
-invoking programs to do that processing. Swift handles execution of such
-programs on remote sites by choosing sites, handling the staging of
-input and output files to and from the chosen sites and remote execution
-of program code.




More information about the Swift-commit mailing list