Box.htm
1 year ago
DropBox.htm
1 year ago
FTP.htm
1 year ago
GoogleDrive.htm
1 year ago
JetStorage.htm
1 year ago
Local.htm
1 year ago
OneDrive.htm
1 year ago
S3.htm
1 year ago
SFTP.htm
1 year ago
pCloud.htm
1 year ago
OneDrive.htm
31 lines
| 1 | <div ng-controller="destinationOneDrive"> |
| 2 | |
| 3 | <div class="form-group row" ng-if="!saveData.options.refresh_token"> |
| 4 | <label for="authorization_code" class="col-sm-3 col-form-label jb-label">{{ lang.t("Authorization Code") }}</label> |
| 5 | <div class="col-sm-7"> |
| 6 | <div class="input-group"> |
| 7 | <input id="authorization_code" required="required" class="form-control col-md-7 col-xs-12" type="text" ng-model="saveData.options.authorization_code" /> |
| 8 | <div class="input-group-btn"><a href="" class="btn btn-primary jb-background-orange border-0 ml-10" ng-click="getAuthCode()">{{ lang.t("Get Authorization Code") }}</a></div> |
| 9 | </div> |
| 10 | |
| 11 | </div> |
| 12 | </div> |
| 13 | |
| 14 | <div class="form-group row"> |
| 15 | <label for="http_version" class="col-sm-3 col-form-label jb-label">{{ lang.t("HTTP Version") }}</label> |
| 16 | <div class="col-sm-7"> |
| 17 | <select class="form-control" id="http_version" data-ng-options="httpversion_option.value as httpversion_option.label for httpversion_option in httpversion_options" data-ng-model="saveData.options.http_version"></select> |
| 18 | </div> |
| 19 | </div> |
| 20 | |
| 21 | <div class="form-group row"> |
| 22 | <label for="onedrive_retries" class="col-sm-3 col-form-label jb-label">{{ lang.t("HTTP Retries") }}</label> |
| 23 | <div class="col-sm-7"> |
| 24 | <input-dropdown addon="Retries" options="{0:lang.t('Disabled'),1:1,3:3,5:5,10:10}" ng-model="saveData.options.retries"> |
| 25 | <input id="onedrive_retries" validate-field="int" min="0" class="form-control" ng-model="saveData.options.retries" id="retries" type="text" value="" /> |
| 26 | </input-dropdown> |
| 27 | <p class="pd-3">{{ lang.t("If the HTTP call (upload / download / delete) fails for some reason retry for x times. Maximum 10") }}</p> |
| 28 | </div> |
| 29 | </div> |
| 30 | |
| 31 | </div> |