/[SVNBrowser]/trunk/lib/SVNBrowser/Model/Repository.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/Repository.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 60 - (hide annotations)
Mon Sep 3 19:52:38 2007 UTC (16 years, 8 months ago) by dpavlin
File size: 354 byte(s)
added forgoten repository model
1 dpavlin 60 use strict;
2     use warnings;
3    
4     package SVNBrowser::Model::Repository;
5     use Jifty::DBI::Schema;
6    
7     use SVNBrowser::Record schema {
8    
9     column uri =>
10     type is 'text',
11     is indexed,
12     is unique,
13     is mandatory;
14    
15     column branch_regex =>
16     type is 'text',
17     is mandatory,
18     default is '/(:?trunk|branch/[^/]+)(/.*)$';
19    
20     };
21    
22     # Your model-specific methods go here.
23    
24     1;
25    

  ViewVC Help
Powered by ViewVC 1.1.26