home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <HEAD>
- <TITLE>Cold Fusion Administrator - Logging </TITLE>
- <META NAME="Author" CONTENT="Copyright 1996 Allaire Corp. All rights reserved.">
- <META NAME="Version" CONTENT="$Revision: 7 $">
- </HEAD>
-
- <!--- Begin admin page formatting --->
- <CFINCLUDE Template="../formatting/header.cfm">
-
- <!--- Guarantee that the keys exists --->
- <CFSET CFSCKey = CFRootKey & "\SourceControl">
- <CFSET CFVSSKey = CFSCKey & "\SourceSafe">
- <CFNewInternalRegistry Action="SET" Branch="#CFRootKey#"
- Entry="SourceControl" Type="KEY">
- <CFNewInternalRegistry Action="SET" Branch="#CFSCKey#"
- Entry="SourceSafe" Type="KEY">
-
- <CFIF IsDefined("Form.Apply")>
- <!--- Update settings --->
- <CFNewInternalRegistry Action="SET" Branch="#CFVSSKey#"
- Entry="IniPath" Type="STRING" Value="#IniPath#">
- <CFNewInternalRegistry Action="SET" Branch="#CFVSSKey#"
- Entry="WorkingDir" Type="STRING" Value="#WorkingDir#">
- <CFNewInternalRegistry Action="SET" Branch="#CFVSSKey#"
- Entry="Timeout" Type="STRING" Value="#Timeout#">
- <CFELSE>
- <!--- Retrieve settings --->
- <CFNewInternalRegistry Action="GET" Branch="#CFVSSKey#"
- Entry="IniPath" Type="STRING" Variable="IniPath">
- <CFPARAM Name="IniPath" Default="">
- <CFNewInternalRegistry Action="GET" Branch="#CFVSSKey#"
- Entry="WorkingDir" Type="STRING" Variable="WorkingDir">
- <CFPARAM Name="WorkingDir" Default="">
- <CFNewInternalRegistry Action="GET" Branch="#CFVSSKey#"
- Entry="Timeout" Type="STRING" Variable="Timeout">
- <CFPARAM Name="Timeout" Default="30">
- </CFIF>
-
- <!-- Heading -->
- <CFOUTPUT>
- <FONT Face="#FONTFACE#" Size="#Evaluate(FONTSIZE + 2)#">
- <B>Server-side Source Control</B>
- </FONT>
- <BR>
- <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
- ColdFusion Studio users can use Microsoft Visual SourceSafe via the ColdFusion server.
- You must install a network installation of SourceSafe on the same server as ColdFusion in order to use this feature.
- In addition, the Cold Fusion RDS service must be set to log on as a user with permission to the VSS directories.
- (This can be configured from the NT services control panel.)
- Please consult the your source control provider's documentation for the latest conditions of your license agreement.
- </FONT>
- <P>
- </CFOUTPUT>
-
- <FORM Action="index.cfm" Method="POST">
- <TABLE Width="100%" Border="0">
- <TR>
- <TD>
- <!-- IniPath -->
- <CFOUTPUT>
- <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
- <B>Path to SrcSafe.ini</B>
- <INPUT Name="IniPath" Type="TEXT" VALUE="#IniPath#" Size="48"><BR>
- Enter the path to the directory that holds your server's <I>srcsafe.ini</I>
- (e.g., "c:\vss\").
- Typically, this will be in the directory where you installed SourceSafe.
- </FONT>
- <P>
- </CFOUTPUT>
- </TD>
- </TR>
- <TR>
- <TD>
- <!-- Working directory -->
- <CFOUTPUT>
- <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
- <B>Working directory</B>
- <INPUT Name="WorkingDir" Type="TEXT" VALUE="#WorkingDir#" Size="48"><BR>
- The working directory is where files being edited by ColdFusion Studio users are kept (e.g., "c:\scwork\").
- The ColdFusion Remote Data Service will manage files here.
- </FONT>
- <P>
- </CFOUTPUT>
- </TD>
- </TR>
- <TR>
- <TD>
- <!-- Timeout -->
- <CFOUTPUT>
- <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
- <B>Operation Timeout</B>
- <INPUT Name="Timeout" Type="TEXT" VALUE="#Timeout#" Size="3"><BR>
- Performance can vary accoring to constraints on your source control system
- (i.e., project size, number of users, etc.).
- If source control operations are timing out you can increase this value.
- Otherwise, use the default.
- </FONT>
- </CFOUTPUT>
- </TD>
- </TR>
- <TR>
- <TD>
- <!-- Form buttons -->
- <CFINCLUDE TEMPLATE="..\include\stdformbuttons.cfm">
- </TD>
- </TR>
- </TABLE>
- </FORM>
-
- <!--- End admin page formatting --->
- <CFINCLUDE Template="../formatting/footer.cfm">
-
- </BODY>
- </HTML>
-