From 50a6edb088ead6d8f6287aeca55e4d704add61a2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 29 Jul 2016 19:41:19 -0400 Subject: Save bundled graphs to graph.ttl by default This avoids a lot of hassle with filename construction and renaming, while ensuring that the internal structure of any graph bundle is the same. --- src/Parser.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/Parser.cpp') diff --git a/src/Parser.cpp b/src/Parser.cpp index 50ccb975..31ab4245 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2015 David Robillard + Copyright 2007-2016 David Robillard Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -312,8 +312,7 @@ parse_block(Ingen::World* world, &ignored); const std::string sub_uri_str = (const char*)sub_uri.buf; - const std::string basename = get_basename(sub_uri_str); - const std::string sub_file = sub_uri_str + '/' + basename + ".ttl"; + const std::string sub_file = sub_uri_str + "/graph.ttl"; const SerdNode sub_base = serd_node_from_string( SERD_URI, (const uint8_t*)sub_file.c_str()); -- cgit v1.2.1