Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/model.py
diff options
context:
space:
mode:
authorerich koslovsky <erikos@localhost.localdomain>2007-08-19 14:31:37 (GMT)
committer erich koslovsky <erikos@localhost.localdomain>2007-08-19 14:31:37 (GMT)
commit86abe2346bedc98a249621b080ec85841918c9cc (patch)
treea719dff6806fc71325d92fc8182a515c912f6e8f /model.py
parenta5b7dc3a3664a278e700449d352554654e57905e (diff)
Added support to sink members of the shared browser session when they come back. Some cleanups.
Diffstat (limited to 'model.py')
-rw-r--r--model.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/model.py b/model.py
index 7c91107..284cb7f 100644
--- a/model.py
+++ b/model.py
@@ -132,7 +132,13 @@ class Model(object):
return 2
doc.freeDoc()
return 0
-
+
+ def get_links_ids(self):
+ ids = []
+ for link in self.links:
+ ids.append(link['hash'])
+ ids.append('')
+ return ids
if __name__ == '__main__':