-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
cnenning
committed
Dec 6, 2016
1 parent
e5fd527
commit eabccbb
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<div class="form_item_block" title="See Apache HTTP Client docs."> | ||
<label>Connect Timeout:</label> | ||
<input type="text" ng-model="connectTimeout" /> | ||
<span class="form_error" ng-show="GOINPUTNAME[connectTimeout].$error.server">{{ GOINPUTNAME[connectTimeout].$error.server }}</span> | ||
</div> | ||
<div class="form_item_block" title="See Apache HTTP Client docs."> | ||
<label>Socket Timeout:</label> | ||
<input type="text" ng-model="socketTimeout" /> | ||
<span class="form_error" ng-show="GOINPUTNAME[socketTimeout].$error.server">{{ GOINPUTNAME[socketTimeout].$error.server }}</span> | ||
</div> | ||
<div class="form_item_block" title="See Apache HTTP Client docs."> | ||
<label>Connection Request Timeout:</label> | ||
<input type="text" ng-model="connectionRequestTimeout" /> | ||
<span class="form_error" ng-show="GOINPUTNAME[connectionRequestTimeout].$error.server">{{ GOINPUTNAME[connectionRequestTimeout].$error.server }}</span> | ||
</div> | ||
<div class="form_item_block" title="Proxy required to access Artifactory. String may contain scheme, host and port."> | ||
<label>Proxy URL:</label> | ||
<input type="text" ng-model="proxyUrl" /> | ||
<span class="form_error" ng-show="GOINPUTNAME[proxyUrl].$error.server">{{ GOINPUTNAME[proxyUrl].$error.server }}</span> | ||
</div> |