%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
<%@ Import Namespace="Microsoft.SharePoint.Administration" %>
<%@ Assembly Name="Microsoft.SharePoint.ApplicationPages.Administration, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%> <%@ Page Language="C#" Inherits="Microsoft.SharePoint.ApplicationPages.SolutionStatusPage" MasterPageFile="~/_admin/admin.master" %> <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="wssawc" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="AdminControls" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint.ApplicationPages.Administration" %>
<%@ Register TagPrefix="wssuc" TagName="ToolBar" src="~/_controltemplates/ToolBar.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="ToolBarButton" src="~/_controltemplates/ToolBarButton.ascx" %>
|
|
<%SPHttpUtility.HtmlEncode(CurrentSolution.Name,Response.Output); %> |
|
<% SPHttpUtility.HtmlEncode(SolutionType,Response.Output); %> |
<%
if (!CurrentLangPack.IsWebPartPackage)
{
%>
|
<%SPHttpUtility.HtmlEncode(ContainsWebApplicationResource,Response.Output);%> |
|
<%SPHttpUtility.HtmlEncode(ContainsGlobalAssembly,Response.Output);%> |
|
<%SPHttpUtility.HtmlEncode(ContainsCasPolicy,Response.Output);%> |
|
<%SPHttpUtility.HtmlEncode(DeploymentServerType,Response.Output);%> |
<%
}
%>
|
<%SPHttpUtility.NoEncode(DeploymentStatus,Response.Output); %> |
<%
if (CurrentLangPack.IsWebPartPackage)
{
%>
|
<%SPHttpUtility.HtmlEncode(GACDeployment,Response.Output);%> |
<%
}
%>
|
<%SPHttpUtility.HtmlEncode(DeploymentLocations,Response.Output);%> |
<% string opResult, opDetails, opTime;
GetLastOperationDetails(out opResult, out opDetails, out opTime);
if (opResult.Length > 0)
{
%>
|
<%SPHttpUtility.HtmlEncode(opResult,Response.Output);%> |
<%
}
if (opDetails.Length > 0)
{
%>
|
<%SPHttpUtility.HtmlEncodeAllowSimpleTextFormatting(opDetails,Response.Output);%> |
<%
}
if (opTime.Length > 0)
{
%>
|
<%SPHttpUtility.HtmlEncode(opTime,Response.Output);%> |
<%
}
%>
<%
if (CurrentSolution.LanguagePacks.Count > 1)
{
%>
|
<%
int i = 0;
if (CurrentLangPack.LocaleId != 0 &&
CurrentSolution.LanguagePacks["0"] != null)
{
%>
<%
i++;
}
foreach (SPSolutionLanguagePack lp in CurrentSolution.LanguagePacks)
{
if (CurrentLangPack.LocaleId == lp.LocaleId ||
lp.LocaleId == 0)
{
continue;
}
if (i != 0)
{ %> <%}%>
<%SPHttpUtility.HtmlEncode(lp.Parent.Name+"(" + lp.LocaleId.ToString(System.Globalization.NumberFormatInfo.InvariantInfo)+")",Response.Output);%>
<%
i++;
}
%>
|
<%
}
%>