From fa8d43dab70a975be9af7aebaac8eba682c2048e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Dec 2012 00:06:21 +0000 Subject: Use more sensible URI scheme for Ingen paths. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4889 a436a847-0d15-0410-975c-d299462d15a1 --- scripts/ingen.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'scripts/ingen.py') diff --git a/scripts/ingen.py b/scripts/ingen.py index dcfe7206..041a7de6 100644 --- a/scripts/ingen.py +++ b/scripts/ingen.py @@ -210,14 +210,14 @@ class Remote(Interface): return self.send(''' [] a patch:Get ; - patch:subject . + patch:subject . ''' % path) def put(self, path, body): return self.send(''' [] a patch:Put ; - patch:subject ; + patch:subject ; patch:body [ %s ] . @@ -227,7 +227,7 @@ class Remote(Interface): return self.send(''' [] a patch:Set ; - patch:subject ; + patch:subject ; patch:body [ %s ] . @@ -237,11 +237,11 @@ class Remote(Interface): return self.send(''' [] a patch:Put ; - patch:subject ; + patch:subject ; patch:body [ a ingen:Edge ; - ingen:tail ; - ingen:head ; + ingen:tail ; + ingen:head ; ] . ''' % (os.path.commonprefix([tail, head]), tail, head)) @@ -251,8 +251,8 @@ class Remote(Interface): a patch:Delete ; patch:body [ a ingen:Edge ; - ingen:tail ; - ingen:head ; + ingen:tail ; + ingen:head ; ] . ''' % (tail, head)) @@ -260,6 +260,6 @@ class Remote(Interface): return self.send(''' [] a patch:Delete ; - patch:subject . + patch:subject . ''' % path) -- cgit v1.2.1