Logs for #nikola for 2016-10-30

11:14:03 -GitHub[nikola]:#nikola- [nikola] felixfontein pushed 2 new commits to fix-2496: https://git.io/vXLjt
11:14:03 -GitHub[nikola]:#nikola- nikola/fix-2496 71eb72f Felix Fontein: Put function stub in wrong class.
11:14:03 -GitHub[nikola]:#nikola- nikola/fix-2496 0f87736 Felix Fontein: Moving bad compiler logic to own function.
11:19:39 -travis-ci:#nikola- getnikola/nikola#7827 (fix-2496 - 0f87736 : Felix Fontein): The build is still failing.
11:19:40 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/d61927f1ff84...0f877364960b
11:19:40 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/171751453
15:19:53 <podbay> Hi.  Is there a "best way" to have private and public parts to a Nikola-generated site?  I and a few others are collaborating privately on a creative project and using Nikola for this.  But I would like to make parts of the site publicly accessible.
15:20:55 <podbay> Is there a way to flag certain pages as public, so that, if accessed without a (.htaccess) login, only the public pages, and their links in the navigation, are shown?
15:30:45 <ChrisWarrick> podbay: You could have distinct templates for both parts which have different links. You could also have two separate/independent sites
15:31:44 <ChrisWarrick> podbay: If Apache passed that header on, and you would feel like using PHP or whatever, that could work out too
15:32:37 <ChrisWarrick> (that header = Authorization)
15:34:23 <podbay> ChrisWarrick: thanks - how would the distinct templates work?  Would the menu specification still exist in conf.py?
16:47:25 <ChrisWarrick> podbay: Hackily. You would specify the public set in NAVIGATION_LINKS, and the private set in GLOBAL_CONTEXT['private_navigation_links'], then the private part could add those private ones
16:47:47 <ChrisWarrick> Or instead of templates, put in a check for post meta
17:03:38 -GitHub[nikola]:#nikola- [nikola] Kwpolska created global_data_symmetry (+1 new commit): https://git.io/vXtZN
17:03:38 -GitHub[nikola]:#nikola- nikola/global_data_symmetry d7067cc Chris Warrick: Offer global_data everywhere (#2488)...
17:09:21 -travis-ci:#nikola- getnikola/nikola#7828 (global_data_symmetry - d7067cc : Chris Warrick): The build passed.
17:09:22 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/commit/d7067cc68996
17:09:22 -travis-ci:#nikola- Build details: https://travis-ci.org/getnikola/nikola/builds/171800208
17:20:50 <podbay> ChrisWarrick: thanks - one last question - when I go to the base url for my site, I get a title and navigation but no content.  How can I specify which content should appear there?
17:21:51 <ChrisWarrick> podbay: by default, blog posts go there (this is the blog index)
17:21:54 <ChrisWarrick> !notablog
17:21:54 <KwBot> ChrisWarrick: Creating a Site (not a blog): https://getnikola.com/creating-a-site-not-a-blog-with-nikola.html
17:22:05 <ChrisWarrick> see ↑
17:24:01 <podbay> ChrisWarrick: thanks - it is generated as a site, and not a blog - I will look there though