#16897: Adding back the Orchard generator meta tag.

Its a default MetaEntry like before.

--HG--
branch : dev
This commit is contained in:
Dave Reed
2010-12-01 12:50:21 -08:00
parent 40ea652bf2
commit 59a874aa28

View File

@@ -12,7 +12,9 @@ namespace Orchard.UI.Resources {
public class ResourceManager : IResourceManager {
private readonly Dictionary<Tuple<String, String>, RequireSettings> _required = new Dictionary<Tuple<String, String>, RequireSettings>();
private readonly List<LinkEntry> _links = new List<LinkEntry>();
private readonly Dictionary<string, MetaEntry> _metas = new Dictionary<string, MetaEntry>();
private readonly Dictionary<string, MetaEntry> _metas = new Dictionary<string, MetaEntry> {
{ "generator", new MetaEntry { Content = "Orchard", Name = "generator" } }
};
private readonly Dictionary<string, IList<ResourceRequiredContext>> _builtResources = new Dictionary<string, IList<ResourceRequiredContext>>(StringComparer.OrdinalIgnoreCase);
private readonly IEnumerable<Meta<IResourceManifestProvider>> _providers;
private ResourceManifest _dynamicManifest;