Logs for #nikola for 2015-03-14

19:19:10 <briancurtin> i upgraded nikola to 7.3.1 (had been using one of the first few releases), so i just ended up starting over but copying in my posts/ folder. i'm trying to figure out SITE_URL and BASE_URL in conf.py - https://github.com/briancurtin/blog
19:19:43 <briancurtin> if i set BASE_URL="", i can build, but then i can't get back to the main page from posts, eg http://blog.briancurtin.com/posts/nice-apis-limits-in-openstack-sdk.html by clicking on my name in top left
19:20:28 <briancurtin> but if BASE_URL=SITE_URL (by default), the build fails because it's trying to put stuff into output/$SITE_URL/foo which hasn't been created in the build process 
19:28:32 -GitHub[nikola]:#nikola- [nikola] Kwpolska closed pull request #1635: Add two parameters to post-list directive to allow for sorting posts (master...sorted-post-lists) http://git.io/pytE
19:36:12 -travis-ci:#nikola- getnikola/nikola#4691 (master - e19f4a2 : Chris Warrick): The build passed.
19:36:13 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/4e99417db819...e19f4a2db8f4
19:36:13 -travis-ci:#nikola- Build details: http://travis-ci.org/getnikola/nikola/builds/54388370
20:07:47 <ChrisWarrick> briancurtin: SITE_URL = 'http://blog.briancurtin.com/'   and leave BASE_URL unset
20:08:24 <ChrisWarrick> briancurtin: nikola would never create a directory named the same as the SITE_URL
20:09:30 <ChrisWarrick> briancurtin: SITE_URL must start with http:// or https://
20:09:41 <ChrisWarrick> briancurtin: don’t set BASE_URL at all and let Nikola figure it out
20:10:10 <briancurtin> ChrisWarrick: ah, cool, thanks! the leading http part fixed it, all good now