Topic Text   Topic Comments (0)   Topic Properties   Topic Information sits@use...
Topic title: CVS commit: * Modified the way Perforce retrieves files f... Tuesday April 18, 2006 03:45:46

Download topic text | View in monospace font | Tab width set to 8 (change to 4)

Files in topic: (view all files)  
codestriker/CHANGELOG  1.184   {+10,-0}
codestriker/INFO.txt  1.7   {+4,-0}
codestriker/codestriker.conf  1.79   {+8,-2}
codestriker/bin/install.pl  1.2   {+1,-3}
codestriker/doc/codestriker.sgml  1.51   {+2,-2}
codestriker/lib/Codestriker.pm  1.82   {+1,-1}
codestriker/lib/Codestriker/DB/Database.pm  1.8   {+3,-0}
codestriker/lib/Codestriker/DB/Oracle.pm  1.7   {+1,-1}
SQLite.pm   {+82,-0}
codestriker/lib/Codestriker/Model/Delta.pm  1.8   {+3,-3}
codestriker/lib/Codestriker/Model/File.pm  1.24   {+3,-3}
codestriker/lib/Codestriker/Repository/Perforce.pm  1.3   {+10,-5}
codestriker/lib/Codestriker/Repository/RepositoryFactory.pm  1.19   {+4,-0}

[Add General Comment] to topic.

File codestriker/bin/install.pl (Revision 1.2) [Add File Comment] [<<] [Top] [>>]
 
Line 22 | Parallel Line 22 | Parallel
22 22
23 use strict; 23 use strict;
24 use Config; 24 use Config;
25 use lib '../lib';
25 26
26 # Now load up the required modules. Do this is a lazy fashion so that Perl 27 # Now load up the required modules. Do this is a lazy fashion so that Perl
27 # doesn't try to grab this during compile time, otherwise nasty-looking 28 # doesn't try to grab this during compile time, otherwise nasty-looking
 
 
Line 29 | Parallel Line 30 | Parallel
29 eval("use Cwd"); 30 eval("use Cwd");
30 eval("use CPAN"); 31 eval("use CPAN");
31 eval("use File::Path"); 32 eval("use File::Path");
32 eval("use lib '../lib'");
33 eval("use Codestriker"); 33 eval("use Codestriker");
34 eval("use Codestriker::DB::Database"); 34 eval("use Codestriker::DB::Database");
35 eval("use Codestriker::DB::Column"); 35 eval("use Codestriker::DB::Column");
 
 
Line 579 | Parallel Line 579 | Parallel
579 my $timestamp = Codestriker->get_timestamp(time); 579 my $timestamp = Codestriker->get_timestamp(time);
580 $insert->execute($topicid, $fileline, $filenumber, $filenew, 580 $insert->execute($topicid, $fileline, $filenumber, $filenew,
581 $state, $version, $timestamp, $timestamp); 581 $state, $version, $timestamp, $timestamp);
582 $insert->finish();
583 print "Create commentstate\n"; 582 print "Create commentstate\n";
584 583
585 # Find out what the commentstateid is, and update the 584 # Find out what the commentstateid is, and update the
 
 
Line 751 | Parallel Line 750 | Parallel
751 print " Updating comment topicid $topicid offset $line...\n"; 750 print " Updating comment topicid $topicid offset $line...\n";
752 $insert->execute($topicoffset_map{"$topicid|$line"}, 751 $insert->execute($topicoffset_map{"$topicid|$line"},
753 $commentfield, $author, $creation_ts); 752 $commentfield, $author, $creation_ts);
754 $insert->finish();
755 } 753 }
756 $stmt->finish(); 754 $stmt->finish();
757 755
 
File codestriker/bin/install.pl (Revision 1.2) [Add File Comment] [<<] [Top] [>>]
  
Legend:
Removed 
Changed
 Added

[Add General Comment] to topic.