Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Page loaded before all requests done #319

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
43fdc8b
Fix rendering of URLs in logging messages
EvaSDK Sep 22, 2017
8a60682
Log a message when the QT application is stopping
EvaSDK Mar 24, 2017
a98e18d
Enable coverage reports from unittests run
EvaSDK Sep 22, 2017
b6de6b3
Use a modern defaut user agent
jeanphix Apr 20, 2017
e9506a4
Use `xvfbwrapper`
jeanphix Apr 20, 2017
ab72360
Unlock xvfbwrapper dependency to compatible releases
EvaSDK Sep 22, 2017
b84d8b0
Added display server debugging messages
Jul 16, 2015
0e7faef
Enhance display server handling log messages
EvaSDK Sep 22, 2017
1edfb45
Read version without importing the module
EvaSDK Sep 22, 2017
11ecf2c
Use isort for consistent import sorting
EvaSDK Sep 22, 2017
0d5c71c
Remove outdated note about pyside_postinstall script
EvaSDK Sep 22, 2017
167316b
Leave NetworkAccessManager do its job
EvaSDK Dec 22, 2016
4d6fa29
Log download progress of responses
EvaSDK Dec 22, 2016
eb0f4b6
Rename replyReadyRead callback and add docstring
EvaSDK Dec 28, 2016
b0e5fb4
Add callback to consume data for unsupported content download
EvaSDK Dec 28, 2016
661b6e4
Merge branch 'download-unsupport-content-fix' into ghost-py-0-2
EvaSDK Sep 22, 2017
efced48
Reduce py2/3 difference when dealing with files
EvaSDK Sep 22, 2017
32534db
Add fonction to deal with varying Qt bindings bytes/string representa…
EvaSDK Sep 22, 2017
2861838
Restrict content encoding to text types
EvaSDK Sep 22, 2017
00acecd
Do not use lambda to declare signal callbacks
EvaSDK Dec 28, 2016
020d881
Merge branch 'content-encoding-and-pyqt4' into ghost-py-0-2
EvaSDK Sep 22, 2017
e37a863
Fix calls to Ghost.__del__ on missing binding condition
EvaSDK Sep 27, 2017
d2c8da0
Actually log application stop if it is started
EvaSDK Sep 28, 2017
bf614e5
Do not use sleep unnecessarily
EvaSDK Oct 4, 2017
b64693b
Increase reactivity
EvaSDK Oct 4, 2017
92c48b6
Add missing tox.ini to MANIFEST.in
EvaSDK Oct 4, 2017
16aa560
Merge branch 'misc-fixes' into ghost-py-0-2
EvaSDK Oct 4, 2017
dd5f59f
Use super() in NetworkAccessManager
EvaSDK Oct 4, 2017
044502e
Keep a registry of in-flight requests and wait for them to complete
EvaSDK Dec 22, 2016
e2ae25a
Do not error out when receiving QNetworkReply two times
EvaSDK Jan 5, 2017
2cb9433
Log a message when a QtNetworkReply errors out
EvaSDK Jan 6, 2017
e9d8aff
Handle QNetworkReply not sending required signals
EvaSDK Mar 24, 2017
f45e897
Remove unneeded sleep
EvaSDK Sep 22, 2017
a34ae95
Log in-flight requests count when timeout occurs
EvaSDK Oct 4, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ include README.rst *.py
include ghost/ghost.py
include ghost/test.py
include ghost/ext/django/test.py
include tox.ini
recursive-include docs *
recursive-exclude docs *.pyc
recursive-exclude docs *.pyo
Expand Down
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ OSX:
brew install qt
mkvirtualenv foo
pip install -U pip # make sure pip is current
pip install PySide
pyside_postinstall.py -install
pip install "PySide>=1.2.4"
pip install Ghost.py


Expand Down
Loading