Skip to content
Snippets Groups Projects
Commit 49464f02 authored by alvaro's avatar alvaro
Browse files

Fixed utils/* script to replace / with %2F multiple times

parent 1a804dd1
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ LODSPeaKr
author: Alvaro Graves (alvaro@graves.cl)
version: 20130206
version: 20130207
[LODSPeaKr](http://lodspeakr.org) is a framework for creating Linked Data applications in a simple and easy way. You can see [several applications](http://alangrafu.github.com/lodspeakr/applications.html) created using LODSPeaKr.
......
<?php
$conf['version'] = '20130206';
$conf['version'] = '20130207';
$conf['output']['select'] = 'json';
$conf['output']['ask'] = 'json';
$conf['output']['describe'] = 'rdf';
......
......@@ -5,7 +5,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
initToken='services'
cd $DIR
serviceName=${1/\//%2F}
serviceName=`echo $1 |sed 's/\//%2F/g'`
#Check models
mainDir=$DIR/../../components/$initToken/$serviceName/
......
......@@ -4,7 +4,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
initToken='services'
serviceName=${1/\//%2F}
serviceName=`echo $1 |sed 's/\//%2F/g'`
#Check models
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment