| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
9
|
|
|
9
|
|
4517
|
use strict; |
|
|
9
|
|
|
|
|
17
|
|
|
|
9
|
|
|
|
|
244
|
|
|
2
|
9
|
|
|
9
|
|
47
|
use warnings; |
|
|
9
|
|
|
|
|
18
|
|
|
|
9
|
|
|
|
|
497
|
|
|
3
|
|
|
|
|
|
|
package Rubric; |
|
4
|
|
|
|
|
|
|
# ABSTRACT: a notes and bookmarks manager with tagging |
|
5
|
|
|
|
|
|
|
$Rubric::VERSION = '0.156'; |
|
6
|
|
|
|
|
|
|
#pod =head1 DESCRIPTION |
|
7
|
|
|
|
|
|
|
#pod |
|
8
|
|
|
|
|
|
|
#pod This module is currently just a placeholder and a container for documentation. |
|
9
|
|
|
|
|
|
|
#pod You don't want to actually C |
|
10
|
|
|
|
|
|
|
#pod |
|
11
|
|
|
|
|
|
|
#pod Rubric is a note-keeping system that also serves as a bookmark manager. Users |
|
12
|
|
|
|
|
|
|
#pod store entries, which are small (or large) notes with a set of categorizing |
|
13
|
|
|
|
|
|
|
#pod "tags." Entries may also refer to URIs. |
|
14
|
|
|
|
|
|
|
#pod |
|
15
|
|
|
|
|
|
|
#pod Rubric was inspired by the excellent L service and the |
|
16
|
|
|
|
|
|
|
#pod Notational Velocity note-taking software for Mac OS. |
|
17
|
|
|
|
|
|
|
#pod |
|
18
|
|
|
|
|
|
|
#pod =head1 WARNING |
|
19
|
|
|
|
|
|
|
#pod |
|
20
|
|
|
|
|
|
|
#pod This is young software, likely to have bugs and likely to change in strange |
|
21
|
|
|
|
|
|
|
#pod ways. I will try to keep the documented API stable, but not if it makes |
|
22
|
|
|
|
|
|
|
#pod writing Rubric too inconvenient. |
|
23
|
|
|
|
|
|
|
#pod |
|
24
|
|
|
|
|
|
|
#pod Basically, just take note that this software works, but it's still very much |
|
25
|
|
|
|
|
|
|
#pod under construction. |
|
26
|
|
|
|
|
|
|
#pod |
|
27
|
|
|
|
|
|
|
#pod =head1 INSTALLING AND UPGRADING |
|
28
|
|
|
|
|
|
|
#pod |
|
29
|
|
|
|
|
|
|
#pod Consult the README file in this distribution for instructions on installation |
|
30
|
|
|
|
|
|
|
#pod and upgrades. |
|
31
|
|
|
|
|
|
|
#pod |
|
32
|
|
|
|
|
|
|
#pod =head1 TODO |
|
33
|
|
|
|
|
|
|
#pod |
|
34
|
|
|
|
|
|
|
#pod For now, consult the C template for future milestones, or check |
|
35
|
|
|
|
|
|
|
#pod L. |
|
36
|
|
|
|
|
|
|
#pod |
|
37
|
|
|
|
|
|
|
#pod =head1 THANKS |
|
38
|
|
|
|
|
|
|
#pod |
|
39
|
|
|
|
|
|
|
#pod ...to a lot of people whom I will try to name, in time. Among these helpful |
|
40
|
|
|
|
|
|
|
#pod people are Ian Langworth, Shawn Sorichetti, John Cappiello, and Dave O'Neill. |
|
41
|
|
|
|
|
|
|
#pod |
|
42
|
|
|
|
|
|
|
#pod =head1 SEE ALSO |
|
43
|
|
|
|
|
|
|
#pod |
|
44
|
|
|
|
|
|
|
#pod =for :list |
|
45
|
|
|
|
|
|
|
#pod * L |
|
46
|
|
|
|
|
|
|
#pod one of my original inspirations |
|
47
|
|
|
|
|
|
|
#pod * L |
|
48
|
|
|
|
|
|
|
#pod Notational Velocity, another of my inspirations |
|
49
|
|
|
|
|
|
|
#pod * L |
|
50
|
|
|
|
|
|
|
#pod a social bookmarks system, written in Python |
|
51
|
|
|
|
|
|
|
#pod |
|
52
|
|
|
|
|
|
|
#pod =cut |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
1; |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
__END__ |