Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Preparing for RC release
  • Loading branch information
nikmd23 committed Dec 5, 2012
1 parent b08f94a commit 2f58fc7
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 18 deletions.
1 change: 1 addition & 0 deletions ILMergeInternalize.txt
Expand Up @@ -5,6 +5,7 @@
^Castle.DynamicProxy.AbstractInvocation$
^Castle.DynamicProxy.Generators.AttributesToAvoidReplicating$
^Castle.DynamicProxy.InheritanceInvocation$
^Castle.DynamicProxy.Internal.InheritanceInvocation$
^Castle.DynamicProxy.IInterceptorSelector$
^Castle.DynamicProxy.IProxyGenerationHook$
^Castle.DynamicProxy.IProxyTargetAccessor$
Expand Down
4 changes: 2 additions & 2 deletions source/Glimpse.AspNet/NuSpec/Glimpse.AspNet.nuspec
Expand Up @@ -15,14 +15,14 @@
<summary>ASP.NET 4.0 web debugging and diagnostics tool.</summary>
<tags>ASP.NET Web WebForms Glimpse</tags>
<dependencies>
<dependency id="Glimpse" version="1.0.0-ctp1" />
<dependency id="Glimpse" version="1.0.0-rc1" />
</dependencies>
</metadata>
<files>
<file src="lib\net35\*.*" target="lib\net35" />
<file src="lib\net40\*.*" target="lib\net40" />
<file src="content\*.*" target="content" />
<file src="readme.txt" target="readme.txt" />
<!--<file src="readme.txt" target="readme.txt" />-->
<file src="..\**\*.cs" target="src" />
<file src="..\Resources.resx" target="src" />
</files>
Expand Down
19 changes: 12 additions & 7 deletions source/Glimpse.AspNet/NuSpec/content/GlimpseSecurityPolicy.cs.pp
@@ -1,4 +1,7 @@
using System.Web;
/*
// Uncomment this class to provide custom runtime policy for Glimpse

using System.Web;
using Glimpse.Core;
using Glimpse.Core.Extensibility;

Expand All @@ -8,11 +11,12 @@
{
public RuntimePolicy Execute(IRuntimePolicyContext policyContext)
{
var context = policyContext.GetRequestContext<HttpContextBase>();
//You can perform a check like the one below to control Glimpse's permissions within your application.
//if (!context.User.IsInRole("Administrator"))
// return RuntimePolicy.Off;
// You can perform a check like the one below to control Glimpse's permissions within your application.
// var context = policyContext.GetRequestContext<HttpContextBase>();
// if (!context.User.IsInRole("Administrator"))
// {
// return RuntimePolicy.Off;
// }

return RuntimePolicy.On;
}
Expand All @@ -22,4 +26,5 @@
get { return RuntimeEvent.EndRequest; }
}
}
}
}
*/
2 changes: 1 addition & 1 deletion source/Glimpse.AspNet/Properties/AssemblyInfo.cs
Expand Up @@ -16,7 +16,7 @@
// Keep these three attributes in sync
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-ctp1")] // Used to specify the NuGet version number at build time
[assembly: AssemblyInformationalVersion("1.0.0-rc1")] // Used to specify the NuGet version number at build time

[assembly: InternalsVisibleTo("Glimpse.Test.AspNet")]
[assembly: NuGetPackage]
1 change: 0 additions & 1 deletion source/Glimpse.Core/Framework/GlimpseRuntime.cs
Expand Up @@ -91,7 +91,6 @@ public void BeginRequest()
}

// TODO: Add PRG support
// TODO: Structured layout support (TabLayout)
public void EndRequest()
{
var policy = GetRuntimePolicy(RuntimeEvent.EndRequest);
Expand Down
2 changes: 1 addition & 1 deletion source/Glimpse.Core/NuSpec/Glimpse.nuspec
Expand Up @@ -16,7 +16,7 @@
<tags>ASP.NET Web WebForms Glimpse</tags>
</metadata>
<files>
<file src="tools\*.*" target="tools" />
<!--<file src="tools\*.*" target="tools" />-->
<file src="lib\net35\*.*" target="lib\net35" />
<file src="lib\net40\*.*" target="lib\net40" />
<file src="..\**\*.cs" target="src" />
Expand Down
2 changes: 1 addition & 1 deletion source/Glimpse.Core/Properties/AssemblyInfo.cs
Expand Up @@ -16,7 +16,7 @@
// Keep these three attributes in sync
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-ctp1")] // Used to specify the NuGet version number at build time
[assembly: AssemblyInformationalVersion("1.0.0-rc1")] // Used to specify the NuGet version number at build time

[assembly: InternalsVisibleTo("Glimpse.Test.Core")]
[assembly: NuGetPackage("Glimpse")]
1 change: 0 additions & 1 deletion source/Glimpse.Core/Tab/Assist/TabSectionRow.cs
Expand Up @@ -8,7 +8,6 @@ public class TabSectionRow : ITabBuild, ITabStyleValue<TabSectionRow>, ITabStyle
{
private readonly List<TabSectionColumn> columns = new List<TabSectionColumn>();

// TODO this might be able to go
public IEnumerable<TabSectionColumn> Columns
{
get { return columns; }
Expand Down
2 changes: 1 addition & 1 deletion source/Glimpse.Mvc2/NuSpec/Glimpse.Mvc2.nuspec
Expand Up @@ -15,7 +15,7 @@
<summary>ASP.NET MVC 2.0 web debugging and diagnostics tool.</summary>
<tags>ASP.NET Web MVC Glimpse</tags>
<dependencies>
<dependency id="Glimpse.AspNet" version="1.0.0-ctp1" />
<dependency id="Glimpse.AspNet" version="1.0.0-rc1" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion source/Glimpse.Mvc2/Properties/AssemblyInfo.cs
Expand Up @@ -16,7 +16,7 @@
// Keep these three attributes in sync
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-ctp1")] // Used to specify the NuGet version number at build time
[assembly: AssemblyInformationalVersion("1.0.0-rc1")] // Used to specify the NuGet version number at build time

[assembly: InternalsVisibleTo("Glimpse.Test.Mvc2")]
[assembly: NuGetPackage]
2 changes: 1 addition & 1 deletion source/Glimpse.Mvc3/NuSpec/Glimpse.Mvc3.nuspec
Expand Up @@ -15,7 +15,7 @@
<summary>ASP.NET MVC 3.0 web debugging and diagnostics tool.</summary>
<tags>ASP.NET Web MVC Glimpse</tags>
<dependencies>
<dependency id="Glimpse.AspNet" version="1.0.0-ctp1" />
<dependency id="Glimpse.AspNet" version="1.0.0-rc1" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion source/Glimpse.Mvc3/Properties/AssemblyInfo.cs
Expand Up @@ -16,7 +16,7 @@
// Keep these three attributes in sync
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-ctp1")] // Used to specify the NuGet version number at build time
[assembly: AssemblyInformationalVersion("1.0.0-rc1")] // Used to specify the NuGet version number at build time

[assembly: InternalsVisibleTo("Glimpse.Test.Mvc3")]
[assembly: NuGetPackage]

0 comments on commit 2f58fc7

Please sign in to comment.