-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06f64f5
commit 8e94fad
Showing
931 changed files
with
4,198 additions
and
10,181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
borb version 2.0.32 | ||
borb version 2.1.0 | ||
Joris Schellekens |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,43 +42,6 @@ | |
address: [email protected] | ||
""" | ||
|
||
# Document, Page, PDF | ||
from .document.document import Document | ||
from .page.page import Page | ||
from .pdf import PDF | ||
|
||
# PageLayout | ||
from .canvas.layout.page_layout.page_layout import PageLayout | ||
from .canvas.layout.page_layout.multi_column_layout import SingleColumnLayout | ||
from .canvas.layout.page_layout.multi_column_layout import MultiColumnLayout | ||
from .canvas.layout.layout_element import Alignment | ||
|
||
# Paragraph | ||
from .canvas.layout.text.paragraph import Paragraph | ||
from .canvas.layout.text.heading import Heading | ||
|
||
# Image | ||
from .canvas.layout.image.image import Image | ||
from .canvas.layout.image.chart import Chart | ||
from .canvas.layout.image.barcode import Barcode | ||
from .canvas.layout.image.barcode import BarcodeType | ||
|
||
# Shape | ||
from .canvas.layout.shape.shape import Shape | ||
from .canvas.layout.shape.disjoint_shape import DisjointShape | ||
|
||
# Table | ||
from .canvas.layout.table.table import Table, TableCell | ||
from .canvas.layout.table.fixed_column_width_table import FixedColumnWidthTable | ||
from .canvas.layout.table.flexible_column_width_table import FlexibleColumnWidthTable | ||
from .canvas.layout.table.table_util import TableUtil | ||
|
||
# List | ||
from .canvas.layout.list.list import List | ||
from .canvas.layout.list.ordered_list import OrderedList | ||
from .canvas.layout.list.unordered_list import UnorderedList | ||
from .canvas.layout.list.roman_list import RomanNumeralOrderedList | ||
|
||
# Color | ||
from .canvas.color.color import ( | ||
Color, | ||
|
@@ -91,3 +54,33 @@ | |
X11Color, | ||
) | ||
from .canvas.color.pantone import Pantone | ||
from .canvas.layout.image.barcode import Barcode | ||
from .canvas.layout.image.barcode import BarcodeType | ||
from .canvas.layout.image.chart import Chart | ||
# Image | ||
from .canvas.layout.image.image import Image | ||
from .canvas.layout.layout_element import Alignment | ||
# List | ||
from .canvas.layout.list.list import List | ||
from .canvas.layout.list.ordered_list import OrderedList | ||
from .canvas.layout.list.roman_list import RomanNumeralOrderedList | ||
from .canvas.layout.list.unordered_list import UnorderedList | ||
from .canvas.layout.page_layout.multi_column_layout import MultiColumnLayout | ||
from .canvas.layout.page_layout.multi_column_layout import SingleColumnLayout | ||
# PageLayout | ||
from .canvas.layout.page_layout.page_layout import PageLayout | ||
# Shape | ||
from .canvas.layout.shape.connected_shape import ConnectedShape | ||
from .canvas.layout.shape.disconnected_shape import DisconnectedShape | ||
from .canvas.layout.table.fixed_column_width_table import FixedColumnWidthTable | ||
from .canvas.layout.table.flexible_column_width_table import FlexibleColumnWidthTable | ||
# Table | ||
from .canvas.layout.table.table import Table, TableCell | ||
from .canvas.layout.table.table_util import TableUtil | ||
from .canvas.layout.text.heading import Heading | ||
# Paragraph | ||
from .canvas.layout.text.paragraph import Paragraph | ||
# Document, Page, PDF | ||
from .document.document import Document | ||
from .page.page import Page | ||
from .pdf import PDF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.