line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
9
|
|
|
9
|
|
765
|
use strict; |
|
9
|
|
|
|
|
14
|
|
|
9
|
|
|
|
|
214
|
|
2
|
9
|
|
|
9
|
|
34
|
use warnings; |
|
9
|
|
|
|
|
16
|
|
|
9
|
|
|
|
|
383
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: a notes and bookmarks manager with tagging |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
#pod =head1 DESCRIPTION |
6
|
|
|
|
|
|
|
#pod |
7
|
|
|
|
|
|
|
#pod This module is currently just a placeholder and a container for documentation. |
8
|
|
|
|
|
|
|
#pod You don't want to actually C<use Rubric>, even if you want to use Rubric. |
9
|
|
|
|
|
|
|
#pod |
10
|
|
|
|
|
|
|
#pod Rubric is a note-keeping system that also serves as a bookmark manager. Users |
11
|
|
|
|
|
|
|
#pod store entries, which are small (or large) notes with a set of categorizing |
12
|
|
|
|
|
|
|
#pod "tags." Entries may also refer to URIs. |
13
|
|
|
|
|
|
|
#pod |
14
|
|
|
|
|
|
|
#pod Rubric was inspired by the excellent L<http://del.icio.us/> service and the |
15
|
|
|
|
|
|
|
#pod Notational Velocity note-taking software for Mac OS. |
16
|
|
|
|
|
|
|
#pod |
17
|
|
|
|
|
|
|
#pod =head1 WARNING |
18
|
|
|
|
|
|
|
#pod |
19
|
|
|
|
|
|
|
#pod This is young software, likely to have bugs and likely to change in strange |
20
|
|
|
|
|
|
|
#pod ways. I will try to keep the documented API stable, but not if it makes |
21
|
|
|
|
|
|
|
#pod writing Rubric too inconvenient. |
22
|
|
|
|
|
|
|
#pod |
23
|
|
|
|
|
|
|
#pod Basically, just take note that this software works, but it's still very much |
24
|
|
|
|
|
|
|
#pod under construction. |
25
|
|
|
|
|
|
|
#pod |
26
|
|
|
|
|
|
|
#pod =head1 INSTALLING AND UPGRADING |
27
|
|
|
|
|
|
|
#pod |
28
|
|
|
|
|
|
|
#pod Consult the README file in this distribution for instructions on installation |
29
|
|
|
|
|
|
|
#pod and upgrades. |
30
|
|
|
|
|
|
|
#pod |
31
|
|
|
|
|
|
|
#pod =head1 TODO |
32
|
|
|
|
|
|
|
#pod |
33
|
|
|
|
|
|
|
#pod For now, consult the C<todo.html> template for future milestones, or check |
34
|
|
|
|
|
|
|
#pod L<http://rjbs.manxome.org/rubric/docs/todo>. |
35
|
|
|
|
|
|
|
#pod |
36
|
|
|
|
|
|
|
#pod =head1 THANKS |
37
|
|
|
|
|
|
|
#pod |
38
|
|
|
|
|
|
|
#pod ...to a lot of people whom I will try to name, in time. Among these helpful |
39
|
|
|
|
|
|
|
#pod people are Ian Langworth, Shawn Sorichetti, John Cappiello, and Dave O'Neill. |
40
|
|
|
|
|
|
|
#pod |
41
|
|
|
|
|
|
|
#pod =head1 SEE ALSO |
42
|
|
|
|
|
|
|
#pod |
43
|
|
|
|
|
|
|
#pod =for :list |
44
|
|
|
|
|
|
|
#pod * L<http://del.icio.us/> |
45
|
|
|
|
|
|
|
#pod one of my original inspirations |
46
|
|
|
|
|
|
|
#pod * L<http://notational.net/> |
47
|
|
|
|
|
|
|
#pod Notational Velocity, another of my inspirations |
48
|
|
|
|
|
|
|
#pod * L<http://unalog.com/> |
49
|
|
|
|
|
|
|
#pod a social bookmarks system, written in Python |
50
|
|
|
|
|
|
|
#pod |
51
|
|
|
|
|
|
|
#pod =cut |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
1; |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=pod |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=encoding UTF-8 |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 NAME |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Rubric - a notes and bookmarks manager with tagging |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head1 VERSION |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
version 0.157 |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 DESCRIPTION |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This module is currently just a placeholder and a container for documentation. |
71
|
|
|
|
|
|
|
You don't want to actually C<use Rubric>, even if you want to use Rubric. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Rubric is a note-keeping system that also serves as a bookmark manager. Users |
74
|
|
|
|
|
|
|
store entries, which are small (or large) notes with a set of categorizing |
75
|
|
|
|
|
|
|
"tags." Entries may also refer to URIs. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
Rubric was inspired by the excellent L<http://del.icio.us/> service and the |
78
|
|
|
|
|
|
|
Notational Velocity note-taking software for Mac OS. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 PERL VERSION |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This code is effectively abandonware. Although releases will sometimes be made |
83
|
|
|
|
|
|
|
to update contact info or to fix packaging flaws, bug reports will mostly be |
84
|
|
|
|
|
|
|
ignored. Feature requests are even more likely to be ignored. (If someone |
85
|
|
|
|
|
|
|
takes up maintenance of this code, they will presumably remove this notice.) |
86
|
|
|
|
|
|
|
This means that whatever version of perl is currently required is unlikely to |
87
|
|
|
|
|
|
|
change -- but also that it might change at any new maintainer's whim. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head1 WARNING |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
This is young software, likely to have bugs and likely to change in strange |
92
|
|
|
|
|
|
|
ways. I will try to keep the documented API stable, but not if it makes |
93
|
|
|
|
|
|
|
writing Rubric too inconvenient. |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
Basically, just take note that this software works, but it's still very much |
96
|
|
|
|
|
|
|
under construction. |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=head1 INSTALLING AND UPGRADING |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
Consult the README file in this distribution for instructions on installation |
101
|
|
|
|
|
|
|
and upgrades. |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=head1 TODO |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
For now, consult the C<todo.html> template for future milestones, or check |
106
|
|
|
|
|
|
|
L<http://rjbs.manxome.org/rubric/docs/todo>. |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=head1 THANKS |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
...to a lot of people whom I will try to name, in time. Among these helpful |
111
|
|
|
|
|
|
|
people are Ian Langworth, Shawn Sorichetti, John Cappiello, and Dave O'Neill. |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
=head1 SEE ALSO |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
=over 4 |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
=item * |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
L<http://del.icio.us/> |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
one of my original inspirations |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
=item * |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
L<http://notational.net/> |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
Notational Velocity, another of my inspirations |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
=item * |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
L<http://unalog.com/> |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
a social bookmarks system, written in Python |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
=back |
136
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
=head1 AUTHOR |
138
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
Ricardo SIGNES <rjbs@semiotic.systems> |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
=for stopwords Brian Cassidy jcap@codesimply.com John Cappiello SJ Anderson Ricardo SIGNES Shawn Sorichetti |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
=over 4 |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
=item * |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
Brian Cassidy <bricas@cpan.org> |
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
=item * |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
jcap@codesimply.com <jcap@virgo.codesimply.com> |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
=item * |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
John Cappiello <jcap@codesimply.com> |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
=item * |
160
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
John SJ Anderson <genehack@genehack.org> |
162
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
=item * |
164
|
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
Ricardo SIGNES <rjbs@codesimply.com> |
166
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
=item * |
168
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
Shawn Sorichetti <ssoriche@coloredblocks.net> |
170
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
=back |
172
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
174
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
This software is copyright (c) 2004 by Ricardo SIGNES. |
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
178
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
179
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
=cut |