From 2d8616928c5dcf60bbb91256f5351d67b9817338 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr>
Date: Mon, 10 Mar 2014 21:23:31 +0000
Subject: [PATCH] - improved prefix generation (added # in the end of needing
 URIs)

---
 .../exmo/align/impl/renderer/JSONRendererVisitor.java      | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/fr/inrialpes/exmo/align/impl/renderer/JSONRendererVisitor.java b/src/fr/inrialpes/exmo/align/impl/renderer/JSONRendererVisitor.java
index 8d372f1e..bf87c92c 100644
--- a/src/fr/inrialpes/exmo/align/impl/renderer/JSONRendererVisitor.java
+++ b/src/fr/inrialpes/exmo/align/impl/renderer/JSONRendererVisitor.java
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * Copyright (C) INRIA, 2012
+ * Copyright (C) INRIA, 2012, 2014
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -80,8 +80,8 @@ import fr.inrialpes.exmo.align.impl.edoal.EDOALCell;
 import fr.inrialpes.exmo.align.impl.edoal.EDOALVisitor;
 
 /**
- * Renders an alignment in JSON (and practically in JSON-LD)
- * http://json-ld.org/spec/latest/json-ld-syntax/
+ * Renders an alignment in JSON (and in fact in JSON-LD)
+ * IETF RFC 7159 + http://www.w3.org/TR/json-ld/
  *
  * application/json <========= media type available
  *
@@ -127,6 +127,7 @@ public class JSONRendererVisitor extends IndentedRendererVisitor implements Alig
 	for ( String[] ext : align.getExtensions() ) {
 	    String prefix = ext[0];
 	    String name = ext[1];
+	    if ( ! ( prefix.endsWith("#") || prefix.endsWith("/") ) ) prefix += "#";
 	    String tag = nslist.get(prefix);
 	    if ( tag == null ) {
 		tag = "ns"+gen++;
-- 
GitLab