Subversion Repositories DevTools

Rev

Rev 147 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 147 Rev 149
Line 125... Line 125...
125
'-- VERSION CONTROL CONSTANTS ------------------------------
125
'-- VERSION CONTROL CONSTANTS ------------------------------
126
Const enum_VCS_UNCONTROLLED_TAG  = "UC"
126
Const enum_VCS_UNCONTROLLED_TAG  = "UC"
127
Const enum_VCS_CLEARCASE_TAG     = "CC"
127
Const enum_VCS_CLEARCASE_TAG     = "CC"
128
Const enum_VCS_SUBVERSION_TAG    = "SVN"
128
Const enum_VCS_SUBVERSION_TAG    = "SVN"
129
Const enum_VCS_CVS_TAG           = "CVS"
129
Const enum_VCS_CVS_TAG           = "CVS"
-
 
130
 
130
'-- OP CODES for DAEMON INSTRUCTIONS, both in terms of strings and integers -------------------------------------------
131
'-- OP CODES for DAEMON INSTRUCTIONS, both in terms of strings and integers -------------------------------------------
-
 
132
'
-
 
133
'-- When adding to these, always update daemon_instructions.asp accordingly.
-
 
134
'-- Sometimes it might be necessary to update wAddDaemonInstruction.asp as well.
-
 
135
 
-
 
136
'-- human readable string names
131
Const OP_CODE_0_STR = "Ripple Build Package"          ' Corresponds to OP_CODE_0_RIPPLE_BUILD_PACKAGE
137
Const OP_CODE_0_STR = "Ripple Build Package"          ' Corresponds to OP_CODE_0_RIPPLE_BUILD_PACKAGE
132
'Const OP_CODE_1_STR = "Collect Metrics For Release"   ' Corresponds to OP_CODE_1_GET_RELEASE_METRICS
138
Const OP_CODE_1_STR = "Test Build Package"            ' Corresponds to OP_CODE_1_TEST_BUILD_PACKAGE
133
 
139
 
-
 
140
'-- equivalent integer values for use in query strings
134
Const OP_CODE_0_RIPPLE_BUILD_PACKAGE = "0"
141
Const OP_CODE_0_RIPPLE_BUILD_PACKAGE = "0"
135
'Const OP_CODE_1_GET_RELEASE_METRICS  = "1"
142
Const OP_CODE_1_TEST_BUILD_PACKAGE   = "1"
136
 
143
 
137
%>
144
%>