Revision 5818
Added by Jing Tao almost 14 years ago
lib/style/skins/sanparks/settings.jsp | ||
---|---|---|
46 | 46 |
//ADVANCED_SEARCH_METACAT_POST_FIELD += |
47 | 47 |
String resultDestinationRepository = PropertyService.getProperty("executionEngine.resultDestinationRepository"); |
48 | 48 |
Vector repositoryList = StringUtil.toVector(resultDestinationRepository, ':'); |
49 |
String workflowRunEngineName = PropertyService.getProperty("executionEngine.workflowRunEngineName"); |
|
50 |
String workflowRunEngineURL = PropertyService.getProperty("executionEngine.endPointAddress"); |
|
51 |
String authorizationPath = PropertyService.getProperty("workflowScheduler.authorizationPath"); |
|
52 |
String authenticationPath = PropertyService.getProperty("workflowScheduler.authenticationPath"); |
|
53 |
String queryPath = PropertyService.getProperty("workflowScheduler.queryPath"); |
|
54 |
String authenticationServiceURL = CONTEXT_URL+authenticationPath |
|
49 | 55 |
%> |
lib/style/skins/sanparks/scheduleWorkflowRun.jsp | ||
---|---|---|
128 | 128 |
<% |
129 | 129 |
} |
130 | 130 |
%> |
131 |
|
|
132 |
<% |
|
133 |
if(CONTEXT_URL !=null){ |
|
134 |
%> |
|
135 |
<input name='sourceRepositoryBaseURL' value='<%=CONTEXT_URL%>' type='hidden' /> |
|
136 |
<% |
|
137 |
} |
|
138 |
%> |
|
139 |
|
|
140 |
<% |
|
141 |
if( authorizationPath !=null){ |
|
142 |
%> |
|
143 |
<input name='sourceAuthorPath' value='<%=authorizationPath%>' type='hidden' /> |
|
144 |
<% |
|
145 |
} |
|
146 |
%> |
|
147 |
|
|
148 |
<% |
|
149 |
if( queryPath !=null){ |
|
150 |
%> |
|
151 |
<input name='sourceQueryPath' value='<%=queryPath%>' type='hidden' /> |
|
152 |
<% |
|
153 |
} |
|
154 |
%> |
|
155 |
|
|
156 |
<% |
|
157 |
if( workflowRunEngineName!=null){ |
|
158 |
%> |
|
159 |
<input name='workflowRunEngineName' value='<%=workflowRunEngineName%>' type='hidden' /> |
|
160 |
<% |
|
161 |
} |
|
162 |
%> |
|
163 |
|
|
164 |
<% |
|
165 |
if( workflowRunEngineURL !=null){ |
|
166 |
%> |
|
167 |
<input name='workflowRunEngineURL' value='<%=workflowRunEngineURL%>' type='hidden' /> |
|
168 |
<% |
|
169 |
} |
|
170 |
%> |
|
171 |
|
|
172 |
<% |
|
173 |
if( request.getSession().getId() !=null){ |
|
174 |
%> |
|
175 |
<input name='sessionid' value='<%=request.getSession().getId()%>' type='hidden' /> |
|
176 |
<% |
|
177 |
} |
|
178 |
%> |
|
179 |
|
|
180 |
<% |
|
181 |
if( authenticationServiceURL !=null){ |
|
182 |
%> |
|
183 |
<input name='authServiceURL' value='<%=authenticationServiceURL%>' type='hidden' /> |
|
184 |
<% |
|
185 |
} |
|
186 |
%> |
|
131 | 187 |
<div class="form-input-row"> |
132 | 188 |
<div class="field-label" id='start-time-label' >Start Time: </div> |
133 | 189 |
<input class="date-input" name='starttime' id='starttime' /> |
Also available in: Unified diff
Add more parameters to the servlet.