Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/datastore/demodata.py
diff options
context:
space:
mode:
Diffstat (limited to 'services/datastore/demodata.py')
-rw-r--r--services/datastore/demodata.py65
1 files changed, 65 insertions, 0 deletions
diff --git a/services/datastore/demodata.py b/services/datastore/demodata.py
new file mode 100644
index 0000000..9265a6f
--- /dev/null
+++ b/services/datastore/demodata.py
@@ -0,0 +1,65 @@
+import time
+import os
+
+def insert_demo_data(data_store):
+ home_dir = os.path.expanduser('~')
+ journal_dir = os.path.join(home_dir, "Journal")
+ if not os.path.exists(journal_dir):
+ os.makedirs(journal_dir, 0755)
+
+ data = [
+ { 'file-path' : os.path.join(journal_dir, 'fishes_in_the_sea.rtf'),
+ 'object-type' : 'text',
+ 'date' : str(time.time() - 100000),
+ 'title' : 'Fishes in the Sea',
+ 'preview' : 'There are many fishes in the sea, and not only...',
+ 'icon' : 'theme:object-text',
+ 'icon-color' : '#C2B00C,#785C78',
+ 'keep' : '0',
+ 'buddies' : str([ { 'name' : 'Marco',
+ 'color' : '#C2B00C,#785C78' },
+ { 'name' : 'Dan',
+ 'color' : '#75C228,#3A6E3A' } ])
+ },
+ { 'file-path' : os.path.join(journal_dir, 'my_cat_and_my_fishes.rtf'),
+ 'object-type' : 'text',
+ 'date' : str(time.time() - 200000),
+ 'title' : 'My cat and my fishes',
+ 'preview' : "Don't know why, but my cat looks to like my fishe...",
+ 'icon' : 'theme:object-text',
+ 'icon-color' : '#C2B00C,#785C78',
+ 'keep' : '1',
+ 'buddies' : str([ { 'name' : 'Eben',
+ 'color' : '#C2B00C,#785C78' },
+ { 'name' : 'Dan',
+ 'color' : '#75C228,#3A6E3A' } ])
+ },
+ { 'file-path' : os.path.join(journal_dir, 'cat_browsing.hist'),
+ 'object-type' : 'link',
+ 'date' : str(time.time() - 300000),
+ 'title' : 'About cats',
+ 'preview' : "http://en.wikipedia.org/wiki/Cat",
+ 'icon' : 'theme:object-link',
+ 'icon-color' : '#C2B00C,#785C78',
+ 'keep' : '0',
+ 'buddies' : str([ { 'name' : 'Dan',
+ 'color' : '#C2B00C,#785C78' },
+ { 'name' : 'Tomeu',
+ 'color' : '#75C228,#3A6E3A' } ])
+ },
+ { 'file-path' : os.path.join(journal_dir, 'our_school.jpeg'),
+ 'object-type' : 'picture',
+ 'date' : str(time.time() - 400000),
+ 'title' : 'Our school',
+ 'preview' : "Our school",
+ 'icon' : 'theme:object-image',
+ 'icon-color' : '#C2B00C,#785C78',
+ 'keep' : '0',
+ 'buddies' : str([ { 'name' : 'Marco',
+ 'color' : '#C2B00C,#785C78' },
+ { 'name' : 'Eben',
+ 'color' : '#75C228,#3A6E3A' } ])
+ }
+ ]
+ for obj in data:
+ data_store.create(obj)