rhysd
6f158dc6db
compare value of 'rel' properties in case-insensitive
2020-01-10 13:52:31 +09:00
rhysd
8d7052b39c
ignore preload and prefetch sources
...
since all resources are embedded as data URL.
2020-01-09 18:18:21 +09:00
rhysd
660511b8a0
define link type of <link> element as enum and prefer match statement
...
since match statement checks exhaustiveness
2020-01-09 16:55:42 +09:00
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
2020-01-07 14:22:32 +09:00
Sunshine
413dd66886
Merge pull request #96 from rhysd/refactorings
...
Refactorings
2020-01-05 18:46:31 -05:00
rhysd
dc7ec6e7a8
remove more redundant type annotations
2020-01-04 16:33:11 +09:00
rhysd
ddf4b8ac13
prefer &str to String for reducing allocations
2020-01-04 08:05:02 +09:00
rhysd
84c13f0605
prefer unwrap_or_default to unwrap_or
2020-01-04 07:58:29 +09:00
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.
2020-01-04 07:52:47 +09:00
rhysd
63e19998d0
reduce clones and fix some code styles and redundant code
2020-01-04 07:49:26 +09:00
rhysd
75fb6961ed
migrate to Rust 2018
2020-01-03 00:33:49 +09:00
Sunshine
88ffde0c3b
wipe integrity attributes
2019-12-26 09:44:01 -05:00
Emi Simpson
dab4ae6965
Merged Y2Z/master with Alch-Emi/lazyload
2019-12-24 10:07:56 -05:00
Sunshine
9ff9dd0928
Merge pull request #82 from snshn/str
...
implement str!() macro
2019-12-13 03:51:44 -05:00
Emi Simpson
3d4a932ac1
Merge Y2Z/master, fix conflicts between shared-client & resolve-css
2019-12-12 19:29:21 -05:00
Sunshine
9fe913d853
implement str!() macro
2019-12-11 01:36:14 -05:00
Emi Simpson
65d0eab793
Use a shared client initialized in main.rs
2019-12-09 22:17:54 -05:00
Emi Simpson
292221ea28
Lazyloaded images are now loaded at compilation, with placeholders omitted
2019-12-09 19:40:29 -05:00
Emi Simpson
614af44c92
Gramatical and stylistic fixes
2019-12-09 13:58:12 -05:00
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.
2019-12-06 19:27:41 -05:00
Emi Simpson
45335d7507
Support links in style= attributes
2019-12-06 15:28:08 -05:00
Emi Simpson
a4743ca92f
Respect the --no-images flag while parsing CSS
2019-12-06 15:00:06 -05:00
Emi Simpson
8646af6e9f
removed debug code (woops sorry)
2019-12-06 10:52:20 -05:00
Emi Simpson
de383c94b1
Applied rustfmt
2019-12-05 20:41:43 -05:00
Emi Simpson
ab65b44f0d
Cleaned up some overcomplicated code
2019-12-05 20:22:39 -05:00
Emi Simpson
d574e9a5da
Added support for <style> tags
2019-12-05 20:05:52 -05:00
Emi Simpson
1de0fc0961
Add warning and fallback when parsing a rel=stylesheet link
2019-12-05 19:10:47 -05:00
Emi Simpson
ebbf755e09
Fixed misleading variable name
2019-12-05 19:02:11 -05:00
Emi Simpson
d3956a7905
Made merge compatible with Y2Z/master
2019-12-05 19:01:03 -05:00
Emi Simpson
11bbfc0851
Added support for recursively nested css @imports
2019-12-05 18:15:06 -05:00
voila
1ff5e91087
Use HashMap as cache to minimize the number of HTTP requests ( #75 )
...
Use HashMap as cache to minimize the number of HTTP requests
2019-10-22 18:33:22 -04:00
knidarkness
550e4cc83f
Fixed formatting
2019-10-12 14:05:07 +03:00
knidarkness
5443c0cc3f
Added loading of the links given as url(...) in css files
2019-10-12 12:32:59 +03:00
Sunshine
0896f2e214
Properly handle 30x redirects
2019-09-30 23:58:09 -04:00
Vincent Flyson
3948ea3aa0
Improve code structure
2019-09-29 17:15:49 -04:00
Vincent Flyson
eec05767cf
Add support for poster attribute
2019-09-22 12:57:50 -04:00
Vincent Flyson
88a230872c
Add CSP isolation, no CSS, and no iframe options
2019-09-21 22:59:03 -04:00
Vincent Flyson
04cbbefafa
Ignore empty src in images, accept fluid icons
2019-09-08 02:51:53 -04:00
Vincent Flyson
824b418f80
Add more tests
2019-08-30 22:18:14 -04:00
Vincent Flyson
2251c086c2
Merge branch 'master' into ignore-ca
2019-08-27 06:55:00 -04:00
Vincent Flyson
02b717ae54
Add flag to ignore errors related to TLS certificates
2019-08-26 23:17:36 -04:00
Vincent Flyson
1329dbe6f8
Ignore iframes with empty src
2019-08-26 22:57:10 -04:00
Vincent Flyson
2b96f9a32a
Add flag for silent mode
2019-08-25 11:41:30 -04:00
Vincent Flyson
50f1ba1ce8
Treat network errors as empty results
2019-08-24 23:06:40 -04:00
Vincent Flyson
2c0037fd51
Merge pull request #37 from Y2Z/ignore-other-protocols
...
Avoid modifying non-HTTP anchor hrefs
2019-08-24 20:07:25 -04:00
Vincent Flyson
3f79068d7d
Avoid modifying non-HTTP anchor hrefs
2019-08-24 14:54:23 -04:00
Vincent Flyson
b596b5bb7d
Ignore icons if told to avoid images
2019-08-24 14:22:34 -04:00
Vincent Flyson
d49e825777
Add support for picture elements
2019-08-24 11:21:29 -04:00
Vincent Flyson
c34d77d5d8
Revamp resolve_url() and improve code format
2019-08-23 23:06:14 -04:00
Vincent Flyson
2be5b1c235
Add support for iframes
2019-08-23 20:16:16 -04:00