]>
git.madduck.net Git - etc/taskwarrior.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
87b4701 )
def serialize_annotations(self, value):
value = value if value is not None else []
def serialize_annotations(self, value):
value = value if value is not None else []
- serialized_annotations = [annotation.export_data() for annotation in value]
- if serialized_annotations:
- return '[' + ','.join(serialized_annotations) + ']'
- else:
- return ''
+ # This may seem weird, but it's correct, we want to export
+ # a list of dicts as serialized value
+ serialized_annotations = [json.loads(annotation.export_data())
+ for annotation in value]
+ return serialized_annotations if serialized_annotations else ''
def deserialize_annotations(self, data):
return [TaskAnnotation(self, d) for d in data] if data else []
def deserialize_annotations(self, data):
return [TaskAnnotation(self, d) for d in data] if data else []
t.add_annotation("annotation1")
t.add_annotation("annotation2")
t.add_annotation("annotation1")
t.add_annotation("annotation2")
- data = json.loads(t._serialize('annotations', t._data['annotations']) )
+ data = t._serialize('annotations', t._data['annotations'] )
self.assertEqual(len(data), 2)
self.assertEqual(type(data[0]), dict)
self.assertEqual(len(data), 2)
self.assertEqual(type(data[0]), dict)