1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Fixed unchanged references.

This commit is contained in:
Uncled1023 2017-01-09 20:30:57 -08:00
parent 0cbfb9ade5
commit f59e444a3e
6 changed files with 10 additions and 12 deletions

View File

@ -14,8 +14,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerMaint", "ServerMaint\ServerMaint.csproj", "{E08975F9-1B84-41B0-875A-CEC9778C4F9E}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerMaint", "ServerMaint\ServerMaint.csproj", "{E08975F9-1B84-41B0-875A-CEC9778C4F9E}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Utilities", "Utilities", "{9408DBDE-D7DF-45EE-AAEB-821BABAA6152}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{783361EC-DCD6-4A34-8479-5476DF752C34}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{783361EC-DCD6-4A34-8479-5476DF752C34}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utilities", "Utilities\Utilities\Utilities.csproj", "{F45DE6FC-3754-4954-A20A-4277362CC6C1}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utilities", "Utilities\Utilities\Utilities.csproj", "{F45DE6FC-3754-4954-A20A-4277362CC6C1}"
@ -59,6 +57,5 @@ Global
EndGlobalSection EndGlobalSection
GlobalSection(NestedProjects) = preSolution GlobalSection(NestedProjects) = preSolution
{E08975F9-1B84-41B0-875A-CEC9778C4F9E} = {783361EC-DCD6-4A34-8479-5476DF752C34} {E08975F9-1B84-41B0-875A-CEC9778C4F9E} = {783361EC-DCD6-4A34-8479-5476DF752C34}
{F45DE6FC-3754-4954-A20A-4277362CC6C1} = {9408DBDE-D7DF-45EE-AAEB-821BABAA6152}
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal

View File

@ -1,6 +1,6 @@
@model Teknik.Areas.Help.ViewModels.HelpViewModel @model Teknik.Areas.Help.ViewModels.HelpViewModel
@using Teknik.Helpers @using Teknik.Utilities
<div class="container"> <div class="container">
<div class="row"> <div class="row">
@ -36,7 +36,7 @@
</p> </p>
<h3>Upload Requirements</h3> <h3>Upload Requirements</h3>
<p> <p>
The maximum file size per upload is <b>@Utility.GetBytesReadable(Model.Config.UploadConfig.MaxUploadSize)</b> The maximum file size per upload is <b>@StringHelper.GetBytesReadable(Model.Config.UploadConfig.MaxUploadSize)</b>
</p> </p>
<p> <p>
Each file is scanned for viruses at upload. If it fails, it will cancel the upload. Currently only files that are unencrypted when being sent to the server will be scanned successfully for viruses. If the file is encrypted client side, the encrypted data will be checked. This could create a false positive, but since the key is randomly generated, the next attempt should not be flagged. Each file is scanned for viruses at upload. If it fails, it will cancel the upload. Currently only files that are unencrypted when being sent to the server will be scanned successfully for viruses. If the file is encrypted client side, the encrypted data will be checked. This could create a false positive, but since the key is randomly generated, the next attempt should not be flagged.

View File

@ -1,6 +1,6 @@
@model Teknik.Areas.Transparency.ViewModels.TransparencyViewModel @model Teknik.Areas.Transparency.ViewModels.TransparencyViewModel
@using Teknik.Helpers @using Teknik.Utilities
@using Teknik.Areas.Transparency.Models @using Teknik.Areas.Transparency.Models
@Scripts.Render("~/bundles/transparency") @Scripts.Render("~/bundles/transparency")
@ -28,7 +28,7 @@
<div class="col-sm-6"> <div class="col-sm-6">
<h3>Uploads</h3> <h3>Uploads</h3>
<p>Number of Uploads: @Model.UploadCount</p> <p>Number of Uploads: @Model.UploadCount</p>
<p>Total Size: @Utility.GetBytesReadable(Model.UploadSize)</p> <p>Total Size: @StringHelper.GetBytesReadable(Model.UploadSize)</p>
</div> </div>
<div class="col-sm-6"> <div class="col-sm-6">
<h3>Pastes</h3> <h3>Pastes</h3>

View File

@ -1,6 +1,6 @@
@model Teknik.Areas.Upload.ViewModels.DownloadViewModel @model Teknik.Areas.Upload.ViewModels.DownloadViewModel
@using Teknik.Helpers @using Teknik.Utilities
<script> <script>
var encScriptSrc = '@Scripts.Url("~/bundles/cryptoWorker")'; var encScriptSrc = '@Scripts.Url("~/bundles/cryptoWorker")';
@ -24,7 +24,7 @@
<dt>Content-Type</dt> <dt>Content-Type</dt>
<dd>@Model.ContentType</dd> <dd>@Model.ContentType</dd>
<dt>File Size</dt> <dt>File Size</dt>
<dd>@(Utility.GetBytesReadable(Model.ContentLength))</dd> <dd>@(StringHelper.GetBytesReadable(Model.ContentLength))</dd>
</dl> </dl>
</div> </div>
</div> </div>

View File

@ -1,6 +1,6 @@
@model Teknik.Areas.Upload.ViewModels.UploadViewModel @model Teknik.Areas.Upload.ViewModels.UploadViewModel
@using Teknik.Helpers @using Teknik.Utilities
<script> <script>
var encScriptSrc = '@Scripts.Url("~/bundles/cryptoWorker")'; var encScriptSrc = '@Scripts.Url("~/bundles/cryptoWorker")';
@ -68,7 +68,7 @@
To view the file decrypted, you must use the direct Teknik link in a javascript enabled browser or save the key to the server. To view the file decrypted, you must use the direct Teknik link in a javascript enabled browser or save the key to the server.
</p> </p>
<p> <p>
The maximum file size per upload is <b>@Utility.GetBytesReadable(Model.Config.UploadConfig.MaxUploadSize)</b> The maximum file size per upload is <b>@StringHelper.GetBytesReadable(Model.Config.UploadConfig.MaxUploadSize)</b>
</p> </p>
</div> </div>
<div class="text-center"> <div class="text-center">

View File

@ -1,6 +1,7 @@
@model Teknik.Areas.Users.ViewModels.ProfileViewModel @model Teknik.Areas.Users.ViewModels.ProfileViewModel
@using Teknik.Helpers @using Teknik.Helpers
@using Teknik.Utilities
@using Teknik.Areas.Paste @using Teknik.Areas.Paste
@using Teknik.Areas.Upload @using Teknik.Areas.Upload
@ -127,7 +128,7 @@
<div class="panel-body"> <div class="panel-body">
<div class="col-sm-2 text-center"> <div class="col-sm-2 text-center">
<label for="size">Size</label> <label for="size">Size</label>
<p id="size">@Utility.GetBytesReadable(upload.ContentLength)</p> <p id="size">@StringHelper.GetBytesReadable(upload.ContentLength)</p>
</div> </div>
<div class="col-sm-3 text-center"> <div class="col-sm-3 text-center">
<label for="type">Type</label> <label for="type">Type</label>