13 class BookmarkNode: |
13 class BookmarkNode: |
14 """ |
14 """ |
15 Class implementing the bookmark node type. |
15 Class implementing the bookmark node type. |
16 """ |
16 """ |
17 |
17 |
|
18 # TODO: change this to an enum |
18 # possible bookmark node types |
19 # possible bookmark node types |
19 Root = 0 |
20 Root = 0 |
20 Folder = 1 |
21 Folder = 1 |
21 Bookmark = 2 |
22 Bookmark = 2 |
22 Separator = 3 |
23 Separator = 3 |
23 |
24 |
|
25 # TODO: change this to an enum |
24 # possible timestamp types |
26 # possible timestamp types |
25 TsAdded = 0 |
27 TsAdded = 0 |
26 TsModified = 1 |
28 TsModified = 1 |
27 TsVisited = 2 |
29 TsVisited = 2 |
28 |
30 |