[Swift-commit] r6297 - in trunk/docs: merged/userguide userguide

ketan at ci.uchicago.edu ketan at ci.uchicago.edu
Wed Feb 20 11:28:17 CST 2013


Author: ketan
Date: 2013-02-20 11:28:17 -0600 (Wed, 20 Feb 2013)
New Revision: 6297

Modified:
   trunk/docs/merged/userguide/coasters
   trunk/docs/userguide/app_procedures
Log:
adding toString and camelcase to functions

Modified: trunk/docs/merged/userguide/coasters
===================================================================
--- trunk/docs/merged/userguide/coasters	2013-02-20 03:04:04 UTC (rev 6296)
+++ trunk/docs/merged/userguide/coasters	2013-02-20 17:28:17 UTC (rev 6297)
@@ -145,8 +145,8 @@
 |jobThrottle |the number of concurrent jobs allowed on a site
 |==============================================================================================
 
-For Advanced Users
-~~~~~~~~~~~~~~~~~~
+Advanced User-Guide
+~~~~~~~~~~~~~~~~~~~
 
 //Coasters for advanced users. Getting your hands dirty.
 
@@ -158,29 +158,9 @@
 
 Coasters configurations
 ~~~~~~~~~~~~~~~~~~~~~~~
-//
-//Manual
-//^^^^^^^
-//Todo
-//
-//Passive
-//^^^^^^^^
-//Todo
-//
-//Persistent
-//^^^^^^^^^^^
-//Todo
-//
-//Summary of Differences Between different Coaster types
-//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-//A tabular representations of highlights of different coaster setups
-//
-//
-//Data Management 
-//
 
-Coaster providers: local, ssh, pbs
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Coaster providers
+~~~~~~~~~~~~~~~~~
 
 Settings and examples for different coaster providers mechanisms.
 

Modified: trunk/docs/userguide/app_procedures
===================================================================
--- trunk/docs/userguide/app_procedures	2013-02-20 03:04:04 UTC (rev 6296)
+++ trunk/docs/userguide/app_procedures	2013-02-20 17:28:17 UTC (rev 6297)
@@ -292,9 +292,9 @@
 Swift trace: hello
 ----
 
- at extractint
+ at extractInt
 ~~~~~~~~~~~
- at extractint(file) will read the specified file, parse an integer from
+ at extractInt(file) will read the specified file, parse an integer from
 the file contents and return that integer.
 
 
@@ -406,18 +406,24 @@
 parallel).
 
 
- at toint
+ at toInt
 ~~~~~~
- at toint(input) will parse its input string into an integer. This can be
+ at toInt(input) will parse its input string into an integer. This can be
 used with @arg to pass input parameters to a Swift script as
 integers.
 
- at tofloat
-~~~~~~
- at tofloat(input) will parse its input string into a floating point number. This can be
+ at toFloat
+~~~~~~~~
+ at toFloat(input) will parse its input string into a floating point number. This can be
 used with @arg to pass input parameters to a Swift script as
 floating point numbers.
 
+ at toString
+~~~~~~~~
+ at toString(input) will parse its input into a string. This can be
+used with @arg to pass input parameters to a Swift script as
+strings.
+
 @length
 ~~~~~~
 @length(array) will return the length of an array in Swift. This function will wait for all elements in the array to be written before returning the length.




More information about the Swift-commit mailing list