@@ -18,7 +18,7 @@ | |||
<h4><a href="@Url.SubRouteUrl("paste", "Paste.Index")">Fast and Secure Pastebin</a></h4> | |||
<h4><a href="@Url.SubRouteUrl("upload", "Upload.Index")">Encrypted File Uploads</a></h4> | |||
<h4><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Mail" })">Free Email Address</a></h4> | |||
<h4><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Api" })">Easy to Use API</a></h4> | |||
<h4><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "API" })">Easy to Use API</a></h4> | |||
<h4><a href="@Url.SubRouteUrl("git", "Git.Index")">Personal Git Repositories</a></h4> | |||
</div> | |||
<div class="col-sm-4 text-center"> |
@@ -29,7 +29,7 @@ namespace Teknik.Areas.Help.Controllers | |||
switch(topic.ToLower()) | |||
{ | |||
case "api": | |||
view = "~/Areas/Help/Views/Help/Api.cshtml"; | |||
view = "~/Areas/Help/Views/Help/API.cshtml"; | |||
break; | |||
case "blog": | |||
view = "~/Areas/Help/Views/Help/Blog.cshtml"; | |||
@@ -38,7 +38,7 @@ namespace Teknik.Areas.Help.Controllers | |||
view = "~/Areas/Help/Views/Help/Git.cshtml"; | |||
break; | |||
case "irc": | |||
view = "~/Areas/Help/Views/Help/Irc.cshtml"; | |||
view = "~/Areas/Help/Views/Help/IRC.cshtml"; | |||
break; | |||
case "mail": | |||
view = "~/Areas/Help/Views/Help/Mail.cshtml"; |
@@ -113,7 +113,7 @@ | |||
</tbody> | |||
</table> | |||
<h5>Response</h5> | |||
<pre><code>{"results":{"file":{"name":"<var>file_name</var>", "url":"<var>url</var>", "type":"<var>file_type</var>", "size":<var>size</var>, "key":<var>key</var>, "iv":<var>iv</var>, "deletionKey":<var>deletion_key</var>}}}</code></pre> | |||
<pre><code>{"results":{"file":{"name":"<var>fileName</var>", "url":"<var>url</var>", "type":"<var>file_type</var>", "size":<var>size</var>, "key":<var>key</var>, "iv":<var>iv</var>, "deletionKey":<var>deletionKey</var>}}}</code></pre> | |||
<table> | |||
<thead> | |||
<tr> |
@@ -15,16 +15,16 @@ | |||
<hr> | |||
<h3 class="text-center">Help Topics</h3> | |||
<dl class="dl-horizontal"> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Api" })">Api</a></dt> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "API" })">API</a></dt> | |||
<dd>Open API available to interact with the difference services.</dd> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Blog" })">Blogging</a></dt> | |||
<dd>Blogging platform available to the users and visible to the public.</dd> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Git" })">Git Repositories</a></dt> | |||
<dd>All the site's transactions, statistics, and data effecting actions.</dd> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Irc" })">Irc Network</a></dt> | |||
<dd>All the site's transactions, statistics, and data effecting actions.</dd> | |||
<dd>Unlimited public and private git repositories.</dd> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "IRC" })">IRC Network</a></dt> | |||
<dd>IRC network that uses the Teknik userbase for nickname authentication.</dd> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Mail" })">Mail Server</a></dt> | |||
<dd>All the site's transactions, statistics, and data effecting actions.</dd> | |||
<dd>Mail service with IMAP and POP3 support with <b>1 GB</b> storage.</dd> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Mumble" })">Mumble Chat Server</a></dt> | |||
<dd>The public Mumble server and configuration settings needed.</dd> | |||
<dt><a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Upload" })">Uploads</a></dt> |
@@ -107,7 +107,7 @@ | |||
</div> | |||
</div> | |||
</a> | |||
<a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "Irc"})"> | |||
<a href="@Url.SubRouteUrl("help", "Help.Topic", new { topic = "IRC"})"> | |||
<div class="col-md-3 text-center"> | |||
<div class="thumbnail"> | |||
<br/> |
@@ -300,9 +300,9 @@ | |||
<Content Include="Areas\Help\Views\web.config" /> | |||
<Content Include="Areas\Help\Views\_ViewStart.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\Index.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\Api.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\API.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\Git.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\Irc.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\IRC.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\Mail.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\Mumble.cshtml" /> | |||
<Content Include="Areas\Help\Views\Help\Blog.cshtml" /> |