главная|main page

состояние|status

блог|blog

файлы|files

программы|software

summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-26use markdown by default (if available) when posting with `bb.sh post`Alexey Shpakovsky
2014-06-26Don't ask for preview - just show URL for previewAlexey Shpakovsky
2014-06-26fix typos in commentsAlexey Shpakovsky
2014-06-26proper check for empty variableAlexey Shpakovsky
2014-06-25Merge pull request #50 from Lex-2008/small-fixes/3Carlos Fenollosa
Small fixes/3
2014-06-25clean_filename in RSS linksAlexey Shpakovsky
2014-06-25don't rebuild tags if they were not involved at allAlexey Shpakovsky
(otherwise posts_with_tags would endlessly freeze)
2014-06-24use new functionsAlexey Shpakovsky
also bugfix: leave only unique filenames in rebuild_tags()
2014-06-24posts_with_tags() to list all posts referenced by several tag filesAlexey Shpakovsky
2014-06-24tags_in_post() to list all tags referenced in one post fileAlexey Shpakovsky
2014-06-24make rebuild_tags() optionally accept 2 lists (of filenames and tags)Alexey 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-17Merge pull request #49 from Puuhinen/masterCarlos Fenollosa
LC_ALL=C for all machine readable `date` output
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-05Merge branch 'master' of github.com:cfenollosa/bashblogCarlos Fenollosa
2014-06-05New filename filteringCarlos Fenollosa
2014-05-26Update README.mdCarlos Fenollosa
2014-05-26updated README MarkdownCarlos Fenollosa
2014-05-26Merge pull request #47 from Lex-2008/masterCarlos Fenollosa
Allow utf-8 filenames
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-23Merge pull request #46 from Lex-2008/masterCarlos Fenollosa
test markdown before editing *.md files
2014-05-21test markdown before editing *.md filesAlexey Shpakovsky
2014-05-20Update README.mdCarlos Fenollosa
2014-05-20Fixed additional characters in all_tags.htmlCarlos Fenollosa
2014-05-19TyposCarlos Fenollosa
2014-05-19Added demo image to READMECarlos Fenollosa
2014-05-17Update README.mdCarlos 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-13Merge pull request #43 from nonas/masterCarlos Fenollosa
do not iterate over ls output where possible
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-07Merge branch 'master' of github.com:cfenollosa/bashblogCarlos Fenollosa
2014-05-07fix #42Carlos Fenollosa
2014-04-14Update README.mdCarlos Fenollosa
updated original link
2014-03-25Fixed bug with yesterday.tar.gzCarlos Fenollosa
2014-03-25Merge pull request #39 from Lex-2008/save-mdCarlos Fenollosa
Save md
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-20Merge pull request #37 from Lex-2008/small-fixes/2Carlos Fenollosa
Small fixes/2
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