Exemplo n.º 1
0
void
raptor_init_parser_rss (void) {
  raptor_parser_register_factory("rss-tag-soup",  "RSS Tag Soup",
                                 NULL, NULL,
                                 NULL,
                                 &raptor_rss_parser_register_factory);
}
Exemplo n.º 2
0
int
raptor_init_parser_guess(void)
{
  return !raptor_parser_register_factory("guess",  
                                         "Pick the parser to use using content type and URI",
                                         &raptor_guess_parser_register_factory);
}
Exemplo n.º 3
0
int
raptor_init_parser_rdfa(void)
{
  return !raptor_parser_register_factory("rdfa",  "RDF/A via librdfa",
                                         &raptor_librdfa_parser_register_factory);
}
Exemplo n.º 4
0
int
raptor_init_parser_ntriples(raptor_world* world)
{
  return !raptor_parser_register_factory(world, "ntriples",  "N-Triples",
                                         &raptor_ntriples_parser_register_factory);
}