Lines Matching full:schema
25 print('oe-trim-schemas: error: the following arguments are required: schema\n'
26 'Usage: oe-trim-schemas schema\n\n'
27 'OpenEmbedded trim schemas - remove unneeded schema locale translations\n'
28 ' from gconf schema files\n\n'
30 ' schema gconf schema file to trim\n')
35 for schema in child(xml.getroot(), "schemalist").getchildren():
36 e = child(schema, "short")
38 schema.remove(e)
40 e = child(schema, "long")
42 schema.remove(e)
44 for locale in children(schema, "locale"):
51 schema.remove(locale)