Moves the JsNoCache to a real readable file instead of an embedded string (now an embedded file resource), updates it's logic to not append the hash to any dependencyhandler.axd request, fixes case sensitivity checking on the URLs, changes the cdf + umb version to be a nice shorter hash of the two.
This commit is contained in:
@@ -40,8 +40,7 @@ namespace Umbraco.Web.Search
|
||||
/// <param name="applicationContext"></param>
|
||||
/// <remarks>
|
||||
/// We need to do this on the Started event as to guarantee that all resolvers are setup properly.
|
||||
/// </remarks>
|
||||
|
||||
/// </remarks>
|
||||
protected override void ApplicationStarted(UmbracoApplicationBase httpApplication, ApplicationContext applicationContext)
|
||||
{
|
||||
LogHelper.Info<ExamineEvents>("Initializing Examine and binding to business logic events");
|
||||
@@ -334,8 +333,7 @@ namespace Umbraco.Web.Search
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
[SecuritySafeCritical]
|
||||
|
||||
private static void ReIndexForMedia(IMedia sender, bool isMediaPublished)
|
||||
{
|
||||
ExamineManager.Instance.ReIndexNode(
|
||||
@@ -357,7 +355,6 @@ namespace Umbraco.Web.Search
|
||||
/// If true, indicates that we will only delete this item from indexes that don't support unpublished content.
|
||||
/// If false it will delete this from all indexes regardless.
|
||||
/// </param>
|
||||
[SecuritySafeCritical]
|
||||
private static void DeleteIndexForEntity(int entityId, bool keepIfUnpublished)
|
||||
{
|
||||
ExamineManager.Instance.DeleteFromIndex(
|
||||
@@ -378,7 +375,6 @@ namespace Umbraco.Web.Search
|
||||
/// <param name="isContentPublished">
|
||||
/// Value indicating whether the item is published or not
|
||||
/// </param>
|
||||
[SecuritySafeCritical]
|
||||
private static void ReIndexForContent(IContent sender, bool isContentPublished)
|
||||
{
|
||||
ExamineManager.Instance.ReIndexNode(
|
||||
@@ -397,8 +393,7 @@ namespace Umbraco.Web.Search
|
||||
/// </summary>
|
||||
/// <param name="node"></param>
|
||||
/// <param name="cacheOnly">true if data is going to be returned from cache</param>
|
||||
/// <returns></returns>
|
||||
|
||||
/// <returns></returns>
|
||||
[Obsolete("This method is no longer used and will be removed from the core in future versions, the cacheOnly parameter has no effect. Use the other ToXDocument overload instead")]
|
||||
public static XDocument ToXDocument(Content node, bool cacheOnly)
|
||||
{
|
||||
@@ -409,8 +404,7 @@ namespace Umbraco.Web.Search
|
||||
/// Converts a content node to Xml
|
||||
/// </summary>
|
||||
/// <param name="node"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
/// <returns></returns>
|
||||
private static XDocument ToXDocument(Content node)
|
||||
{
|
||||
if (TypeHelper.IsTypeAssignableFrom<Document>(node))
|
||||
|
||||
@@ -1,10 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Web;
|
||||
using ClientDependency.Core;
|
||||
using ClientDependency.Core.Config;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using Umbraco.Core;
|
||||
using Umbraco.Core.Configuration;
|
||||
using Umbraco.Core.IO;
|
||||
using Umbraco.Core.Manifest;
|
||||
using System.Linq;
|
||||
@@ -42,8 +46,6 @@ namespace Umbraco.Web.UI.JavaScript
|
||||
{
|
||||
var result = GetJavascriptInitializationArray(httpContext, umbracoInit, additionalJsFiles);
|
||||
var noCache = Resources.JsNoCache;
|
||||
|
||||
|
||||
|
||||
//if debugging, add timestamp, if in production we tell yepNope to append umb+cdf version
|
||||
//this is needed even tho cdf does this on its serverside merged js
|
||||
@@ -52,7 +54,12 @@ namespace Umbraco.Web.UI.JavaScript
|
||||
noCache = noCache.Replace("##rnd##", "(new Date).getTime()");
|
||||
else
|
||||
{
|
||||
var version = "'" + Umbraco.Core.Configuration.UmbracoVersion.Current.ToString() + "." + ClientDependency.Core.Config.ClientDependencySettings.Instance.Version + "'";
|
||||
//create a unique hash code of the current umb version and the current cdf version
|
||||
var versionHash = new HashCodeCombiner();
|
||||
versionHash.AddCaseInsensitiveString(UmbracoVersion.Current.ToString());
|
||||
versionHash.AddCaseInsensitiveString(ClientDependencySettings.Instance.Version.ToString(CultureInfo.InvariantCulture));
|
||||
|
||||
var version = "'" + versionHash.GetCombinedHashCode() + "'";
|
||||
noCache = noCache.Replace("##rnd##", version);
|
||||
}
|
||||
|
||||
|
||||
16
src/Umbraco.Web/UI/JavaScript/JsNoCache.js
Normal file
16
src/Umbraco.Web/UI/JavaScript/JsNoCache.js
Normal file
@@ -0,0 +1,16 @@
|
||||
yepnope.addFilter(function (resourceObj) {
|
||||
var url = resourceObj.url.toLowerCase();
|
||||
var rnd = ##rnd##;
|
||||
var op = "?";
|
||||
debugger;
|
||||
if(url.indexOf("lib/") === 0 || url.indexOf("js/umbraco.") === 0 || url.indexOf("dependencyhandler.axd") > 0) {
|
||||
|
||||
return resourceObj;
|
||||
}
|
||||
if(url.indexOf("?") > 0){
|
||||
op = "&";
|
||||
}
|
||||
|
||||
resourceObj.url = resourceObj.url + op + "umb__rnd=" + rnd;
|
||||
return resourceObj;
|
||||
});
|
||||
@@ -1,7 +1,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.18444
|
||||
// Runtime Version:4.0.30319.34011
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -95,7 +95,7 @@ namespace Umbraco.Web.UI.JavaScript {
|
||||
/// return resourceObj;
|
||||
/// }
|
||||
/// if(url.indexOf("?") > 0){
|
||||
/// _op = "&";
|
||||
/// _op = "&";
|
||||
/// }
|
||||
///
|
||||
/// resourceObj.url = resourceObj.url + _op + "umb__rnd=" + rnd;
|
||||
|
||||
@@ -121,21 +121,8 @@
|
||||
<data name="JsInitialize" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>jsinitialize.js;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
|
||||
</data>
|
||||
<data name="JsNoCache" xml:space="preserve">
|
||||
<value>yepnope.addFilter(function (resourceObj) {
|
||||
var url = resourceObj.url;
|
||||
var rnd = ##rnd##;
|
||||
var _op = "?";
|
||||
if(url.indexOf("lib/") === 0 || url.indexOf("js/umbraco.") === 0){
|
||||
return resourceObj;
|
||||
}
|
||||
if(url.indexOf("?") > 0){
|
||||
_op = "&";
|
||||
}
|
||||
|
||||
resourceObj.url = resourceObj.url + _op + "umb__rnd=" + rnd;
|
||||
return resourceObj;
|
||||
});</value>
|
||||
<data name="JsNoCache" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>jsnocache.js;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="Main" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>Main.js;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
|
||||
@@ -1829,6 +1829,7 @@
|
||||
<EmbeddedResource Include="UI\JavaScript\Main.js" />
|
||||
<EmbeddedResource Include="UI\JavaScript\JsInitialize.js" />
|
||||
<EmbeddedResource Include="UI\JavaScript\ServerVariables.js" />
|
||||
<EmbeddedResource Include="UI\JavaScript\JsNoCache.js" />
|
||||
<Content Include="umbraco.presentation\umbraco\controls\Tree\CustomTreeService.asmx" />
|
||||
<Content Include="umbraco.presentation\umbraco\developer\RelationTypes\EditRelationType.aspx" />
|
||||
<Content Include="umbraco.presentation\umbraco\developer\RelationTypes\NewRelationType.aspx" />
|
||||
|
||||
Reference in New Issue
Block a user