|
From: <cre...@us...> - 2007-03-06 20:04:53
|
Revision: 1641
http://svn.sourceforge.net/frontierkernel/?rev=1641&view=rev
Author: creecode
Date: 2007-03-06 12:04:53 -0800 (Tue, 06 Mar 2007)
Log Message:
-----------
added glue scripts
Added Paths:
-----------
ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/getEnvironmentVariable.fvc
ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/setEnvironmentVariable.fvc
Added: ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/getEnvironmentVariable.fvc
===================================================================
--- ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/getEnvironmentVariable.fvc (rev 0)
+++ ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/getEnvironmentVariable.fvc 2007-03-06 20:04:53 UTC (rev 1641)
@@ -0,0 +1,23 @@
+FrontierVcsFile:3:optx:docServerData.formats.outline.sys.getEnvironmentVariable
+
+Syntax
+ sys.getEnvironmentVariable ( var )
+Params
+ var is a string containing the name of an environment variable content you wish to determine.
+Action
+ Determines the content of the named environment variable.
+Returns
+ The content of the named environment variable in the context of the running Frontier application.
+Examples
+ sys.getEnvironmentVariable ( "path" )
+ "C:\WINDOWS\system32;C:\WINDOWS;C:\cygwin\bin"
+Platform Notes
+ This verb is only implemented in the Windows version of Frontier.
+Notes
+ If the variable does not exist an empty string will be returned
+ If the contents of the variable is longer than 255, false will be returned
+See Also
+ sys.setEnvironmentVariable
+
+
+
Property changes on: ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/getEnvironmentVariable.fvc
___________________________________________________________________
Name: svn:eol-style
+ native
Added: ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/setEnvironmentVariable.fvc
===================================================================
--- ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/setEnvironmentVariable.fvc (rev 0)
+++ ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/setEnvironmentVariable.fvc 2007-03-06 20:04:53 UTC (rev 1641)
@@ -0,0 +1,23 @@
+FrontierVcsFile:3:optx:docServerData.formats.outline.sys.setEnvironmentVariable
+
+Syntax
+ sys.setEnvironmentVariable ( var, s )
+Params
+ var is a string containing the name of an environment variable whose content you wish to set.
+ s is the desired content of the environment variable
+Action
+ Sets the content of the named environment variable to the desired string.
+Returns
+ True if successful.
+Examples
+ sys.setEnvironmentVariable ( "path", "c:\cygwin\bin" )
+ true
+Platform Notes
+ This verb is only implemented in the Windows version of Frontier.
+Notes
+ The variable is set within the context of the running Frontier application and its sub-processes. Other processes, and the default values after reboot, are not affected.
+See Also
+ sys.getEnvironmentVariable
+
+
+
Property changes on: ODBs/trunk/docServerRoot/docServerData/formats/outline/sys/setEnvironmentVariable.fvc
___________________________________________________________________
Name: svn:eol-style
+ native
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|