-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
338 changed files
with
3,031 additions
and
749 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Required dependencies for Verto (installed automatically in setup.py) | ||
markdown==2.6.11 | ||
Jinja2==2.10 | ||
python-slugify==1.2.4 | ||
setuptools==38.4.0 | ||
python-slugify==1.2.5 | ||
setuptools==40.2.0 | ||
|
||
# Required dependencies for building documentation | ||
sphinx==1.6.6 | ||
sphinx_rtd_theme==0.2.4 | ||
sphinx==1.7.7 | ||
sphinx_rtd_theme==0.4.1 |
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,4 +1,4 @@ | ||
# flake8: noqa | ||
from .Verto import Verto | ||
|
||
__version__ = '0.7.3' | ||
__version__ = '0.8.0' |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from verto.errors.Error import Error | ||
|
||
|
||
class CustomArgumentRulesError(Error): | ||
'''Exception raised when custom argument rules refer to a processors | ||
that does not exist. | ||
Attributes: | ||
tag: tag which was not matched | ||
argument: the argument that was not found | ||
value: the value that was not matched | ||
message: explanation of why error was thrown | ||
''' | ||
|
||
def __init__(self, argument, message): | ||
super().__init__(message) | ||
self.argument = argument |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from verto.errors.Error import Error | ||
|
||
|
||
class InteractiveMissingTextError(Error): | ||
'''Exception raised when an interactve is missing text. | ||
Attributes: | ||
tag: tag which was not matched | ||
argument: the argument that was not found | ||
''' | ||
|
||
def __init__(self, tag, argument): | ||
self.tag = tag | ||
self.argument = argument | ||
self.message = '\'text\' is \'true\' but not supplied.' | ||
super().__init__(self.message) |
Oops, something went wrong.