Commit Graph

79 Commits (f9aac6f41bcb4f3971d80b316a43855da18b7972)

Author SHA1 Message Date
Sunshine f9aac6f41b
update crates 4 years ago
Sunshine cbe3f9f554
implement support for embedding images within srcset 4 years ago
Sunshine a18df74946
refactor code and implement integrity validation 4 years ago
Sunshine f22e2b6e68
embed SVG IMAGE assets 4 years ago
Sunshine 9b40dbbf27
add option to exclude web fonts 4 years ago
Sunshine edacd09dc8
store blobs instead of data URLs in cache 4 years ago
Sunshine a19aa37ea8
Merge pull request #145 from snshn/no-images-svg
Empty SVG nodes when excluding images
4 years ago
Sunshine 791e44796e
resolve hrefs of <area> image-map tags 4 years ago
Sunshine 1d6217ef5a
empty SVG nodes if --no-images 4 years ago
Sunshine 29836d979a
add support for image inputs 4 years ago
Sunshine 643c4ce7ef
implement improvements suggested by @robatipoor 4 years ago
Sunshine 4951fea730
implement full CSS parsing 4 years ago
Sunshine be25784297
improve SVG media type detection 4 years ago
Sunshine 59a8be493d
add support for working with local assets 4 years ago
Sunshine d5ee8ae6ab
account for legacy BODY background="" attribute 4 years ago
Sunshine 7654eec7e2
treat frames the same way as iframes 4 years ago
Sunshine 928664dc88
correct is_valid_url to is_http_url 4 years ago
Sunshine 5c8d75539b
rename dataurl to data_url 4 years ago
Sunshine 5ef2b7c9dc
nullify JS within As' href attributes when needed 4 years ago
rhysd 69d99b69e8 remove . in line comment 4 years ago
rhysd 67b79e92f9 simplify &x.into_iter() to x.iter() 4 years ago
rhysd b51f41fe34 trim attribute values 4 years ago
rhysd 6f158dc6db compare value of 'rel' properties in case-insensitive 4 years ago
rhysd 8d7052b39c ignore preload and prefetch sources
since all resources are embedded as data URL.
4 years ago
rhysd 660511b8a0 define link type of <link> element as enum and prefer match statement
since match statement checks exhaustiveness
4 years ago
rhysd 6e99ad13e7 upgrade reqwest to v0.10.0
This will improve build time and binary size as follows:

* Before

- **Compile targets**: 220
- **Build time**: `cargo build --release  1264.95s user 39.72s system 335% cpu 6:29.14 total`
- **Binary size**: 6578568 bytes

* After

- **Compile targets**: 170
- **Build time**: `cargo build --release  1130.64s user 32.15s system 359% cpu 5:23.69 total`
- **Binary size**: 6107088 bytes

* Differences

- **Compile targets**: 1.29x smaller
- **Build time**: 1.23x faster
- **Binary size**: 1.07x smaller
4 years ago
Sunshine 413dd66886
Merge pull request #96 from rhysd/refactorings
Refactorings
4 years ago
rhysd dc7ec6e7a8 remove more redundant type annotations 4 years ago
rhysd ddf4b8ac13 prefer &str to String for reducing allocations 4 years ago
rhysd 84c13f0605 prefer unwrap_or_default to unwrap_or 4 years ago
rhysd ce03e0e487 reduce allocation on checking DOM attributes and do not hard-code number of elements of array constant
`to_lower` allocates new string but the allocation is not necessary
here.
4 years ago
rhysd 63e19998d0 reduce clones and fix some code styles and redundant code 4 years ago
rhysd 75fb6961ed migrate to Rust 2018 4 years ago
Sunshine 88ffde0c3b wipe integrity attributes 4 years ago
Emi Simpson dab4ae6965
Merged Y2Z/master with Alch-Emi/lazyload 4 years ago
Sunshine 9ff9dd0928
Merge pull request #82 from snshn/str
implement str!() macro
5 years ago
Emi Simpson 3d4a932ac1
Merge Y2Z/master, fix conflicts between shared-client & resolve-css 5 years ago
Sunshine 9fe913d853 implement str!() macro 5 years ago
Emi Simpson 65d0eab793
Use a shared client initialized in main.rs 5 years ago
Emi Simpson 292221ea28
Lazyloaded images are now loaded at compilation, with placeholders omitted 5 years ago
Emi Simpson 614af44c92
Gramatical and stylistic fixes 5 years ago
Emi Simpson feb37f5812
Added support for lazy loaded images
Note: The way this patch works is by resolving any data-src tags on images in
the same way as normal source tags are resolved.  It is assumed that most
lazy-load libraries will use this tag, and that if this tag is set, then it is a
URL that is in use.
5 years ago
Emi Simpson 45335d7507
Support links in style= attributes 5 years ago
Emi Simpson a4743ca92f
Respect the --no-images flag while parsing CSS 5 years ago
Emi Simpson 8646af6e9f
removed debug code (woops sorry) 5 years ago
Emi Simpson de383c94b1
Applied rustfmt 5 years ago
Emi Simpson ab65b44f0d
Cleaned up some overcomplicated code 5 years ago
Emi Simpson d574e9a5da
Added support for <style> tags 5 years ago
Emi Simpson 1de0fc0961
Add warning and fallback when parsing a rel=stylesheet link 5 years ago
Emi Simpson ebbf755e09
Fixed misleading variable name 5 years ago