lib/actions.py
changeset 74 6784c4350b41
parent 73 c078d8a04d76
child 76 147eddb3826c
--- a/lib/actions.py	Wed Dec 31 01:53:22 2008 -0500
+++ b/lib/actions.py	Wed Dec 31 15:41:32 2008 -0500
@@ -24,11 +24,11 @@
 		
 
 actions = ActionsLoader()
-actions['default'] = ('index', 'do_it')
 actions['index'] = ('index', 'do_it')
-actions['edit'] = ('edit', 'do_it')
 actions['import'] = ('imp_xbel', 'do_it')
-actions['add'] = ('add', 'do_it')
-actions['bookmark'] = ('add', 'do_it')
+actions['bookmark'] = ('bookmark', 'do_it')
 actions['keywords'] = ('editkw', 'do_it')
 actions['prefs'] = ('edit_prefs', 'do_it')
+actions['folder'] = ('folder', 'do_it')
+
+actions['default'] = actions['index']