Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/__init__.py')
-rw-r--r--src/__init__.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/__init__.py b/src/__init__.py
index 5052a51..aaa29a9 100644
--- a/src/__init__.py
+++ b/src/__init__.py
@@ -15,9 +15,13 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
-from hulahop._hulahop import startup, shutdown
-from hulahop._hulahop import set_profile_path, add_components_path
+from hulahop._hulahop import shutdown
+from hulahop import _hulahop
-startup()
+def startup(profile_path, components_dirs=[]):
+ _hulahop.set_profile_path(profile_path)
-from hulahop.browser import Browser
+ for path in components_dirs:
+ _hulahop.add_components_path(path)
+
+ _hulahop.startup()