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

Contents of /trunk/lib/SVNBrowser/Model/Branch.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26 - (show annotations)
Sun Dec 10 00:01:33 2006 UTC (17 years, 4 months ago) by dpavlin
File size: 263 byte(s)
a bunch of improvements:
- moved regex to extract branch from path to config.yml as branch_regex
- added filtering by branch (two new models Branch and RevisionBranch for that)
- added indexes where needed to speed-up filtering
1 use strict;
2 use warnings;
3
4 package SVNBrowser::Model::Branch;
5 use Jifty::DBI::Schema;
6 use SVNBrowser::Model::Revision;
7
8 use SVNBrowser::Record schema {
9
10 column path =>
11 type is 'text',
12 is indexed,
13 mandatory;
14
15 };
16
17 # Your model-specific methods go here.
18
19 1;
20

  ViewVC Help
Powered by ViewVC 1.1.26