mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Added various copyright headers and doc strings
This commit is contained in:
parent
a349d76379
commit
015ca66350
@ -1,2 +1,9 @@
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Marshall T. Vandegrift <llasram@gmail.com>'
|
||||
|
||||
"""
|
||||
Microsoft LIT tag and attribute tables.
|
||||
"""
|
||||
|
||||
from calibre.ebooks.lit.maps.opf import MAP as OPF_MAP
|
||||
from calibre.ebooks.lit.maps.html import MAP as HTML_MAP
|
||||
|
@ -1,3 +1,10 @@
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Marshall T. Vandegrift <llasram@gmail.com>'
|
||||
|
||||
"""
|
||||
Microsoft LIT HTML tag and attribute tables, copied from ConvertLIT.
|
||||
"""
|
||||
|
||||
TAGS = [
|
||||
None,
|
||||
None,
|
||||
|
@ -1,3 +1,10 @@
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Marshall T. Vandegrift <llasram@gmail.com>'
|
||||
|
||||
"""
|
||||
Microsoft LIT OPF tag and attribute tables, copied from ConvertLIT.
|
||||
"""
|
||||
|
||||
TAGS = [
|
||||
None,
|
||||
"package",
|
||||
|
@ -4,7 +4,8 @@ Support for reading LIT files.
|
||||
from __future__ import with_statement
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
|
||||
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net> ' \
|
||||
'and Marshall T. Vandegrift <llasram@gmail.com>'
|
||||
|
||||
import sys, struct, cStringIO, os
|
||||
import functools
|
||||
|
@ -1,3 +1,10 @@
|
||||
/* __license__ = 'GPL v3'
|
||||
* __copyright__ = '2008, Marshall T. Vandegrift <llasram@gmail.com>'
|
||||
*
|
||||
* Python module C glue code.
|
||||
*/
|
||||
|
||||
|
||||
#include <Python.h>
|
||||
|
||||
#include <mspack.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user