summaryrefslogtreecommitdiff
path: root/repo
AgeCommit message (Collapse)Author
2020-03-24Distinguish indices from regular pagesKévin Le Gouguec
So that I can add a special recipe for them, where I'll concatenate the directory index.
2020-03-15Note down need for custom HTML templateKévin Le Gouguec
2020-03-15Generate indices for folders without READMEsKévin Le Gouguec
2020-03-15Use git-ls-files(1) to compute list of source filesKévin Le Gouguec
It's not clear whether or not Python supports '\0' for null: the reference[1] says nothing about this specific escape sequence, but Python 3.7 seems to recognize it… repr('\0') says "'\\x00'", so let's use that. [1]: https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals
2020-03-15Stop duplicating list of text file extensionsKévin Le Gouguec
2020-03-15Refactor dependency writer to make it easier to reason about indicesKévin Le Gouguec
2020-03-15Note down next improvements for website generationKévin Le Gouguec
2020-03-14Make path concatenation more to my likingKévin Le Gouguec
I prefer thinking of slashes as concatenation operators, always accompanied by operands on both sides. I don't like them hanging there at the end of my variables, which is what $(dir …) causes.
2020-03-14Establish a convention for makefile variablesKévin Le Gouguec
"Uppercase = public API, lowercase = internal plumbing".
2020-03-14Move dependency file to a variable and clean itKévin Le Gouguec
2020-03-14Let Makefile compute page foldersKévin Le Gouguec
Since it already computes the list of pages. I'm not comfortable with the pattern substitution, the implicit "slash management" is not obvious.
2020-03-14Update page list whenever folders changedKévin Le Gouguec
2020-03-14Note down improvement for dependency generatorKévin Le Gouguec
2020-03-14Turn READMEs into HTML indicesKévin Le Gouguec
2020-03-14Add rudimentary webizer scriptsKévin Le Gouguec
2020-03-12Make hooks easier to setup & maintainKévin Le Gouguec
By giving them meaningful names and adding a master script to call them all.