-
-
Notifications
You must be signed in to change notification settings - Fork 474
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
url error #273
Comments
Url is being modified via GetNavigateUrl: https://github.com/cztomczak/cefpython/blob/cefpython54/src/utils.pyx#L85 Seems that urllib_pathname2url() function is causing this issue. There was already a fix for "#" character being encoded, a similar solution for "?", "=" and "&" characters should be applied:
Related issue: #114 |
cztomczak
added a commit
that referenced
this issue
Dec 15, 2016
Update to Cython 0.25.2. Fix Certificate Transparency support causing some SSL sites fail to load after some time (#279). Fix ApplicationSettings.cache_path not working (#283). Fix: Not a clean shutdown in examples, when closing app while browser is still loading a website (#282). Fix loading local filesystem urls that contained any of ? & = characters (#273). Fix Request.SetPostData and GetPostData segmentation faults (#228). Add ApplicationSettings.net_security_expiration_enabled. Update ExecuteJavascript docs with scriptUrl="" and startLine=1 default params. Also worth noting that ExecuteJavascript crashed in earlier CEF versions when startLine wasn't provided or was <= 0 (Issue #268). Add a test that measures execution time for calling Python function from javascript and then js callback. Add Contributing guidelines / Issue template. Update automate.py, include ceftests executable.
Fixed in bfc0a25. v55.2 released, please test. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in linux. if url is file:///home/xxx.html?param=1
CreateBrowserSync this url.
the url format to file:///home/xxx.html%3Fparam%3D1
can't open this url.
The text was updated successfully, but these errors were encountered: