/[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

Contents of /lib/Grep/Model/Feed.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (show annotations)
Sun Feb 18 00:35:48 2007 UTC (17 years, 3 months ago) by dpavlin
File size: 408 byte(s)
helpful hints
1 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 hints is 'Replace search string in URI with %s',
13 is mandatory,
14 distinct;
15
16 column title =>
17 type is 'text',
18 hints is 'Use something descriptive to you',
19 since '0.0.2';
20
21 };
22
23 sub since { '0.0.1' }
24
25 # Your model-specific methods go here.
26
27 1;
28

  ViewVC Help
Powered by ViewVC 1.1.26