mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Corrected server paths.
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
DiscImageChef list of changes:
|
DiscImageChef list of changes:
|
||||||
</p>
|
</p>
|
||||||
<div>
|
<div>
|
||||||
<velyo:MarkdownContent ID="todo" runat="server" Path="docs/Changelog.md" />
|
<velyo:MarkdownContent ID="todo" runat="server" Path="~/docs/Changelog.md" />
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
DiscImageChef list of things to be donated:
|
DiscImageChef list of things to be donated:
|
||||||
</p>
|
</p>
|
||||||
<div>
|
<div>
|
||||||
<velyo:MarkdownContent ID="todo" runat="server" Path="docs/DONATING.md" />
|
<velyo:MarkdownContent ID="todo" runat="server" Path="~/docs/DONATING.md" />
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ namespace DiscImageChef.Server
|
|||||||
protected void Page_Load(object sender, EventArgs e)
|
protected void Page_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
MarkdownContent mkdown = new MarkdownContent();
|
MarkdownContent mkdown = new MarkdownContent();
|
||||||
StreamReader sr = new StreamReader("docs/README.md");
|
StreamReader sr = new StreamReader(Path.Combine(System.Web.Hosting.HostingEnvironment.MapPath("~"), "docs", "README.md"));
|
||||||
string mdcontent = sr.ReadToEnd();
|
string mdcontent = sr.ReadToEnd();
|
||||||
sr.Close();
|
sr.Close();
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
DiscImageChef list of things to do:
|
DiscImageChef list of things to do:
|
||||||
</p>
|
</p>
|
||||||
<div>
|
<div>
|
||||||
<velyo:MarkdownContent ID="todo" runat="server" Path="docs/TODO.md" />
|
<velyo:MarkdownContent ID="todo" runat="server" Path="~/docs/TODO.md" />
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user