|
1 | | -<%@ Control Language="c#" AutoEventWireup="True" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%> |
2 | | - |
3 | | -<script src="<%=ResolveUrl("~/umbraco/lib/angular/1.1.5/angular.min.js") %>"></script> |
4 | | -<script src="<%=ResolveUrl("~/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Controllers/Configure.js")%>"></script> |
5 | | - |
6 | | -<div ng-app ="UFSPLoader"> |
7 | | - <div ng-controller="Loader"> |
8 | | - <div class="row"> |
| 1 | + <div ng-controller="Loader"> |
| 2 | + <div class="row"> |
9 | 3 | <div class="span1"> |
10 | | - <img src="<%=ResolveUrl("~/App_Plugins/UmbracoFileSystemProviders/Azure/Install/azure-logo-32.png")%>"/> |
| 4 | + <img src="/App_Plugins/UmbracoFileSystemProviders/Azure/Install/azure-logo-32.png"/> |
11 | 5 | </div> |
12 | 6 | <div><h4>Umbraco Azure File System Provider</h4></div> |
13 | 7 | </div> |
14 | 8 | <div class="row"> |
15 | 9 | <div><hr /></div> |
16 | 10 | </div> |
17 | | - <div class="row" ng-show="!saved"> |
| 11 | + <div class="row" ng-show="!saved"> |
18 | 12 | <div> |
19 | 13 | <fieldset> |
20 | | - <legend><h4>To complete installation, please enter the required parameters for the Azure storage provider below</h4></legend> |
21 | | - <form name="paramForm" class="form-horizontal" role="form"> |
| 14 | + <legend><h4>To complete installation, please enter the required parameters for the Azure storage provider below</h4></legend> |
| 15 | + <form name="paramForm" class="form-horizontal" role="form"> |
22 | 16 | <div ng-repeat="param in parameters" class="control-group"> |
23 | 17 | <ng-form name="form"> |
24 | | - <label class="control-label" for="param.key">{{ capitalizeFirstLetter(param.key) }}</label> |
| 18 | + <label class="control-label" for="param.key">{{ capitalizeFirstLetter(param.key) }}</label> |
25 | 19 | <div class="controls"> |
26 | | - <span ng-if="getInputType(param.key) === 'checkbox'" ng-include="'<%=ResolveUrl("/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/checkbox.htm")%>'"></span> |
27 | | - <span ng-if="getInputType(param.key) === 'text'" ng-include="'<%=ResolveUrl("/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/textfield.htm")%>'"></span> |
| 20 | + <span ng-if="getInputType(param.key) === 'checkbox'" ng-include="/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/checkbox.htm"></span> |
| 21 | + <span ng-if="getInputType(param.key) === 'text'" ng-include="/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/textfield.htm"></span> |
28 | 22 | </div> |
29 | 23 | <span data-ng-show=" {{'form.'+param.key+'.$dirty && form.'+param.key+'.$error.required'}}">Required!</span> |
30 | 24 | </ng-form> |
|
33 | 27 | </form> |
34 | 28 | </fieldset> |
35 | 29 | </div> |
36 | | - </div> |
| 30 | + </div> |
37 | 31 | <div class="row" ng-show="!saved"> |
38 | 32 | <div><hr /></div> |
39 | | - </div> |
| 33 | + </div> |
40 | 34 |
|
41 | 35 | <div class="row"> |
42 | 36 | <div> |
43 | 37 | <div class="alert alert-success" ng-show="saved && (status === 'Ok' || status === 'ImageProcessorWebCompatibility' || status === 'ImageProcessorWebConfigError')"> |
44 | | - The Azure storage provider was sucessfully configured and your media is now as light as candyfloss |
| 38 | + The Azure storage provider was sucessfully configured and your media is now as light as candyfloss |
45 | 39 | </div> |
46 | 40 | <div class="alert alert-info" ng-show="saved && status === 'ImageProcessorWebCompatibility'"> |
47 | | - <strong>Warning!</strong> You need to upgrade the installed version of ImageProcessor.Web to v4.3.2+ (reinstall this package once you've updated) to be fully compatible with this package <a href="https://our.umbraco.org/projects/collaboration/imageprocessor/" target="_blank">https://our.umbraco.org/projects/collaboration/imageprocessor/</a> |
| 41 | + <strong>Warning!</strong> You need to upgrade the installed version of ImageProcessor.Web to v4.3.2+ (reinstall this package once you've updated) to be fully compatible with this package <a href="https://our.umbraco.org/projects/collaboration/imageprocessor/" target="_blank">https://our.umbraco.org/projects/collaboration/imageprocessor/</a> |
48 | 42 | </div> |
49 | 43 | <div class="alert alert-info" ng-show="saved && status === 'ImageProcessorWebConfigError'"> |
50 | | - <strong>Warning!</strong> The installer was unable to configure ImageProcessor.Web, please see documentation to fix the issue <a href="https://our.umbraco.org/projects/collaboration/umbracofilesystemprovidersazure/" target="_blank">https://our.umbraco.org/projects/collaboration/umbracofilesystemprovidersazure/</a> |
| 44 | + <strong>Warning!</strong> The installer was unable to configure ImageProcessor.Web, please see documentation to fix the issue <a href="https://our.umbraco.org/projects/collaboration/umbracofilesystemprovidersazure/" target="_blank">https://our.umbraco.org/projects/collaboration/umbracofilesystemprovidersazure/</a> |
51 | 45 | </div> |
52 | 46 | <div class="alert alert-error" ng-show="saved && status != 'Ok' && status != 'ImageProcessorWebCompatibility'"> |
53 | 47 | <strong>Oh no</strong>, something went wrong saving, please check Umbraco log files for exceptions |
54 | 48 | </div> |
55 | 49 | <div class="alert alert-error" ng-show="!saved && status === 'ConnectionError'"> |
56 | 50 | <strong>Oh no</strong>, there was something wrong with your Azure connection string, please check and try again, more info in the Umbraco log files |
57 | | - </div> |
| 51 | + </div> |
58 | 52 | </div> |
59 | 53 | </div> |
60 | | - |
61 | | - </div> |
62 | | -</div> |
63 | 54 |
|
| 55 | + </div> |
0 commit comments