2015-09-23 72 views
0

我希望有人可以幫助我下面的代碼。自定義Windows Azure包

在這一刻我有一個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

我可以理解你的問題,改變HTML不會直接更改內容,因爲該網站已編譯,並具有非常有限的主題選項。關於如何爲您的客戶Azure包門戶主題提供非常好的文檔。

https://msdn.microsoft.com/en-us/library/dn528500.aspx

我使用Azure的包在身旁我公司主辦的內部網站,我用一個登陸頁面,使用戶和顯示信息有關的服務,給他們一個鏈接到管理門戶。我從不共享管理門戶鏈接,因爲用戶只需點擊鏈接就可以開始查看登錄頁面並瞭解需要完成的工作,因此我只共享登錄頁面鏈接。

我得到這個從你的文字:),

我有類似的東西以及對着陸頁。

希望回答的幫助, 樂意幫助-Yours真正,CB