src/lib/uri.h
branchv_0
changeset 33 c9a158da6c32
parent 32 e72546725c77
equal deleted inserted replaced
32:e72546725c77 33:c9a158da6c32
    23 
    23 
    24 // TODO: these strings will become globally unique URIs (or IRIs) after moving to alt2xml and relative/unprefixed names should also work
    24 // TODO: these strings will become globally unique URIs (or IRIs) after moving to alt2xml and relative/unprefixed names should also work
    25 
    25 
    26 /** general options of the INI parser */
    26 /** general options of the INI parser */
    27 namespace option {
    27 namespace option {
       
    28 static const char* AllowLineContinuationWithEscaping = "allow-line-continuation-with-escaping";
       
    29 static const char* AllowLineContinuationWithSpace = "allow-line-continuation-with-space";
    28 static const char* TrimContinuingLines = "trim-continuing-lines";
    30 static const char* TrimContinuingLines = "trim-continuing-lines";
    29 static const char* AllowSections = "allow-sections";
    31 static const char* AllowSections = "allow-sections";
    30 static const char* AllowSectionTags = "allow-section-tags";
    32 static const char* AllowSectionTags = "allow-section-tags";
    31 static const char* AllowSubKeys = "allow-sub-keys";
    33 static const char* AllowSubKeys = "allow-sub-keys";
    32 static const char* CommentSeparators = "comment-separators";
    34 static const char* CommentSeparators = "comment-separators";
    43 }
    45 }
    44 
    46 
    45 /** not options but a values of the dialect option */
    47 /** not options but a values of the dialect option */
    46 namespace dialect {
    48 namespace dialect {
    47 static const char* JavaProperties = "java-properties";
    49 static const char* JavaProperties = "java-properties";
       
    50 static const char* JavaManifestMF = "java-manifest-mf";
    48 }
    51 }
    49 
    52 
    50 /** options for configuring the stage where events from the INI parser are converted to SAX events or DOM building */
    53 /** options for configuring the stage where events from the INI parser are converted to SAX events or DOM building */
    51 namespace xml {
    54 namespace xml {
    52 static const char* TreeWithNamespaces = "tree-with-namespaces";
    55 static const char* TreeWithNamespaces = "tree-with-namespaces";