Adds support for install statistics

This commit is contained in:
NielsHartvig@UMBRACORATI.localdomain
2013-01-30 19:41:36 -01:00
parent b20bb7a5a2
commit 00cf20a8d0
9 changed files with 218 additions and 42 deletions

View File

@@ -11,7 +11,7 @@
<meta charset="utf-8">
<umb1:PageTitle runat="server" />
<link rel="icon" type="image/png" href="<%=umbraco.GlobalSettings.Path + "/images/pinnedIcons/umb.ico" %>" />
<link media="all" rel="stylesheet" href="../umbraco_client/installer/css/jquery-ui-1.8.6.custom.css" />
@@ -40,7 +40,11 @@
<form runat="server">
<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server" />
<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server">
<Services>
<asp:ServiceReference Path="../umbraco/webservices/CheckForUpgrade.asmx" />
</Services>
</asp:ScriptManager>
<!-- all page -->
<section id="wrapper">

View File

@@ -12,6 +12,9 @@ jQuery(document).ready(function () {
function (data) {
jQuery("#ajax-developervids").html(data);
});
umbraco.presentation.webservices.CheckForUpgrade.InstallStatus(true, navigator.userAgent, "");
});
</script>

View File

@@ -47,4 +47,9 @@
<asp:LinkButton ID="btnNext" CssClass="btn btn-get" runat="server" OnClick="gotoNextStep"><span>Let's get started!</span></asp:LinkButton>
</footer>
</div>
</div>
<script type="text/javascript">
jQuery(document).ready(function () {
umbraco.presentation.webservices.CheckForUpgrade.InstallStatus(false, navigator.userAgent, "");
});
</script>