2022-07-23 11:35:23 +02:00
|
|
|
.. default-role:: code
|
|
|
|
|
|
|
|
###################
|
|
|
|
Things to be done
|
|
|
|
###################
|
|
|
|
|
2022-09-25 19:34:08 +02:00
|
|
|
|
|
|
|
Core
|
|
|
|
####
|
|
|
|
|
2022-10-25 22:07:43 +02:00
|
|
|
New feature: sources
|
|
|
|
====================
|
|
|
|
|
|
|
|
Currently the way we get data into HSSG is a mess without any consistency. I
|
|
|
|
propose the idea of "sources", "processors" and "sinks".
|
|
|
|
|
|
|
|
- A source is some object which represents the initial point of data
|
|
|
|
- A processor is some object which transforms data into other data
|
|
|
|
- A sink is the final destination of the data which produces the actual output
|
|
|
|
file
|
|
|
|
|
|
|
|
We already have artifacts as sinks and templates as filters. This only leaves
|
|
|
|
sources to be implemented. A source is some object which implements the source
|
|
|
|
protocol:
|
|
|
|
|
|
|
|
- `GET-DATA`: Returns the data for further processing
|
|
|
|
|
|
|
|
It is up to the source to implement for example some form of caching. A source
|
|
|
|
could read data from a file, it could be hard-coded data, or it could use OCR
|
|
|
|
to parse a message delivered by carrier pigeon.
|
|
|
|
|
|
|
|
|
2022-09-25 19:34:08 +02:00
|
|
|
Cleanup
|
|
|
|
=======
|
|
|
|
|
|
|
|
- A proper public interface to the various artifact classes
|
2022-09-26 22:58:36 +02:00
|
|
|
- Expose reader interface to public
|
2022-10-31 15:23:26 +01:00
|
|
|
- Remove `WRITE-ARTIFACT` generic function and its methods once file system and
|
|
|
|
instructions are implemented everywhere
|
2022-09-25 19:34:08 +02:00
|
|
|
|
|
|
|
Testing
|
|
|
|
=======
|
|
|
|
|
2022-09-26 22:58:36 +02:00
|
|
|
- Update reader tests to public interface once it is done
|
2022-09-25 19:34:08 +02:00
|
|
|
|
|
|
|
|
2022-07-23 11:35:23 +02:00
|
|
|
Blog
|
|
|
|
####
|
|
|
|
|
|
|
|
Fixes
|
|
|
|
=====
|
|
|
|
|
|
|
|
- Make sure the `lisp` reader uses throwaway packages instead of polluting the
|
|
|
|
global namespace
|
|
|
|
|
|
|
|
Features
|
|
|
|
========
|
|
|
|
|
|
|
|
- Template: docstrings in template
|
2022-09-08 19:23:42 +02:00
|
|
|
- Localization: Fall back to English if a particular key does not exist for the
|
|
|
|
target language
|
2022-07-23 11:35:23 +02:00
|
|
|
|
|
|
|
Cleanup
|
|
|
|
=======
|
|
|
|
|
|
|
|
- How much of each artifact's internals need to be exposed? Make accessor
|
|
|
|
functions? Constructor functions over `MAKE-INSTANCE`?
|
2022-09-11 22:46:26 +02:00
|
|
|
- Static page metadata without binding (see comment in definition)
|
2022-09-26 22:58:36 +02:00
|
|
|
|
|
|
|
Testing
|
|
|
|
=======
|
|
|
|
|
|
|
|
Everything
|
|
|
|
|
|
|
|
|
|
|
|
CommonMark reader
|
|
|
|
#################
|
|
|
|
|
|
|
|
Testing
|
|
|
|
=======
|
|
|
|
|
|
|
|
Everything
|