Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-14 | Update the 'not abandoned by' date | Carlos | |
2016-01-14 | fixed posts singular/plural | Carlos | |
2016-01-14 | Line breaks in README.md | Carlos | |
2016-01-14 | Added 'tags' command | Carlos | |
2016-01-14 | Changed copyright year and version number | Carlos | |
2016-01-14 | Merge pull request #82 from McDutchie/master | Carlos Fenollosa | |
Various code cleanups | |||
2016-01-11 | fix: allow field splitting on tags_with_posts call | Martijn Dekker | |
Quoted one too many there. | |||
2016-01-11 | more robust parsing of 'ls' using 'read' | Martijn Dekker | |
* Iterating through 'ls' output using 'for' is very brittle; it relies on word splitting and globbing can also mess it up. It's best to use globs directly, but if using 'ls' cannot be avoided, e.g. if you need to sort by date, at least we can use 'IFS= read -r $i' to read from a here-document filled with the 'ls' output, which leaves everything in file names intact except newlines. * Other minor cleanups. | |||
2016-01-11 | Code cleanups: quoting, redirection, string handling | Martijn Dekker | |
- Fix lots of problems with convoluted and broken quoting techniques. - Group code blocks for redirection into a file rather than doing a separate additive redirect for each command. - Replace strings using bash parameter substitution rather than piping 'echo' through 'sed', resulting in a faster script. | |||
2016-01-11 | More correct and effective use of arrays | Martijn Dekker | |
2016-01-10 | Consistent use of [[ and (( instead of [ | Martijn Dekker | |
Another minor code cleanup. Within [[ ... ]] and (( ... )) (but not [ ... ]) there is a different shell parsing context in which field splitting (a.k.a. word splitting) and pathname expansion (a.k.a. filename globbing) don't apply, so consistently use '[[' (and '((' for arithmetics) instead of '[' and remove unnecessary quotes. Since '[[ x == y]]' does 'case'-like glob pattern matching on 'y', the quotes to the right of '==' need to be kept for variables or glob characters, except if a glob pattern is wanted. | |||
2016-01-10 | Remove unnecessary quotes from scalar assignments | Martijn Dekker | |
Substitutions (variables, command substitutions, etc.) directly assigned to a scalar variable don't need to be quoted, as field splitting and globbing don't apply in that context. Removing superfluous quotes makes the code look a bit cleaner. | |||
2015-12-21 | topsy is kill | Carlos | |
2015-11-13 | Update README.md | Carlos Fenollosa | |
2015-09-23 | Shellcheck. Fix #78 | Carlos | |
2015-09-23 | Merge pull request #80 from damateos/adaptative | Carlos Fenollosa | |
little changes in css to adapt width to screen | |||
2015-09-02 | little changes in css to adapt width to screen | David Mateos | |
width in px changed by percentage in main.css and meta tag viewport added. | |||
2015-07-11 | fixed bug where drafts were appended a random postfix after re-editing | Carlos | |
2015-05-13 | Update README.md | Carlos Fenollosa | |
2015-05-13 | Update README.md | Carlos Fenollosa | |
2015-05-13 | Merge pull request #77 from vielmetti/patch-1 | Carlos Fenollosa | |
Update the "not abandoned by" date | |||
2015-05-13 | Update the "not abandoned by" date | Edward Vielmetti | |
2015-05-12 | Merge pull request #75 from Enneka/master | Carlos Fenollosa | |
Fixes #70 | |||
2015-05-09 | Fixes #70 | Enneka | |
2015-03-09 | Close #72 | Carlos Fenollosa | |
2015-02-19 | Fix #71 | Carlos Fenollosa | |
2014-10-05 | fix #59 | Carlos Fenollosa | |
2014-09-15 | properly quote twitter cards | Carlos Fenollosa | |
2014-09-15 | Twitter cards. Fixes #36 | Carlos Fenollosa | |
2014-09-12 | changed hardcoded /bin/ paths | Carlos Fenollosa | |
2014-09-01 | Close #61 #57 | Carlos Fenollosa | |
2014-09-01 | Added sections from bb.sh | Carlos Fenollosa | |
2014-08-19 | fix #65 | Carlos Fenollosa | |
2014-08-19 | Update README.md | Carlos Fenollosa | |
2014-08-19 | contributing code | Carlos Fenollosa | |
2014-07-18 | updated twitter count api | Carlos Fenollosa | |
2014-07-17 | Now the tweet count links to Topsy | Carlos Fenollosa | |
2014-07-11 | Fix for #60 | Carlos Fenollosa | |
2014-07-07 | Twitter count now links to search results | Carlos Fenollosa | |
2014-07-07 | Update README for cookieless twitter | Carlos Fenollosa | |
2014-07-07 | Cookieless twitter option | Carlos Fenollosa | |
2014-07-03 | Hide warning message in sed | Carlos Fenollosa | |
2014-06-30 | Sed error on mac | Carlos Fenollosa | |
2014-06-30 | Sed error on mac | Carlos Fenollosa | |
2014-06-30 | Sed error on mac | Carlos Fenollosa | |
2014-06-30 | Sed error on mac | Carlos Fenollosa | |
2014-06-30 | Sed error on mac | Carlos Fenollosa | |
2014-06-30 | Fixed #56 | Carlos Fenollosa | |
2014-06-30 | Manual fix for #54 | Carlos Fenollosa | |
2014-06-30 | Merge pull request #55 from Lex-2008/small-fixes/5 | Carlos Fenollosa | |
Fixes for blogs without tags |