我希望有人可以帮我解决以下问题。
目前我对Windows Azure Pack存在一些问题,我想自定义MgmtSvc-AuthSite和MgmtSvc-TenantSite来更改文本,但是例如使用Chrome / Firefox我可以在HTML中看到的代码例如:
<div class="kt-introduction">
<h1>Unlimited Possibilities</h1>
<div class="kt-offering-value">
<span>The future of cloud computing is @ your fingertips!</span>
<ul>
<li>Rich and powerful services</li>
<li>Effortless management experience</li>
<li>Open and flexible plataform</li>
<li>Quickly build, deploy and manage applications across a global network</li>
</ul>
</div>
但是当我想改变这个文本时,我只看到这个:
@using Microsoft.WindowsAzure.Server.CommonPortalStrings;
<div class="kt-hero">
<img src="/Content/Images/hero.png" alt="Hero"/>
</div>
<div class="kt-main-content-area">
<div class="kt-introduction">
<h1>@TenantPortalControllerResources.UnlimitedPossibilities</h1>
<div class="kt-offering-value">
<span>@TenantPortalControllerResources.CloudComputingWelcomeMessage</span>
<ul>
<li>@TenantPortalControllerResources.CloudServicesBenefits</li>
<li>@TenantPortalControllerResources.CloudManagementWelcomeMessage</li>
<li>@TenantPortalControllerResources.FlexiblePlatformBenefit</li>
<li>@TenantPortalControllerResources.DeployApplicationQuickly</li>
</ul>
</div>
</div>
所以...我有几个小时试图找到更改代码的源代码,但我失败了...在MSDN中我认为使用powershell的命令
Unprotect-MgmtSvcConfiguration -namespace AuthSite
Unprotect-MgmtSvcConfiguration -namespace TenantSite
但它不起作用,所以我没有想法!...
答案 0 :(得分:0)
我可以理解您的问题,更改HTML不会在网站编译时直接更改内容,并且对主题的选项非常有限。有关如何主题化您的Customer Azure Pack Portal的文档非常好。
https://msdn.microsoft.com/en-us/library/dn528500.aspx
我在公司一侧使用Azure Pack来托管内部网站,我使用登录页面来引导用户并显示有关服务的信息,并为他们提供指向管理门户的链接。我从不共享管理门户网站链接,我只共享着陆页链接,因为用户将开始查看着陆页并了解他们点击链接时需要完成的工作。
我从你的文字中得到了这个:),
我在登陆页面上也有类似的东西。
希望答案有所帮助, 乐意帮助 - 真实地,CB