remove 'meaning' relationship from interface too
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / Controller / Relation.pm
index 690f44e..c44b544 100644 (file)
@@ -29,6 +29,19 @@ sub index :Path :Args(0) {
        $c->stash->{'template'} = 'relate.tt';
 }
 
+=head2 help
+
+ GET relation/help
+
+Returns the help window HTML.
+
+=cut
+
+sub help :Local :Args(0) {
+       my( $self, $c ) = @_;
+       $c->stash->{'template'} = 'relatehelp.tt';
+}
+
 =head2 definitions
 
  GET relation/definitions
@@ -39,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');
@@ -56,33 +68,69 @@ sub definitions :Local :Args(0) {
 
 sub text :Chained('/') :PathPart('relation') :CaptureArgs(1) {
        my( $self, $c, $textid ) = @_;
-       $c->stash->{'tradition'} = $c->model('Directory')->tradition( $textid );
+       # If the tradition has more than 500 ranks or so, split it up.
+       my $tradition = $c->model('Directory')->tradition( $textid );
+       my $length = $tradition->collation->end->rank;
+       if( $length > 700 ) {
+               # Segment the tradition in order not to overload the browser.
+               # Split it up into units of 500 ranks, but have each segment show
+               # 550 ranks so that overlap works.
+               my @divs;
+               my $r = 0;
+               while( $r + 50 < $length ) {
+                       push( @divs, $r );
+                       $r += 500;
+               }
+               $c->stash->{'textsegments'} = [];
+               foreach my $i ( 0..$#divs ) {
+                       my $seg = { 'start' => $divs[$i] };
+                       $seg->{'display'} = "Segment " . ($i+1);
+                       push( @{$c->stash->{'textsegments'}}, $seg );
+               }
+       }
+       $DB::single = 1;
+       $c->stash->{'textid'} = $textid;
+       $c->stash->{'tradition'} = $tradition;
 }
 
 sub main :Chained('text') :PathPart('') :Args(0) {
        my( $self, $c ) = @_;
+       my $startseg = $c->req->param('start');
        my $tradition = delete $c->stash->{'tradition'};
        my $collation = $tradition->collation;
-       my $svg_str = $collation->as_svg;
+       my $svgopts;
+       if( $startseg ) {
+               # Only render the subgraph from startseg to +550 or end,
+               # whichever is less.
+               $svgopts = { 'from' => $startseg };
+               $svgopts->{'to'} = $startseg + 550
+                       if $startseg + 550 < $collation->end->rank;
+       } elsif( exists $c->stash->{'textsegments'} ) {
+               # This is the unqualified load of a long tradition. We implicitly start 
+               # at zero, but go only as far as 550.
+               $startseg = 0;
+               $svgopts = { 'to' => 550 };
+       }
+       my $svg_str = $collation->as_svg( $svgopts );
        $svg_str =~ s/\n//gs;
+       $c->stash->{'startseg'} = $startseg if defined $startseg;
        $c->stash->{'svg_string'} = $svg_str;
        $c->stash->{'text_title'} = $tradition->name;
        $c->stash->{'template'} = 'relate.tt';
-
 }
 
 =head2 relationships
 
- GET $textid/relationships
+ GET relation/$textid/relationships
 
 Returns the list of relationships defined for this text.
 
- POST $textid/relationships { request }
+ POST relation/$textid/relationships { request }
  
 Attempts to define the requested relationship within the text. Returns 200 on
 success or 403 on error.
 
- DELETE $textid/relationships { request }
+ DELETE relation/$textid/relationships { request }
  
 
 =cut
@@ -97,9 +145,11 @@ sub relationships :Chained('text') :PathPart :Args(0) {
                my @all_relations;
                foreach my $p ( @pairs ) {
                        my $relobj = $collation->relations->get_relationship( @$p );
-                       push( @all_relations, 
-                               { source => $p->[0], target => $p->[1], 
-                                 type => $relobj->type, scope => $relobj->scope } );
+                       next if $relobj->type eq 'collated'; # Don't show these
+                       my $relhash = { source => $p->[0], target => $p->[1], 
+                                 type => $relobj->type, scope => $relobj->scope };
+                       $relhash->{'note'} = $relobj->annotation if $relobj->has_annotation;
+                       push( @all_relations, $relhash );
                }
                $c->stash->{'result'} = \@all_relations;
        } elsif( $c->request->method eq 'POST' ) {
@@ -111,6 +161,7 @@ sub relationships :Chained('text') :PathPart :Args(0) {
        
                my $opts = { 'type' => $relation,
                                         'scope' => $scope };
+               $opts->{'annotation'} = $note if $note;
                
                try {
                        my @vectors = $collation->add_relationship( $node, $target, $opts );