aboutsummaryrefslogtreecommitdiff
path: root/pyblog (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-26Move edit_post_with_editor to external fileneodarz1-18/+2
2019-05-26Move sanitize to external fileneodarz1-15/+1
2019-05-26Move regenerate to external fileneodarz1-7/+1
2019-05-26Move generate to external fileneodarz1-6/+2
2019-05-26Move generate_blog to external fileneodarz1-142/+4
2019-05-26Move generate_index_and_feed to external fileneodarz1-167/+1
2019-05-26Move rewrite_title to external fileneodarz1-134/+1
2019-05-26Move generate_sitemap to external fileneodarz1-32/+1
2019-05-26Move generate_index to external fileneodarz1-62/+1
2019-05-26Move generate_notes_list to external fileneodarz1-90/+1
2019-05-26Move generate_blog_list to external fileneodarz1-59/+1
2019-05-26Move generate_table to external fileneodarz1-93/+1
2019-05-26Move generate_menu to external fileneodarz1-37/+2
2019-05-26Move config to external fileneodarz1-51/+1
2019-05-26Move static_vars function to external fileneodarz1-9/+1
2019-05-26Move postprocess_html_file function to external fileneodarz1-17/+1
2019-05-26Move process_footnote_backlinks function to external fileneodarz1-13/+1
2019-05-26Move _pre_tag_insert_line_numbers function to external fileneodarz1-17/+0
2019-05-26Move link_img_tags function to external fileneodarz1-11/+1
2019-05-26Move make_sitemap_url_element function to external fileneodarz1-40/+3
2019-05-26Move process_image_sizes function to external fileneodarz1-47/+1
2019-05-25Move absolutify_links function to external fileneodarz1-16/+1
2019-05-25Move current_datetime function to external fileneodarz1-10/+3
2019-05-25Move init_colorama function to external fileneodarz1-20/+3
2019-05-12Fix some css issuesneodarz1-4/+4
2018-07-30Move rss code to a packageneodarz1-174/+4
2018-07-29Add blog configurations in a config fileneodarz1-35/+39
2018-07-29Remove old usless codeneodarz1-185/+0
2018-07-29Fix bugneodarz1-2/+2
2018-01-05fix typoneodarz1-4/+4
2018-01-05fix list generationsourceneodarz1-4/+4
2017-08-20Remove all files about bts-sioNeodarZ1-2/+2
2017-06-20Fix list orderneodarz1-5/+4
2017-05-22Add some generatedneodarz1-2/+48
2017-05-19Add test for internet before generating the tag cloudneodarz1-31/+34
2017-05-19Add tagcloudNeodarZ1-4/+62
2017-05-18Add menu and tableneodarz1-1/+180
2017-05-18Remove usless printneodarz1-3/+0
2017-05-06Add new right submenuneodarz1-4/+47
2017-05-05Adapt designneodarz1-24/+57
2017-05-04Add ideaNeodarZ1-47/+53
2017-05-04Add some conf fileneodarz1-1/+1
2017-05-04Drop some usless code and add some usfull codeneodarz1-6/+4
2017-05-01Add some testNeodarZ1-25/+49
2017-04-28Update to a new personalised versionneodarz1-6/+222
2017-02-01Sunset this blogZhiming Wang1-2/+2
2016-07-24pyblog: Handle custom domainZhiming Wang1-1/+6
Change BLOG_HOME and add CNAME file with custom domain to the build dir.
2016-02-14Add site ownership verification file for Google Search ConsoleZhiming Wang1-2/+2
I used to have Google Analytics installed which proved my ownership, but since I removed it in 01b3805, I need to prove it in another way, and adding a file that no visitor will notice is the least intrusive.
2016-02-14pyblog: Fix bug in exclude list featureZhiming Wang1-8/+9
Previously exclude_list is a list of relative paths, and it is hard to deal with "./" resulted from joining an empty root with a name, thus exclude list items in the root directory (e.g., ./template.html) aren't really excluded. Not to mention the awkward trailing slash handling, and other resolution issues (mainly ..). In this commit we switch to an absolute exclude_list, eliminating the aforementioned bug and simplifing exclude_list queries.
2016-01-25pyblog: Allow opening interactive shell when deployingZhiming Wang1-2/+12
This almost always happens when I gendeploy: gen asks me to touch the new post which I agree, but then the project root is dirty and I'm greeted with the continue or not prompt, at which point I have no choice but to open a new shell (or ^Z suspend the current job) to commit the changes. This commit allows to open an interactive shell in place when project root is found to be dirty when deploying, which nicely solves the issue. Closes #10.