/[SVNBrowser]/trunk/lib/SVNBrowser/Model/Action.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/lib/SVNBrowser/Model/Action.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (hide annotations)
Tue Dec 5 10:17:28 2006 UTC (17 years, 5 months ago) by dpavlin
File size: 429 byte(s)
use SVN::Log to parse subversion logs and fill-in model

1 dpavlin 1 use strict;
2     use warnings;
3    
4     package SVNBrowser::Model::Action;
5    
6     use Jifty::DBI::Schema;
7    
8     use SVNBrowser::Model::Revision;
9    
10     use SVNBrowser::Record schema {
11    
12     column revision =>
13     type is 'int',
14     mandatory;
15    
16     column type =>
17     type is 'char',
18     valid are qw( A M D ),
19     mandatory;
20    
21     column branch =>
22     type is 'text',
23     mandatory;
24    
25     column rel_path =>
26     type is 'text',
27     mandatory;
28    
29     };
30    
31     # Your model-specific methods go here.
32    
33     1;
34    

  ViewVC Help
Powered by ViewVC 1.1.26