Mercurial > code > home > repos > href
comparison link.py @ 23:d6a09e8efa56
old diffs
Ignore-this: ff070c2de9eca9e3d9307bf9345debbb
author | drewp@bigasterisk.com |
---|---|
date | Sun, 22 May 2016 16:38:54 -0700 |
parents | 8008ec2fd763 |
children | 7c82ffbca5d0 |
comparison
equal
deleted
inserted
replaced
22:fa55f4439977 | 23:d6a09e8efa56 |
---|---|
63 private=data.private, | 63 private=data.private, |
64 shareWith=filter(None, data.shareWith.split(',')), | 64 shareWith=filter(None, data.shareWith.split(',')), |
65 tag=data.tag, | 65 tag=data.tag, |
66 t=t, | 66 t=t, |
67 ) | 67 ) |
68 | |
69 def asDeliciousAddParams(self): | |
70 return dict(url=self['href'], | |
71 description=self['description'], | |
72 extended=self['extended'], | |
73 tags=','.join(self['tag'].split(' ')), | |
74 dt=self['t'], | |
75 replace='yes', | |
76 ) |