예제 #1
0
def saveSkosCommandLineOptionExtender(parser):
    # extend command line options with a save DTS option
    parser.add_option(
        "--save-skos",
        action="store",
        dest="skosFile",
        help=_("Save SKOS semantic definition in specified RDF file."))
예제 #2
0
def saveHtmlEbaTablesCommandLineOptionExtender(parser):
    # extend command line options with a save DTS option
    parser.add_option(
        "--save-EBA-tablesets",
        action="store",
        dest="ebaTablesetIndexFile",
        help=
        _("Save HTML EBA Tablesets index file, with tablest HTML files to out directory specify 'generateOutFiles'."
          ))
예제 #3
0
def updateTableLBCommandLineOptionExtender(parser):
    # extend command line options with a save DTS option
    parser.add_option(
        "--save-updated-table-linkbase",
        action="store",
        dest="updatedTableLinkbaseFile",
        help=
        _("Update table linkbase file from Eurofiling 2010 to XII 2011 syntax."
          ))
예제 #4
0
def saveCHComponentCommandLineOptionExtender(parser, *args, **kwargs):
    # extend command line options with a save DTS option
    parser.add_option(
        "--save-CH-component",
        action="store",
        dest="chComponentFile",
        help=
        _("Save Charlie Hoffman Component semantic definition in specified xml file."
          ))
예제 #5
0
def saveHtmlEbaTablesCommandLineOptionExtender(parser):
    # extend command line options with a save DTS option
    parser.add_option(
        "--save-EBA-tablesets",
        action="store",
        dest="ebaTablesetIndexFile",
        help=_(
            "Save HTML EBA Tablesets index file, with tablest HTML files to out directory specify 'generateOutFiles'."
        ),
    )
예제 #6
0
def saveCHComponentCommandLineOptionExtender(parser):
    # extend command line options with a save DTS option
    parser.add_option("--save-CH-component", 
                      action="store", 
                      dest="chComponentFile", 
                      help=_("Save Charlie Hoffman Component semantic definition in specified xml file."))
예제 #7
0
def updateTableLBCommandLineOptionExtender(parser):
    # extend command line options with a save DTS option
    parser.add_option("--save-updated-table-linkbase", 
                      action="store", 
                      dest="updatedTableLinkbaseFile", 
                      help=_("Update table linkbase file from Eurofiling 2010 to XII 2011 syntax."))
예제 #8
0
파일: saveSKOS.py 프로젝트: Arelle/Arelle
def saveSkosCommandLineOptionExtender(parser, *args, **kwargs):
    # extend command line options with a save DTS option
    parser.add_option("--save-skos", 
                      action="store", 
                      dest="skosFile", 
                      help=_("Save SKOS semantic definition in specified RDF file."))
예제 #9
0
def streamingOptionsExtender(parser):
    parser.add_option("--check-streaming", 
                      action="store_true", 
                      dest="check_streaming", 
                      help=_('Check streamability of instance document."'))