/[Search-Estraier]/trunk/scripts/estcp.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/scripts/estcp.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 83 by dpavlin, Tue Jan 17 00:41:18 2006 UTC revision 85 by dpavlin, Tue Jan 17 15:00:50 2006 UTC
# Line 19  die "usage: $0 http://localhost:1978/nod Line 19  die "usage: $0 http://localhost:1978/nod
19  my $debug = 0;  my $debug = 0;
20  my $max = 256;  my $max = 256;
21    
 $max = 1024;  
   
22  # create and configure node  # create and configure node
23  my $from_n = new Search::Estraier::Node(  my $from_n = new Search::Estraier::Node(
24          url => $from,          url => $from,
# Line 33  my $to_n = new Search::Estraier::Node( Line 31  my $to_n = new Search::Estraier::Node(
31          debug => $debug,          debug => $debug,
32  );  );
33    
34    unless(eval{ $to_n->name }) {
35            if ($to =~ m#^(http://.+)/node/(\w+)$#) {
36                    my ($url,$name) = ($1,$2);
37                    print "Creating '$name' on $url\n";
38                    $to_n->shuttle_url( $url . '/master?action=nodeadd',
39                            'application/x-www-form-urlencoded',
40                            'name=' . uri_escape($name) . '&label=' . uri_escape( $name ),
41                            undef,
42                    );
43            } else {
44                    die "can't extract node name from $to\n";
45            }
46    }
47    
48  print "Copy from ",$from_n->name," (",$from_n->label,") to ",$to_n->name," (",$to_n->label,") - ",$from_n->doc_num," documents (",$from_n->word_num," words, ",$from_n->size," bytes)\n";  print "Copy from ",$from_n->name," (",$from_n->label,") to ",$to_n->name," (",$to_n->label,") - ",$from_n->doc_num," documents (",$from_n->word_num," words, ",$from_n->size," bytes)\n";
49    
50  my $doc_num = $from_n->doc_num || 1;  my $doc_num = $from_n->doc_num || 1;
# Line 56  while($more) { Line 68  while($more) {
68          }          }
69          foreach my $l (split(/\n/,$res)) {          foreach my $l (split(/\n/,$res)) {
70                  (my $id, $prev) = split(/\t/,$l, 2);                  (my $id, $prev) = split(/\t/,$l, 2);
71                  $to_n->put_doc( $from_n->get_doc( $id ));  
72                    #$to_n->put_doc( $from_n->get_doc( $id ));
73    
74                    my $doc_draft = $from_n->_fetch_doc( id => $id, chomp_resbody => 1 );
75                    $to_n->shuttle_url( $to_n->{url} . '/put_doc', 'text/x-estraier-draft', $doc_draft, undef) == 200 or die "can't insert $doc_draft\n";
76    
77                  $i++;                  $i++;
78          }          }
79          warn "$prev\n";          warn "$prev\n";

Legend:
Removed from v.83  
changed lines
  Added in v.85

  ViewVC Help
Powered by ViewVC 1.1.26