Skip to content

Commit 89077c1

Browse files
committed
new theme
1 parent 078a4d8 commit 89077c1

File tree

81 files changed

+54061
-326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+54061
-326
lines changed

GasPrice.Job/GasPrice.Job.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,11 @@
106106
<ItemGroup>
107107
<None Include="App.config" />
108108
<None Include="packages.config" />
109-
<None Include="Properties\PublishProfiles\ethrsk - Web Deploy.pubxml" />
110109
<None Include="Properties\PublishProfiles\rskgasstation - Web Deploy.pubxml" />
111110
<None Include="Properties\webjob-publish-settings.json" />
111+
<None Include="Settings.job">
112+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
113+
</None>
112114
</ItemGroup>
113115
<ItemGroup>
114116
<ProjectReference Include="..\GasPrice.Data\GasPrice.Data.csproj">
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
<PropertyGroup>
7+
<WebPublishMethod>MSDeploy</WebPublishMethod>
8+
<PublishProvider>AzureWebSite</PublishProvider>
9+
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
10+
<LastUsedPlatform>Any CPU</LastUsedPlatform>
11+
<SiteUrlToLaunchAfterPublish>http://rskgasstation.azurewebsites.net</SiteUrlToLaunchAfterPublish>
12+
<LaunchSiteAfterPublish>False</LaunchSiteAfterPublish>
13+
<ResourceId>/subscriptions/1cd612cd-0a3b-46a3-99e2-e533029f88a5/resourceGroups/rskgasstation/providers/Microsoft.Web/sites/rskgasstation</ResourceId>
14+
<UserName>$rskgasstation</UserName>
15+
<_SavePWD>True</_SavePWD>
16+
<MSDeployServiceURL>rskgasstation.scm.azurewebsites.net:443</MSDeployServiceURL>
17+
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
18+
<SkipExtraFilesOnServer>False</SkipExtraFilesOnServer>
19+
<EnableMsDeployAppOffline>False</EnableMsDeployAppOffline>
20+
<DeployIisAppPath>rskgasstation</DeployIisAppPath>
21+
<_DestinationType>AzureWebSite</_DestinationType>
22+
</PropertyGroup>
23+
</Project>

GasPrice.Job/Settings.job

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
3+
// Examples:
4+
5+
// Runs every minute
6+
// "schedule": "0 * * * * *"
7+
8+
// Runs every 15 minutes
9+
// "schedule": "0 */15 * * * *"
10+
11+
// Runs every hour (i.e. whenever the count of minutes is 0)
12+
// "schedule": "0 0 * * * *"
13+
14+
// Runs every hour from 9 AM to 5 PM
15+
// "schedule": "0 0 9-17 * * *"
16+
17+
// Runs at 9:30 AM every day
18+
// "schedule": "0 30 9 * * *"
19+
20+
// Runs at 9:30 AM every week day
21+
// "schedule": "0 30 9 * * 1-5"
22+
}

GasPrice.Web/App_Start/BundleConfig.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ public static void RegisterBundles(BundleCollection bundles)
2323
"~/Scripts/bootstrap.js"));
2424

2525
bundles.Add(new StyleBundle("~/Content/css").Include(
26-
"~/Content/bootstrap.css",
27-
"~/Content/site.css"));
26+
"~/Content/bootstrap.css"));
2827
}
2928
}
3029
}

GasPrice.Web/Content/Site.css

-81
This file was deleted.

GasPrice.Web/GasPrice.Web.csproj

+103-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props')" />
34
<Import Project="..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
45
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
56
<PropertyGroup>
@@ -25,6 +26,7 @@
2526
<UseGlobalApplicationHostFile />
2627
<NuGetPackageImportStamp>
2728
</NuGetPackageImportStamp>
29+
<TypeScriptToolsVersion>3.7</TypeScriptToolsVersion>
2830
</PropertyGroup>
2931
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3032
<DebugSymbols>true</DebugSymbols>
@@ -157,25 +159,109 @@
157159
<Compile Include="Properties\AssemblyInfo.cs" />
158160
</ItemGroup>
159161
<ItemGroup>
162+
<Content Include="assets\css\code.css" />
163+
<Content Include="assets\css\owl.carousel.min.css" />
164+
<Content Include="assets\css\owl.theme.default.min.css" />
165+
<Content Include="assets\css\styles.css" />
166+
<Content Include="assets\css\styles_dark.css" />
167+
<Content Include="assets\img\black_shape.png" />
168+
<Content Include="assets\img\dark_green_shape.png" />
169+
<Content Include="assets\img\favicons\android-chrome-192x192.png" />
170+
<Content Include="assets\img\favicons\android-chrome-512x512.png" />
171+
<Content Include="assets\img\favicons\apple-touch-icon.png" />
172+
<Content Include="assets\img\favicons\browserconfig.xml" />
173+
<Content Include="assets\img\favicons\favicon-16x16.png" />
174+
<Content Include="assets\img\favicons\favicon-32x32.png" />
175+
<Content Include="assets\img\favicons\favicon.ico" />
176+
<Content Include="assets\img\favicons\mstile-150x150.png" />
177+
<Content Include="assets\img\favicons\safari-pinned-tab.svg" />
178+
<Content Include="assets\img\green_shape.png" />
179+
<Content Include="assets\img\next-arrow.png" />
180+
<Content Include="assets\img\powered_by_iov.svg" />
181+
<Content Include="assets\img\prev-arrow.png" />
182+
<Content Include="assets\img\rsk_logo.svg" />
183+
<Content Include="assets\js\main.js" />
184+
<Content Include="assets\vendor\bootstrap\css\bootstrap-grid.css" />
185+
<Content Include="assets\vendor\bootstrap\css\bootstrap-grid.min.css" />
186+
<Content Include="assets\vendor\bootstrap\css\bootstrap-reboot.css" />
187+
<Content Include="assets\vendor\bootstrap\css\bootstrap-reboot.min.css" />
188+
<Content Include="assets\vendor\bootstrap\css\bootstrap.css" />
189+
<Content Include="assets\vendor\bootstrap\css\bootstrap.min.css" />
190+
<Content Include="assets\vendor\bootstrap\js\bootstrap.bundle.js" />
191+
<Content Include="assets\vendor\bootstrap\js\bootstrap.bundle.min.js" />
192+
<Content Include="assets\vendor\bootstrap\js\bootstrap.js" />
193+
<Content Include="assets\vendor\bootstrap\js\bootstrap.min.js" />
194+
<Content Include="assets\vendor\carousel\owl.carousel.min.js" />
195+
<Content Include="assets\vendor\jquery\jquery.js" />
196+
<Content Include="assets\vendor\jquery\jquery.min.js" />
197+
<Content Include="assets\vendor\jquery\jquery.slim.js" />
198+
<Content Include="assets\vendor\jquery\jquery.slim.min.js" />
199+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\.gitignore" />
200+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\jquery.mCustomScrollbar.concat.min.js" />
201+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\jquery.mCustomScrollbar.css" />
202+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\jquery.mCustomScrollbar.js" />
203+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\jquery.mCustomScrollbar.min.css" />
204+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery-1.11.0.min.js" />
205+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery-1.9.1.min.js" />
206+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery-2.1.0.min.js" />
207+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery-ui-1.10.4.min.js" />
208+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery.mCustomScrollbar.min.js" />
209+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery.mousewheel-3.0.6.min.js" />
210+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery.mousewheel.min.js" />
211+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\uncompressed\jquery.mCustomScrollbar.js" />
212+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\uncompressed\jquery.mousewheel-3.0.6.js" />
213+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\uncompressed\jquery.mousewheel.js" />
214+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\LICENSE.txt" />
215+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\mCSB_buttons.png" />
216+
<Content Include="Content\bootstrap-grid.css" />
217+
<Content Include="Content\bootstrap-grid.min.css" />
218+
<Content Include="Content\bootstrap-reboot.css" />
219+
<Content Include="Content\bootstrap-reboot.min.css" />
160220
<Content Include="Content\bootstrap.css" />
161221
<Content Include="Content\bootstrap.min.css" />
162222
<Content Include="Content\favicon-16x16.png" />
163223
<Content Include="Content\favicon-32x32.png" />
164224
<Content Include="favicon.ico" />
165225
<Content Include="Global.asax" />
166-
<Content Include="Content\Site.css" />
167226
<Content Include="Scripts\bignumber.min.js" />
168227
<Content Include="ApplicationInsights.config">
169228
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
170229
</Content>
171230
<Content Include="Content\bootstrap.min.css.map" />
172231
<Content Include="Content\bootstrap.css.map" />
232+
<Content Include="assets\img\favicons\site.webmanifest" />
233+
<Content Include="assets\vendor\bootstrap\css\bootstrap-grid.css.map" />
234+
<Content Include="assets\vendor\bootstrap\css\bootstrap-grid.min.css.map" />
235+
<Content Include="assets\vendor\bootstrap\css\bootstrap-reboot.css.map" />
236+
<Content Include="assets\vendor\bootstrap\css\bootstrap-reboot.min.css.map" />
237+
<Content Include="assets\vendor\bootstrap\css\bootstrap.css.map" />
238+
<Content Include="assets\vendor\bootstrap\css\bootstrap.min.css.map" />
239+
<Content Include="assets\vendor\bootstrap\js\bootstrap.bundle.js.map" />
240+
<Content Include="assets\vendor\bootstrap\js\bootstrap.bundle.min.js.map" />
241+
<Content Include="assets\vendor\bootstrap\js\bootstrap.js.map" />
242+
<Content Include="assets\vendor\bootstrap\js\bootstrap.min.js.map" />
243+
<Content Include="assets\vendor\jquery\jquery.min.map" />
244+
<Content Include="assets\vendor\jquery\jquery.slim.min.map" />
245+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\bower.json" />
246+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\js\minified\jquery.mCustomScrollbar.min.js.gz" />
247+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\package.json" />
248+
<Content Include="assets\vendor\malihu-custom-scrollbar-plugin-master\malihu-custom-scrollbar-plugin-master\readme.md" />
249+
<Content Include="Content\bootstrap-grid.css.map" />
250+
<Content Include="Content\bootstrap-grid.min.css.map" />
251+
<Content Include="Content\bootstrap-reboot.css.map" />
252+
<Content Include="Content\bootstrap-reboot.min.css.map" />
173253
<None Include="Properties\PublishProfiles\ethrsk - Web Deploy.pubxml" />
174254
<None Include="Properties\PublishProfiles\rskgasstation - Web Deploy.pubxml" />
255+
<Content Include="Scripts\bootstrap.bundle.js" />
256+
<Content Include="Scripts\bootstrap.bundle.min.js" />
175257
<Content Include="Scripts\bootstrap.js" />
176258
<Content Include="Scripts\bootstrap.min.js" />
177259
<Content Include="Scripts\converter.js" />
178260
<Content Include="Scripts\index.js.flow" />
261+
<Content Include="Scripts\bootstrap.bundle.js.map" />
262+
<Content Include="Scripts\bootstrap.bundle.min.js.map" />
263+
<Content Include="Scripts\bootstrap.js.map" />
264+
<Content Include="Scripts\bootstrap.min.js.map" />
179265
<None Include="Scripts\jquery-3.4.1.intellisense.js" />
180266
<Content Include="Scripts\jquery-3.4.1.js" />
181267
<Content Include="Scripts\jquery-3.4.1.min.js" />
@@ -187,6 +273,10 @@
187273
<Content Include="Scripts\jquery.validate.unobtrusive.js" />
188274
<Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
189275
<Content Include="Scripts\modernizr-2.8.3.js" />
276+
<Content Include="Scripts\popper-utils.js" />
277+
<Content Include="Scripts\popper-utils.min.js" />
278+
<Content Include="Scripts\popper.js" />
279+
<Content Include="Scripts\popper.min.js" />
190280
<Content Include="Scripts\src\index.js" />
191281
<Content Include="Scripts\src\methods\defaults.js" />
192282
<Content Include="Scripts\src\methods\destroy.js" />
@@ -277,6 +367,11 @@
277367
<Content Include="Scripts\umd\popper.js.flow" />
278368
<Content Include="Scripts\umd\popper.js.map" />
279369
<Content Include="Scripts\umd\popper.min.js.map" />
370+
<Content Include="Scripts\popper-utils.js.map" />
371+
<Content Include="Scripts\popper-utils.min.js.map" />
372+
<Content Include="Scripts\popper.js.map" />
373+
<Content Include="Scripts\popper.min.js.map" />
374+
<Content Include="Scripts\README.md" />
280375
</ItemGroup>
281376
<ItemGroup>
282377
<Folder Include="App_Data\" />
@@ -290,11 +385,18 @@
290385
<Name>GasPrice.Data</Name>
291386
</ProjectReference>
292387
</ItemGroup>
388+
<ItemGroup>
389+
<TypeScriptCompile Include="Scripts\index.d.ts" />
390+
</ItemGroup>
391+
<ItemGroup>
392+
<Service Include="{4A0DDDB5-7A95-4FBF-97CC-616D07737A77}" />
393+
</ItemGroup>
293394
<PropertyGroup>
294395
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
295396
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
296397
</PropertyGroup>
297398
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
399+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets')" />
298400
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
299401
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
300402
<Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">

GasPrice.Job/Properties/PublishProfiles/ethrsk - Web Deploy.pubxml GasPrice.Web/Properties/PublishProfiles/rskgasstation - Web Deploy.pubxml

+11-5
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,22 @@ by editing this MSBuild file. In order to learn more about this please visit htt
66
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
77
<PropertyGroup>
88
<WebPublishMethod>MSDeploy</WebPublishMethod>
9+
<ResourceId>/subscriptions/1cd612cd-0a3b-46a3-99e2-e533029f88a5/resourceGroups/rskgasstation/providers/Microsoft.Web/sites/rskgasstation</ResourceId>
10+
<ResourceGroup>rskgasstation</ResourceGroup>
911
<PublishProvider>AzureWebSite</PublishProvider>
1012
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
1113
<LastUsedPlatform>Any CPU</LastUsedPlatform>
12-
<SiteUrlToLaunchAfterPublish>http://ethrsk.azurewebsites.net</SiteUrlToLaunchAfterPublish>
13-
<LaunchSiteAfterPublish>False</LaunchSiteAfterPublish>
14-
<MSDeployServiceURL>ethrsk.scm.azurewebsites.net:443</MSDeployServiceURL>
15-
<DeployIisAppPath>ethrsk</DeployIisAppPath>
14+
<SiteUrlToLaunchAfterPublish>http://rskgasstation.azurewebsites.net</SiteUrlToLaunchAfterPublish>
15+
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
16+
<ExcludeApp_Data>False</ExcludeApp_Data>
17+
<MSDeployServiceURL>rskgasstation.scm.azurewebsites.net:443</MSDeployServiceURL>
18+
<DeployIisAppPath>rskgasstation</DeployIisAppPath>
19+
<RemoteSitePhysicalPath />
1620
<SkipExtraFilesOnServer>True</SkipExtraFilesOnServer>
21+
<InstallAspNetCoreSiteExtension>False</InstallAspNetCoreSiteExtension>
1722
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
18-
<UserName>$ethrsk</UserName>
23+
<EnableMSDeployBackup>True</EnableMSDeployBackup>
24+
<UserName>$rskgasstation</UserName>
1925
<_SavePWD>True</_SavePWD>
2026
<_DestinationType>AzureWebSite</_DestinationType>
2127
</PropertyGroup>

0 commit comments

Comments
 (0)