mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 19:04:51 +08:00
#16897: Adding back the Orchard generator meta tag.
Its a default MetaEntry like before. --HG-- branch : dev
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user