def __init__(self):
		Format.__init__(self, 'devhelp')
		
		self.path = []

		if 'HOME' in os.environ:
			self.path.append(os.path.join(os.environ['HOME'], '.devhelp', 'books'))
		
		self.path.append('/usr/share/gtk-doc/html')
		self.path.append('/usr/local/share/gtk-doc/html')
Beispiel #2
0
    def __init__(self):
        Format.__init__(self, 'devhelp')

        self.path = []

        if 'HOME' in os.environ:
            self.path.append(
                os.path.join(os.environ['HOME'], '.devhelp', 'books'))

        self.path.append('/usr/share/gtk-doc/html')
        self.path.append('/usr/local/share/gtk-doc/html')
	def __init__(self):
		Format.__init__(self, 'generic')
		
		self.formats = {}
		
		# FIXME: Do this automatically.
		try:
			from htmlhelp.format.chm import ChmFormat
			self.register(ChmFormat())
		except ImportError:
			pass			
		from htmlhelp.format.devhelp import DevhelpFormat
		self.register(DevhelpFormat())
		from htmlhelp.format.htb import HtbFormat
		self.register(HtbFormat())
		from htmlhelp.format.mshh import MshhFormat
		self.register(MshhFormat())
		from htmlhelp.format.xml_ import XmlFormat
		self.register(XmlFormat())
Beispiel #4
0
    def __init__(self):
        Format.__init__(self, 'generic')

        self.formats = {}

        # FIXME: Do this automatically.
        try:
            from htmlhelp.format.chm import ChmFormat
            self.register(ChmFormat())
        except ImportError:
            pass
        from htmlhelp.format.devhelp import DevhelpFormat
        self.register(DevhelpFormat())
        from htmlhelp.format.htb import HtbFormat
        self.register(HtbFormat())
        from htmlhelp.format.mshh import MshhFormat
        self.register(MshhFormat())
        from htmlhelp.format.xml_ import XmlFormat
        self.register(XmlFormat())
Beispiel #5
0
	def __init__(self):
		Format.__init__(self, 'mshh')
Beispiel #6
0
 def __init__(self):
     Format.__init__(self, 'mshh')
Beispiel #7
0
 def __init__(self):
     Format.__init__(self, 'xml')
Beispiel #8
0
 def __init__(self):
     Format.__init__(self, 'chm')
Beispiel #9
0
	def __init__(self):
		Format.__init__(self, 'xml')
Beispiel #10
0
	def __init__(self):
		Format.__init__(self, 'chm')
Beispiel #11
0
	def __init__(self):
		Format.__init__(self, 'htb')