From 69ea8a21a832be11f3ce8344431d2cdd0d6e74e7 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 3 Jun 2014 19:48:31 +0300 Subject: add rule for checking xml header. --- src/rules/xml.cpp | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/rules/xml.cpp (limited to 'src/rules') diff --git a/src/rules/xml.cpp b/src/rules/xml.cpp new file mode 100644 index 0000000..1736a4f --- /dev/null +++ b/src/rules/xml.cpp @@ -0,0 +1,42 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "template.hpp" + +registerRuleExt(xml, "009", "(.+)[.](xml)") + +startRule(xml) +{ +} + +endRule(xml) +{ +} + +parseLineRule(xml) +{ + if (line == 1) + { + const std::string str = ""; + if (data != str) + print("Wrong xml header. Must be '" + str + "'"); + } +} + -- cgit v1.2.3-70-g09d2