summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2003-06-14 11:20:29 +0000
committerDave Beckett <dave@dajobe.org>2003-06-14 11:20:29 +0000
commit5f7457ad7545475e467d733141920377f68dceaa (patch)
tree9125ca0628ed775ec26c6d35046191224ab9301b /examples
parent8b2005a0a1cf91202570e3b2b203a885563f075a (diff)
downloadraptor-5f7457ad7545475e467d733141920377f68dceaa.tar.gz
# Tweak RSS Tag Soup parser words
Diffstat (limited to 'examples')
-rw-r--r--examples/grapper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/grapper.c b/examples/grapper.c
index 6a5566a5..2aa90b70 100644
--- a/examples/grapper.c
+++ b/examples/grapper.c
@@ -55,9 +55,9 @@ typedef enum
{
GRAPPER_SYNTAX_RDFXML,
GRAPPER_SYNTAX_NTRIPLES,
- GRAPPER_SYNTAX_RSS,
+ GRAPPER_SYNTAX_RSS_TAG_SOUP,
- GRAPPER_SYNTAX_SIZE=GRAPPER_SYNTAX_RSS+1
+ GRAPPER_SYNTAX_SIZE=GRAPPER_SYNTAX_RSS_TAG_SOUP+1
} grapper_syntax;
typedef struct {
@@ -68,7 +68,7 @@ typedef struct {
static const grapper_syntax_item grapper_syntax_info[GRAPPER_SYNTAX_SIZE]={
{"rdfxml", "RDF/XML" },
{"ntriples", "N-Triples" },
- {"rss", "RSS tag soup" }
+ {"rss-tag-soup", "RSS tag soup" }
};