|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| build/ | | 03-May-2024 | - | 7 | 5 |
| libexslt/ | | 03-May-2024 | - | 8,919 | 5,510 |
| libxslt/ | | 03-May-2024 | - | 39,093 | 25,155 |
| linux/ | | 03-May-2024 | - | 640 | 271 |
| mac/ | | 03-May-2024 | - | 161 | 43 |
| win32/ | | 03-May-2024 | - | 2,047 | 1,531 |
| AUTHORS | D | 03-May-2024 | 554 | 21 | 16 |
| Copyright | D | 03-May-2024 | 2.9 KiB | 54 | 43 |
| INSTALL | D | 03-May-2024 | 1,009 | 50 | 27 |
| README.chromium | D | 03-May-2024 | 2.6 KiB | 71 | 60 |
| acconfig.h | D | 03-May-2024 | 108 | 7 | 6 |
| compile | D | 03-May-2024 | 3.6 KiB | 143 | 79 |
| config.guess | D | 03-May-2024 | 43.5 KiB | 1,517 | 1,305 |
| config.sub | D | 03-May-2024 | 32 KiB | 1,627 | 1,483 |
| libexslt.pc.in | D | 03-May-2024 | 246 | 13 | 10 |
| libxslt.gyp | D | 03-May-2024 | 3.8 KiB | 128 | 126 |
| libxslt.m4 | D | 03-May-2024 | 7.9 KiB | 192 | 181 |
| libxslt.pc.in | D | 03-May-2024 | 233 | 13 | 10 |
| libxslt.target.darwin-arm.mk | D | 03-May-2024 | 7 KiB | 295 | 246 |
| libxslt.target.darwin-mips.mk | D | 03-May-2024 | 7 KiB | 291 | 242 |
| libxslt.target.darwin-x86.mk | D | 03-May-2024 | 7 KiB | 295 | 246 |
| libxslt.target.linux-arm.mk | D | 03-May-2024 | 7 KiB | 295 | 246 |
| libxslt.target.linux-mips.mk | D | 03-May-2024 | 7 KiB | 291 | 242 |
| libxslt.target.linux-x86.mk | D | 03-May-2024 | 7 KiB | 295 | 246 |
| xslt-config.in | D | 03-May-2024 | 2.3 KiB | 138 | 107 |
| xsltConf.sh.in | D | 03-May-2024 | 172 | 8 | 7 |
README.chromium
1Name: libxslt
2URL: http://xmlsoft.org/XSLT
3Version: 1.1.26
4Security Critical: yes
5License: MIT
6License File: Copyright
7
8Description:
9This directory contains a partial snapshot of the libxslt library
10with the following modification:
11
121) Modified win32/configure.js to be able to clobber a read-only Makefile
13This consists of:
14replace ---
15fso.CopyFile(makefile, ".\\Makefile", true);
16with ---
17var new_makefile = ".\\Makefile";
18var f = fso.FileExists(new_makefile);
19if (f) {
20 var t = fso.GetFile(new_makefile);
21 t.Attributes =0;
22}
23fso.CopyFile(makefile, new_makefile, true);
24done ---
25
262) Modified libxslt/security.c to use GetFileAttributesA instead of GetFileAttributes.
27
283) Modified configure to not generate Makefiles.
29This consists of:
30replace ---
31ac_config_files="$ac_config_files Makefile....
32with ---
33ac_config_files="$ac_config_files libxslt/xsltconfig.h libxslt/xsltwin32config.h libexslt/exsltconfig.h xslt-config"
34done ---
35
364) Modified xsltconfig.h options:
37- Change LIBXSLT_VERSION_EXTRA define to ""
38- Change the DEBUG_MEMORY define to #if 0
39- Change the WITH_MODULES define to #if 0
40- Change the "Locale support" section to #if 0
41- For good measure, change the LIBXSLT_DEFAULT_PLUGINS_PATH() define to "NULL"
42
43Current version: 1.1.26, plus the following patches:
44- A fix to get more compact generated IDs (http://git.gnome.org/browse/libxslt/commit/?id=ecb6bcb8d1b7e44842edde3929f412d46b40c89f)
45- Import pattern parsing fix for commit: http://git.gnome.org/browse/libxslt/commit/?id=fe5a4fa33eb85bce3253ed3742b1ea6c4b59b41b
46- A fix for XSLT node checking (from upstream, commit pending).
47- A fix for dictionary string usage.
48
495) Converted to utf-8 with: vim +"argdo write ++enc=utf-8" *.c
50
516) A change to pattern.c to better handle an error condition parsing a broken
52expression.
53
54To import a new snapshot of libxslt:
55
56- Visit http://xmlsoft.org/XSLT/downloads.html and download the latest source
57 distribution.
58- Copy the files into this directory, omitting files which have been omitted
59 here.
60- Run build/generate-win32-headers.bat to re-generate the configuration
61 headers.
62- On Linux, 'cd linux && sh ../configure --with-libxml-src=../../libxml/linux/'
63 to re-generate configuration headers.
64- On Mac, 'cd mac && sh ../configure --with-libxml-src=../../libxml/mac/'
65 to re-generate configuration headers.
66- Perform the modification above.
67- Update this README to reflect the new version number.
68- When creating your CL, make sure to "svn add" any new source files, but
69don't ever add in the files not needed for the Chromium build. (e.g.
70Changelog, configure, etc) -- these are just bloat.
71