~ubuntu-branches/ubuntu/raring/virtinst/raring-proposed

« back to all changes in this revision

Viewing changes to virtconv/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Guido Günther
  • Date: 2008-11-19 09:19:29 UTC
  • mto: (1.4.1 sid)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20081119091929-vwksujnqzo1utdln
Tags: upstream-0.400.0
Import upstream version 0.400.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
 
3
# Use is subject to license terms.
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free  Software Foundation; either version 2 of the License, or
 
8
# (at your option)  any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
18
# MA 02110-1301 USA.
 
19
#
 
20
 
 
21
import pkgutil
 
22
import imp
 
23
import os
 
24
 
 
25
parsers_path = [os.path.join(__path__[0], "parsers/")]
 
26
 
 
27
# iter_modules is only in Python 2.5, sadly
 
28
parser_names = [ "vmx", "virtimage" ]
 
29
 
 
30
if hasattr(pkgutil, "iter_modules"):
 
31
    parser_names = []
 
32
    for ignore, name, ignore in pkgutil.iter_modules(parsers_path):
 
33
        parser_names += [ name ]
 
34
 
 
35
for name in parser_names:
 
36
    filename, pathname, desc = imp.find_module(name, parsers_path)
 
37
    imp.load_module(name, filename, pathname, desc)