From: Tara L Andrews <tla\@mit.edu>
Date: Sun, 8 Apr 2012 21:10:40 +0000 (+0200)
Subject: remove 'meaning' relationship from interface too
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=17b660e670a9edd2f2c39c87a25acd95fa01ebc2;p=scpubgit%2Fstemmaweb.git

remove 'meaning' relationship from interface too
---

diff --git a/lib/stemmaweb/Controller/Relation.pm b/lib/stemmaweb/Controller/Relation.pm
index 8b72205..c44b544 100644
--- a/lib/stemmaweb/Controller/Relation.pm
+++ b/lib/stemmaweb/Controller/Relation.pm
@@ -52,8 +52,7 @@ Returns a data structure giving the valid types and scopes for a relationship.
 
 sub definitions :Local :Args(0) {
 	my( $self, $c ) = @_;
-	my $valid_relationships = [ qw/ spelling orthographic grammatical meaning 
-									lexical transposition / ];
+	my $valid_relationships = [ qw/ spelling orthographic grammatical lexical transposition / ];
 	my $valid_scopes = [ qw/ local global / ];
 	$c->stash->{'result'} = { 'types' => $valid_relationships, 'scopes' => $valid_scopes };
 	$c->forward('View::JSON');