aboutsummaryrefslogtreecommitdiff
path: root/utility
AgeCommit message (Collapse)Author
2019-04-28Fix XHTML outputAdrian Kummerlaender
2019-04-14Update formatter and styling to match blog generatorAdrian Kummerlaender
2019-04-13Replace commit feed aggregation with manual importAdrian Kummerlaender
This is the starting point for extending _Overview_ to support various types of recent updates (i.e. not just blog articles and commits over a certain message size). While direct fetching and rendering of markdown-formatted Git commit messages is an attractive concept, this new approach should be much more flexible. As a side benefit commit entries can now be edited and expanded compared to their fixed Git reference. e.g. retroactively expanding upon older commits or adding example media that doesn't strictly belong inside the actual commit message.
2019-04-12Use Nix to fetch ATOM feedAdrian Kummerlaender
Fetching external resources during the actual build became problematic after the last major Nix update (build purity was improved). The sensible way of doing things in Nix seems to be to declare ALL build dependencies prior to the actual build -- this includes e.g. ATOM feeds to be aggregated. I am probably not going to do the same for the individual repository feeds as this feature is going to be replaced with a more general _microblog_-like subpage.
2018-06-05Nixify build processAdrian Kummerlaender
2017-02-10Use `pandoc` as markdown processorAdrian Kummerlaender
analogously to blog.kummerlaender.eu
2016-02-14Port `blog.kummerlaender.eu` code block handling for commit messagesAdrian Kummerlaender
2014-10-26Replaced local Git log extraction with CGit ATOM feedsAdrian Kummerlaender
* I just realized that repository specific commit feeds are already provided by both CGit and GitHub ** i.e. I made the mistake of not checking if my current system already provides the required functionality when I wanted to aggregate my commits and found this to be a use case for StaticXSLT * feeds are fetched via `curl` ** this will be a local request in production ** the messages are still cleaned using `sed` and transformed into _XHTML_ using `peg-markdown` * instead of reading a customized Git log output CommitLog now simply transforms CGit ATOM feeds using identity templates ** this requires ATOM namespace removal which is implemented in `utility/remove_namespace.xsl`
2014-10-24Added timeline ATOM feed and removed XHTML targetAdrian Kummerlaender
* moved repository feeds to `repository` directory * replaced paginated XHTML timeline target with and ATOM feed ** removed `paginated_timeline.xsl` transformation including the `04_meta` level ** removed CSS and master stylesheets * added title, url and commit count meta data to `meta.xml` * expanded ATOM feed URLs * timeline feed has an upper limit of `commit_count` items ** repository feeds have the same limit because only `commit_count` commits of every repository are fetched in the first place
2014-10-21Enabled customizing of the number of commits to be fetchedAdrian Kummerlaender
2014-10-18Added basic styling and expanded commit outputAdrian Kummerlaender
* added CSS style based on my personal blog ** modified master and stream templates accordingly * added date-time, repository name and commit hash output * removed single-repository log export as it is not the purpose of this application
2014-10-17Added basic commit timeline aggregator implementationAdrian Kummerlaender
* another application based on StaticXSLT * git is instructed to export XML through a special log format definition * the commit messages are processed as Markdown * currently implemented result views are commits-by-repo and a paginated timeline of all commits in every repository * repositories to be read have to be defined in the `repositories.xml` file in the `00_content` level