главная|main page

состояние|status

блог|blog

файлы|files

программы|software

summaryrefslogtreecommitdiff
path: root/bb.sh
AgeCommit message (Collapse)Author
2014-06-26Don't ask for preview - just show URL for previewAlexey Shpakovsky
2014-06-25clean_filename in RSS linksAlexey Shpakovsky
2014-06-22one forgotten translated string templateAlexey Shpakovsky
2014-06-22$preview_url for those who writes posts locally before uploading themAlexey Shpakovsky
2014-06-07LC_ALL=C for all machine readable `date` outputPuuhinen
The script used to have LC_ALL=$date_locale for all calls to `date`. However, this is undesirable for when $date_locale is non-English and dates need to be machine readable, e.g. for `date --date=...` and when generating RSS feeds.
2014-06-06Implement Lex's suggestionCarlos Fenollosa
2014-06-05New filename filteringCarlos Fenollosa
2014-05-25add some options regarding filename generation:Alexey Shpakovsky
* force to lowercase or not * what symbol to use instead of space * what symbols to allow in filenames (makes bashblog more utf-8 friendly)
2014-05-21test markdown before editing *.md filesAlexey Shpakovsky
2014-05-20Fixed additional characters in all_tags.htmlCarlos Fenollosa
2014-05-19TyposCarlos Fenollosa
2014-05-15Fixed extra './' strings bug introduced in last commitCarlos Fenollosa
2014-05-15Fixed extra './' strings bug introduced in last commitCarlos Fenollosa
2014-05-11do not iterate over ls output where possible + protection on 'name with ↵nonas
dashes becoming options'
2014-05-09Change help to reflect possibility of editing md filesCarlos Fenollosa
2014-05-07fix #42Carlos Fenollosa
2014-03-25Fixed bug with yesterday.tar.gzCarlos Fenollosa
2014-03-23use *.html file timestamp, even when editing *.md fileAlexey Shpakovsky
2014-03-22rename *.md file together with *.htmlAlexey Shpakovsky
if called like this: bb.sh edit -n posted.md then editing title will rename posted.html to reflect new title. Now it will rename posted.md, too
2014-03-22edit markdown postsAlexey Shpakovsky
usage: bb.sh edit article.md to edit previously posted article (for which markdown source was saved), and repost it (under the same name or not)
2014-03-22save markdown fileAlexey Shpakovsky
2014-03-19preserve backslashes when posting/editingAlexey Shpakovsky
ask "read" not to process backslash sequences when reading user-edited file and leave them as is, instead
2014-03-19Clean up tag links only in "Tags:" lineAleksei Shpakovskii
The bug was that if you decide, for some reason, insert links to tag pages into text of your article, then after editing this article, the links were gone. That happened because "tag links cleaning" was too agressive (it was cleaning tags not only on tag line, but in the whole text)
2014-03-18use expr to clean tags RegExp wayAlexey Shpakovsky
2014-03-18delete generated HTML file before generating new one, not at the bottomAlexey Shpakovsky
Bug was that when confirming "[E]dit again" by providing an empty string, the file wasn't deleted we could as well do if [ "$post_status" != "p" ] && [ "$post_status" != "P" ] but this way is IMO cleaner
2014-03-18bugfix: keep old page filename in the page's title link to itselfAlexey Shpakovsky
pass proper filename through parse_file to create_html_page Bug was that when editing with "bb edit page.html" and changing title, regenerated page.html had <h3><a class="ablack"> linking to newtitle.html (non-existing file)
2014-03-18add tabstop to vim modelineAlexey Shpakovsky
2014-03-10Preserve line indentation in HTML file while rebuilding itAlexey Shpakovsky
2014-03-10cut on tag pages, tooAlexey Shpakovsky
2014-03-10Make filename generation routine play nice with Russian and UnixAlexey Shpakovsky
2014-03-10Keep first backup of this dayAlexey Shpakovsky
it holds the version of the blog which was here "today in the morning". this is useful for those who, like me, first do "bb.sh rebuild" few times before realizing "oh damn I screwed up everything". Note: you are not expected to screw up on midnight.
2014-03-10add vim modelineAlexey Shpakovsky
2014-03-10make CSS generation optionalAlexey Shpakovsky
2014-03-10Make inclusion of CSS files configurableAlexey Shpakovsky
2014-03-10fixed touch on BSD utilsCarlos Fenollosa
2014-03-10add options to edit commandAlexey Shpakovsky
2014-03-10keep .html extension when editingAlexey Shpakovsky
(to make synthax highlight work)
2014-03-10preserve date when editing postAlexey Shpakovsky
pass it through parse_file to create_html_page
2014-03-10add options to bring back old behavior and keep old filenameAlexey Shpakovsky
2014-03-10show only text content in the editorAlexey Shpakovsky
2014-03-10move tag parsing to parse_fileAlexey Shpakovsky
2014-03-01make cutting optionalAlexey Shpakovsky
2014-03-01make cut_line confugurableAlexey Shpakovsky
2014-03-01get_post_title in make_rss(), tooAlexey Shpakovsky
2014-03-01"Read more..." link for articles which were cutAlexey Shpakovsky
2014-03-01cut text (leave up to "<!-- text cut -->") in index and RSSAlexey Shpakovsky
note that when requested to cut entry, it keeps stuff between text end and entry end, so twitter button will still find its way into RSS feed also fix indentation
2014-03-01use get_html_file_content while building index and RSSAlexey Shpakovsky
2014-03-01Move text and title extraction to separate functionsAlexey Shpakovsky
2014-02-27Make tags more internationalAlexey Shpakovsky
2014-02-27Rewording of usage()Carlos Fenollosa