Brian Hardisty
28445d26e8
Remove obsolete note on double-bracketed CSS in templates
2017-07-05 03:07:21 -07:00
Brian Hardisty
31ec3203c5
Use template strings for substitution in HTML output
...
`str.format()` can only use substitutions identified by braces (`{` and
`}`). This has the potential to conflict with other code in the HTML
template, such as CSS or JavaScript.
Template strings can use substitutions identified by `$` or `${}`, e.g.:
`$identifier` or `${identifier}`. These substitutions won't conflict
with CSS or JavaScript, allowing users to write HTML templates that
don't require double braces anywhere there's a substitution conflict.
This is especially useful when one is using a build tool to generate the
final CSS/JavaScript/HTML.
https://docs.python.org/3/library/string.html#template-strings
2017-07-05 02:59:09 -07:00
Nick Sweeting
bca2dceec0
chrome upgrade instructions
2017-07-04 06:46:15 -05:00
Nick Sweeting
010c3d9771
upgrade chrome in setup.sh
2017-07-04 06:40:19 -05:00
Nick Sweeting
60ffe0b2b4
hardcode more encodings
2017-07-04 06:26:46 -05:00
Nick Sweeting
881de8adbe
minor url fixes and refactoring
2017-07-04 06:24:03 -05:00
Nick Sweeting
0df2bfe4c8
readme update
2017-07-04 05:57:42 -05:00
Nick Sweeting
c768594b8b
add python version check
2017-07-04 05:48:12 -05:00
Nick Sweeting
01687fbe89
enforce utf-8 index encoding
2017-07-04 05:42:31 -05:00
Nick Sweeting
fd1435164b
split archive.py into multiple files, refactor config system
2017-07-04 05:38:07 -05:00
Nick Sweeting
f33330ebbf
fix pdf and screenshot links
2017-07-04 04:28:38 -05:00
Nick Sweeting
7b72156afd
update changelog
2017-07-04 04:22:25 -05:00
Nick Sweeting
e03886b85b
add docs for new config options
2017-07-04 04:14:25 -05:00
Nick Sweeting
59dbf725a6
syntax error
2017-07-04 04:09:42 -05:00
Nick Sweeting
f0c7a6f558
fix archive url calculation for urls ending in slash
2017-07-04 04:09:00 -05:00
Nick Sweeting
747676dddd
rename example for consistency
2017-07-04 04:06:24 -05:00
Nick Sweeting
16c75bba73
Update README.md
2017-07-04 04:04:01 -05:00
Nick Sweeting
d59bdbc86a
fix archive urls not pointing to .html wget versions!!
2017-07-04 04:03:09 -05:00
Nick Sweeting
e0f702bccd
always show cmd that failed for error messages
2017-07-04 04:02:47 -05:00
Nick Sweeting
432d5c2dbc
default to fetching requisites
2017-07-04 03:29:42 -05:00
Nick Sweeting
e09c704d50
disable wget --mirror in favor of timestamping
2017-07-04 03:21:47 -05:00
Nick Sweeting
0551e5b9e0
fix archive.org chmod and wget error msg
2017-07-04 03:15:17 -05:00
Nick Sweeting
72d6eb9e1e
add TIMEOUT and FETCH_WGET_IMAGES options, fix chmod dir
2017-07-04 03:09:47 -05:00
Nick Sweeting
555583b20b
refactor chmod into function
2017-07-04 03:02:01 -05:00
Nick Sweeting
fa8a7bde80
more granular errors
2017-07-04 02:50:24 -05:00
Nick Sweeting
263f71862a
wget images too, print stderr on fail
2017-07-04 02:42:57 -05:00
Nick Sweeting
1431cc3290
more troubleshooting help
2017-07-02 12:02:29 -05:00
Nick Sweeting
9f5fe726dd
Merge pull request #30 from bardisty/fix-pinboard-json-timestamps-error
...
Fix Pinboard JSON duplicate timestamps error
2017-07-01 16:11:49 -05:00
Brian Hardisty
17cc60d38c
Add pinboard.json
example file
2017-07-01 14:10:51 -07:00
Nick Sweeting
47ece9dc5a
Update README.md
2017-07-01 14:25:30 -05:00
Nick Sweeting
edf0371924
Update README.md
2017-07-01 14:24:43 -05:00
Nick Sweeting
3f7eff550b
add resume feature to docs
2017-07-01 12:22:40 -05:00
Nick Sweeting
c6fd9ce055
Update README.md
2017-07-01 12:15:09 -05:00
Brian Hardisty
71159bdcaa
Fix Pinboard JSON duplicate timestamps error
...
If the JSON exported by Pinboard contains duplicate timestamps, Python
returns a TypeError exception:
`TypeError: argument of type 'float' is not iterable`
This is because `time.mktime()` returns a floating point number.
Encasing `time.mktime()` in `str()` fixes the data type not being
iterable.
`time.mktime()` has also been encased in `int()` to remove the
unnecessary decimal value (`.0`) that gets returned for each time value,
and to keep the script consistent with the other export functions.
2017-07-01 03:53:19 -07:00
Nick Sweeting
2b0e0f746e
Update README.md
2017-06-30 13:23:43 -05:00
Nick Sweeting
361841e1f8
add pocket pro link
2017-06-30 13:22:24 -05:00
Nick Sweeting
9fbe944070
add quick-links
2017-06-30 13:17:41 -05:00
Nick Sweeting
7e6ab88d3a
Update README.md
2017-06-30 13:05:30 -05:00
Nick Sweeting
f3caff0115
move disclaimer up
2017-06-30 13:02:08 -05:00
Nick Sweeting
784ab5265f
Update README.md
2017-06-30 13:00:29 -05:00
Nick Sweeting
b806ba628c
add changelog
2017-06-30 03:55:08 -05:00
Nick Sweeting
4415e144e8
Update setup.sh
2017-06-30 03:40:34 -05:00
Nick Sweeting
33f446f368
Update README.md
2017-06-30 03:24:44 -05:00
Nick Sweeting
5f0ad792a7
add help message and docstrings
2017-06-30 03:23:45 -05:00
Nick Sweeting
34859b1e0e
Update README.md
2017-06-30 02:52:21 -05:00
Nick Sweeting
e094bde58b
setup.sh formatting
2017-06-30 02:49:42 -05:00
Nick Sweeting
9e816c6b71
whitespace
2017-06-30 02:47:19 -05:00
Nick Sweeting
8fb2ee8aca
fancier setup script
2017-06-30 02:47:19 -05:00
Nick Sweeting
2d3f67dd9d
make setup.sh executable
2017-06-30 02:45:15 -05:00
Nick Sweeting
dd8ded1a96
Update README.md
2017-06-30 02:12:52 -05:00