12:54:38 <KwBot> [nikola] tbm opened issue #3080: should keywords be treated as string (for smartjoin) https://github.com/getnikola/nikola/issues/3080 13:53:54 <tbm> ChrisWarrick: question re CATEGORY_PAGES_FOLLOW_DESTPATH 13:55:26 <tbm> ChrisWarrick: I have blog/debian/marvell/*md blog/debian/orion/qnap/*md blog/phd/*md as input 13:55:41 <tbm> ChrisWarrick: output is blog/debian/marvell/xxx/index.html etc 13:56:05 <tbm> ChrisWarrick: I think ideally I'd like an index.html in _each_ subdirectory listing the pages for all subdirs 13:56:37 <tbm> ChrisWarrick: so blog/debian/marvell/index.html wold list all debian/marvell posts; blog/debian/index.html all debian posts (including the debian/marvell posts but also debian/orion/qnap) 13:56:50 <tbm> ChrisWarrick: it seems that's not possible with 8.0.0beta1 or am I missing something 13:57:09 <tbm> ChrisWarrick: also, I'm confused because I get:output/blog/debian/orion/qnap/index.html 13:57:28 <tbm> ChrisWarrick: but I don't get output/blog/debian/marvell/index.html even though I have a post there 13:57:41 <tbm> oh, maybe the index.html is only created if there's more than 1 post 13:58:21 <tbm> hm, no, qnap only has one post too 14:03:42 <KwBot> [nikola] tbm opened issue #3081: index.html missing for some categories, with CATEGORY_PAGES_FOLLOW_DESTPATH https://github.com/getnikola/nikola/issues/3081 14:03:55 <tbm> I opened a ticket so I can show my filepths 14:08:46 <ralsina> tbm: are those pages, not posts? If so, maybe PAGE_INDEX=True is what you need 14:09:37 <tbm> ralsina: they are posts 14:14:30 <ralsina> Hmmm 14:15:27 <ralsina> tbm what I would do is "nikola console" and then site.path('category', 'qnap') 14:15:41 <ralsina> That should tell you where it expects the index for the qnap category to be :-) 14:24:16 <tbm> In [1]: site.path('category', 'debian') 14:24:16 <tbm> Out[1]: 'blog/debian/orion/qnap/index.html' 14:24:24 <tbm> which is wrong. it should be blog/debian/index.html 14:24:36 <ralsina> eek, yes, that is weird 14:24:55 <ralsina> I am not familiar with what FOLLOW_DESTPATH does, but that sounds bad 14:26:45 <tbm> I have a hard time understanding the explanation of this option. Maybe it does what it's supposed to do 14:27:39 <tbm> it talks abuot the first post in that category. maybe the first post is under blog/debian/orion/qnap/ 14:28:06 <tbm> yep, it is 14:28:27 <tbm> I thought CATEGORY_PAGES_FOLLOW_DESTPATH takes the first directory (i.e. a when a/b/c/d/) 14:28:40 <tbm> but it takes the category from the first post in that category 14:30:07 <ralsina> Well, it makes sense that it takes the 1st post because otherwise the location of the index will change over time 14:30:18 <ralsina> And that means nobody will ever find it :) 14:30:40 <tbm> ah good point 14:32:49 <tbm> ChrisWarrick, ralsina maybe CATEGORY_PATH could work like INDEXES_PRETTY_PAGE_URL, i.e. you can specify the path using variables 14:33:27 <tbm> then I could do: CATEGORY_PATH = ['{category}', '{index_file}'] 14:34:06 <tbm> or a POST_INDEX ala PAGE_INDEX 14:34:18 <ralsina> That feature confuses me 14:34:26 <ralsina> I am keeping all my categories in one place instead :-) 14:44:34 <ChrisWarrick> tbm: -1 for that idea 14:45:22 <tbm> ChrisWarrick: why? it's very flexible and could reduce some options 14:45:39 <ChrisWarrick> it’s overcomplicating simple things 14:47:49 <tbm> ChrisWarrick: any suggestion to do what I want? As a workround, I did CATEGORY_PAGES_FOLLOW_DESTPATH = True plus a "category: debian" for blog/debian/**/*md 14:48:03 <ChrisWarrick> tbm: C_D_FIRST_DIRECTORY_ONLY = True 14:48:23 <tbm> ChrisWarrick: I have that already 14:48:57 <ChrisWarrick> it’s commented out in your conf.py paste in the issue 14:49:16 <tbm> hm let me try again 14:50:49 <tbm> the problem is that CATEGORY_PAGES_FOLLOW_DESTPATH ignores CATEGORY_DESTPATH_FIRST_DIRECTORY_ONLY 14:51:13 <tbm> and CATEGORY_PATH plus CATEGORY_DESTPATH_FIRST_DIRECTORY_ONLY doesn't allow me to do what CATEGORY_PAGES_FOLLOW_DESTPATH does 15:07:52 <KwBot> [nikola] Kwpolska assigned issue #3081 to Kwpolska: index.html missing for some categories, with CATEGORY_PAGES_FOLLOW_DESTPATH https://github.com/getnikola/nikola/issues/3081 17:09:11 -GitHub[nikola]:#nikola- [nikola] tbm opened pull request #3082: Fix reverse option for post_list (master...fix-post-list-reverse) https://git.io/vpXv0 17:16:28 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to master: https://git.io/vpXff 17:16:28 -GitHub[nikola]:#nikola- nikola/master 2cb25fb Chris Warrick: Allow `True` value for reverse (for shortcodes)... 17:20:25 <KwBot> [nikola] Kwpolska closed issue #3081: index.html missing for some categories, with CATEGORY_PAGES_FOLLOW_DESTPATH https://github.com/getnikola/nikola/issues/3081 17:20:39 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to master: https://git.io/vpXfR 17:20:39 -GitHub[nikola]:#nikola- nikola/master 9ed0cfa Chris Warrick: Fix #3081 — Make `CATEGORY_PAGES_FOLLOW_DESTPATH` more resilient... 17:22:22 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to master: https://git.io/vpXf6 17:22:22 -GitHub[nikola]:#nikola- nikola/master 26c8f2b Chris Warrick: Improve style for 9ed0cfa/#3081... 17:22:39 <KwBot> [nikola] tbm opened issue #3083: post-list vs post_list https://github.com/getnikola/nikola/issues/3083 17:24:19 <KwBot> [nikola] ralsina assigned issue #3083 to ralsina: post-list vs post_list https://github.com/getnikola/nikola/issues/3083 17:30:52 -travis-ci:#nikola- getnikola/nikola#10108 (master - 9ed0cfa : Chris Warrick): The build passed. 17:30:53 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/2cb25fb0c183...9ed0cfa0d1ae 17:30:53 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376934151 17:34:45 -travis-ci:#nikola- getnikola/nikola#10109 (master - 26c8f2b : Chris Warrick): The build passed. 17:34:46 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/9ed0cfa0d1ae...26c8f2b51e66 17:34:46 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376934910 17:52:16 -GitHub[nikola]:#nikola- [nikola] ralsina created post-_list (+1 new commit): https://git.io/vpXTO 17:52:16 -GitHub[nikola]:#nikola- nikola/post-_list 41567da Roberto Alsina: Make post-list and post_list synonymous (Fix #3083) 17:52:57 -GitHub[nikola]:#nikola- [nikola] ralsina opened pull request #3084: Make post-list and post_list synonymous (Fix #3083) (master...post-_list) https://git.io/vpXTG 17:58:31 -GitHub[nikola]:#nikola- [nikola] Kwpolska created category_destpath_names_compat_for_follow (+1 new commit): https://git.io/vpXT9 17:58:31 -GitHub[nikola]:#nikola- nikola/category_destpath_names_compat_for_follow 1eb1e12 Chris Warrick: Support ``CATEGORY_DESTPATH_NAMES`` with pages following destpath... 18:00:03 -GitHub[nikola]:#nikola- [nikola] Kwpolska opened pull request #3085: Support CATEGORY_DESTPATH_NAMES with pages following destpath (master...category_destpath_names_compat_for_follow) https://git.io/vpXTN 18:01:33 -travis-ci:#nikola- getnikola/nikola#10110 (post-_list - 41567da : Roberto Alsina): The build failed. 18:01:34 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/commit/41567da2d721 18:01:34 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376946906 18:02:11 <Demosthenex> hey folks. i've been hosting my static site made with nikola for a while, very happy. i updated my laptop and my virtualenv broke, so i created a new virtualenv. now when i run it against my existing site, i get this: https://bpaste.net/show/82e7cd62582d 18:03:43 -GitHub[nikola]:#nikola- [nikola] ralsina pushed 1 new commit to post-_list: https://git.io/vpXkC 18:03:43 -GitHub[nikola]:#nikola- nikola/post-_list 84f237e Roberto Alsina: flake8 18:03:57 <Demosthenex> i make a test site with --demo, that works with nikola build. 18:06:53 <Demosthenex> i assume i may need to update my site format, but i don't see anything in the handbook on that 18:09:05 <ralsina> Demosthenex: let me look... 18:09:18 <ralsina> Delete your .doit.db 18:09:44 <ralsina> If you were running a very old version you WILL have to change things in your configuration, but this error is easy to fix :-) 18:11:35 -travis-ci:#nikola- getnikola/nikola#10112 (category_destpath_names_compat_for_follow - 1eb1e12 : Chris Warrick): The build passed. 18:11:36 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/commit/1eb1e12f99ec 18:11:36 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376949474 18:18:19 <Demosthenex> ralsina: right. i deleted that and the compile finished. very nice. 18:18:34 <ralsina> Amazing if it really worked without changes :-) 18:18:38 -GitHub[nikola]:#nikola- [nikola] ralsina pushed 1 new commit to post-_list: https://git.io/vpXIb 18:18:38 -GitHub[nikola]:#nikola- nikola/post-_list 5b2a35d Roberto Alsina: come back emoji 18:18:51 <Demosthenex> i'm running some recursive diffs to see how the site changed, but a cursory look in nikola serve and in my firefox developer panel shows it's still in ok shape 18:19:05 <Demosthenex> ignoring css and js errors, it only got one css file, and ran no external js at all 18:19:36 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to post-_list: https://git.io/vpXLf 18:19:36 -GitHub[nikola]:#nikola- nikola/post-_list 48b9bdc Chris Warrick: Fix changelog typo 18:19:40 <KwBot> [nikola] Kwpolska closed issue #3083: post-list vs post_list https://github.com/getnikola/nikola/issues/3083 18:19:53 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to master: https://git.io/vpXLT 18:19:53 -GitHub[nikola]:#nikola- nikola/master 74faaba Roberto Alsina: Make post-list and post_list synonymous (Fix #3083) (#3084) 18:20:02 -GitHub[nikola]:#nikola- [nikola] Kwpolska deleted post-_list at 48b9bdc: https://git.io/vpXLI 18:20:45 <Demosthenex> i must say, nikola makes for nice reading for someone that absolutely despises the www. quite painless. 18:21:15 <ralsina> It's built by not-web-people 18:22:58 -travis-ci:#nikola- getnikola/nikola#10118 (post-_list - 48b9bdc : Chris Warrick): The build is still failing. 18:22:59 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/5b2a35dafb00...48b9bdc60fa6 18:22:59 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376958282 18:25:39 -travis-ci:#nikola- getnikola/nikola#10114 (post-_list - 84f237e : Roberto Alsina): The build was fixed. 18:25:40 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/41567da2d721...84f237ec0474 18:25:40 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376951466 18:27:58 <Demosthenex> so if i'm not using js, and abhor it, do i need any of the assests/*.js 18:34:39 <ChrisWarrick> Demosthenex: if your themes don’t use any JS features, you could get rid of those (but that’s too much work) 18:35:21 <Demosthenex> hrm. bootstrap.css.map. 300k of not needed. 18:37:16 <ChrisWarrick> will be gone in v8 18:38:07 <Demosthenex> looks like i might depend on bootstrap, and that's the nikola defaults. 18:38:16 <ChrisWarrick> yeah, don’t delete stuff from there 18:38:18 <ChrisWarrick> in v8, output/assets is 1.4M according to du -h 18:38:21 <Demosthenex> all i need is all-nocdn.css 18:38:42 <ChrisWarrick> 1,401,038 bytes according to Finder, so it would fit on a floppy 18:38:45 <Demosthenex> yeah, maybe i should just copy that to a custom theme and butcher it? 18:39:09 <Demosthenex> why should the 12k website load a 300k map file for source debugging and reverse mapping? 18:39:12 <ChrisWarrick> that’s not going to help without some trickery 18:40:02 <ChrisWarrick> it shouldn’t. v8 default themes only ship minified versions and zero maps (as opposed to regular + minified + maps previously) 18:41:02 <Demosthenex> it appears my fresh install is 7.8.15 18:42:01 <Demosthenex> otoh perhaps i'm just being picky 18:43:31 <Demosthenex> removing the doit.db and regenning fixed the problem, and it's still quite minimal. so moving on ;] 18:43:36 <Demosthenex> thanks for the hint to delete that 18:44:46 <ChrisWarrick> v8 is currently in beta, pip install 'Nikola==v8.0.0b1' (and read the upgrading blog post first) 18:45:48 <Demosthenex> nah, i'm done ;] 18:45:55 <Demosthenex> is there a tip jar somewhere? 18:46:20 <ChrisWarrick> none for the Nikola project itself 18:46:32 <Demosthenex> darn. i paid for org-mode once. 18:47:19 <ChrisWarrick> ralsina has one: https://www.paypal.me/ralsina 18:47:21 <ChrisWarrick> I don’t, because taxes 18:47:36 <Demosthenex> that work in eu? 18:47:45 <ralsina> Demosthenex: feel free to send me enough for a latte 18:48:28 <ralsina> If I ever run into ChrisWarrick IRL I will buy him 50% of all the coffee I got in that tip jar over the years 18:48:35 <ralsina> So far that is about ... 2 lattes :-) 18:48:58 * ChrisWarrick was about to say “I can’t drink that much coffee in one go” 18:49:15 <ralsina> We can change that for a really fancy coffe. 18:49:38 <ralsina> If I put a dollar on top it's probably enough for one with Bailey's and icecream 18:49:43 -GitHub[site]:#nikola- [nikola-site] Kwpolska pushed 1 new commit to master: https://git.io/vpXmU 18:49:43 -GitHub[site]:#nikola- nikola-site/master fc6a13c Chris Warrick: Slightly better styling for upgrading-to-nikola-v8 post... 18:49:48 <ChrisWarrick> wouldn’t mind a good beer either 18:49:49 <ChrisWarrick> !factreload 18:49:58 <ChrisWarrick> !v8 18:50:02 <ralsina> Works for me! 18:50:23 <ralsina> In fact, I *may* be going to poland next year because of work 18:50:24 <ChrisWarrick> !rehash 18:50:24 <KwBot> ChrisWarrick: 8 tokens and 51 factoids loaded. 18:50:32 <ChrisWarrick> !v8 18:50:32 <KwBot> ChrisWarrick: Upgrading to Nikola v8: https://getnikola.com/blog/upgrading-to-nikola-v8.html 18:50:35 <ralsina> Still to be decided tho 18:50:37 <ChrisWarrick> ralsina: ooh, interesting 18:50:43 <Demosthenex> ralsina: done 18:50:48 <ralsina> Weeee 18:50:49 <Demosthenex> i'm in NL ;] 18:50:58 <ralsina> I was in NL a year ago! 18:51:05 <ralsina> Spent 2 weeks in Den Haag 18:51:13 <Demosthenex> just updated my website, http://adamssystems.nl/ 18:51:25 <Demosthenex> Den Haag isn't far. i'm in rotterdam 18:51:38 <ralsina> Nothing is farn in NL :-) 18:52:01 <Demosthenex> i rode my bicycle from rotterdam to den haag and back a few weeks ago 18:52:04 <Demosthenex> no tulips 18:52:10 <ralsina> I was going with some coworkers and we were lanning on train from Schipol to Den Haag and i was the same as a taxi :-) 18:52:18 <Demosthenex> yep 18:52:39 <Demosthenex> fyi, i lived in houston 20 years. i think everything here is really close =] 18:52:50 <Demosthenex> nl is the size of 2x NJ after all 18:53:03 <ralsina> I live in Argentina, where things are far away 18:53:13 <ralsina> That is why half of us live in the same city 18:53:26 <Demosthenex> pretty cool 18:53:50 <Demosthenex> so $10 is 220 peso? 18:54:12 <Demosthenex> its like .84 eur 18:54:26 <ralsina> About that much, yes 18:54:38 <ralsina> It was 210 pesos a week ago tho :-) 18:55:24 <Demosthenex> says that'll cover a meal at an inexpensive restaurant, or two bottles of wine 18:55:39 <Demosthenex> cappucino is 52 peso, so have 4 coffees on me 18:55:48 <Demosthenex> https://www.numbeo.com/cost-of-living/country_result.jsp?country=Argentina 18:55:56 <ralsina> whoohoo 18:56:25 <Demosthenex> heh, i'm tickled by the exchange rate 18:56:29 <ralsina> It's a McDonalds combo and enough for a small icecream cone as dessert 18:56:58 <Demosthenex> anyways i'm grateful to nikola from saving me the hassle of writing modern VIML. 18:57:06 <Demosthenex> while keeping a minimal site 18:57:19 <ralsina> Demosthenex: happy to be of service. Is your site visible? 18:57:29 <Demosthenex> just updated my website, http://adamssystems.nl/ 18:57:47 <Demosthenex> and i left the "made by nikola" link in. love the source code highlighting 18:58:02 <Demosthenex> i don't update it much :P i get business by referrals, never the site 18:58:43 <ralsina> AIX! That brings back memories of RS6000 systems with AIX 4.1 18:58:45 <Demosthenex> btw, VIML means vomit inducing markup language. or was it violent itching? 18:58:57 <Demosthenex> its the new mainframe 18:59:07 <Demosthenex> systems that make website hosts look like the toys they are 18:59:08 <ralsina> doing everything by writing a SMIT stanza 18:59:22 <Demosthenex> well the cli was there, smit was added to make the as/400 people happy 19:00:14 <Demosthenex> i just helped put in a multisite database site the other day. the primary site has a 18 processor (24, only 18 enabled) POWER8 with 512 GB of ram, and 30TB of all flash SAN storage 19:00:37 <Demosthenex> that was the primary site. there was a duplicate at the secondary, just receiving updates to the database for disaster recovery and sitting idle 19:01:17 <ralsina> I have some interaction with a 6000-node cluster normally running a load in excess of 1TB of RAM ... to process polls 19:01:27 <ralsina> I should not have said that :-) 19:02:16 <Demosthenex> heh, fun! 19:02:47 <Demosthenex> you can scale up, or scale out. its easier to hit 1tb of ram scaling out ;] 19:03:04 <Demosthenex> too bad i work on boring accounting systems, i think it'd be more fun to do scalable clusters for science 19:04:07 <ralsina> Since huge servers are ... special. 19:04:35 <ralsina> I used to be a sysadmin and they were a huge pain all the time. Specially since customers suuuucked at sizing them 19:04:44 <ralsina> s/Since/Single/ 19:05:08 <Demosthenex> yep, that's why i'm a consultant! =] 19:06:28 <ralsina> hahaha 19:16:42 -GitHub[plugins]:#nikola- [plugins] evgeni opened pull request #273: static_comments: compare to None not none in templates (master...compare-None) https://git.io/vpX3t 19:16:52 -GitHub[nikola]:#nikola- [nikola] felixfontein created improve-smartjoin (+1 new commit): https://git.io/vpX3m 19:16:52 -GitHub[nikola]:#nikola- nikola/improve-smartjoin 5b7e800 Felix Fontein: Improving smartjoin for non-strings. 19:17:27 <tbm> ChrisWarrick: where does bootstrap4 come from? I noticed some differences when upgrading from 3 that I don't like 19:17:48 -GitHub[nikola]:#nikola- [nikola] felixfontein opened pull request #3086: Improving smartjoin for non-strings (#3080) (master...improve-smartjoin) https://git.io/vpX3c 19:18:28 -GitHub[plugins]:#nikola- [plugins] evgeni opened pull request #274: static_comments: rename template folder to templates (master...static_comments-templates) https://git.io/vpX3B 19:20:12 -GitHub[plugins]:#nikola- [plugins] ralsina closed pull request #274: static_comments: rename template folder to templates (master...static_comments-templates) https://git.io/vpX3B 19:28:27 -GitHub[plugins]:#nikola- [plugins] felixfontein closed pull request #273: static_comments: compare to None not none in templates (master...compare-None) https://git.io/vpX3t 19:28:43 -travis-ci:#nikola- getnikola/nikola#10121 (improve-smartjoin - 5b7e800 : Felix Fontein): The build passed. 19:28:44 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/commit/5b7e8002f0e9 19:28:44 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376980237 19:30:10 -GitHub[nikola]:#nikola- [nikola] felixfontein force-pushed improve-smartjoin from 5b7e800 to 9eccdbf: https://git.io/vpXsw 19:30:10 -GitHub[nikola]:#nikola- nikola/improve-smartjoin 9eccdbf Felix Fontein: Improving smartjoin for non-strings. 19:31:26 -GitHub[nikola]:#nikola- [nikola] felixfontein pushed 1 new commit to improve-smartjoin: https://git.io/vpXsD 19:31:26 -GitHub[nikola]:#nikola- nikola/improve-smartjoin 04b9bde Felix Fontein: Added changelog entry. 19:32:13 <tbm> ChrisWarrick: the v8 blog say "The following settings were renamed" and then nothing 19:33:01 <tbm> oh, I guess this is work in progress 19:35:39 -travis-ci:#nikola- [PLUGINS] getnikola/plugins#1462 (master - a857387 : Felix Fontein): The build passed. 19:35:40 -travis-ci:#nikola- [PLUGINS] Change view: https://github.com/getnikola/plugins/compare/48564f105572...a8573870311d 19:35:40 -travis-ci:#nikola- [PLUGINS] Build details: https://travis-ci.org/getnikola/plugins/builds/376984850 19:36:29 <KwBot> [nikola] Kwpolska assigned issue #3080 to felixfontein: should keywords be treated as string (for smartjoin) https://github.com/getnikola/nikola/issues/3080 19:37:23 <ChrisWarrick> tbm: no, that’s just me writing things and forgetting about them 19:38:33 <tbm> ChrisWarrick: oh, in that case. another loose end is "if you were using both," 19:45:31 -travis-ci:#nikola- getnikola/nikola#10125 (improve-smartjoin - 04b9bde : Felix Fontein): The build passed. 19:45:32 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/9eccdbf8c4dc...04b9bde1d3c7 19:45:32 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376985819 19:47:39 <ChrisWarrick> tbm: fixed both, thanks for mentioning 19:47:53 -GitHub[site]:#nikola- [nikola-site] Kwpolska pushed 1 new commit to master: https://git.io/vpXZP 19:47:53 -GitHub[site]:#nikola- nikola-site/master af46979 Chris Warrick: Fix unfinished stuff in upgrading-to-v8 (ht @tbm)... 19:54:37 -GitHub[nikola]:#nikola- [nikola] felixfontein pushed 1 new commit to improve-smartjoin: https://git.io/vpXnV 19:54:37 -GitHub[nikola]:#nikola- nikola/improve-smartjoin 0629a43 Felix Fontein: Different check for iterability. h/t @Kwpolska 19:55:02 <KwBot> [nikola] Kwpolska closed issue #3080: should keywords be treated as string (for smartjoin) https://github.com/getnikola/nikola/issues/3080 19:55:16 -GitHub[nikola]:#nikola- [nikola] Kwpolska closed pull request #3086: Improving smartjoin for non-strings (#3080) (master...improve-smartjoin) https://git.io/vpX3c 19:55:23 -GitHub[nikola]:#nikola- [nikola] Kwpolska deleted improve-smartjoin at 0629a43: https://git.io/vpXnX 20:00:06 -travis-ci:#nikola- getnikola/nikola#10127 (improve-smartjoin - 0629a43 : Felix Fontein): The build was broken. 20:00:07 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/04b9bde1d3c7...0629a43605a0 20:00:07 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376994403 20:04:13 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to master: https://git.io/vpXc5 20:04:13 -GitHub[nikola]:#nikola- nikola/master 86e4d61 Chris Warrick: Replace 'is None' with 'is none' when jinjifying... 20:07:18 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to master: https://git.io/vpXCI 20:07:18 -GitHub[nikola]:#nikola- nikola/master f2e0ad8 Chris Warrick: Also handle `is not None` in jinjify... 20:07:55 -travis-ci:#nikola- getnikola/nikola#10129 (master - 960af8f : Chris Warrick): The build passed. 20:07:56 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/74faabab836c...960af8f3ec22 20:07:56 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376994795 20:12:07 -travis-ci:#nikola- getnikola/nikola#10130 (master - 86e4d61 : Chris Warrick): The build passed. 20:12:08 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/960af8f3ec22...86e4d61b7c74 20:12:08 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376998551 20:21:06 -travis-ci:#nikola- getnikola/nikola#10131 (master - f2e0ad8 : Chris Warrick): The build passed. 20:21:07 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/86e4d61b7c74...f2e0ad8b9721 20:21:07 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/376999773