-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'client_server' - fixes #3
* client_server: readme for client/server fixed imports setup.py + MANIFEST.in + default port replace=True now does not ignore delete_placeholders version bump ClientJavascript - fix for scripts ClientJavascript server - command line arguments pyppt.py -> core.py + __future__ imports pyppt.py -> core.py fix: keep_aspect - get_size_inches() to be executed on client fixes for pyppt, ClientRequests, server pyppt - get_shape_positions/get_image_positions - all positions rounded ClientRequests pyppt: refactoring - private methods to be shared with the server server - GET/POST methods .gitignore + pyppt fixes + client docstrings pyppt_server.py() - first commit / to be implemented client.py - first commit / to be implemented
- Loading branch information
Showing
9 changed files
with
810 additions
and
108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
media/ | ||
|
||
pyppt/__pycache__/ | ||
*.pyc |
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 @@ | ||
include: *.md |
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,14 @@ | ||
# Python 2/3 compatibility | ||
from __future__ import absolute_import | ||
|
||
# Import library contents | ||
from .pyppt import * | ||
from .core import * | ||
|
||
# Metadata to be shared between module and setup.py | ||
from _ver_ import __version__, __author__, __email__, __url__ | ||
from ._ver_ import __version__, __author__, __email__, __url__ | ||
|
||
# Hijack matplotlib | ||
import matplotlib.pyplot as _plt | ||
_plt.add_figure = add_figure | ||
_plt.replace_figure = replace_figure | ||
# Hijack matplotlib - methods for the local machine only | ||
if win32client is not None: | ||
import matplotlib.pyplot as _plt | ||
_plt.add_figure = add_figure | ||
_plt.replace_figure = replace_figure |
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,5 +1,5 @@ | ||
|
||
__version__ = '0.1.1' | ||
__version__ = '0.2' | ||
__author__ = 'Vladimir Filimonov' | ||
__email__ = 'vladimir.a.filimonov@gmail.com' | ||
__url__ = 'http://github.com/vfilimonov/pyppt' |
Oops, something went wrong.