/usr/local/jetapps/var/www/jetbackup5/docroot/app/views
<div ng-controller="cloneJobManage" class="controller-box"> <h1 ng-if="saveData._id">{{ lang.t("Modify Clone Job \"%s\"", details.name) }}</h1> <h1 ng-if="!saveData._id">{{ lang.t("Create New Clone Job") }}</h1> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12"> <div class="x_panel"> <div class="x_content"> <br> <form data-parsley-validate="" class="form-horizontal form-label-left" novalidate> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="name">{{ lang.t("Job Name") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12"> <input id="name" class="form-control col-md-7 col-xs-12" type="text" ng-model="saveData.name" value="" /> <p class="help-block">{{ lang.t("Specify an internal name for your job") }}</p> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Owner") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12"> <md-autocomplete md-search-text="autocomplete.accountText" md-no-cache="true" md-clear-button="false" md-input-id="accountSelection" md-menu-class="account-selection-results" md-selected-item-change="selectAccount(account)" md-items="account in searchAccounts(autocomplete.accountText)" md-min-length="2" placeholder="{{ lang.t('Start typing the requested account...') }}"> <md-item-template> <div ng-include="includePath('accountDropdown')"></div> </md-item-template> <md-not-found> {{ lang.t("No account matching \"%s\" were found.", autocomplete.accountText) }} </md-not-found> </md-autocomplete> <!--input id="owner" class="form-control col-md-7 col-xs-12" type="text" ng-model="saveData.owner_name" value="saveData.owner_name" /--> <p class="help-block">{{ lang.t("Specify the owner of this job. The owner and his parent will have permissions to modify/delete this clone job") }}</p> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Destinations") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12"> <ul class="list-unstyled schedules timeline"> <li ng-repeat="destination_id in saveData.destination" style="padding: 5px;"> <div class="block_content"> <h2 class="title"> <em aria-hidden="true" class="fas fa-cloud"></em> {{ destinations[destination_id].name }} | <a href="" ng-click="removeDestination(destination_id)" uib-tooltip="{{ lang.t('Remove Destination') }}"><em aria-hidden="true" class="fas fa-times"></em></a> </h2> <div class="byline"><span> {{ destinations[destination_id].display }} <span ng-show="destinations[destination_id].disabled"> | <span style="color: #cc0000;">{{lang.t("Disabled")}}</span></span> </span></div> </div> </li> <li ng-if="!saveData.destination.length">{{ lang.t("No destinations was set for this clone job") }}</li> </ul> <button type="button" ng-click="manageDestination()" class="btn btn-primary" style="margin-bottom: 10px;"> <em aria-hidden="true" class="fas fa-plus"></em> {{ lang.t("Add Destination") }} </button> <p class="help-block">{{ lang.t("Clone destinations can only be created using the SSH Destination Plugin at this time. You can find more details about this in the following link:") }} <a href="{{const.DOCS_ADMIN_URL}}/Destinations/DestinationType/SSHDestination.html" target="_blank">{{const.DOCS_ADMIN_URL}}/Destinations/DestinationType/SSHDestination.html</a> </p> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Clone Type") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12"> <div class="pretty p-default p-round p-smooth" ng-repeat="type in types"> <input type="radio" ng-model="saveData.type" id="clonetype_{{type.value}}" ng-checked="saveData.type == type.value" ng-click="toggleCloneType(type.value)" value="{{ type.value }}" /> <div class="state p-primary"><label for="clonetype_{{type.value}}">{{ type.label }}</label></div> </div> </div> </div> <div class="form-group" ng-show="saveData.type == const.CLONE_TYPE_ACCOUNT"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Clone Contains") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12 text-left"> <div ng-repeat="type in account_types" style="margin-bottom: 3px;"> <div class="pretty p-default p-curve p-smooth"> <input aria-label="{{ type.label }} checkbox" type="checkbox" id="contains_{{type.value}}" ng-checked="typeChecked(type.value, saveData.contains)" ng-click="toggleContains(type.value)" value="{{ type.value }}" ng-disabled="cloneTypesDisabled[type.value]" /> <div aria-label="{{ type.label }} checkbox" class="state p-primary"><label for="contains_{{type.value}}">{{ type.label }}</label></div> </div> <div class="pretty p-default p-curve p-smooth" ng-show="type.value == const.CLONE_TYPE_ACCOUNT_EMAILS && typeChecked(const.CLONE_TYPE_ACCOUNT_EMAILS, saveData.contains)"> <input id="dontkeepstructure" type="checkbox" ng-checked="!typeChecked(1, saveData.options)" ng-click="toggleOptionsTypes(1)" /> <div class="state p-primary"><label for="dontkeepstructure">{{ lang.t("Include Emails Contents") }}</label></div> </div> <p class="help-block" style="font-size: 11px; color: #cc0000;" ng-show="type.value == const.CLONE_TYPE_ACCOUNT_EMAILS && typeChecked(const.CLONE_TYPE_ACCOUNT_EMAILS, saveData.contains) && typeChecked(1, saveData.options)">{{lang.t("Warning: Not including email contents will include ONLY email structure, all Emails contents won't be cloned")}}</p> </div> </div> </div> <div class="form-group" ng-show="saveData.type == const.CLONE_TYPE_ACCOUNT"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="default_owner">{{ lang.t("Default Owner") }}</label> <div class="col-md-6 col-sm-6 col-xs-12 text-left"> <input class="form-control" id="default_owner" ng-model="saveData.default_owner" /> <p class="help-block">{{lang.t("Leave empty to use live account owner")}}</p> </div> </div> <div class="form-group" ng-show="saveData.type == const.CLONE_TYPE_ACCOUNT"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="default_package">{{ lang.t("Default Package") }}</label> <div class="col-md-6 col-sm-6 col-xs-12 text-left"> <input class="form-control" id="default_package" ng-model="saveData.default_package" /> <p class="help-block">{{lang.t("Leave empty to use live account package")}}</p> </div> </div> <div class="form-group" ng-show="saveData.type == const.CLONE_TYPE_ACCOUNT"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Suspend Account") }}</label> <div class="col-md-6 col-sm-6 col-xs-12 text-left"> <div class="pretty p-default p-round p-smooth"> <input type="radio" ng-model="saveData.suspend_after" id="suspend_after_1" ng-checked="saveData.suspend_after == 1" value="1" /> <div class="state p-primary"><label for="suspend_after_1">{{ lang.t("Yes") }}</label></div> </div> <div class="pretty p-default p-round p-smooth"> <input type="radio" ng-model="saveData.suspend_after" id="suspend_after_0" ng-checked="saveData.suspend_after == 0" value="0" /> <div class="state p-primary"><label for="suspend_after_0">{{ lang.t("No") }}</label></div> </div> <p class="help-block">{{lang.t("Suspend account after cloning to remote destination")}}</p> </div> </div> <div class="form-group" ng-show="saveData.type == const.CLONE_TYPE_ACCOUNT"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Account Filters") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12"> <ul class="list-unstyled schedules timeline"> <li ng-repeat="filter in filtersStructure track by $index" style="border: 0;"> <div class="filter-separator" ng-show="filter.cond"> <select id="filter_{{filter._id}}" class="form-control" style="width: 100px;" data-ng-options="condition._id as condition.name for condition in filtersConditions" data-ng-model="filter.cond"></select> </div> <div class="block_content" style="padding: 10px 0;"> <h2 class="title"> <em aria-hidden="true" class="fas fa-filter"></em> <label for="filter_{{filter._id}}">{{ filters[filter._id].name }}</label> | <a href="" class="filter-sort" ng-click="upFilter($index)" uib-tooltip="{{ lang.t('Move Filter Up') }}" ng-class="{ 'disabled': $index == 0 }"><em aria-hidden="true" class="fas fa-arrow-circle-up"></em></a> <a href="" class="filter-sort" ng-click="downFilter($index)" uib-tooltip="{{ lang.t('Move Filter Down') }}" ng-class="{ 'disabled': $index == (filtersStructure.length-1) }"><em aria-hidden="true" class="fas fa-arrow-circle-down"></em></a> <a href="" ng-click="removeFilter($index)" uib-tooltip="{{ lang.t('Remove Filter') }}"><em aria-hidden="true" class="fas fa-times"></em></a> </h2> <!--div class="byline"><span>{{ filters[filter._id].type }}</span></div--> </div> </li> <li ng-if="!saveData.filters.length">{{ lang.t("Clone all accounts. (add account filters to filter out accounts)") }}</li> </ul> <button type="button" ng-click="filterSelection()" class="btn btn-primary" style="margin-bottom: 10px;"> <em aria-hidden="true" class="fas fa-plus"></em> {{ lang.t("Add another Account Filter") }} </button> </div> </div> <!--div class="form-group" ng-show="saveData.type == const.CLONE_TYPE_DIRECTORY"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Directories and Files to include") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12"> <a href="" class="btn btn-primary" ng-click="fileBrowse()">{{ lang.t("Select Files") }}</a> <button type="button" class="btn btn-primary" ng-click="addMultiListRow('include', saveData.include_list)">{{ lang.t("Insert Multiple") }}</button> <div class="include-btns" style="margin-top: 20px;"> <button type="button" ng-click="saveData.include_list.splice($index, 1)" class="btn btn-primary btn-xs" ng-repeat="include in saveData.include_list track by $index"> <em aria-hidden="true" class="fas fa-times"></em> {{ include }} </button> </div> </div> </div--> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="exclude_list">{{ lang.t("Directories and Files to exclude") }}</label> <div class="col-md-6 col-sm-6 col-xs-12"> <div class="input-group"> <input id="exclude_list" class="form-control" ng-model="excluderow" type="text" value="" /> <div class="input-group-btn"> <button type="button" class="btn btn-primary" ng-click="addListRow('excluderow', saveData.exclude_list)">{{ lang.t("Add Path") }}</button> <button type="button" class="btn btn-primary" ng-click="addMultiListRow('exclude', saveData.exclude_list)">{{ lang.t("Insert Multiple") }}</button> </div> </div> <p class="help-block">{{ lang.t("Recommendations for files / folders to exclude in the following link:") }}<a href="{{const.DOCS_ADMIN_URL}}/cloneJobs.html#directories-and-files-to-include" target="_blank">{{const.DOCS_ADMIN_URL}}/cloneJobs.html#directories-and-files-to-include</a></p> <div class="include-btns"> <button type="button" ng-click="saveData.exclude_list.splice($index, 1)" class="btn btn-primary btn-xs" ng-repeat="exclude in saveData.exclude_list track by $index"> <em aria-hidden="true" class="fas fa-times"></em> {{ exclude }} </button> </div> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Schedules") }} <span class="required">*</span></label> <div class="col-md-6 col-sm-6 col-xs-12"> <div class="alert alert-danger" ng-show="scheduleTimeMismatch"> {{ lang.t("Please note that your selected schedules is not set to run in the same time. This will cause in generating multiple snapshots in the same day. It is highly recommended to setup schedules with the same execution time.") }} </div> <ul class="list-unstyled schedules timeline"> <li ng-repeat="schedule in saveData.schedules" style="padding: 5px;"> <div class="block_content"> <h2 class="title"> <em aria-hidden="true" class="fas fa-calendar"></em> {{ schedules[schedule._id].name }} | <a href="" ng-click="scheduleSelection(schedule)" uib-tooltip="{{ lang.t('Manage Schedule') }}"><em aria-hidden="true" class="fas fa-cog"></em></a> <a href="" ng-click="removeSchedule(schedule)" uib-tooltip="{{ lang.t('Remove Schedule') }}"><em aria-hidden="true" class="fas fa-times"></em></a> </h2> <div class="byline"><span>{{ schedules[schedule._id].display }}</span></div> </div> </li> <li ng-if="!saveData.schedules.length">{{ lang.t("No schedules was set for this clone job") }}</li> </ul> <button type="button" ng-click="scheduleSelection()" class="btn btn-primary" style="margin-bottom: 10px;"> <em aria-hidden="true" class="fas fa-plus"></em> {{ lang.t("Add another Schedule") }} </button> </div> </div> <div class="form-group" ng-hide="hideTime()"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="time">{{ lang.t("Schedule Time") }}</label> <div class="col-md-6 col-sm-6 col-xs-12"> <div class="input-group" moment-picker="saveData.time_parsed" format="hh:mm A" show-header="false"> <span class="input-group-addon"> <em aria-hidden="true" class="far fa-clock"></em> </span> <input class="form-control" id="time" placeholder="{{ lang.t('Select a time') }}" ng-model="saveData.time_parsed" ng-model-options="{ updateOn: 'blur' }"> </div> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ lang.t("Monitor") }}</label> <div class="col-md-6 col-sm-6 col-xs-12"> <input-dropdown options="{0:lang.t('Disabled'),1:1,2:2,3:3,5:5}" ng-model="saveData.monitor.notran" prefix="{{lang.t('Notify me if there were no clone for')}}" addon="{{lang.t('Days')}}"> <input validate-field="int" min="0" class="form-control" ng-model="saveData.monitor.notran" id="monitor_notran" type="text" value="" /> </input-dropdown> <input-dropdown options="{0:lang.t('Disabled'),1:1,2:2,3:3,5:5}" ng-model="saveData.monitor.ranfor" prefix="{{lang.t('Notify me if clone runs more than')}}" addon="{{lang.t('Days')}}"> <input validate-field="int" min="0" class="form-control" ng-model="saveData.monitor.ranfor" id="monitor_ranfor" type="text" value="" /> </input-dropdown> </div> </div> <div class="ln_solid"></div> <div class="form-group"> <div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-3" ng-if="changed"> <button type="button" class="btn btn-default" ng-click="cancel()">{{ lang.t("Cancel") }}</button> <button type="button" class="btn btn-primary" ng-click="saveChanges(true)" ng-disabled="saveing">{{ lang.t("Apply") }}</button> <button type="button" class="btn btn-primary" ng-click="saveChanges()" ng-disabled="saveing">{{ lang.t("Save") }}</button> </div> <div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-3" ng-if="!changed"> <a href="{{primaryURL}}/cloneJobs" class="btn btn-default" ng-click="changeView('/cloneJobs')">{{ lang.t("Back to Clone Jobs") }}</a> </div> </div> </form> </div> </div> </div> </div> </div>
.
Edit
..
Edit
404.htm
Edit
accountActions.htm
Edit
accountBackups.htm
Edit
accountBackupsDownloadSummary.htm
Edit
accountBackupsLockSummary.htm
Edit
accountBackupsRestoreSummary.htm
Edit
accountBackupsUnlockSummary.htm
Edit
accountDownloads.htm
Edit
accountDropdown.htm
Edit
accountExcludeListSelection.htm
Edit
accountFilterActions.htm
Edit
accountFilterGroupActions.htm
Edit
accountFilterGroupManage.htm
Edit
accountFilterGroupManageFields.htm
Edit
accountFilterGroupManagePopup.htm
Edit
accountFilterGroupSelection.htm
Edit
accountFilterGroups.htm
Edit
accountFilterManage.htm
Edit
accountFilterManageFields.htm
Edit
accountFilterManagePopup.htm
Edit
accountFilters
Edit
accountFilters.htm
Edit
accountManage.htm
Edit
accountOrphanActions.htm
Edit
accountPackagesSelection.htm
Edit
accountReassign.htm
Edit
accountSelection.htm
Edit
accounts.htm
Edit
accountsOrphans.htm
Edit
accountsSelection.htm
Edit
addons.htm
Edit
agreement.htm
Edit
agreementPanel.htm
Edit
alerts.htm
Edit
backupJobActions.htm
Edit
backupJobManage.htm
Edit
backupJobs.htm
Edit
backupJobsSelection.htm
Edit
backupLockSelection.htm
Edit
cloneJobActions.htm
Edit
cloneJobManage.htm
Edit
cloneJobs.htm
Edit
cloneJobsSelection.htm
Edit
confirm.htm
Edit
dashboard.htm
Edit
destinationActions.htm
Edit
destinationManage.htm
Edit
destinations
Edit
destinations.htm
Edit
destinationsSelection.htm
Edit
disableUI.htm
Edit
disasterRecovery
Edit
disasterRecovery.htm
Edit
downloads.htm
Edit
encryptionKeySelection.htm
Edit
extension.htm
Edit
fileBrowse.htm
Edit
fileManager.htm
Edit
fileManagerDownload.htm
Edit
fileManagerPopup.htm
Edit
fileManagerRestore.htm
Edit
fileManagerView.htm
Edit
filePermissions.htm
Edit
filePermissionsActions.htm
Edit
filePermissionsManage.htm
Edit
hookActions.htm
Edit
hookManage.htm
Edit
hooks.htm
Edit
license.htm
Edit
listSelection.htm
Edit
logActions.htm
Edit
logItemActions.htm
Edit
logItems.htm
Edit
logViewer.htm
Edit
login.htm
Edit
logs.htm
Edit
main.htm
Edit
modifyDatabasesExcludes.htm
Edit
modifyMongoDBExcludes.htm
Edit
modifyMySQLExcludes.htm
Edit
modifyPostgreSQLExcludes.htm
Edit
myAccount.htm
Edit
notifications
Edit
packageActions.htm
Edit
packages.htm
Edit
permissions.htm
Edit
plugin.htm
Edit
pluginActions.htm
Edit
pluginManage.htm
Edit
plugins.htm
Edit
queue.htm
Edit
queueActions.htm
Edit
queueItemActions.htm
Edit
queueItems.htm
Edit
queueLogViewer.htm
Edit
queuePriorities.htm
Edit
queuePriorityActions.htm
Edit
queuePriorityManage.htm
Edit
repositories.htm
Edit
repositoryActions.htm
Edit
repositoryManage.htm
Edit
restore.htm
Edit
restoreConditionActions.htm
Edit
restoreConditionManage.htm
Edit
restoreConditions.htm
Edit
restoreDirectories.htm
Edit
restoreDisasterRecovery.htm
Edit
restoreMultiAccount.htm
Edit
restoreSingle.htm
Edit
restoreSingleAccount.htm
Edit
scheduleActions.htm
Edit
scheduleManage.htm
Edit
scheduleManageFields.htm
Edit
scheduleManagePopup.htm
Edit
scheduleSelection.htm
Edit
schedules.htm
Edit
security.htm
Edit
securityAvailablePlugins.htm
Edit
settings
Edit
settings.htm
Edit
showcase.htm
Edit
sideMenu.htm
Edit
support
Edit
support.htm
Edit
tagActions.htm
Edit
tagManage.htm
Edit
tags.htm
Edit
tagsSelection.htm
Edit