src/lib/uri.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 29 Nov 2020 10:49:33 +0100
branchv_0
changeset 31 c6527b45fbc2
parent 29 06aaad12c207
child 32 e72546725c77
permissions -rw-r--r--
add --parser-option tree-style standard|literal --parser-option tree-with-namespaces true|false

/**
 * Relational pipes
 * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info;
 *
 * 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, version 3 of the License.
 *
 * 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 <http://www.gnu.org/licenses/>.
 */
#pragma once

namespace relpipe {
namespace in {
namespace ini {
namespace lib {

// TODO: these strings will become globally unique URIs (or IRIs) after moving to alt2xml and relative/unprefixed names should also work

namespace option {
static const char* TrimContinuingLines = "trim-continuing-lines";
static const char* AllowSections = "allow-sections";
static const char* AllowSectionTags = "allow-section-tags";
static const char* AllowSubKeys = "allow-sub-keys";
static const char* CommentSeparators = "comment-separators";
static const char* KeyValueSeparators = "key-value-separators";
static const char* Quotes = "quotes";
static const char* Dialect = "dialect";
}

namespace unescaping {
static const char* Basic = "unescape-basic";
static const char* JavaProperties = "unescape-java-properties";
static const char* Backspace = "unescape-backspace";
}

namespace dialect {
static const char* JavaProperties = "java-properties";
}

namespace xml {
static const char* TreeWithNamespaces = "tree-with-namespaces";
static const char* TreeStyle = "tree-style";

static const char* XMLNS = "tag:globalcode.info,2018:alt2xml:TEMPORARY:ini"; // not an option and might change, just preliminary namespace
}

}
}
}
}