/[Grep]/lib/Grep/Model/Feed.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 /lib/Grep/Model/Feed.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (hide annotations)
Sun Feb 18 00:35:48 2007 UTC (17 years, 3 months ago) by dpavlin
File size: 408 byte(s)
helpful hints
1 dpavlin 2 use strict;
2     use warnings;
3    
4     package Grep::Model::Feed;
5     use Jifty::DBI::Schema;
6    
7     use Grep::Record schema {
8    
9     column uri =>
10     type is 'text',
11     label is 'URI',
12 dpavlin 12 hints is 'Replace search string in URI with %s',
13 dpavlin 2 is mandatory,
14     distinct;
15    
16 dpavlin 3 column title =>
17     type is 'text',
18 dpavlin 12 hints is 'Use something descriptive to you',
19 dpavlin 3 since '0.0.2';
20    
21 dpavlin 2 };
22    
23 dpavlin 3 sub since { '0.0.1' }
24    
25 dpavlin 2 # Your model-specific methods go here.
26    
27     1;
28    

  ViewVC Help
Powered by ViewVC 1.1.26