diff options
author | Teddy Wing | 2019-11-02 17:55:03 +0100 |
---|---|---|
committer | Teddy Wing | 2019-11-02 17:55:11 +0100 |
commit | f9d7818487c589fffc32cb9ab1f1185e22ec016b (patch) | |
tree | 11391a27c62cc8c57c98879946264868d32d6102 | |
parent | 8fb0408e1d4e50a25cd900237976f3ee310e1da8 (diff) | |
download | pdf-urls-f9d7818487c589fffc32cb9ab1f1185e22ec016b.tar.bz2 |
Add TODO file
-rw-r--r-- | TODO | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +TODO + +2019.11.01 +v Remove `unwrap`s, return a `Result` +v Set up errors +v Add a test +v Make a test PDF +v Take the PDF path as an argument +v Documentation +- Figure out what's wrong with parsing certain PDFs + + + +523170630fd8e9ba695f4167d132a8812d814a1e +$ ./target/debug/pdf-urls ./Resources/PDF32000_2008.pdf +error: utf8 error: invalid utf-8 sequence of 1 bytes from index 0 + +Changed URL conversion to `String::from_utf8_lossy(s)` +$ time ./target/debug/pdf-urls ./Resources/PDF32000_2008.pdf +error: pdf error: An object does not have the expected type + +real 2m19.471s +user 8m44.137s +sys 0m3.798s |