mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-13 10:06:28 +01:00
6a7b6d5038
- Add the printing project and delete duplicated files from the CEF printing directory. - Add media-related projects and support for <video> and <image> tags. - Use WebKit::WebHTTPBody instead of net::UploadData for web requests. - Numerous changes due to continued cleanup of webkit/glue and webkit/api/public. - Use a separate BrowserWebViewDelegate instance for popup windows. libcef: - Add support for printing to file. - Use WebFrame::GetFullPageHtml() instead of webkit_glue::GetDocumentString(). - Parse extra header values in RequestProxy for passing to CefHandler::HandleBeforeResourceLoad(). - Add urlmon.lib dependency in libcef.vsprops. tools: - Add the patch application tool (patcher.py). patch: - New project for applying required patches to the Chromium source tree (issue #47). - Add webkit_glue.patch for http://codereview.chromium.org/160004 cefclient: - Add new test for submitting and handling requests. - Don't change navigation button state for popup windows. - Fix problem on Vista where the string returned by EM_GETLINE is not NULL-terminated. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@32 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
Chromium Embedded Framework (CEF) Patch Application Tool -- patcher.py
|
|
-------------------------------------------------------------------------------
|
|
|
|
Document Last Updated: July 23, 2009
|
|
|
|
|
|
OVERVIEW
|
|
--------
|
|
|
|
The CEF patch application tool is used by the patch project to apply patches
|
|
to the Chromium and WebKit code bases. Currently only unified diff format is
|
|
supported. See the README.txt file in the patch directory for information on
|
|
how the patch project uses this tool.
|
|
|
|
The 'patcher.bat' file can be used to run the patch application tool with
|
|
command-line arguments that match the default CEF directory structure and
|
|
output options. Run 'patcher.py -h' for a complete list of available command-
|
|
line arguments.
|
|
|
|
|
|
CREDITS
|
|
-------
|
|
|
|
Thanks go to techtonik for developing the python-patch script. The
|
|
patch_util.py file is a slightly modified version of the original script which
|
|
can be found here: http://code.google.com/p/python-patch/
|
|
|
|
|
|
WORK REMAINING
|
|
--------------
|
|
|
|
o Add support for the GIT patch format.
|