~thekorn/zeitgeist/exclusive_clients

« back to all changes in this revision

Viewing changes to zeitgeist/datamodel.py

  • Committer: "Mikkel Kamstrup Erlandsen"
  • Date: 2009-12-06 14:46:51 UTC
  • Revision ID: mikkel.kamstrup@gmail.com-20091206144651-53zy0kkkshttrr0w
More doc polish

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
Each interpretation type is uniquely identified by a URI. This class provides
122
122
a list of hard coded URI constants for programming convenience. In addition;
123
123
each interpretation instance in this class has a *display_name* property, which
124
 
is an internationalized string meant for end user display."""
 
124
is an internationalized string meant for end user display.
 
125
 
 
126
The interpretation types listed here are all subclasses of *str* and may be
 
127
used anywhere a string would be used."""
125
128
 
126
129
MANIFESTATION_DOC = \
127
130
"""The manifestation type of an event or subject is an abstract classification
128
131
of *"how did this happen"* or *"how does this item exist"*.
129
132
 
130
 
Each manifestation type s uniquely identified by a URI.This class provides
131
 
a list of hard coded URI constant for programming convenience.
 
133
Each manifestation type s uniquely identified by a URI. This class provides
 
134
a list of hard coded URI constants for programming convenience. In addition;
 
135
each interpretation instance in this class has a *display_name* property, which
 
136
is an internationalized string meant for end user display.
132
137
 
133
 
Each interpretation listed in this class has a *display_name* property, which
134
 
is an internationalized string meant for end user display."""
 
138
The manifestation types listed here are all subclasses of *str* and may be
 
139
used anywhere a string would be used."""
135
140
 
136
141
 
137
142
Interpretation = SymbolCollection(INTERPREATION_ID, doc=INTERPRETATION_DOC)