mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
33 lines
965 B
C#
33 lines
965 B
C#
namespace HaWeb.Settings.XMLRoots;
|
|
using System.Xml.Linq;
|
|
using HaWeb.XMLParser;
|
|
|
|
public class EditsRoot : HaWeb.XMLParser.IXMLRoot {
|
|
public string Type { get; } = "Texteingriffe";
|
|
public string Container { get; } = "edits";
|
|
|
|
public Predicate<XElement> IsCollectedObject { get; } = (elem) => {
|
|
if (elem.Name == "editreason") return true;
|
|
else return false;
|
|
};
|
|
|
|
public Func<XElement, string?> GetKey { get; } = (elem) => {
|
|
var index = elem.Attribute("index");
|
|
if (index != null && !String.IsNullOrWhiteSpace(index.Value))
|
|
return index.Value;
|
|
else return null;
|
|
};
|
|
|
|
public List<(string, string)>? GenerateFields(XMLRootDocument document) {
|
|
return null;
|
|
}
|
|
|
|
public (string?, string) GenerateIdentificationString(XElement element) {
|
|
return (null, Container);
|
|
}
|
|
|
|
public bool Replaces(XMLRootDocument doc1, XMLRootDocument doc2) {
|
|
return true;
|
|
}
|
|
|
|
} |