summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2022-06-18 01:53:51 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2022-06-18 01:53:51 +1200
commit61af4b97fb636c5e19b23f7f51785d86512c2f70 (patch)
tree15f4ba2ee13729c9d6c9c7013b426db5375fcea0 /project
parentc5ae7e0c614b88a857a5334eb0f599f926794218 (diff)
Contributions article added
Diffstat (limited to 'project')
-rw-r--r--project/complexity.yml1
-rw-r--r--project/context/articles.json6
-rw-r--r--project/templates/contributions.xhtml31
3 files changed, 38 insertions, 0 deletions
diff --git a/project/complexity.yml b/project/complexity.yml
index 6a2374e..58b56ca 100644
--- a/project/complexity.yml
+++ b/project/complexity.yml
@@ -12,6 +12,7 @@ output_dir: "../www"
unexpanded_templates:
- "about.xhtml"
- "adapad.xhtml"
+ - "contributions.xhtml"
- "deckconv.xhtml"
- "fltkada.xhtml"
- "grasp.xhtml"
diff --git a/project/context/articles.json b/project/context/articles.json
index 9703b98..fef380d 100644
--- a/project/context/articles.json
+++ b/project/context/articles.json
@@ -1,6 +1,12 @@
[
{
+ "title": "Contributions to Other Projects",
+ "anchor": "/contributions.xhtml",
+ "taglist": ["programming"],
+ "postdate": "17/6/2022"
+ },
+ {
"title": "Flashcard Deck Converter",
"anchor": "/deckconv.xhtml",
"taglist": ["application", "programming"],
diff --git a/project/templates/contributions.xhtml b/project/templates/contributions.xhtml
new file mode 100644
index 0000000..1a81a1d
--- /dev/null
+++ b/project/templates/contributions.xhtml
@@ -0,0 +1,31 @@
+
+{%- extends "base_plain.xhtml" -%}
+
+
+
+{%- block title -%}Contributions to Other Projects{%- endblock -%}
+
+
+
+{%- block footer -%}{{ plain_footer ("contributions.xhtml") }}{%- endblock -%}
+
+
+
+{%- block content %}
+<h4>Contributions to Other Projects</h4>
+
+<p>This is a record of times I've made an improvement to someone else's project and had that
+contribution accepted. Mostly to encourage myself to do such things more often.</p>
+
+
+<h5>17/6/2022</h5>
+
+<p>One of the dependencies of the <a href="/deckconv.xhtml">flashcard deck converter</a> program is
+<a href="https://unzip-ada.sourceforge.io/" class="external">Zip-Ada</a> by Gautier de Montmollin.
+At the time, Zip-Ada didn't have any project file to build itself as a standalone library. This
+<a href="https://github.com/zertovitch/zip-ada/commit/0299b9c23cc5b21d0654b9d928f2538543dec52f" class="external">commit</a>
+is thus nothing more than such a project file and associated documentation tweaks, but hey, we all
+have to start somewhere.</p>
+{% endblock -%}
+
+