home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Administrator / sourcecontrol / index.cfm (.txt) < prev   
Encoding:
ColdFusion Encrypted Template  |  1999-04-12  |  4.0 KB  |  116 lines

  1. <HTML>
  2. <HEAD>
  3.     <TITLE>Cold Fusion Administrator - Logging </TITLE>
  4.     <META NAME="Author" CONTENT="Copyright 1996 Allaire Corp. All rights reserved.">
  5.     <META NAME="Version" CONTENT="$Revision: 7 $">
  6. </HEAD>
  7.  
  8. <!--- Begin admin page formatting --->
  9. <CFINCLUDE Template="../formatting/header.cfm">
  10.  
  11. <!--- Guarantee that the keys exists --->
  12. <CFSET CFSCKey = CFRootKey & "\SourceControl">
  13. <CFSET CFVSSKey = CFSCKey & "\SourceSafe">
  14. <CFNewInternalRegistry Action="SET" Branch="#CFRootKey#"
  15.     Entry="SourceControl" Type="KEY">
  16. <CFNewInternalRegistry Action="SET" Branch="#CFSCKey#"
  17.     Entry="SourceSafe" Type="KEY">
  18.  
  19. <CFIF IsDefined("Form.Apply")>
  20.     <!--- Update settings --->
  21.     <CFNewInternalRegistry Action="SET" Branch="#CFVSSKey#"
  22.         Entry="IniPath" Type="STRING" Value="#IniPath#">
  23.     <CFNewInternalRegistry Action="SET" Branch="#CFVSSKey#"
  24.         Entry="WorkingDir" Type="STRING" Value="#WorkingDir#">
  25.     <CFNewInternalRegistry Action="SET" Branch="#CFVSSKey#"
  26.         Entry="Timeout" Type="STRING" Value="#Timeout#">
  27. <CFELSE>
  28.     <!--- Retrieve settings --->
  29.     <CFNewInternalRegistry Action="GET" Branch="#CFVSSKey#"
  30.         Entry="IniPath" Type="STRING" Variable="IniPath">
  31.     <CFPARAM Name="IniPath" Default="">
  32.     <CFNewInternalRegistry Action="GET" Branch="#CFVSSKey#"
  33.         Entry="WorkingDir" Type="STRING" Variable="WorkingDir">
  34.     <CFPARAM Name="WorkingDir" Default="">
  35.     <CFNewInternalRegistry Action="GET" Branch="#CFVSSKey#"
  36.         Entry="Timeout" Type="STRING" Variable="Timeout">
  37.     <CFPARAM Name="Timeout" Default="30">
  38. </CFIF>
  39.  
  40. <!-- Heading -->
  41. <CFOUTPUT>
  42.     <FONT Face="#FONTFACE#" Size="#Evaluate(FONTSIZE + 2)#">
  43.         <B>Server-side Source Control</B>
  44.     </FONT>
  45.     <BR>
  46.     <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
  47.         ColdFusion Studio users can use Microsoft Visual SourceSafe via the ColdFusion server. 
  48.         You must install a network installation of SourceSafe on the same server as ColdFusion in order to use this feature. 
  49.         In addition, the Cold Fusion RDS service must be set to log on as a user with permission to the VSS directories. 
  50.         (This can be configured from the NT services control panel.) 
  51.         Please consult the your source control provider's documentation for the latest conditions of your license agreement.
  52.     </FONT>
  53.     <P>
  54. </CFOUTPUT>
  55.  
  56. <FORM Action="index.cfm" Method="POST">
  57. <TABLE Width="100%" Border="0">
  58.     <TR>
  59.         <TD>
  60.             <!-- IniPath -->
  61.             <CFOUTPUT>
  62.                 <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
  63.                     <B>Path to SrcSafe.ini</B>
  64.                     <INPUT Name="IniPath" Type="TEXT" VALUE="#IniPath#" Size="48"><BR>
  65.                     Enter the path to the directory that holds your server's <I>srcsafe.ini</I> 
  66.                     (e.g., "c:\vss\"). 
  67.                     Typically, this will be in the directory where you installed SourceSafe. 
  68.                 </FONT>
  69.                 <P>
  70.             </CFOUTPUT>
  71.         </TD>
  72.     </TR>
  73.     <TR>
  74.         <TD>
  75.             <!-- Working directory -->
  76.             <CFOUTPUT>
  77.                 <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
  78.                     <B>Working directory</B>
  79.                     <INPUT Name="WorkingDir" Type="TEXT" VALUE="#WorkingDir#" Size="48"><BR>
  80.                     The working directory is where files being edited by ColdFusion Studio users are kept (e.g., "c:\scwork\"). 
  81.                     The ColdFusion Remote Data Service will manage files here.
  82.                 </FONT>
  83.                 <P>
  84.             </CFOUTPUT>
  85.         </TD>
  86.     </TR>
  87.     <TR>
  88.         <TD>
  89.             <!-- Timeout -->
  90.             <CFOUTPUT>
  91.                 <FONT Face="#FONTFACE#" Size="#FONTSIZE#">
  92.                     <B>Operation Timeout</B>
  93.                     <INPUT Name="Timeout" Type="TEXT" VALUE="#Timeout#" Size="3"><BR>
  94.                     Performance can vary accoring to constraints on your source control system 
  95.                     (i.e., project size, number of users, etc.).
  96.                     If source control operations are timing out you can increase this value. 
  97.                     Otherwise, use the default.
  98.                 </FONT>
  99.             </CFOUTPUT>
  100.         </TD>
  101.     </TR>
  102.     <TR>
  103.         <TD>
  104.             <!-- Form buttons -->
  105.             <CFINCLUDE TEMPLATE="..\include\stdformbuttons.cfm">
  106.         </TD>
  107.     </TR>
  108. </TABLE>
  109. </FORM>
  110.         
  111. <!--- End admin page formatting --->
  112. <CFINCLUDE Template="../formatting/footer.cfm">
  113.  
  114. </BODY>
  115. </HTML>
  116.